关于 C# 自定义选项卡控件的建议?
有没有人对用 C# 实现的自定义选项卡控件有任何建议,并且该控件遵循以下标准:
- 允许将选项卡放置在控件的侧面。
- 选项卡文本必须水平阅读。
- 允许自定义颜色。
- 开源或免费。
如果解决方案已经存在,我宁愿不亲自参与ownerdrawing。
Has anybody got any suggestions for a custom tabcontrol implemented in C# and which adheres to these criteria:
- Allows the tabs to be placed along the side of the control.
- Tab text must read horizontally.
- Allow custom colouring.
- Open source or no cost.
I prefer not to get my hands dirty with ownerdrawing if a solution already exists.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能不再需要这个,但任何其他偶然发现它的人可能会发现它很有用。
我在 CodeProject 上发现了这个选项卡控件,用它绘制你自己的选项卡也很容易,他们甚至在网站上给了你一个例子。
Y(et)A(nother)TabControl
还有几个选项卡控件。
TabStrip 控件
TabStrips:Visual Studio 2005 方式的 TabControl!
You probably don't have a need for this anymore but anyone else who stumbles upon it might find it useful.
I found this tabcontrol on CodeProject it is also very easy to Draw your own tabs with it, they even give you a example on the site.
Y(et)A(nother)TabControl
A couple more tab controls.
TabStrip Control
TabStrips: A TabControl in the Visual Studio 2005 way!
WPF 中的选项卡控件可以满足您的所有要求。 您可以覆盖该模板并使用它进城。
The tab control in WPF fulfills all of your requirements. You can override the template and go to town on it.