Beispiel #1
0
 public SettingsWindow(EditableSettings config)
 {
     InitializeComponent();
     this.DataContext = this;
     Config           = config.DeepCopy();
 }
 public SmtpSettings(ISettingsService settings)
 {
     this.editableSettings = new EditableSettings("smtp", settings);
 }
 public NewsletterSettings(ISettingsService service)
 {
     editableSettings = new EditableSettings("newsletter",service);
 }
 public HashingSettings(ISettingsService service)
 {
     editableSettings = new EditableSettings("hashing", service);
 }