mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
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;
|
|
}
|
|
|
|
}
|
|
}
|