Using code similar to this, is it possible for me to set the Layout Configurator to one of the options like "Default"? I'm not sure what I'd use for "doubleBufferedTableLayoutPanel1" or "filterDropDownList".
AddHandler Me.RadSaveFileDialog1.SaveFileDialogForm.Shown, AddressOf SaveFileDialogForm_Shown Private Sub SaveFileDialogForm_Shown(sender As Object, e As EventArgs) Dim dropDown As RadDropDownList = TryCast(Me.RadSaveFileDialog1.SaveFileDialogForm.Controls("doubleBufferedTableLayoutPanel1").Controls("filterDropDownList"), RadDropDownList) dropDown.SelectedIndex = 0End Sub
