如何在 C# Windows 窗体中创建自定义 ToolStripProgressBar?
如何在 C# Windows 窗体中创建自定义 ToolStripProgressBar?
我想创建一个样式为 Contino 的进度条,但在 Windows XP 中这是不可能的。
那么如何为该控件设置所有者绘制?
How to create custom ToolStripProgressBar in C# Windows forms?
I want to create a progressbar with the style as continuos but in windows xp it is not possible..
So how can I set owner draw for this control ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以为您提供有关 ToolStripControlHost 的更多信息,我使用它和以下代码创建了一个 ProgressBar
,然后将其添加到我的工具条中,如下所示。
您应该能够通过向“ToolStripProgressBarC”类添加额外的函数来执行任何您想要的额外覆盖。
I can give you more Information on the ToolStripControlHost, I created a ProgressBar using this with the following code
I then added it to my tool strip like so.
You should be able to do any extra overriding that you want by adding extra functions to the "ToolStripProgressBarC" class.