如果我使用它从我的主窗口传递一个字符串到我的自定义控件,那么我将如何在我的自定义控件中捕获它?
private void btnGeneral_Click(object sender, RoutedEventArgs e)
{
string myText = (string)Application.Current.Properties[textBox1.Text];
}
如果我使用它从我的主窗口传递一个字符串到我的自定义控件,那么我将如何在我的自定义控件中捕获它?
private void btnGeneral_Click(object sender, RoutedEventArgs e)
{
string myText = (string)Application.Current.Properties[textBox1.Text];
}
你就是这样做的:
//To Set:
App.Current.Properties["TextBoxString"] = textBox1.Text;
//To Get:
string myProperty = (string) App.Current.Properties["TextBoxString"];
查看这篇文章,了解在 WPF 应用程序中访问 Application 对象