UIElement.IsHitTestVisible 属性

定义

获取或设置此 UIElement 的包含区域是否可以为命中测试返回 true 值。

public:
 property bool IsHitTestVisible { bool get(); void set(bool value); };
bool IsHitTestVisible();

void IsHitTestVisible(bool value);
public bool IsHitTestVisible { get; set; }
var boolean = uIElement.isHitTestVisible;
uIElement.isHitTestVisible = boolean;
Public Property IsHitTestVisible As Boolean
<uiElement IsHitTestVisible="bool"/>

属性值

Boolean

bool

如果此 UIElement 的包含区域可用于命中测试,则为 true;否则为 false。 默认值为 true

适用于