Ejemplo n.º 1
0
 public HexToolTipServiceQuickInfoSource(HexToolTipService hexToolTipService)
 {
     if (hexToolTipService == null)
     {
         throw new ArgumentNullException(nameof(hexToolTipService));
     }
     this.hexToolTipService = hexToolTipService;
 }
Ejemplo n.º 2
0
 public HexToolTipServiceTagger(HexToolTipService hexToolTipService)
 {
     if (hexToolTipService == null)
     {
         throw new ArgumentNullException(nameof(hexToolTipService));
     }
     this.hexToolTipService = hexToolTipService;
     hexToolTipService.RegisterTagger(this);
 }