using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace c4_1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { label1.Text = ""; label1.ForeColor = Color.Brown; label1.Font = new Font("標楷體", 30, FontStyle.Bold); for (int i=1; i<=10;i++ ) { label1.Text += "生日快樂\r\n"; } } private void label1_Click(object sender, EventArgs e) { } private void Form1_Load(object sender, EventArgs e) { } } }