Azavea.NijPredictivePolicing.AcsAlchemistGui.MainForm.SetTooltip C# (CSharp) Method

SetTooltip() protected method

Helper for setting tooltips
protected SetTooltip ( Control ctl, string label ) : void
ctl Control
label string
return void
        protected void SetTooltip(Control ctl, string label)
        {
            if (!this._tooltips.ContainsKey(ctl))
            {
                this._tooltips[ctl] = new ToolTip();
            }
            this._tooltips[ctl].SetToolTip(ctl, label);
        }