22 lines
385 B
C#
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
|
|
|
|
}
|
|
}
|
|
|