예제 #1
0
 public static fTreeViewCtrls getCtrlTreeBox(cEditor editor)
 {
     if (m_fTreeViewCtrls == null || m_fTreeViewCtrls.IsDisposed)
     {
         m_fTreeViewCtrls = new fTreeViewCtrls();
     }
     m_fTreeViewCtrls.setHandler(editor);
     return(m_fTreeViewCtrls);
 }
예제 #2
0
        public void showControlsTree() {
            try {

                Application.DoEvents();

                m_fTreeCtrls = cGlobals.getCtrlTreeBox(this);
                cGlobals.clearCtrlTreeBox(this);

                cReportControl ctrl = null;
                m_fTreeCtrls.addCtrls(m_report);
                m_fTreeCtrls.Show();

            } catch (Exception ex) {
                cError.mngError(ex, "ShowControlsTree", C_MODULE, "");
            }
        }
예제 #3
0
 public static fTreeViewCtrls getCtrlTreeBox(cEditor editor)
 {
     if (m_fTreeViewCtrls == null || m_fTreeViewCtrls.IsDisposed)
     {
         m_fTreeViewCtrls = new fTreeViewCtrls();
     }
     m_fTreeViewCtrls.setHandler(editor);
     return m_fTreeViewCtrls;
 }