Example #1
0
        private void start_collection(object sender, RoutedEventArgs e)
        {
            /*
             * This function is designed to start a new window which is responsible
             * for executing the PIN tool. The PIN tool execution will generate all
             * the necessary log files, so there is no need to pass any information
             * back to this window
             */
            RunWindow run = new RunWindow();

            run.Show();
        }
Example #2
0
 private void start_collection(object sender, RoutedEventArgs e)
 {
     /*
      * This function is designed to start a new window which is responsible
      * for executing the PIN tool. The PIN tool execution will generate all
      * the necessary log files, so there is no need to pass any information
      * back to this window
      */
     RunWindow run = new RunWindow();
     run.Show();
 }