Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.3k views
in Technique[技术] by (71.8m points)

c# - Display orientation change event for tablet devices

I am looking for an event when the orientation of the device changes from landscape to portrait or vice versa. And I tried this (https://docs.microsoft.com/en-us/uwp/api/windows.graphics.display.displayinformation.orientationchanged?view=winrt-19041) -

 Windows.Graphics.Display.DisplayInformation.GetForCurrentView().OrientationChanged += Reader_OrientationChanged;
 private void Reader_OrientationChanged(Windows.Graphics.Display.DisplayInformation sender, object args)
 {
 }

But the Reader_OrientationChanged method is never called. Windows.Graphics.Display.DisplayInformation.GetForCurrentView().CurrentOrientation gives the write display orientation value, but for some reason the event never fires.

Am I missing something here, how to make this event work? Or is there any other way to subscribe to an event for display orientation change?

I also tried SimpleOrientationSensor.GetDefault().OrientationChanged, but SimpleOrientationSensor.GetDefault() returns null on the simulator so can't test if it works as expected.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...