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입니다.
반환
지정된 구성이 있는 새 앱 창입니다.
- 특성
설명
이 창을 소유 창으로 만들려면 소유자로 지정할 창의 IDownerWindowId
매개 변수에 전달합니다.
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
새 창과 연결할 디스패처 큐입니다.
반환
지정된 구성이 있는 새 앱 창입니다.
- 특성