suite
This commit is contained in:
parent
6cf4af9c58
commit
8bff9be4ee
1 changed files with 10 additions and 5 deletions
|
|
@ -19,12 +19,8 @@ namespace DMX2
|
||||||
effetChange = true;
|
effetChange = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public SeqMacroUI (SequenceurMacro s ) : base (s)
|
protected void ConstruitMatrice ()
|
||||||
{
|
{
|
||||||
this.Build ();
|
|
||||||
titreLabel.Text = s.Name;
|
|
||||||
sequenceur = s;
|
|
||||||
|
|
||||||
var idCol = new Gtk.TreeViewColumn ();
|
var idCol = new Gtk.TreeViewColumn ();
|
||||||
var idCell = new Gtk.CellRendererText ();
|
var idCell = new Gtk.CellRendererText ();
|
||||||
idCol.Title = "Num";
|
idCol.Title = "Num";
|
||||||
|
|
@ -80,6 +76,15 @@ namespace DMX2
|
||||||
|
|
||||||
lsMatrice = new Gtk.ListStore(typeof (SequenceurMaitre.Ligne)); // a modifier
|
lsMatrice = new Gtk.ListStore(typeof (SequenceurMaitre.Ligne)); // a modifier
|
||||||
this.MatriceUI.Model = lsMatrice;
|
this.MatriceUI.Model = lsMatrice;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SeqMacroUI (SequenceurMacro s ) : base (s)
|
||||||
|
{
|
||||||
|
this.Build ();
|
||||||
|
titreLabel.Text = s.Name;
|
||||||
|
sequenceur = s;
|
||||||
|
ConstruitMatrice ();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue