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
新しいウィンドウの親ウィンドウの ID。
戻り値
指定した構成の新しいアプリ ウィンドウ。
- 属性
注釈
このウィンドウを所有ウィンドウにするには、所有者にするウィンドウの ID を 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
新しいウィンドウの親ウィンドウの ID。
- DispatcherQueue
- DispatcherQueue
新しいウィンドウに関連付けるディスパッチャー キュー。
戻り値
指定した構成の新しいアプリ ウィンドウ。
- 属性