Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
按钮可以使用Command.Open属性和Click事件。但是Button.Click事件在之前执行Button.Command.Open。由于我的Button.Click事件代码和Button.Command.Open代码是相互连接的,所以我需要Button.Command.Open先执行,然后再Button.Click执行事件。这怎么可能?有什么解决办法吗?
Command.Open
Click
Button.Click
Button.Command.Open
谢谢和抱歉,因为我的英语。
听起来你需要找到一个在事件之前触发的click事件,比如PreviewMouseDown事件,然后在那里调用你的 Open 实现。
click
PreviewMouseDown