ToolTip 类
可表示一个长方形的小弹出窗口,该窗口在用户将指针悬停在一个控件上时显示有关该控件用途的简短说明。
代码片段:
- private void SetRadioButtonToolTip()
- {
- // Create the ToolTip and associate with the Form container.
- ToolTip toolTip1 = new ToolTip();
- // Set up the delays for the ToolTip.
- toolTip1.AutoPopDelay = 5000;
- toolTip1.InitialDelay = 1000;
- toolTip1.ReshowDelay = 500;
- // Force the ToolTip text to be displayed whether or not the form is active.
- toolTip1.ShowAlways = true;
- // Set up the ToolTip text for the Button and Checkbox.
- toolTip1.SetToolTip(this.radioButton4, "光标");
- toolTip1.SetToolTip(this.radioButton1, "标签");
- toolTip1.SetToolTip(this.radioButton2, "面板");
- toolTip1.SetToolTip(this.radioButton3, "按钮");
- }
执行效果图: