5
我有三種樣式的三個ProgressBars。塊和連續現在呈現相同,而我記得塊用於呈現塊。如何在Aero/.NET中獲取塊樣式進度條4
http://www.kconnolly.net/pics/pb.jpg
這是唯一的.NET 4,Aero玻璃或Windows 7?我怎麼能告訴我的應用程序使用經典的塊?
我有三種樣式的三個ProgressBars。塊和連續現在呈現相同,而我記得塊用於呈現塊。如何在Aero/.NET中獲取塊樣式進度條4
http://www.kconnolly.net/pics/pb.jpg
這是唯一的.NET 4,Aero玻璃或Windows 7?我怎麼能告訴我的應用程序使用經典的塊?
使用此項
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);
}