Example #1
1
		AppMiscOptionCreator(MessageBoxManager messageBoxManager, AppSettingsImpl appSettings) {
			this.messageBoxManager = messageBoxManager;
			this.appSettings = appSettings;
		}
Example #2
0
 public UseNewRendererVM(AppSettingsImpl appSettings)
 {
     this.appSettings = appSettings;
     this.UseNewRenderer_TextEditor   = appSettings.UseNewRenderer_TextEditor;
     this.UseNewRenderer_HexEditor    = appSettings.UseNewRenderer_HexEditor;
     this.UseNewRenderer_FileTreeView = appSettings.UseNewRenderer_FileTreeView;
 }
Example #3
0
		public UseNewRendererVM(AppSettingsImpl appSettings) {
			this.appSettings = appSettings;
			this.UseNewRenderer_TextEditor = appSettings.UseNewRenderer_TextEditor;
			this.UseNewRenderer_HexEditor = appSettings.UseNewRenderer_HexEditor;
			this.UseNewRenderer_FileTreeView = appSettings.UseNewRenderer_FileTreeView;
		}
Example #4
0
 AppMiscOptionProvider(MessageBoxManager messageBoxManager, AppSettingsImpl appSettings)
 {
     this.messageBoxManager = messageBoxManager;
     this.appSettings       = appSettings;
 }