Exemplo n.º 1
0
 public HexMarkerTagger(HexViewSearchServiceProvider hexViewSearchServiceProvider, WpfHexView wpfHexView)
 {
     if (hexViewSearchServiceProvider == null)
     {
         throw new ArgumentNullException(nameof(hexViewSearchServiceProvider));
     }
     if (wpfHexView == null)
     {
         throw new ArgumentNullException(nameof(wpfHexView));
     }
     hexViewSearchService = hexViewSearchServiceProvider.Get(wpfHexView);
     hexViewSearchService.RegisterHexMarkerListener(this);
 }
Exemplo n.º 2
0
 public CommandTargetFilter(HexViewSearchServiceProvider hexViewSearchServiceProvider, WpfHexView wpfHexView)
 {
     hexViewSearchService = hexViewSearchServiceProvider.Get(wpfHexView);
 }
Exemplo n.º 3
0
 HexMarkerTaggerProvider(HexViewSearchServiceProvider hexViewSearchServiceProvider) => this.hexViewSearchServiceProvider = hexViewSearchServiceProvider;
Exemplo n.º 4
0
		public CommandTargetFilterFocus(HexViewSearchServiceProvider hexViewSearchServiceProvider, WpfHexView wpfHexView) {
			hexViewSearchService = hexViewSearchServiceProvider.Get(wpfHexView);
		}