摘要: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)Applicatio
Page1.xaml.cs
String name=((App)Appl
至於Page如何轉至Page1
摘要: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)Applicatio
Page1.xaml.cs
String name=((App)Appl
至於Page如何轉至Page1