Silverlight 2.0小技巧(5) Passing Values Between XAML Pages

摘要:Silverlight 2.0小技巧(5) Passing Values Between XAML Pages

在XAML 間傳值的方法例如:Page 把"Kiwi" 傳至 Pag1


App.xaml.cs

public string Name { get; set; } //宣告Name 變數


Page.xaml.cs

( (App)Application.Current).Name ="Kiwi";//將Name變數塞入kiwi


Page1.xaml.cs

String name=((App)Application.Current).Name; //取出Name 值
 


至於Page如何轉至Page1 請參考Silverlight 2.0小技巧(4) ReDirectXmalPage