ContentDialog.CloseButtonText 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置要显示在关闭按钮上的文本。
public:
property Platform::String ^ CloseButtonText { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring CloseButtonText();
void CloseButtonText(winrt::hstring value);
public string CloseButtonText { get; set; }
var string = contentDialog.closeButtonText;
contentDialog.closeButtonText = string;
Public Property CloseButtonText As String
<ContentDialog CloseButtonText="string"/>
属性值
要显示在关闭按钮上的文本。 若要隐藏此按钮,请将文本设置为 null
或空字符串。 默认值为空字符串。
注解
每个对话框都应包含一个可使用户安心退出对话框的安全、无破坏性的操作按钮。
ContentDialog 具有内置的关闭按钮,可以通过将此属性设置为非空字符串来使用该按钮。 当此属性设置为空字符串或 null
时,关闭按钮处于隐藏状态。
借助内置的关闭按钮,你可以为所有输入(包括鼠标、键盘、触摸和游戏控制器)创建正确的用户体验。 对话框将在以下情况下关闭:
- 用户单击或点击关闭按钮。
- 用户按下系统后退按钮。
- 用户按下键盘上的 ESC 按钮。
- 用户按游戏控制器 B。
调用关闭按钮返回 ContentDialogResult.None
,将引发 CloseButtonClick 事件,你可以选择处理该事件,并调用设置的任何 CloseButtonCommand 。