Exemple #1
0
 public static void SetInvalidPathAlertMessage(IExplorer i, string input) => i.As <DependencyObject>().SetValue(InvalidPathAlertMessageProperty, input);
Exemple #2
0
 public static string GetInvalidPathAlertMessage(IExplorer i) => (string)i.As <DependencyObject>().GetValue(InvalidPathAlertMessageProperty);
Exemple #3
0
 public static void SetInvalidPathAlert(IExplorer i, bool input) => i.As <DependencyObject>().SetValue(InvalidPathAlertProperty, input);
Exemple #4
0
 public static bool GetInvalidPathAlert(IExplorer i) => (bool)i.As <DependencyObject>().GetValue(InvalidPathAlertProperty);
Exemple #5
0
 public static void SetPath(IExplorer i, string input) => i.As <DependencyObject>().SetValue(PathProperty, input);
Exemple #6
0
 public static string GetPath(IExplorer i) => (string)i.As <DependencyObject>().GetValue(PathProperty);