[Solved] RadOpenFolderDialog doesn't have Opened event handler

1 Answer 8 Views
FileDialogs
Vikas
Top achievements
Rank 1
Vikas asked on 01 Apr 2026, 12:16 PM

I need a dialog box in WPF where I can select a folder or location in system. I used RadOpenFolderDialog but I also need Opened event handler similar to DialogParameters telerik control.

Need Opened event handler which points to method that will be called when the Opened event of the Window is fired. Please suggest solution for it.

Also if there is any other dialog box telerik control which is suitable for my requirement, suggest me.

1 Answer, 1 is accepted

Sort by
0
Dinko | Tech Support Engineer
Telerik team
answered on 02 Apr 2026, 12:46 PM

Hello Vikas,

Thank you for your interest in our RadFileDialogs for WPF.

The control itself expose Loaded event. Can you check it out and share if it works for you or not? If not, you can share when this event does not work and when exactly you want to raise an event.

public CustomWindow()
{
    InitializeComponent();
    RadOpenFolderDialog openFolderDialog = new RadOpenFolderDialog();
    openFolderDialog.Header = "Select Folder";
    openFolderDialog.Loaded += OpenFolderDialog_Loaded; // Subscribe to Loaded event         
    openFolderDialog.ShowDialog();
}

private void OpenFolderDialog_Loaded(object sender, RoutedEventArgs e)
{
          
}

In general, RadOpenFolderDialog is a control for choosing a folder on your machine. Another control that you could consider using is the RadFilePathPicker control. This is a simple control with an editing part and a button on the right, which opens the RadOpenFileDialog. Basically, you can use only the dialog, but you can still check it out.

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
FileDialogs
Asked by
Vikas
Top achievements
Rank 1
Answers by
Dinko | Tech Support Engineer
Telerik team
Share this question
or