示例#1
0
 public WallAnswerView(WallViewHost parent)
 {
     InitializeComponent();
     ansTiles[0] = ans0_tile;
     ansTiles[1] = ans1_tile;
     ansTiles[2] = ans2_tile;
     ansTiles[3] = ans3_tile;
     this.parent = parent;
 }
 private void metroButton2_Click(object sender, EventArgs e)
 {
     try
     {
         int          uid      = int.Parse(((KalutInfo)myfav_kaluts_lst.SelectedItem).UID);
         WallViewHost wallview = new WallViewHost(uid, parent);
         Hide();
         wallview.Show();
     }
     catch { }
 }
示例#3
0
 public WaitForPlayersView(WallViewHost parent)
 {
     InitializeComponent();
     this.parent = parent;
 }