Exemplo n.º 1
0
 private void HelpBalloonTimer_Tick(object sender, System.EventArgs e)
 {
     if (_settings.ShowBalloonHelp == true && HelpBalloon.OptionsHelpShown == false)
     {
         Application.DoEvents();
         string      HelpString = "<b>Change your core location here</b>\r\n<hr=100%>\r\nIf left blank, TEK will automatically\r\ndetect your <u>Allegiance\\Artwork<//u> folder.\r\n\r\nChange this only if you keep your cores\r\nelsewhere";
         HelpBalloon BHelp      = new HelpBalloon(HelpString, SystemIcons.Information, DefaultCoreLocationTextBox, true, BalloonDirection.BALLOON_RIGHT_TOP, BalloonEffect.BALLOON_EFFECT_SOLID);
         BHelp.ShowBalloon();
         HelpBalloon.OptionsHelpShown = true;
     }
     HelpBalloonTimer.Enabled = false;
 }
Exemplo n.º 2
0
 private void ClearHelpButton_Click(object sender, System.EventArgs e)
 {
     HelpBalloon.ResetBalloons();
     MessageBox.Show(this, "All already-seen HelpBalloons will once again pop up.", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information);
 }