ContextMenu.IsOpen 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示 ContextMenu 是否可见。
public:
property bool IsOpen { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.Browsable(false)]
public bool IsOpen { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.Browsable(false)>]
member this.IsOpen : bool with get, set
Public Property IsOpen As Boolean
属性值
如果 ContextMenu 可见,则为 true
;否则为 false
。 默认值为 false
。
- 属性
示例
此示例演示如何检查以确定属性是否 IsOpen 设置为 true
。
if (cm.IsOpen == true)
{
cmButton.Content = "The ContextMenu opened and the IsOpen property is true.";
}
If cm.IsOpen = True Then
cmButton.Content = "The ContextMenu opened and the IsOpen property is true."
End If
注解
true
设置为时IsOpen,鼠标捕获将设置为ContextMenu及其子树。
依赖项属性信息
标识符字段 | IsOpenProperty |
元数据属性设置为 true |
BindsTwoWayByDefault |