mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
d495f6f7ae
Make preferences dialog work (PrefPanel class for preference panel switching, loading of preferences, saving of preferences, initial Browser Display panel)
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;
|
|
}
|
|
|
|
}
|
|
}
|