Ignore:
Timestamp:
Jul 29, 2011, 6:05:05 PM (13 years ago)
Author:
bayral
Message:

MAj des truc existant et debut du upload de fichier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoWpf/Helper/AppHelper.cs

    r7160 r11850  
    1111    public class AppHelper
    1212    {
    13         private static bool? _isInDesignMode;
     13        private static Boolean? _isInDesignMode;
    1414
    1515        /// <summary>
     
    1717        /// or Visual Studio).
    1818        /// </summary>
    19         public static bool IsInDesignModeStatic
     19        public static Boolean IsInDesignModeStatic
    2020        {
    2121            get
     
    2525                    var prop = DesignerProperties.IsInDesignModeProperty;
    2626                    _isInDesignMode
    27                         = (bool)DependencyPropertyDescriptor
     27                        = (Boolean)DependencyPropertyDescriptor
    2828                        .FromProperty(prop, typeof(FrameworkElement))
    2929                        .Metadata.DefaultValue;
     
    4242            "CA1822:MarkMembersAsStatic",
    4343            Justification = "Non static member needed for data binding")]
    44         public bool IsInDesignMode
     44        public Boolean IsInDesignMode
    4545        {
    4646            get
Note: See TracChangeset for help on using the changeset viewer.