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.
我基本上需要将用户输入的文本转换为文本框,然后将其放入另一种形式。有人知道怎么做吗?这是在 VB c# 中。
假设 WinForms 并假设您的两个表单在同一个解决方案中(VB.NET):
Form2.TextBox1.Text = Form1.TextBox1.Text
您可以通过在通过 Form1 调用它时在 Form2 的构造函数中传递这个值来做到这一点