Interaction logic for Application.xaml
Inheritance: System.Windows.Application
 private void AboutClick(object sender, RoutedEventArgs e)
 {
     BenchmarkApplication.About(this.winsole);
     if (sender != null)
     {
         new BrowserForm(@"http://www.luschny.de/math/factorial/csharp/CsharpIndex.html").Show();
     }
 }
        public BenchmarkWindow()
        {
            this.InitializeComponent();
            this.InitAlgoBoxes();

            this.StepBox.SelectedItem = "2.0";
            this.test = new TestParameters(NumOfCandidates);

            this.winsole   = new LoggedTextBox(this.TextBox);
            this.benchmark = new BenchmarkWorker(this.winsole);

            this.LogToFileCheckBox.IsChecked = true;
            this.winsole.LogToFile           = true;

            BenchmarkApplication.PrintAppAndSysProps(this.winsole);
            this.InitializeBackgoundWorker();
        }