예제 #1
0
        void IPropertyManagerPage2Handler9.OnSelectionboxFocusChanged(int Id)
        {
            if (!CanRaiseEvent())
            {
                return;
            }

            CtrlSelectionBox Box = _Calque.DicControl[Id] as CtrlSelectionBox;

            if (Box.IsRef())
            {
                Box.SelectionboxFocusChanged(Box);
            }
        }
예제 #2
0
        bool IPropertyManagerPage2Handler9.OnSubmitSelection(int Id, object Selection, int SelType, ref string ItemText)
        {
            if (!CanRaiseEvent())
            {
                return(false);
            }

            CtrlSelectionBox Box = _Calque.DicControl[Id] as CtrlSelectionBox;

            if (Box.IsRef())
            {
                return(Box.SubmitSelection(Box, Selection, SelType, ItemText));
            }

            return(false);
        }