FileDialog::Title Property
Gets or sets the file dialog box title.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::StringThe file dialog box title. The default value is an empty string ("").
The following code example demonstrates initializing an OpenFileDialog, setting the Title and Filter properties, and allowing the user to select multiple files by setting the OpenFileDialog::Multiselect property to true. To run this example, paste the following code in a form containing an OpenFileDialog named OpenFileDialog1 and a Button named fileButton. Call the InitializeOpenFileDialog method in the form's constructor or Load method. The example also requires that the Click event of the Button control is connected to the event handler defined in the example.
void InitializeOpenFileDialog() { this->OpenFileDialog1 = gcnew System::Windows::Forms::OpenFileDialog; // Set the file dialog to filter for graphics files. this->OpenFileDialog1->Filter = "Images (*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|" + "All files (*.*)|*.*"; // Allow the user to select multiple images. this->OpenFileDialog1->Multiselect = true; this->OpenFileDialog1->Title = "My Image Browser"; } void fileButton_Click( System::Object^ sender, System::EventArgs^ e ) { OpenFileDialog1->ShowDialog(); }
setting the Title and Filter properties, and allowing the user to select multiple files by setting the MultiSelect property to true. To run this example paste the following code in a form containing an OpenFileDialog named OpenFileDialog1 and a Button named fileButton. Call the InitializeOpenFileDialog method in the form's constructor
- FileIOPermission
to set the file dialog box title. Associated enumeration: PermissionState::Unrestricted.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.