AppWindow.SetPresenter 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SetPresenter(AppWindowPresenter) |
将指定的演示者应用于窗口。 |
SetPresenter(AppWindowPresenterKind) |
将指定的演示者类型应用于窗口。 |
SetPresenter(AppWindowPresenter)
将指定的演示者应用于窗口。
public:
virtual void SetPresenter(AppWindowPresenter ^ appWindowPresenter) = SetPresenter;
/// [Windows.Foundation.Metadata.DefaultOverload]
/// [Windows.Foundation.Metadata.Overload("SetPresenter")]
void SetPresenter(AppWindowPresenter const& appWindowPresenter);
[Windows.Foundation.Metadata.DefaultOverload]
[Windows.Foundation.Metadata.Overload("SetPresenter")]
public void SetPresenter(AppWindowPresenter appWindowPresenter);
function setPresenter(appWindowPresenter)
Public Sub SetPresenter (appWindowPresenter As AppWindowPresenter)
参数
- appWindowPresenter
- AppWindowPresenter
要应用于窗口的演示者。
- 属性
注解
如果已设置演示者,则对演示者所做的任何更改都将立即在窗口生效。
若要从窗口中删除当前演示者,请调用此方法并指定其他演示者。
适用于
SetPresenter(AppWindowPresenterKind)
将指定的演示者类型应用于窗口。
public:
virtual void SetPresenter(AppWindowPresenterKind appWindowPresenterKind) = SetPresenter;
/// [Windows.Foundation.Metadata.Overload("SetPresenterByKind")]
void SetPresenter(AppWindowPresenterKind const& appWindowPresenterKind);
[Windows.Foundation.Metadata.Overload("SetPresenterByKind")]
public void SetPresenter(AppWindowPresenterKind appWindowPresenterKind);
function setPresenter(appWindowPresenterKind)
Public Sub SetPresenter (appWindowPresenterKind As AppWindowPresenterKind)
参数
- appWindowPresenterKind
- AppWindowPresenterKind
要应用于窗口的演示者类型。
- 属性
注解
使用 AppWindowPresenterKind.Default 作为参数调用此方法,以应用 OverlappedPresenter。