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.
在我的 WPF 应用程序中,我有一个工具提示,它显示了许多带有分页的消息。用户应该能够通过按下下一步按钮来查看下一条消息。问题是当单击下一个按钮时,工具提示会关闭。有没有办法让它保持打开并处理事件?
Click 是一个路由事件,它会冒泡到TooltipinVisualTree并Tooltip在此事件发生时关闭。所以我建议你停止这种冒泡。
Tooltip
VisualTree
将RoutedEventArgsHandled 属性设置为 true
RoutedEventArgs
void NextButtonClicked(object sender, RoutedEventArgs e) { //Application logic e.Handled = true; }