将表单1中的值drom文本框传递到文本框表单2而不使用按钮

将表单1中的值drom文本框传递到文本框表单2而不使用按钮

本文介绍了将表单1中的值drom文本框传递到文本框表单2而不使用按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在第二个框中获取相同的文本,该文本位于另一个没有单击按钮的表单中?

在同一表单中,第一个框架正常工作。





private void Profile_SelectedIndexChanged(对象发送者,EventArgs e)

{

//名称空间HowToUseACombobox

ActiveProfile.Text = Profile.Text ;;

//}命名空间WordDocument1

ActiveProfile.Text = Daily_Name ;;





我尝试了什么:



我试过的是注释中的描述

How can I get the same Text in the second box, that is located in another form without a button click?
Within the same Form the first one is working correctly.


private void Profile_SelectedIndexChanged(object sender, EventArgs e)
{
//namespace HowToUseACombobox
ActiveProfile.Text = Profile.Text;;
// }namespace WordDocument1
ActiveProfile.Text = Daily_Name;;
)

What I have tried:

What I have tried is descript in the comment

推荐答案


这篇关于将表单1中的值drom文本框传递到文本框表单2而不使用按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 17:12