Hello,
As I can load the default drop-down list by default, I try it but it does not work in the load or the constructor event, but it works in the button that I put in test.
It does not work
public radFormAppointmentsEdit ()
{
InitializeComponent ();
cmbShowTimeAs.SelectedValue = 3;
}
It does not work
private void radFormAppointmentsEdit_Load (object sender, EventArgs e)
{
cmbShowTimeAs.SelectedValue = 3;
}
It works
private void radButtonTest_Click (object sender, EventArgs e)
{
cmbShowTimeAs.SelectedValue = 3;
}
I just want it to work for me when I start the form, what can I do?