예제 #1
0
 //displays featured page
 private void button5_Click(object sender, EventArgs e)
 {
     Form5 f = new Form5();
     this.Hide();
     f.Show();
 }
예제 #2
0
파일: Search.cs 프로젝트: Tampa2016/team-6
 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();
 }