如何在 C# Windows 窗体中创建自定义 ToolStripProgressBar?

发布于 2024-12-07 06:09:11 字数 131 浏览 0 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(1

心安伴我暖 2024-12-14 06:09:11

我可以为您提供有关 ToolStripControlHost 的更多信息,我使用它和以下代码创建了一个 ProgressBar

public class ToolStripProgressBarC : ToolStripControlHost
{
    // Call the base constructor passing in a ProgressBar instance.
    public ToolStripProgressBarC() : base(new ProgressBar()) 
    {
        ((ProgressBar)Control).Style = ProgressBarStyle.Continuous;
    }

    public ProgressBar ProgressBarControl
    {
        get
        {
            return Control as ProgressBar;
        }
    }

    // Expose the ProgressBar.Value as a property.
    public int Value
    {
        get
        {
            return ProgressBarControl.Value;
        }
        set { ProgressBarControl.Value = value; }
    }

}

,然后将其添加到我的工具条中,如下所示。

ToolStripProgressBarC tsp = new ToolStripProgressBarC();
tsp.Value = 90;
toolStrip1.Items.Add(tsp);

您应该能够通过向“ToolStripProgressBarC”类添加额外的函数来执行任何您想要的额外覆盖。

I can give you more Information on the ToolStripControlHost, I created a ProgressBar using this with the following code

public class ToolStripProgressBarC : ToolStripControlHost
{
    // Call the base constructor passing in a ProgressBar instance.
    public ToolStripProgressBarC() : base(new ProgressBar()) 
    {
        ((ProgressBar)Control).Style = ProgressBarStyle.Continuous;
    }

    public ProgressBar ProgressBarControl
    {
        get
        {
            return Control as ProgressBar;
        }
    }

    // Expose the ProgressBar.Value as a property.
    public int Value
    {
        get
        {
            return ProgressBarControl.Value;
        }
        set { ProgressBarControl.Value = value; }
    }

}

I then added it to my tool strip like so.

ToolStripProgressBarC tsp = new ToolStripProgressBarC();
tsp.Value = 90;
toolStrip1.Items.Add(tsp);

You should be able to do any extra overriding that you want by adding extra functions to the "ToolStripProgressBarC" class.

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