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

SetMDIChildFocus() 개인적인 메소드

private SetMDIChildFocus ( MDIChild mc ) : void
mc MDIChild
리턴 void
        private void SetMDIChildFocus(MDIChild mc)
        {
            // We don't want to be triggering any change events when the focus is changing
            bool bSuppress = bSuppressChange;
            bSuppressChange = true;
            mc.SetFocus();
            bSuppressChange = bSuppress;
        }
RdlDesigner