23 lines
237 B
C#
23 lines
237 B
C#
using System;
|
|
|
|
namespace DMX2
|
|
{
|
|
public partial class GestionMidiUI : Gtk.Dialog
|
|
{
|
|
|
|
|
|
|
|
public GestionMidiUI ()
|
|
{
|
|
this.Build ();
|
|
|
|
}
|
|
|
|
protected void OnButtonCloseClicked (object sender, EventArgs e)
|
|
{
|
|
Destroy();
|
|
}
|
|
|
|
}
|
|
}
|
|
|