コード例 #1
1
ファイル: MiscOptions.cs プロジェクト: GreenDamTan/dnSpy
		AppMiscOptionCreator(MessageBoxManager messageBoxManager, AppSettingsImpl appSettings) {
			this.messageBoxManager = messageBoxManager;
			this.appSettings = appSettings;
		}
コード例 #2
0
ファイル: MiscOptions.cs プロジェクト: zhangguanjiong/dnSpy
 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;
 }
コード例 #3
0
ファイル: MiscOptions.cs プロジェクト: GreenDamTan/dnSpy
		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;
		}
コード例 #4
0
ファイル: MiscOptions.cs プロジェクト: zhangguanjiong/dnSpy
 AppMiscOptionProvider(MessageBoxManager messageBoxManager, AppSettingsImpl appSettings)
 {
     this.messageBoxManager = messageBoxManager;
     this.appSettings       = appSettings;
 }