Пример #1
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
 }
Пример #2
0
 public RunQueryEvent(IResultsTarget target)
 {
     ResultsTarget = target;
     RunStyle      = new RunStyle("Run", RunStyleIcons.RunOnly, false, false, false, "");
 }
Пример #3
0
 public NewDocumentEvent(IResultsTarget target)
 {
     _target = target;
 }
Пример #4
0
 public NewDocumentEvent(IResultsTarget target, DocumentViewModel activeDocument)
 {
     _target        = target;
     ActiveDocument = activeDocument;
 }
Пример #5
0
 public RunQueryEvent(IResultsTarget target)
 {
     ResultsTarget = target;
     ClearCache    = false;
 }
Пример #6
0
 public RunQueryEvent(IResultsTarget target, bool clearCache)
 {
     ResultsTarget = target;
     ClearCache    = clearCache;
 }
Пример #7
0
 public QueryResultsPaneMessageEvent(IResultsTarget target)
 {
     _target = target;
 }
 public QueryResultsPaneMessageEvent(IResultsTarget target)
 {
     _target = target;
 }
Пример #9
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle, bool isBenchmark)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
     IsBenchmark   = isBenchmark;
 }
Пример #10
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
     IsBenchmark   = false;
 }
Пример #11
0
 public NewDocumentEvent(IResultsTarget target)
 {
     _target = target;
 }