从用户控件中导航 WPF 选项卡控件?

发布于 2024-09-06 19:10:55 字数 147 浏览 4 评论 0原文

我的 WPF 应用程序由一个带有选项卡控件的主窗口组成,该窗口具有一系列选项卡项,每个选项卡项托管一个用户控件。

我希望用户控件之一能够触发应用程序将焦点从当前选项卡更改为其他选项卡。

有没有办法让用户控件触发其选项卡控件容器更改为另一个选项卡项?

My WPF application consists of a main window with a tab control which has a series of tab items, each hosting a user control.

I'd like one of the user controls to be able to trigger the application to change focus from the current tab to a different one.

Is there a way for the user control to trigger its tab control container to change to another tab item?

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

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

发布评论

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

评论(2

稚然 2024-09-13 19:10:55

WPF系统提供了RoatedEvent。可以创建这种特殊类型的事件以供树中的每个元素捕获。通过这种方式,您可以在用户控件内触发事件,并在 TabControl 中捕获它,这将完成您需要的一切。选项卡控件可以捕获事件原因,因为它位于窗口的元素树中。

您可以从这里开始:
http://msdn.microsoft.com/en-us/library/ms742806。 aspx

您需要一个气泡事件。

希望这有帮助。

The WPF system provides the RoutedEvent. This special kind of event can be created to be catched by every element in the tree. With this way you can fire the event inside your user control, and catch it in the TabControl that will do everything you need. The tab control can catch the event cause of it lies in the element's tree of your window.

You can start from here:
http://msdn.microsoft.com/en-us/library/ms742806.aspx

You'll need a Bubble Event.

Hope this helps.

风月客 2024-09-13 19:10:55

您可以拥有一个与 TabControl 的 SelectedItem 属性绑定的属性。

You can have a property that binds with SelectedItem property of TabControl.

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