用ToolTip控件实现,该控件是显示提示信息的,显示的内容只需修改ToolTip的text属性即可。
其实QQ那样的效果是一个Form 对象
设置 他的 FormBorderStyle = FormBorderStyle.None;
一个私有变量:Control _c;
然后构造函数 这样写
public Form2(System.Windows.Forms.Control c)
{
InitializeComponent();
this.FormBorderStyle = FormBorderStyle.None;
this._c = c;
}
然后在 登陆或者初始化的事件里面
if (_c is Button)
{
MessageBox.Show("Button");
}
//......
是不是 很简单呢..
可以用ToolStrip弹起泡形式显示
有事件可以做到的,看你用的是什么控件了!