loupiottes/DMX-2.0/SeqLinUI.cs
2013-04-10 18:08:26 +00:00

22 lines
385 B
C#

using System;
namespace DMX2
{
[System.ComponentModel.ToolboxItem(true)]
public partial class SeqLinUI : SequenceurUI
{
public SeqLinUI () : base (null)
{
this.Build ();
titreLabel.Text ="Hello !";
}
#region implemented abstract members of DMX2.SequenceurUI
public override void Update ()
{
throw new System.NotImplementedException ();
}
#endregion
}
}