fyiReporting.RdlDesign.RdlDesigner.tip_Popup_Fore C# (CSharp) 메소드

tip_Popup_Fore() 개인적인 메소드

private tip_Popup_Fore ( object sender, PopupEventArgs e ) : void
sender object
e PopupEventArgs
리턴 void
        void tip_Popup_Fore(object sender, PopupEventArgs e)
        {
            ToolTip tt = sender as ToolTip;
            if (tt == null)
                return;
            string title = null;
            MDIChild mc = this.ActiveMdiChild as MDIChild;
            if (mc != null && mc.DesignTab == DesignTabs.Design && mc.DrawCtl.SelectedCount == 1)
            {
                title = foreColorPicker1.Text;
            }

            tt.ToolTipTitle = title;
        }
RdlDesigner