RetroZilla/extensions/manticore/toolkit/ProgressMeter.cs

20 lines
338 B
C#
Raw Normal View History

2015-10-21 05:03:22 +02:00
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;
}
}
}