Skip to main content
All docs
V25.1
  • BrowsePathEdit.DialogType Property

    Gets or sets a type of the dialog invoked then a user clicks the Browse button. This is a dependency property.

    Namespace: DevExpress.Xpf.Editors

    Assembly: DevExpress.Xpf.Core.v25.1.dll

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    public DialogType DialogType { get; set; }

    Property Value

    Type Default Description
    DialogType @DevExpress.Xpf.Editors.DialogType.FileOpen

    A type of the dialog invoked then a user clicks the Browse button.

    Available values:

    Name Description
    FileOpen

    The dialog that allows users to select a file (OpenFileDialog).

    FileSave

    The dialog that allows users to save a file with the specified name and type (SaveFileDialog).

    Folder

    The dialog that allows users to select a folder (FolderBrowserDialog).

    See Also