Application.OnWindowCreated(WindowCreatedEventArgs) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在应用程序创建窗口时调用。
protected:
virtual void OnWindowCreated(WindowCreatedEventArgs ^ args) = OnWindowCreated;
void OnWindowCreated(WindowCreatedEventArgs const& args);
protected virtual void OnWindowCreated(WindowCreatedEventArgs args);
function onWindowCreated(args)
Protected Overridable Sub OnWindowCreated (args As WindowCreatedEventArgs)
参数
事件的事件数据。
注解
此方法在创建main窗口时调用一次,每个托管窗口调用一次,每次调用 CreateNewView 时调用一次。 例如,可以通过调用 SearchPane.GetForCurrentView 和SettingsPane.GetForCurrentView 等 GetForCurrentView 方法来替代此方法来访问各种窗格。