So you go into "PropertyBinding" and there is no way to bind this value.
SelectedIndex and SelectedText are not in the list. Text will not work if your box is a DropDownList, it will only work if your Combobox is a Dropdown.
So here's what you have to do.
First, from your project, Select Project and <projectname> Properties.
Then add a user scoped string setting for your Combobox.
Don't save the SelectedIndex as an integer, because whenever the list changes, you'll be restoring the wrong item in the list.
private void FindDropDownValue(ComboBox ddl, string value, int defaultvalue)
{
int selectedListItem = ddl.Items.IndexOf(value);
if (selectedListItem == -1)
{
selectedListItem = defaultvalue;
}
ddl.SelectedIndex = selectedListItem;
}
private void Load_Dropdowns()
{
//reload user settings
FindDropDownValue(cbCustomer, Properties.Settings.Default.Quote_Customer, 0);
}
This will load the values from the user settings store. I suggest calling Load_Dropdowns from your FORM_LOAD() method.Now all we need is to save the settings on Form_Closing() of the form.
Private void SaveUserSettings()
{
Properties.Settings.Default.Quote_Customer = cbCustomer.Text;
}
private void QuoteForm_FormClosing(object sender, FormClosingEventArgs e)
{
SaveUserSettings();
}
Bryan Valencia is a contributing editor and founder of Visual Studio Journey. He owns and operates Software Services, a web design and hosting company in Manteca, California.
No comments:
Post a Comment