Here is my code:
public LayoutScheduler(){
InitializeComponent();
this.Load += (sender, args) =>
{
this.LoadLayouts();
};
}
public void LoadLayouts()
{
ImmutableSet<string> layoutNames = _store.Current.Keys;
layoutComboBox.BeginUpdate();
foreach (string name in layoutNames)
{
layoutComboBox.Items.Add(name);
}
layoutComboBox.EndUpdate();
layoutComboBox.SelectedIndex = 0;
}
I have this ComboBox set up in my designer to be a DropDownList style, however, in debug I can see the ComboBox Items list grow, when it displays, it'll display the first item as it's default, however I can't drop down the list.
If I then change the DropDownStyle to a simple, editable DropDown, and do the same I get the same behaviour, UNTIL I select the text in the drop down, at which point I am able to drop down the list.
I can't for the life of me figure out what's going on here. Any ideas?
EDIT: Here's the code for how this user control gets called and added to the form and displayed:
var layoutSchedulerControl = new LayoutScheduler(connected.Connection.Store, connected.Connection.Schedules);
Form layoutSchedulerForm = Statics.CreateForm("Layout Scheduler", layoutSchedulerControl);
layoutSchedulerForm.ShowDialog(this);
layoutSchedulerForm.Dispose();
this.Loadtothis.Shown? – SwDevMan81 Sep 13 '12 at 14:01