I’m learning how to use Supported Orientations to change values or texts in a textblock. What I want is that when the device is tilted to landscape mode, the textblock should display “Bye” and when it is tilted to portrait mode, it should say “Welcome”
I want to know what relational operators should be used inside the if() statement so that it gives the correct output.
What should I use inside if()?
if(Orientation.Equals(SupportedOrientation.Portrait)) { // display "Welcome"}if(SupportedOrientation.Equals(SupportedPageOrientation.Portrait)) {// display "Welcome"}
How can I use orientation to change any values I want?
you can use either the OrientationChanged event of the PhoneApplicationPage class, or override the OnOrientationChanged method if you’re writing code in your page class.