如何使用鼠标中键关闭 TabControlEx 选项卡?

发布于 2024-12-07 14:42:08 字数 111 浏览 0 评论 0原文

我正在使用 WPF TabControlEx(关闭选项卡)。

我正在寻找一种通过单击鼠标滚轮单击选项卡标题来关闭选项卡的方法。

有什么建议吗?

非常感谢您的帮助

I'm working with the WPF TabControlEx (close tabs).

I'm looking a way to close the tab clicking the tab header with the mouse wheel click.

Any suggestions?

Thanks a lot for all your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

無處可尋 2024-12-14 14:42:08

将其添加到选项卡标题上的 XAML 中:

<Grid.InputBindings>
    <MouseBinding MouseAction="MiddleClick" Command="{Binding CloseCommand}" />
</Grid.InputBindings>

让 ViewModel 上的 CloseCommand 关闭选项卡。您可能还需要使用 CommandParameter 传递特定选项卡。

Add this to your XAML on the tab header:

<Grid.InputBindings>
    <MouseBinding MouseAction="MiddleClick" Command="{Binding CloseCommand}" />
</Grid.InputBindings>

Have your CloseCommand on your ViewModel close the tab. You might also need to pass the specific tab in with the CommandParameter.

也只是曾经 2024-12-14 14:42:08

我正在开发的项目有不同的目的,但它有可关闭的选项卡,如果您想使用它,您可以在此 论坛

The Project i was developing was for different purpose but it had the closable tabs if you want to use it you can find it in this forum

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文