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