FileDialog.FileOk Event

Definition

Occurs when the user selects a file name by either clicking the Open button of the OpenFileDialog or the Save button of the SaveFileDialog.

public:
 event System::ComponentModel::CancelEventHandler ^ FileOk;
public event System.ComponentModel.CancelEventHandler FileOk;
member this.FileOk : System.ComponentModel.CancelEventHandler 
Public Custom Event FileOk As CancelEventHandler 
Public Event FileOk As CancelEventHandler 

Event Type

Remarks

FileOk is raised after the user selects a file name, but before the dialog closes, which allows you to process the selection. If required, the user's selection can be cancelled by setting the Cancel property of the CancelEventArgs argument to true.

Applies to