解决方法
你不能轻易获得精确的Win98外观而不需要对控件进行相当大的重写.但是,通过关闭视觉样式可以获得简单的浅蓝色进度条.像这样:
using System; using System.Windows.Forms; using System.Runtime.InteropServices; class SimpleProgressBar : ProgressBar { protected override void OnHandleCreated(EventArgs e) { base.OnHandleCreated(e); if (Environment.OSVersion.Version.Major >= 6) { SetWindowTheme(this.Handle,"",""); } } [DllImport("uxtheme.dll")] private static extern int SetWindowTheme(IntPtr hWnd,string appname,string idlist); }