Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
TwwcTech committed Nov 24, 2023
1 parent 19244d5 commit 92267da
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ private void MainForm_Load(object sender, EventArgs e)
{
ActiveControl = CreateUserButton;
AcceptButton = CreateUserButton;

localUserConsoleTooltip.InitialDelay = 0;
localUserConsoleTooltip.IsBalloon = true;
localUserConsoleTooltip.SetToolTip(CreateUserButton, "Create a new user");
localUserConsoleTooltip.SetToolTip(UpdateUserButton, "Update an existing user");
localUserConsoleTooltip.SetToolTip(DeleteUserButton, "Delete a user");
}

private void CreateUserButton_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 92267da

Please sign in to comment.