BBDInstaller/BandagedBD/Panels/IPanel.cs

13 lines
311 B
C#
Raw Normal View History

2018-10-29 07:15:48 +01:00
using System.Windows.Forms;
namespace BandagedBD.Panels {
public interface IPanel {
void OnShow();
void SetWindow(FormMain window);
string Title { get; }
UserControl Control { get; }
PanelTypes PreviousPanel { get; }
PanelTypes NextPanel { get; }
}
}