如果在combox1 中选择了一个值,那么它应该在所有其他组合框中被禁用。例如,我有 4 个组合框。组合框 1、组合框 2、组合框 3、组合框 4。都具有相同的值,例如(1,2,3,4,5)如果在 ComboBox1 中选择了值 1,那么它应该在所有其他框中禁用,并且所有框都相同???谢谢,我需要快速回复。等待。美斯曼
问问题
412 次
3 回答
0
如果您不仅使用 1stcomboBox 来选择项目 + 从其他人中删除,并且使用通用列表作为组合框数据源;我想你可以使用扩展方法
/// <summary>
/// returns a new List<T> without the List<T> which won't have the given parameter
///
/// Example Usage of the extension method :
///
/// List<int> nums = new List<int>() { 1, 2, 3, 4, 5 };
///
/// List<int> i = nums.Without(3);
///
/// </summary>
/// <typeparam name="TList"> Type of the Caller Generic List </typeparam>
/// <typeparam name="T"> Type of the Parameter </typeparam>
/// <param name="list"> Name of the caller list </param>
/// <param name="item"> Generic item name which exclude from list </param>
/// <returns>List<T> Returns a generic list </returns>
public static TList Without<TList, T>(this TList list, T item) where TList : IList<T>, new()
{
TList l = new TList();
foreach (T i in list.Where(n => !n.Equals(item)))
{
l.Add(i);
}
return l;
}
然后您可以根据需要设置哪个组合框的数据源(列表非常快)
顺便说一句..如果您想确定鼠标选择的组合框项目(用户活动 - 不是以编程方式),您需要使用 SelectionChangeCommitted 事件;不是 SelectedIndexChanged。使用 SelectedIndexChange 事件,您还将在组合框第一次加载时捕获。但是使用 SelectionChange Committed 事件等待输入键盘或将鼠标按到组合框的箭头以触发自身
于 2012-05-25T13:28:32.540 回答
0
您必须从其他组合框中删除该元素,例如:
comboBox2.Items.Remove(comboBox1.SelectedItem);
您可以ComboBox1 OnChange
通过以下方式处理事件:
private void ComboBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
// remove the item in the other lists based upon ComboBox1 selection
}
于 2012-05-25T11:21:06.680 回答
0
在选择时,您需要将其从其他组合框中删除。例如。
//On item selected in ComboBox1
private void showSelectedButton_Click(object sender, System.EventArgs e)
{
comboBox2.Items.Remove(comboBox1.SelectedIndex.ToString());
comboBox3.Items.Remove(comboBox1.SelectedIndex.ToString());
comboBox4.Items.Remove(comboBox1.SelectedIndex.ToString());
}
于 2012-05-25T11:22:57.740 回答