Changeset 562 for branches/eraser6/Eraser/SettingsPanel.cs
- Timestamp:
- 11/14/2008 8:43:37 AM (4 years ago)
- File:
-
- 1 edited
-
branches/eraser6/Eraser/SettingsPanel.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/SettingsPanel.cs
r561 r562 375 375 } 376 376 } 377 378 internal class EraserSettings379 {380 public EraserSettings()381 {382 settings = Manager.ManagerLibrary.Instance.SettingsManager.ModuleSettings;383 }384 385 /// <summary>386 /// Gets or sets a value containing the language the UI should be displayed in.387 /// </summary>388 public string Language389 {390 get391 {392 return (string)settings["Language"];393 }394 set395 {396 settings["Language"] = value;397 }398 }399 400 /// <summary>401 /// Gets or sets a value on whether the main frame should be minimised to the402 /// system notification area.403 /// </summary>404 public bool HideWhenMinimised405 {406 get407 {408 return (bool)settings["HideWhenMinimised"];409 }410 set411 {412 settings["HideWhenMinimised"] = value;413 }414 }415 416 private Manager.Settings settings;417 }418 377 } 419 378
Note: See TracChangeset
for help on using the changeset viewer.
