Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
[移動] ボタンをクリックすると、テキスト ボックスに指定された名前がリンク ラベルとして表示され、これは動的にインクリメントされます。
ここに私のコード:
private void buttongo_Click(object sender, EventArgs e) { linkLabelName.Text = textBoxName.Text; }
private void btnGo_Click(object sender, EventArgs e) { LinkLabel link = new LinkLabel(); link.Text = txtText.Text; panTable.Controls.Add(link); }