With windows phone, is there an event I can register for when the device entered landscape mode?
The reason why I am asking this is because we have a view with an i
Your best bet would be describing to Windows.Current.SizeChanged
event and testing if width is more than height. There is also a sensor for this, but is is a bit problematic, take a look at http://www.jayway.com/2014/10/06/detecting-orientation-in-universal-apps-windows-phone-8-1/.
.xaml
<--! Other Code -->
.cs
private void SizeChangedEvent(object sender, SizeChangedEventArgs e)
{
}