AppWindowPresenter.RequestPresentation 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
RequestPresentation(AppWindowPresentationConfiguration) |
使用指定的演示文稿配置发出显示窗口的请求。 |
RequestPresentation(AppWindowPresentationKind) |
发出使用指定类型的演示文稿显示窗口的请求。 |
RequestPresentation(AppWindowPresentationConfiguration)
使用指定的演示文稿配置发出显示窗口的请求。
public:
virtual bool RequestPresentation(AppWindowPresentationConfiguration ^ configuration) = RequestPresentation;
/// [Windows.Foundation.Metadata.Overload("RequestPresentation")]
bool RequestPresentation(AppWindowPresentationConfiguration const& configuration);
[Windows.Foundation.Metadata.Overload("RequestPresentation")]
public bool RequestPresentation(AppWindowPresentationConfiguration configuration);
function requestPresentation(configuration)
Public Function RequestPresentation (configuration As AppWindowPresentationConfiguration) As Boolean
参数
- configuration
- AppWindowPresentationConfiguration
用于显示应用窗口的演示文稿配置。
返回
Boolean
bool
如果请求成功,则为 true;否则为 false。
- 属性
适用于
RequestPresentation(AppWindowPresentationKind)
发出使用指定类型的演示文稿显示窗口的请求。
public:
virtual bool RequestPresentation(AppWindowPresentationKind presentationKind) = RequestPresentation;
/// [Windows.Foundation.Metadata.DefaultOverload]
/// [Windows.Foundation.Metadata.Overload("RequestPresentationByKind")]
bool RequestPresentation(AppWindowPresentationKind const& presentationKind);
[Windows.Foundation.Metadata.DefaultOverload]
[Windows.Foundation.Metadata.Overload("RequestPresentationByKind")]
public bool RequestPresentation(AppWindowPresentationKind presentationKind);
function requestPresentation(presentationKind)
Public Function RequestPresentation (presentationKind As AppWindowPresentationKind) As Boolean
参数
- presentationKind
- AppWindowPresentationKind
用于显示应用窗口的演示文稿类型。
返回
Boolean
bool
如果请求成功,则为 true;否则为 false。
- 属性