1

如果我使用它从我的主窗口传递一个字符串我的自定义控件,那么我将如何在我的自定义控件中捕获它?

    private void btnGeneral_Click(object sender, RoutedEventArgs e)
    {
        string myText = (string)Application.Current.Properties[textBox1.Text];
    }
4

1 回答 1

1

你就是这样做的:

//To Set:    
App.Current.Properties["TextBoxString"] = textBox1.Text;
//To Get:
string myProperty = (string) App.Current.Properties["TextBoxString"];

查看这篇文章,了解在 WPF 应用程序中访问 Application 对象

于 2012-04-17T16:44:15.350 回答