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