예제 #1
0
 private void BaseDialogNative_FileNameChanged(BaseDialogNative sender, string filePath)
 {
     if (this.mSourceControl == null)
     {
         return;
     }
     this.mSourceControl.OnFileNameChanged(filePath);
 }
예제 #2
0
 private void BaseDialogNative_FolderNameChanged(BaseDialogNative sender, string folderName)
 {
     if (this.mSourceControl == null)
     {
         return;
     }
     this.mSourceControl.OnFolderNameChanged(folderName);
 }
예제 #3
0
 private void BaseDialogNative_FilesSelectedChanged(BaseDialogNative sender, IntPtr handle)
 {
     if (this.mSourceControl == null)
     {
         return;
     }
     this.mSourceControl.OnFilesSelectedHandle(handle);
 }