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