コード例 #1
0
ファイル: CCHole2.cs プロジェクト: shacleff/LianQiClient
        void DeConfigAbsorbing()
        {
            MiroModelV1 modelMe = CellObjCtrlUtils.GetMiroModelFromCell(_cellCtrl);

            if (modelMe == null)
            {
                return;
            }

            modelMe.ReleaseAbsorbing();
        }
コード例 #2
0
        void DeConfigAbsorbCtrls()
        {
            foreach (var ctrl in _AbsorbingCtrls)
            {
                MiroModelV1 model = CellObjCtrlUtils.GetMiroModelFromCell(ctrl);

                if (model == null)
                {
                    continue;
                }

                model.ReleaseAbsorbing();
            }

            _AbsorbingCtrls.Clear();
        }