我正在使用 wpf,我想将一些 textbox.text 字符串的参数从我的主窗口单击按钮传递到我的 appPages 文件夹中包含的用户控件,我该如何实现呢?
我想将它发送到的应用程序控件称为 FindCurrentStudent,我不喜欢要求直接代码,但我真的找不到任何东西?
我的想法是这样的:
private void btnGeneral_Click(string _value, object sender, RoutedEventArgs e)
{
string value = textBox1.Text;
AppPages.FindCurrentStudent v1 = new AppPages.FindCurrentStudent(value);
//does not contain a constructor?
value = _value;
然后从 customcontrol 我可以这样称呼它:
string MainWindowValue = value;