diff --git a/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/DesignTimeProperties.cs b/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/DesignTimeProperties.cs index e58f6957ee..74cac07867 100644 --- a/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/DesignTimeProperties.cs +++ b/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/DesignTimeProperties.cs @@ -9,108 +9,108 @@ namespace ICSharpCode.WpfDesign.XamlDom /// /// Helper Class for the Design Time Properties used by VS and Blend /// - public class DesignTimeProperties : FrameworkElement - { - #region IsHidden - - public static bool GetIsHidden(DependencyObject obj) - { - return (bool)obj.GetValue(IsHiddenProperty); - } - - public static void SetIsHidden(DependencyObject obj, bool value) - { - obj.SetValue(IsHiddenProperty, value); - } - - public static readonly DependencyProperty IsHiddenProperty = - DependencyProperty.RegisterAttached("IsHidden", typeof(bool), typeof(DesignTimeProperties)); - - #endregion - - #region IsLocked - - public static bool GetIsLocked(DependencyObject obj) - { - return (bool)obj.GetValue(IsLockedProperty); - } - - public static void SetIsLocked(DependencyObject obj, bool value) - { - obj.SetValue(IsLockedProperty, value); - } - - public static readonly DependencyProperty IsLockedProperty = - DependencyProperty.RegisterAttached("IsLocked", typeof(bool), typeof(DesignTimeProperties)); - - #endregion - - #region DataContext - - public static object GetDataContext(DependencyObject obj) - { - return (object)obj.GetValue(DataContextProperty); - } - - public static void SetDataContext(DependencyObject obj, bool value) - { - obj.SetValue(DataContextProperty, value); - } - - public static readonly DependencyProperty DataContextProperty = - DependencyProperty.RegisterAttached("DataContext", typeof(object), typeof(DesignTimeProperties)); - - #endregion - - #region DesignSource - - public static object GetDesignSource(DependencyObject obj) - { - return (object)obj.GetValue(DesignSourceProperty); - } - - public static void SetDesignSource(DependencyObject obj, bool value) - { - obj.SetValue(DesignSourceProperty, value); - } - - public static readonly DependencyProperty DesignSourceProperty = - DependencyProperty.RegisterAttached("DesignSource", typeof(object), typeof(DesignTimeProperties)); - - #endregion - - #region DesignWidth - - public static double GetDesignWidth(DependencyObject obj) - { - return (double)obj.GetValue(DesignWidthProperty); - } - - public static void SetDesignWidth(DependencyObject obj, double value) - { - obj.SetValue(DesignWidthProperty, value); - } - - public static readonly DependencyProperty DesignWidthProperty = - DependencyProperty.RegisterAttached("DesignWidth", typeof(double), typeof(DesignTimeProperties)); - - #endregion - - #region DesignHeight - - public static double GetDesignHeight(DependencyObject obj) - { - return (double)obj.GetValue(DesignHeightProperty); - } - - public static void SetDesignHeight(DependencyObject obj, double value) - { - obj.SetValue(DesignHeightProperty, value); - } - - public static readonly DependencyProperty DesignHeightProperty = - DependencyProperty.RegisterAttached("DesignHeight", typeof(double), typeof(DesignTimeProperties)); - - #endregion - } + public class DesignTimeProperties : FrameworkElement + { + #region IsHidden + + public static bool GetIsHidden(DependencyObject obj) + { + return (bool)obj.GetValue(IsHiddenProperty); + } + + public static void SetIsHidden(DependencyObject obj, bool value) + { + obj.SetValue(IsHiddenProperty, value); + } + + public static readonly DependencyProperty IsHiddenProperty = + DependencyProperty.RegisterAttached("IsHidden", typeof(bool), typeof(DesignTimeProperties)); + + #endregion + + #region IsLocked + + public static bool GetIsLocked(DependencyObject obj) + { + return (bool)obj.GetValue(IsLockedProperty); + } + + public static void SetIsLocked(DependencyObject obj, bool value) + { + obj.SetValue(IsLockedProperty, value); + } + + public static readonly DependencyProperty IsLockedProperty = + DependencyProperty.RegisterAttached("IsLocked", typeof(bool), typeof(DesignTimeProperties)); + + #endregion + + #region DataContext + + public static object GetDataContext(DependencyObject obj) + { + return (object)obj.GetValue(DataContextProperty); + } + + public static void SetDataContext(DependencyObject obj, bool value) + { + obj.SetValue(DataContextProperty, value); + } + + public static readonly DependencyProperty DataContextProperty = + DependencyProperty.RegisterAttached("DataContext", typeof(object), typeof(DesignTimeProperties)); + + #endregion + + #region DesignSource + + public static object GetDesignSource(DependencyObject obj) + { + return (object)obj.GetValue(DesignSourceProperty); + } + + public static void SetDesignSource(DependencyObject obj, bool value) + { + obj.SetValue(DesignSourceProperty, value); + } + + public static readonly DependencyProperty DesignSourceProperty = + DependencyProperty.RegisterAttached("DesignSource", typeof(object), typeof(DesignTimeProperties)); + + #endregion + + #region DesignWidth + + public static double GetDesignWidth(DependencyObject obj) + { + return (double)obj.GetValue(DesignWidthProperty); + } + + public static void SetDesignWidth(DependencyObject obj, double value) + { + obj.SetValue(DesignWidthProperty, value); + } + + public static readonly DependencyProperty DesignWidthProperty = + DependencyProperty.RegisterAttached("DesignWidth", typeof(double), typeof(DesignTimeProperties)); + + #endregion + + #region DesignHeight + + public static double GetDesignHeight(DependencyObject obj) + { + return (double)obj.GetValue(DesignHeightProperty); + } + + public static void SetDesignHeight(DependencyObject obj, double value) + { + obj.SetValue(DesignHeightProperty, value); + } + + public static readonly DependencyProperty DesignHeightProperty = + DependencyProperty.RegisterAttached("DesignHeight", typeof(double), typeof(DesignTimeProperties)); + + #endregion + } } diff --git a/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/MarkupCompatibilityProperties.cs b/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/MarkupCompatibilityProperties.cs index 477e79fa9f..29f6bae744 100644 --- a/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/MarkupCompatibilityProperties.cs +++ b/src/AddIns/DisplayBindings/WpfDesign/WpfDesign.XamlDom/Project/MarkupCompatibilityProperties.cs @@ -9,23 +9,23 @@ namespace ICSharpCode.WpfDesign.XamlDom /// /// Helper Class for the Markup Compatibility Properties used by VS and Blend /// - public class MarkupCompatibilityProperties : FrameworkElement - { - #region Ignorable + public class MarkupCompatibilityProperties : FrameworkElement + { + #region Ignorable - public static string GetIgnorable(DependencyObject obj) - { - return (string)obj.GetValue(IgnorableProperty); - } + public static string GetIgnorable(DependencyObject obj) + { + return (string)obj.GetValue(IgnorableProperty); + } - public static void SetIgnorable(DependencyObject obj, string value) - { - obj.SetValue(IgnorableProperty, value); - } + public static void SetIgnorable(DependencyObject obj, string value) + { + obj.SetValue(IgnorableProperty, value); + } - public static readonly DependencyProperty IgnorableProperty = - DependencyProperty.RegisterAttached("Ignorable", typeof(string), typeof(MarkupCompatibilityProperties)); - - #endregion - } + public static readonly DependencyProperty IgnorableProperty = + DependencyProperty.RegisterAttached("Ignorable", typeof(string), typeof(MarkupCompatibilityProperties)); + + #endregion + } }