程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#編程入門,C#中控件(textBox、checkBox、listBox、listView等等)的應用

C#編程入門,C#中控件(textBox、checkBox、listBox、listView等等)的應用

編輯:C#入門知識

打開Visual Stdio進行編程   1.textBox控件的應用:       為登錄窗口編寫代碼:   private void button1_Click(object sender, EventArgs e)         {             if (textBox2.Text == "123456" || textBox1.Text == " 張三")              { MessageBox.Show("登陸成功");}             else             { MessageBox.Show("檢查姓名和密碼是否正確");}         } 2.checkBox(復選框)控件的應用,完成這個圖的代碼         在顯示個人愛好按鈕添加代碼:   private void button1_Click(object sender, EventArgs e)         {             //在顯示個人愛好按鈕事件中添加代碼             if (textBox1.Text == "")             {                 MessageBox.Show(this,"請輸入姓名","Message",MessageBoxButtons.OK,MessageBoxIcon.Information);             }             else             {                 if (checkBox1.Checked == true && checkBox2.Checked == true)                 textBox2.Text = textBox1.Text + "喜歡" + checkBox1.Text + "和" + checkBox2.Text;             else if (checkBox1.Checked == true && checkBox2.Checked == false)                 textBox2.Text = textBox1.Text + "喜歡" + checkBox1.Text;             else if (checkBox1.Checked == false && checkBox2.Checked == true)                 textBox2.Text = textBox1.Text + "喜歡" + checkBox2.Text;             else if (checkBox1.Checked == false && checkBox2.Checked == false)                 textBox2.Text = "";                }             } 3.listView控件的應用,拉取一個listView控件,設置屬性:   View屬性是DeTails   打開Columns為listView控件添加數據項   結果如下,分別為添加刪除按鈕添加事件處理函數             static int itemNumber = 0;/////受憲法定義一個變量         private void button1_Click(object sender, EventArgs e)         {             //構造條目的子條目字符串數組             String[] subItem = new String[]             {                 textBox1.Text,                 textBox2.Text,                 textBox2.Text             };             //插入新的條目             listView1.Items.Add(new ListViewItem(subItem));             listView1.Items[itemNumber].ImageIndex = 0;             itemNumber++;         }             private void button2_Click(object sender, EventArgs e)         {             for (int i = listView1.SelectedItems.Count - 1; i >= 0; i--)             {                 //獲取當前選中的條目之一                 ListViewItem li = listView1.SelectedItems[i];                 //刪除這個條目                 listView1.Items.Remove(li);                 itemNumber--;             }         }        

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved