public ValueTable(StAnalyzeResult stAnalyzeResult)
 {
     this.valueTableCaller = ValueTableCaller.StatisticAnalyzer;
     this.currentResult = stAnalyzeResult;
     this.currentOption = this.currentResult.result.Keys.First<AnalyseOptions>();
     InitializeComponent();
 }
 public ValueTable(AnalyseOptions option, Graphic caller)
 {
     this.parent = caller;
     this.currentOption = option;
     this.valueTableCaller = ValueTableCaller.Graphic;
     InitializeComponent();
 }