コード例 #1
0
ファイル: Cutter.xaml.cs プロジェクト: chuynh18/VideoCutter
 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
ファイル: Cutter.xaml.cs プロジェクト: chuynh18/VideoCutter
 private void HandleDrop(object sender, DragEventArgs e)
 {
     SelectFileHelper.HandleDrop(e, UpdateUIAfterVideoSelected);
 }