Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/openfiledialog-component-overview-windows-forms.md
Andy De George c0ba284473 Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
2020-09-01 16:26:21 -07:00

2.0 KiB

title, ms.date, f1_keywords, helpviewer_keywords, ms.assetid
title ms.date f1_keywords helpviewer_keywords ms.assetid
OpenFileDialog Component Overview 03/30/2017
OpenFileDialog
OpenFileDialog component [Windows Forms], about OpenFileDialog
Open File dialog box [Windows Forms], displaying in Windows Forms
cd717300-46b6-4f82-8207-b218fa7fa407

OpenFileDialog Component Overview (Windows Forms)

The Windows Forms xref:System.Windows.Forms.OpenFileDialog component is a pre-configured dialog box. It is the same Open File dialog box exposed by the Windows operating system. It inherits from the xref:System.Windows.Forms.CommonDialog class.

Use this component

Use this component within your Windows-based application as a simple solution for file selection in lieu of configuring your own dialog box. By relying on standard Windows dialog boxes, you create applications whose basic functionality is immediately familiar to users. Be aware, however, that when using the xref:System.Windows.Forms.OpenFileDialog component, you must write your own file-opening logic.

Use the xref:System.Windows.Forms.CommonDialog.ShowDialog%2A method to display the dialog at run time. You can enable users to multi-select files to be opened with the xref:System.Windows.Forms.OpenFileDialog.Multiselect%2A property. Additionally, you can use the xref:System.Windows.Forms.OpenFileDialog.ShowReadOnly%2A property to determine if a read-only check box appears in the dialog box. The xref:System.Windows.Forms.OpenFileDialog.ReadOnlyChecked%2A property indicates whether the read-only check box is selected. Finally, the xref:System.Windows.Forms.FileDialog.Filter%2A property sets the current file name filter string, which determines the choices that appear in the "Files of type" box in the dialog box.

When it is added to a form, the xref:System.Windows.Forms.OpenFileDialog component appears in the tray at the bottom of the Windows Forms Designer in Visual Studio.

See also