如何使单个控件出现在多个选项卡控件页面上?
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个包含按钮的 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.
您可以在选项卡控件的外部和顶部实现滚动查看器和按钮。
You could implement the scroll viewer and buttons outside and on top of the tabcontrol.