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.
avalonia 中的树视图没有双击事件。是否有可能以另一种方式实现这一点?
我想在 ViewModel 中捕获双击事件以执行方法。
问候,凯文
Avalonia 在这里使用 UWP 命名(因为它使用PointerX事件而不是MouseX事件)并且事件被称为DoubleTapped.
PointerX
MouseX
DoubleTapped
PointerPressed事件有 ClickCount属性。从代码隐藏或行为订阅并检查是否ClickCount == 2
PointerPressed
ClickCount
ClickCount == 2