我们有一个设置组合框的DataSource的项目,但允许用户从此列表中选择一些内容或键入未包含在列表中的项目。基本上,有一个Geobase包含街道,但用户不需要从列表中选择一条街道。 ComboBox.DropDownStyle设置为DropDown。
如果用户编辑的记录包含不在地理库中的街道(因此不在ComboBox.DataSource中),我们在填写表格时遇到问题。
这是我们问题的一个非常简化的形式:
private void button1_Click(object sender, EventArgs e)
{
// Create a new form. In the constructor the DataSource of the ComboBox is set with three items:
// Main St., First St., and Second St.
ComboBoxTrialForm frm = new ComboBoxTrialForm();
// Set comboBox1.Text equal to an item NOT in the datasource
frm.SetComboTextValue("Michigan Ave.");
// Show the form, and the comboBox has the first item in its datasource selected
frm.Show();
}
ComboBoxTrial类是这样的:
public partial class ComboBoxTrialForm : Form
{
public ComboBoxTrialForm()
{
InitializeComponent();
List<string> streets = new List<string>() { "Main St.", "First St.", "Second St." };
comboBox1.DataSource = streets;
}
public void SetComboTextValue(string text)
{
comboBox1.Text = text;
}
}
我设置了断点,发现comboBox1.Text的确设置正确。有趣的是,我发现在这个简化的例子中,BindingContextChanged事件实际上被触发了两次。在调用comboBox1.DataSource = streets
时进入构造函数,第二次调用frm.Show()
时。
为什么在显示表单时会触发此事件,这就是为什么我的手动设置选择被删除的原因?我该如何纠正这种行为?
另外,我认为我应该能够以这种方式使用组合框吗?
提前致谢。
答案 0 :(得分:3)
您应该能够将SelectedIndex设置为-1,以便在列表中不选择任何项目。得到“密歇根大道”我没有任何问题。使用此方法在组合框中显示。
public Form1()
{
InitializeComponent();
comboBox1.DataSource = new List<string>() { "Main St.", "First St.", "Second St." };
comboBox1.SelectedIndex = -1;
}
此外,您可以显示表单,然后设置文本。除非这是一个问题,否则用户可能不会注意到。
frm.Show();
frm.SetComboTextValue("Michigan Ave.");
答案 1 :(得分:1)
我无法想到在winforms代码中我们在构造函数中设置数据源的任何实例,所以我无法真正解决为什么你看到你所看到的。
但是,我可以告诉你我们如何一直处理这类问题以避免不可避免的时间问题:我们在表单上创建一个接受我们想要在表单中使用的参数的方法,表单显示自己,然后设置字段值。几年前,当我们处理重置自身或处于无效状态的第三方控件时,我们开始使用此模式,直到表单实际可见。
如果表单决定由于某种原因不应该显示(此类型的另一种形式打开,访问表单使用的资源时出错,用户没有),这种模式也非常有用适当的权限等)。
该模式对于从模态对话框返回比标准内置模态对话框值更有用的值也很有用。
在您的情况下,我们会按如下方式重写您的表单:
public partial class ComboBoxTrialForm : Form
{
public ComboBoxTrialForm()
{
InitializeComponent();
}
public void ShowForm(string comboBoxValue)
{
this.Show();
List<string> streets = new List<string>() { "Main St.", "First St.", "Second St." };
comboBox1.DataSource = streets;
SetComboTextValue(comboBoxValue);
}
public void SetComboTextValue(string text)
{
comboBox1.Text = text;
}
}
您的button1_click事件将变为:
private void button1_Click(object sender, EventArgs e)
{
// Create a new form. In the constructor the DataSource of the ComboBox is set with three items:
// Main St., First St., and Second St.
ComboBoxTrialForm frm = new ComboBoxTrialForm();
// Show the form, and the comboBox has the first item in its datasource selected
frm.ShowForm("Michigan Ave.");
}
答案 2 :(得分:0)
而不是组合框,为什么不使用在用户键入文本框时调用的WCF Windows服务。这样您就可以使用文本框,但仍然可以让用户从数据库中选择类似的东西
这应该为您提供Windows服务的代码
http://wcftutorial.net/WCF-Windows-Service-Hosting.aspx
http://msdn.microsoft.com/en-us/library/bb332338.aspx
你可以从一个keyup事件中调用它。