How to add ToolTip for a button using WinForms in C#

1 Answer

0 votes
namespace WinFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

            toolTip1.SetToolTip(button1, "toolTip Information");
        }
    }
}




/*
run:


*/

 



answered Mar 11, 2024 by avibootz

Related questions

...