Esempio n. 1
0
 public static TXaml LoadFromXaml <TXaml>(this TXaml view, string xaml)
 {
     XamlLoader.Load(view, xaml);
     return(view);
 }
Esempio n. 2
0
 public static T LoadObject <T>(string path)
 {
     return(XamlLoader.LoadObject <T>(path));
 }
Esempio n. 3
0
 public static TXaml LoadFromXaml <TXaml>(this TXaml view, Type callingType)
 {
     XamlLoader.Load(view, callingType);
     return(view);
 }