如何使单个控件出现在多个选项卡控件页面上?

发布于 2024-07-21 20:25:36 字数 138 浏览 4 评论 0原文

我有一个带有 3 个选项卡的 WPF 选项卡控件。 第一页的顶部是一个滚动查看器,带有几个按钮,这些按钮构成了常见任务的菜单(保存、加载等)。 我希望这个滚动查看器出现在每个选项卡的顶部。 是否可以在不简单地将代码复制并粘贴到每个选项卡的情况下执行此操作?

I have a WPF tabcontrol with 3 tabs. On the top of the first page is a scrollviewer with a couple buttons which make up a menu of common tasks (save, load etc). I would like this scroll viewer to appear at the top of every tab. Is it possible to do this without simply copying and pasting the code to every tab?

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

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

发布评论

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

评论(2

羁拥 2024-07-28 20:25:36

您可以创建一个包含按钮的 UI 和逻辑的自定义控件,然后将该控件包含在每个选项卡上。 执行此操作的最佳方法是创建 ScrollViewer 的子类,并在 XAML 中定义每个按钮。 在每个选项卡页面上,您都可以创建新子类的实例。

这将导致每个页面上都有不同的类实例,但按钮的逻辑仅在代码中存在一次。

You can make a custom control that contains the UI and logic for the buttons, and then include that control on each tab. The best way to do this is to create a subclass of ScrollViewer, and in the XAML define each of the buttons. On each of your tab pages you can create and create an instance of your new subclass.

This will result in a different instance of your class on each page, but the logic for the buttons will only exist in the code once.

神魇的王 2024-07-28 20:25:36

您可以在选项卡控件的外部和顶部实现滚动查看器和按钮。

You could implement the scroll viewer and buttons outside and on top of the tabcontrol.

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