在 Windows 应用商店应用程序中,我们需要一个在设备方向改变时发生的事件。我发现了两个事件,有人知道它们之间有什么区别吗?
Windows.UI.Core.CoreWindow.GetForCurrentThread().SizeChanged
在 Windows 应用商店应用程序中,我们需要一个在设备方向改变时发生的事件。我发现了两个事件,有人知道它们之间有什么区别吗?
Windows.UI.Core.CoreWindow.GetForCurrentThread().SizeChanged
From msdn :
A Window object is just surfacing information from CoreWindow, which in turn is referencing the window created by the system.
CoreWindow
is just an object that provides input events for Window
so the two events are referencing the same system event.