This commit is contained in:
parent
b8b82bc5c6
commit
4eff5d3d04
2 changed files with 21 additions and 6 deletions
|
|
@ -1,16 +1,20 @@
|
||||||
<Properties>
|
<Properties>
|
||||||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug|x86" />
|
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug|x86" />
|
||||||
<MonoDevelop.Ide.Workbench ActiveDocument="DMX-2.0/MainWindow.cs">
|
<MonoDevelop.Ide.Workbench ActiveDocument="DMX-2.0/SeqLinUI.cs">
|
||||||
<Files>
|
<Files>
|
||||||
<File FileName="DMX-2.0/Conduite.cs" Line="112" Column="5" />
|
<File FileName="DMX-2.0/Conduite.cs" Line="40" Column="23" />
|
||||||
<File FileName="DMX-2.0/AssemblyInfo.cs" Line="1" Column="1" />
|
<File FileName="DMX-2.0/AssemblyInfo.cs" Line="1" Column="1" />
|
||||||
<File FileName="DMX-2.0/UniversDMX.cs" Line="20" Column="13" />
|
<File FileName="DMX-2.0/UniversDMX.cs" Line="20" Column="13" />
|
||||||
<File FileName="DMX-2.0/Sequenceur.cs" Line="39" Column="37" />
|
<File FileName="DMX-2.0/Sequenceur.cs" Line="42" Column="4" />
|
||||||
<File FileName="DMX-2.0/SequenceurLineaire.cs" Line="34" Column="37" />
|
<File FileName="DMX-2.0/SequenceurLineaire.cs" Line="9" Column="3" />
|
||||||
<File FileName="DMX-2.0/IDriverDMX.cs" Line="13" Column="1" />
|
<File FileName="DMX-2.0/IDriverDMX.cs" Line="13" Column="1" />
|
||||||
<File FileName="DMX-2.0/Main.cs" Line="17" Column="4" />
|
<File FileName="DMX-2.0/Main.cs" Line="17" Column="4" />
|
||||||
<File FileName="DMX-2.0/GestionCircuits.cs" Line="41" Column="29" />
|
<File FileName="DMX-2.0/MainWindow.cs" Line="74" Column="4" />
|
||||||
<File FileName="DMX-2.0/MainWindow.cs" Line="46" Column="27" />
|
<File FileName="DMX-2.0/SeqLinUI.cs" Line="38" Column="4" />
|
||||||
|
<File FileName="DMX-2.0/SequenceurUI.cs" Line="21" Column="3" />
|
||||||
|
<File FileName="DMX-2.0.sln" Line="4" Column="89" />
|
||||||
|
<File FileName="DMX-2.0/SelSeqCircuits.cs" Line="16" Column="18" />
|
||||||
|
<File FileName="DMX-2.0/GestionCircuits.cs" Line="104" Column="33" />
|
||||||
</Files>
|
</Files>
|
||||||
</MonoDevelop.Ide.Workbench>
|
</MonoDevelop.Ide.Workbench>
|
||||||
<MonoDevelop.Ide.DebuggingService.Breakpoints>
|
<MonoDevelop.Ide.DebuggingService.Breakpoints>
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ namespace DMX2
|
||||||
this.Build ();
|
this.Build ();
|
||||||
titreLabel.Text = s.Name;
|
titreLabel.Text = s.Name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void Update ()
|
public override void Update ()
|
||||||
{
|
{
|
||||||
throw new System.NotImplementedException ();
|
throw new System.NotImplementedException ();
|
||||||
|
|
@ -24,12 +25,22 @@ namespace DMX2
|
||||||
}
|
}
|
||||||
dlg.Destroy();
|
dlg.Destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void OnCloseActionActivated (object sender, EventArgs e)
|
protected void OnCloseActionActivated (object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Destroy();
|
Destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected void FullUpdate ()
|
||||||
|
{
|
||||||
|
// TODO : ici : Remise a plat de l'UI , Ajout/agencement des tirettes et descriptions
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void UpdateValues()
|
||||||
|
{
|
||||||
|
// TODO : ici : maj du temps, des progressbar et des tirettes
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue