示例#1
0
 private void Select_Output_Folder(object sender, RoutedEventArgs e)
 {
     SelectFileHelper.Select_Output_Folder(Output_Dir, Save_Cutter_Prefs);
 }
示例#2
0
 /// <summary>
 /// Allows user to select an input video via dialog box.
 /// The path to the chosen video is placed into the Input_Video TextBox.
 /// A suggested filename is placed into the Output_Video_name TextBox.
 /// </summary>
 private void Select_Video(object sender, RoutedEventArgs e)
 {
     SelectFileHelper.Select_Video(UpdateUIAfterVideoSelected);
 }
示例#3
0
 private void HandleDrop(object sender, DragEventArgs e)
 {
     SelectFileHelper.HandleDrop(e, UpdateUIAfterVideoSelected);
 }