Exemplo n.º 1
0
 public void Load(AppSettingsBase other)
 {
     if (other != null)
     {
         //this.Placements = other.Placements;
         //this.PlacementsList = other.PlacementsList;
         this.StatusRowHeight = other.StatusRowHeight;
         //this._gridViewColumns = other.GridViewColumns;
     }
 }
Exemplo n.º 2
0
 public void Load(AppSettingsBase other)
 {
     if (other != null)
     {
         this.Placements        = other.Placements;
         this.PlacementsList    = other.PlacementsList;
         this.IconExplorerWidth = other.IconExplorerWidth;
         this.IconViewerWidth   = other.IconViewerWidth;
     }
 }
Exemplo n.º 3
0
 static AppSettings()
 {
     if (_settings != null)
     {
         DEBUG.Break();
     }
     if (CONSTRUCTOR_ACTION == BaseSettingsConstructor.Load)
     {
         Load();
     }
     else if (CONSTRUCTOR_ACTION == BaseSettingsConstructor.Default)
     {
         AppSetting = new AppSettingsBase();
     }
     DEBUG.Noop();
 }
Exemplo n.º 4
0
 public static void Load()
 {
     AppSetting = AppSettingsBase.Load();
 }