コード例 #1
0
 public PlayStrip(SFX SFX) : this()
 {
     this.SFX = SFX;
     UpdateFileButton();
 }
コード例 #2
0
ファイル: Show.cs プロジェクト: adrianwadey/SFXPlayer
 internal void AddCue(SFX SFX, int Index)
 {
     Cues.Insert(Index, SFX);
 }
コード例 #3
0
 public PlayStrip()
 {
     InitializeComponent();
     InitializeSound();
     SFX = new SFX();
 }
コード例 #4
0
ファイル: Show.cs プロジェクト: adrianwadey/SFXPlayer
 internal void RemoveCue(SFX sfx)
 {
     Cues.Remove(sfx);
 }