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