c#或者C#.net中的“ToolTip”是“System.Windows.Forms.ToolTip”和“DevComponents.DotNetBar.ToolTip”之间的不明确的引用
2021-03-17 20:24
标签:string window 意思 com 一个 for system 标准 mst “ToolTip”是“System.Windows.Forms.ToolTip”和“DevComponents.DotNetBar.ToolTip”之间的不明确的引用 ,在编程时,有时候会编译出现不明确的引用,这时候可以把Tootip写成标准的格式就可以了 比如: ToolTip tip = new ToolTip(); 可以改成 System.Windows.Forms.ToolTip tip = new System.Windows.FormsToolTip(); 就可以了,整体意思就是让你告诉他Tooltip到底是谁家的孩子,要不,叫错了爸就麻烦了 c#或者C#.net中的“ToolTip”是“System.Windows.Forms.ToolTip”和“DevComponents.DotNetBar.ToolTip”之间的不明确的引用 标签:string window 意思 com 一个 for system 标准 mst 原文地址:https://www.cnblogs.com/James007/p/12381995.html
{
var msg = "你是一个中国人";
tip.IsBalloon = true;
tip.SetToolTip(textBox1, msg);
tip.Show(msg, textBox1, 3 * 1000);
}
{
var msg = "你是一个中国人";
tip.IsBalloon = true;
tip.SetToolTip(textBox1, msg);
tip.Show(msg, textBox1, 3 * 1000);
}
文章标题:c#或者C#.net中的“ToolTip”是“System.Windows.Forms.ToolTip”和“DevComponents.DotNetBar.ToolTip”之间的不明确的引用
文章链接:http://soscw.com/index.php/essay/65458.html