Answers for "c# add tooltip control programmatically"

C#
1

c# add tooltip control programmatically

// Creating a ToolTip control
ToolTip t_Tip = new ToolTip(); 
// Set properties of ToolTip
t_Tip.Active = true;
// Attach tooltips
t_Tip.SetToolTip(box1, "Name should start with Capital letter"); 
t_Tip.SetToolTip(box2, "Password should be greater than 8 words");
Posted by: Guest on June-11-2021

Code answers related to "c# add tooltip control programmatically"

C# Answers by Framework

Browse Popular Code Answers by Language