示例#1
0
 //displays featured page
 private void button5_Click(object sender, EventArgs e)
 {
     Form5 f = new Form5();
     this.Hide();
     f.Show();
 }
示例#2
0
 private void btnFeature_Click(object sender, EventArgs e)
 {
     Form5 f = new Form5();
     this.Hide();
     f.Show();
 }
示例#3
0
文件: Form3.cs 项目: Tampa2016/team-6
 //display featured tab
 private void button2_Click(object sender, EventArgs e)
 {
     Form5 f = new Form5();
     list.searchString = textBox1.Text;
     this.Hide();
     f.Show();
 }