vergessene commit

This commit is contained in:
Husky
2018-07-21 12:24:23 +02:00
parent 20388f5603
commit 53fa3789f2
28 changed files with 307 additions and 14 deletions

View File

@@ -10,21 +10,39 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class FrmSelectNewSan : Form
{
/// <summary>
///
/// </summary>
public event EventHandler AddInlinerClicked;
/// <summary>
///
/// </summary>
public event EventHandler AddSchachtAnbindungClicked;
/// <summary>
///
/// </summary>
protected virtual void OnAddSchachtAnbindungClicked(EventArgs e)
{
EventHandler handler = AddSchachtAnbindungClicked;
if (handler != null) handler(this, e);
}
/// <summary>
///
/// </summary>
protected virtual void OnAddInlinerClicked(EventArgs e)
{
EventHandler handler = AddInlinerClicked;
if (handler != null) handler(this, e);
}
/// <summary>
///
/// </summary>
public FrmSelectNewSan()
{
InitializeComponent();