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.
例如,当我在文本框中写数字时,我想要:我在文本框中写数字 4,然后单击 Richtextbox 中的按钮我有四个“A”(AAAA)在 Richtextbox 中写数字 6 我有六个“A”(AAAAAA)
var sb = new StringBuilder(); for(int i = 0 i < int.Parse(textBox.Text); i++) { sb.Append("A"); } rtb.Text = sb.ToString()