public GeneralAppSettingsPage(HexEditorOptions options, Guid guid)
     : base(options)
 {
     this.options = options;
     this.guid    = guid;
 }
		public ScrollBarsAppSettingsPage(HexEditorOptions options, Guid guid)
			: base(options) {
			this.options = options;
			this.guid = guid;
		}
		public GeneralAppSettingsPage(HexEditorOptions options, Guid guid)
			: base(options) {
			this.options = options;
			this.guid = guid;
		}
Beispiel #4
0
 public ScrollBarsAppSettingsPage(HexEditorOptions options, Guid guid)
     : base(options)
 {
     this.options = options;
     this.guid    = guid;
 }
Beispiel #5
0
        HexEditorOptionsServiceImpl(HexViewOptionsGroupService hexViewOptionsGroupService, [ImportMany] IEnumerable <Lazy <HexEditorOptionsDefinition, IHexEditorOptionsDefinitionMetadata> > hexEditorOptionsDefinitions)
        {
            var group = hexViewOptionsGroupService.GetGroup(PredefinedHexViewGroupNames.HexEditor);

            Options = hexEditorOptionsDefinitions.Select(a => HexEditorOptions.TryCreate(group, a.Metadata)).Where(a => a != null).ToArray();
        }