--- branches/uienhancements/EmuXPortal/Form1.cs 2012/04/08 13:41:46 55 +++ branches/uienhancements/EmuXPortal/Form1.cs 2012/04/08 13:45:24 56 @@ -11,7 +11,6 @@ using EmuXPortal.Logging; using System.Diagnostics; using System.Reflection; using System.Threading; -using Utilities.TransparentControls; namespace EmuXPortal { @@ -232,15 +231,15 @@ namespace EmuXPortal Stopwatch t = e.Argument as Stopwatch; RomParser parser = new RomParser(CurrentSelectedRom); - ProgressBarWithPercentageLabel bar = new ProgressBarWithPercentageLabel(); + ProgressBar bar = new ProgressBar(); AddGameControl(bar); UpdateGameControls(); Application.DoEvents(); Thread.Sleep(10); bar.Invoke(new MethodInvoker(delegate { - bar.Message = "Please Wait..."; - bar.ShowPercentageLabel = true; + //bar.Message = "Please Wait..."; + //bar.ShowPercentageLabel = true; bar.Margin = new System.Windows.Forms.Padding(0); bar.Size = new Size(GetFormWidth() - 25, 100); })); @@ -289,8 +288,8 @@ namespace EmuXPortal PlatformParser parser = new PlatformParser(Config.RomPath); double count = 0; double total_count = parser.Platforms.Count; - ProgressBarWithPercentageLabel bar = new ProgressBarWithPercentageLabel(); - AddPlatformControl(bar); + ProgressBar bar = new ProgressBar(); + AddPlatformControl(bar); UpdatePlatformControls(); Application.DoEvents(); Thread.Sleep(10); |