Exemplo n.º 1
0
 void menuBrief_Click(object sender, EventArgs e)
 {
     Common.Title(this, false);
     try { _fBrief.Close(); }
     catch { /* do nothing */ }
     _fBrief = new BriefingForm(_mission.FlightGroups, _mission.Briefings);
     _fBrief.Show();
 }
Exemplo n.º 2
0
 void menuBrief_Click(object sender, EventArgs e)
 {
     Common.Title(this, false);
     try { _fBrief.Close(); }  //[JB] Prevent opening multiple dialogs. Same as XvT code.
     catch { /* do nothing */ }
     _fBrief = new BriefingForm(_mission.Briefings);
     _fBrief.Show();
 }