コード例 #1
0
ファイル: ControlHost.cs プロジェクト: 15831944/Test3-1
        internal override void restoreProperties(ItemProperties props)
        {
            ControlHostProperties hprops = (ControlHostProperties)props;

            Control         = hprops.control;
            ctrlMouseAction = hprops.ctrlMouseAction;
            selStyle        = hprops.selStyle;

            base.restoreProperties(props);
        }
コード例 #2
0
ファイル: ControlHost.cs プロジェクト: 15831944/Test3-1
        internal override void saveProperties(ItemProperties props)
        {
            base.saveProperties(props);

            ControlHostProperties hprops = (ControlHostProperties)props;

            hprops.control         = Control;
            hprops.ctrlMouseAction = ctrlMouseAction;
            hprops.selStyle        = selStyle;
        }