コード例 #1
0
ファイル: ShowListForm.cs プロジェクト: kbrimm/TrotTrax
 // Existing show form.
 public ShowListForm(string clubID, int year, int showNo)
 {
     ActiveShow = new Show(clubID, year, showNo);
     InitializeComponent();
     SetExistingData();
 }
コード例 #2
0
ファイル: ShowListForm.cs プロジェクト: kbrimm/TrotTrax
 // Refresh to existing show form.
 private void RefreshForm(string clubID, int year, int showNo)
 {
     ActiveShow = new Show(clubID, year, showNo);
     SetExistingData();
 }
コード例 #3
0
ファイル: ShowListForm.cs プロジェクト: kbrimm/TrotTrax
 // New show form.
 public ShowListForm(string clubID, int year)
 {
     ActiveShow = new Show(clubID, year);
     InitializeComponent();
     SetNewData();
 }
コード例 #4
0
ファイル: ShowListForm.cs プロジェクト: kbrimm/TrotTrax
 // Refresh to new show form.
 private void RefreshForm(string clubID, int year)
 {
     ActiveShow = new Show(clubID, year);
     SetNewData();
 }