opening Tooltip
C#
4
Posts
2
Posters
0
Views
1
Watching
-
How to open tooltip in the bellow of textbox(I mean any control)?
-
How to open tooltip in the bellow of textbox(I mean any control)?
-
http://msdn.microsoft.com/en-us/library/ms754034.aspx#create_tooltip[^] Change button control to textbox control.
Thanks! the site you sent has problem! I want this for windows application? So Help!
-
Thanks! the site you sent has problem! I want this for windows application? So Help!
TextBox textBox = new TextBox(); textBox.Name = "textBox1"; textBox.Text = "This is a textbox"; textBox.Location = new Point(10, 10); textBox.Size = new Size(100, 50); Controls.Add(textBox); ToolTip toolTip = new ToolTip(); toolTip.SetToolTip(textBox, "Hello tooltip");