【发布时间】:2013-03-08 12:59:11
【问题描述】:
我正在使用 C# 和 XAML 开发 Windows 应用商店应用程序。从一页移动到另一页时,我想传递一个字符串。例如,
private void filterData_Click(object sender, RoutedEventArgs e)
{
string str="mydata";
this.Frame.Navigate(typeof(QualityRecordsResults));
}
我需要 QualityRecordsResults.xaml.cs 文件中的这个 str 值。
【问题讨论】:
标签: c# xaml windows-store-apps