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