开发者

How to get Block Style Progressbars in Aero / .NET 4

开发者 https://www.devze.com 2023-01-07 12:15 出处:网络
I have three ProgressBars of the three styles.Blocks and Continuous are now rendering the same, whereas I remember Blocks used to render as Blocks.

I have three ProgressBars of the three styles. Blocks and Continuous are now rendering the same, whereas I remember Blocks used to render as Blocks.

http://www.kconnolly.net/pic开发者_如何转开发s/pb.jpg

is this unique to .NET 4, Aero Glass, or Windows 7? How can I tell my app to use the classic Blocks?


use this

public class ContinuousProgressBar : ProgressBar 
{ 
    public ContinuousProgressBar() 
    { 
        this.Style = ProgressBarStyle.Continuous; 
    }
    protected override void CreateHandle()
    {
        base.CreateHandle();
        try
        {
            SetWindowTheme(this.Handle, "", "");
        }
        catch 
        { 
        }
    }

    [System.Runtime.InteropServices.DllImport("uxtheme.dll")]  
    private static extern int SetWindowTheme(IntPtr hwnd, string appname, string idlist);
}
0

精彩评论

暂无评论...
验证码 换一张
取 消