在C#winforms中显示组合框中项目的工具提示

时间:2010-10-28 12:17:59

标签: c# .net winforms

我正在尝试显示组合框中项目的工具提示。我在组合框选择索引更改事件中尝试了此代码,但它无法按预期工作。

ToolTip toolTip1 = new ToolTip();
toolTip1.AutoPopDelay = 5;
toolTip1.InitialDelay = 0;
toolTip1.ReshowDelay = 0;
toolTip1.ShowAlways = true;
for (int i = 0; i < cbo.Items.Count; i++)
{
  toolTip1.SetToolTip(this.cbo, cboCounty.Items[cbo.SelectedIndex].ToString()); 
}             

由于无法直接向组合框控件添加工具提示,我们可能必须创建用户控件来实现此功能。任何人都可以指导创建一个自定义组合框,显示其中项目的工具提示吗?

0 个答案:

没有答案