2015年10月30日 星期五

吳宗晏   d0250582
推盤



 public partial class Form1 : Form
    {
        Button[,] Buttons = new System.Windows.Forms.Button[5, 5];
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            for (int i = 1; i < 5; i++)
            {
                for (int j = 1; j < 5; j++)
                {
                    Buttons[i, j] = new Button();
                    Buttons[i, j].Size = new Size(50, 50);
                    Buttons[i, j].Location = new Point(i * 50, j * 50);
                    this.Controls.Add(Buttons[i, j]);//出現在畫面中
                }
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int pro = 0;
            for (int i = 1; i < 5; i++)
            {
                for (int j = 1; j < 5; j++)
                {
                    pro = i;
                    Buttons[i, 1].Text = pro.ToString();
                    pro = i + j;
                    Buttons[i, 2].Text = pro.ToString();
                    pro = i + 2 * j;
                    Buttons[i, 3].Text = pro.ToString();
                    pro = i + 3 * j;
                    Buttons[i, 4].Text = pro.ToString();

                }



            }
        }

    }
}

沒有留言:

張貼留言