返回列表 發帖

[隋堂測驗]Windows Form應用程式專案_三

請同學們使用剛剛的單元進行修改,改使用標籤控制列顯示數值,如以下畫面

  1. namespace WinFormsApp1
  2. {
  3.     public partial class Form1 : Form
  4.     {
  5.         public Form1()
  6.         {
  7.             InitializeComponent();
  8.         }

  9.         private void label1_Click(object sender, EventArgs e)
  10.         {

  11.         }

  12.         private void button2_Click(object sender, EventArgs e)
  13.         {
  14.             int num = Convert.ToInt16(lb1Output.Text);//轉短整數
  15.             num++;
  16.             lb1Output.Text = num.ToString();
  17.         }

  18.         private void button1_Click(object sender, EventArgs e)
  19.         {
  20.             lb1Output.Text = "0";
  21.         }
  22.     }
  23. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
istak.teach2@gmail.com

返回列表