需要帮助来查找与Winforms兼容的自定义工具提示控件

问题描述

|| 我认为这是一个非常聪明的控件,winForms有这样的东西吗?     

解决方法

Devexpress有一个免费的ToolTipController类(以及ErrorProvider和HintController类),您可以在这里找到:https://www.devexpress.com/Products/Free/NetOffer/提供了您想要的内容。我每天使用它。您可以简单地将文本框拖放到表单上,并根据需要设置其工具提示,工具提示控制器和工具提示图标属性(也可以使用验证事件将错误消息显示为工具提示)。     ,您正在寻找ѭ0组件。     ,不,不是开箱即用的。有一个工具提示,但看起来不像您显示的那样。 但是您可以通过创建自定义控件来实现。     ,我能想到的最接近的是错误提供程序控件     ,在winforms中有一个错误提供程序可以做到这一点,但是如果您要这样显示,可以使用工具提示 //创建工具提示并与Form容器关联。          ToolTip toolTip1 =新的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 .
     toolTip1.SetToolTip(this.button1,\"My button1\");
MSDN参考