gpt4 book ai didi

c# - 在 onChange 事件中从动态创建的 RichTextBox 中获取文本

转载 作者:太空宇宙 更新时间:2023-11-03 19:59:43 24 4
gpt4 key购买 nike

如何从动态创建的 RichTextBox 和动态创建的 rtb TextChanged 事件中获取文本?

例如:

    private void button1_Click(object sender, EventArgs e)
{
RichTextBox rtb = new RichTextBox();
rtb.Name = "rtb" + i;
rtb.Dock = DockStyle.Fill;

rtb.TextChanged += rtb_TextChanged;

Controls.Add(rtb);

}

void rtb_TextChanged(object sender, EventArgs e)
{
//string s = rtb.Text; //How can I get the rtb.Text?
}

最佳答案

您需要使用事件处理程序的 sender 参数:

void rtb_TextChanged(object sender, EventArgs e)
{
RichTextBox rtb = (RichTextBox)sender;
string s = rtb.Text;
//... etc
}

关于c# - 在 onChange 事件中从动态创建的 RichTextBox 中获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29756522/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com