Make preferences dialog work (PrefPanel class for preference panel switching, loading of preferences, saving of preferences, initial Browser Display panel) git-svn-id: svn://10.0.0.236/trunk@98444 18797224-902f-48f8-a5cc-f745e15eee43
20 lines
338 B
C#
20 lines
338 B
C#
|
|
namespace Silverstone.Manticore.Toolkit
|
|
{
|
|
using System;
|
|
using System.Windows.Forms;
|
|
using System.Drawing;
|
|
|
|
/// <summary>
|
|
/// Summary description for Class1.
|
|
/// </summary>
|
|
public class ManticoreProgressMeter : StatusBarPanel
|
|
{
|
|
public ManticoreProgressMeter()
|
|
{
|
|
this.Style = StatusBarPanelStyle.OwnerDraw;
|
|
}
|
|
|
|
}
|
|
}
|