AppWindow.Create 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Create() |
建立應用程式視窗,並將樣式和屬性設定為預設 |
Create(AppWindowPresenter) |
建立具有樣式和屬性的視窗,如指定的 |
Create(AppWindowPresenter, WindowId) |
建立樣式和屬性的視窗,如指定的 |
Create(AppWindowPresenter, WindowId, DispatcherQueue) |
建立樣式和屬性的視窗,如指定的 |
Create()
建立應用程式視窗,並將樣式和屬性設定為預設 OverlappedPresenter
。
public:
static AppWindow ^ Create();
/// [Windows.Foundation.Metadata.Overload("Create")]
static AppWindow Create();
[Windows.Foundation.Metadata.Overload("Create")]
public static AppWindow Create();
function create()
Public Shared Function Create () As AppWindow
傳回
具有預設組態的新應用程式視窗。
- 屬性
另請參閱
適用於
Create(AppWindowPresenter)
建立具有樣式和屬性的視窗,如指定的 AppWindowPresenter
中所定義。
public:
static AppWindow ^ Create(AppWindowPresenter ^ appWindowPresenter);
/// [Windows.Foundation.Metadata.Overload("CreateWithPresenter")]
static AppWindow Create(AppWindowPresenter const& appWindowPresenter);
[Windows.Foundation.Metadata.Overload("CreateWithPresenter")]
public static AppWindow Create(AppWindowPresenter appWindowPresenter);
function create(appWindowPresenter)
Public Shared Function Create (appWindowPresenter As AppWindowPresenter) As AppWindow
參數
- appWindowPresenter
- AppWindowPresenter
AppWindowPresenter
物件,指定要套用至視窗的屬性值。
傳回
具有指定組態的新應用程式視窗。
- 屬性
另請參閱
適用於
Create(AppWindowPresenter, WindowId)
建立樣式和屬性的視窗,如指定的 AppWindowPresenter
和父系至指定的視窗所定義。
public:
static AppWindow ^ Create(AppWindowPresenter ^ appWindowPresenter, WindowId ownerWindowId);
/// [Windows.Foundation.Metadata.Overload("CreateWithPresenterAndOwner")]
static AppWindow Create(AppWindowPresenter const& appWindowPresenter, WindowId const& ownerWindowId);
[Windows.Foundation.Metadata.Overload("CreateWithPresenterAndOwner")]
public static AppWindow Create(AppWindowPresenter appWindowPresenter, WindowId ownerWindowId);
function create(appWindowPresenter, ownerWindowId)
Public Shared Function Create (appWindowPresenter As AppWindowPresenter, ownerWindowId As WindowId) As AppWindow
參數
- appWindowPresenter
- AppWindowPresenter
AppWindowPresenter
物件,指定要套用至視窗的屬性值。
- ownerWindowId
- WindowId
新視窗之父視窗的標識碼。
傳回
具有指定組態的新應用程式視窗。
- 屬性
備註
若要讓此視窗成為擁有的視窗,請將您想要成為其擁有者之視窗的 標識子 傳遞至 ownerWindowId
參數。
ownerWindowId
必須是與套用組態之視窗相同的進程 WindowId。
ContextMenu、Dialog 和 ToolWindow 組態需要在建立視窗才能成功套用時設定此屬性。
另請參閱
適用於
Create(AppWindowPresenter, WindowId, DispatcherQueue)
建立樣式和屬性的視窗,如指定的 AppWindowPresenter
中所定義,父系至指定的視窗,並與指定的 DispatcherQueue
相關聯。
public:
static AppWindow ^ Create(AppWindowPresenter ^ appWindowPresenter, WindowId ownerWindowId, DispatcherQueue ^ DispatcherQueue);
/// [Windows.Foundation.Metadata.Overload("CreateWithDispatcherQueue")]
static AppWindow Create(AppWindowPresenter const& appWindowPresenter, WindowId const& ownerWindowId, DispatcherQueue const& DispatcherQueue);
[Windows.Foundation.Metadata.Overload("CreateWithDispatcherQueue")]
public static AppWindow Create(AppWindowPresenter appWindowPresenter, WindowId ownerWindowId, DispatcherQueue DispatcherQueue);
function create(appWindowPresenter, ownerWindowId, DispatcherQueue)
Public Shared Function Create (appWindowPresenter As AppWindowPresenter, ownerWindowId As WindowId, DispatcherQueue As DispatcherQueue) As AppWindow
參數
- appWindowPresenter
- AppWindowPresenter
AppWindowPresenter
物件,指定要套用至視窗的屬性值。
- ownerWindowId
- WindowId
新視窗之父視窗的標識碼。
- DispatcherQueue
- DispatcherQueue
要與新視窗產生關聯的發送器佇列。
傳回
具有指定組態的新應用程式視窗。
- 屬性