Example #1
0
        private void ComputeTA_Click(object sender, RoutedEventArgs e)
        {
            SelectionWindow SlW = new SelectionWindow();

            SlW.Show();
            SlW.Owner = this;
            SlW.Show();
            Project.SaveProject();
        }
Example #2
0
 public SelectionWindow()
 {
     GeneratePairs();
     InitializeComponent();
     this.Title = "ANIb and TETRA calculation";
     main       = this;
     lbSelection.ItemsSource = uniqueFastaPairs;
     btnCancel.IsEnabled     = true;
     btnCompute.IsEnabled    = true;
     lbSelection.IsEnabled   = true;
 }