单击控件时哪些属性会发生更改?
我正在尝试找到一种解决方法来在 EventTrigger
中应用设置器,我想在 Click 事件上设置一个属性,是否有人知道单击 Control 时会更改哪些属性,以便我可以测试这是在触发器
中吗?
I am trying to find a workaround to applying a setter in an EventTrigger
, I want to set a property on the Click event, does any one know what property gets changed when you click a Control so I can test this in a Trigger
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题有点模糊。也许 IsFocused 属性(对于可聚焦的 UIElement)就是您所寻求的那种东西。
The question is a little bit vague. Maybe the IsFocused property, for a UIElement which is Focusable, is the kind of thing you seek.
我认为您正在寻找
MouseLeftButtonDown
事件。I think you're looking for
MouseLeftButtonDown
event.