AsposeVisualStudioPluginCells.GUI.ComponentWizardPage.setTooltip C# (CSharp) Method

setTooltip() private method

private setTooltip ( Control control, string message ) : void
control Control
message string
return void
        private void setTooltip(Control control, string message)
        {
            ToolTip buttonToolTip = new ToolTip();
            buttonToolTip.ToolTipTitle = control.Text;
            buttonToolTip.UseFading = true;
            buttonToolTip.UseAnimation = true;
            buttonToolTip.IsBalloon = true;
            buttonToolTip.ToolTipIcon = ToolTipIcon.Info;

            buttonToolTip.ShowAlways = true;

            buttonToolTip.AutoPopDelay = 90000;
            buttonToolTip.InitialDelay = 100;
            buttonToolTip.ReshowDelay = 100;

            buttonToolTip.SetToolTip(control, message);

        }
        #region events