亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? content.cs

?? Magic Library 1.7,有說(shuō)明文檔
?? CS
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
// *****************************************************************************
// 
//  (c) Crownwood Consulting Limited 2002 
//  All rights reserved. The software and associated documentation 
//  supplied hereunder are the proprietary information of Crownwood Consulting 
//	Limited, Haxey, North Lincolnshire, England and are supplied subject to 
//	licence terms.
// 
//  Magic Version 1.7 	www.dotnetmagic.com
// *****************************************************************************

using System;
using System.Xml;
using System.Drawing;
using System.Windows.Forms;
using Crownwood.Magic.Common;
using Crownwood.Magic.Docking;

namespace Crownwood.Magic.Docking
{
    public class Content
    {
        // Enumeration of property change events
        public enum Property
        {
            Control,
            Title,
            FullTitle,
            ImageList,
            ImageIndex,
            CaptionBar,
            CloseButton,
            HideButton,
            DisplaySize,
            AutoHideSize,
            FloatingSize,
            DisplayLocation
        }

        // Declare the property change event signature
        public delegate void PropChangeHandler(Content obj, Property prop);

        // Class constant
        protected static int _defaultDisplaySize = 150;
        protected static int _defaultAutoHideSize = 150;
        protected static int _defaultFloatingSize = 150;
        protected static int _defaultLocation = 150;
		protected static int _counter = 0;

        // Instance fields
        protected Control _control;
        protected string _title;
        protected string _fullTitle;
        protected ImageList _imageList;
        protected int _imageIndex;
        protected Size _displaySize;
        protected Size _autoHideSize;
        protected Size _floatingSize;
		protected Point _displayLocation;
		protected int _order;
        protected DockingManager _manager;
        protected bool _docked;
        protected bool _autoHidden;
        protected bool _visible;
        protected bool _captionBar;
        protected bool _closeButton;
        protected bool _hideButton;
        protected AutoHidePanel _autoHidePanel;
        protected WindowContent _parentWindowContent;
		protected Restore _defaultRestore;
		protected Restore _autoHideRestore;
		protected Restore _dockingRestore;
		protected Restore _floatingRestore;

        // Instance events
        public event PropChangeHandler PropertyChanging;
        public event PropChangeHandler PropertyChanged;

        public Content(XmlTextReader xmlIn, int formatVersion)
        {
            // Define the initial object state
            _control = null;
            _title = "";
            _fullTitle = "";
            _imageList = null;
            _imageIndex = -1;
            _manager = null;
            _parentWindowContent = null;
            _displaySize = new Size(_defaultDisplaySize, _defaultDisplaySize);
            _autoHideSize = new Size(_defaultAutoHideSize, _defaultAutoHideSize);
            _floatingSize = new Size(_defaultFloatingSize, _defaultFloatingSize);
            _displayLocation = new Point(_defaultLocation, _defaultLocation);
			_order = _counter++;
			_visible = false;
			_defaultRestore = null;
			_autoHideRestore = null;
			_floatingRestore = null;
			_dockingRestore = null;
			_autoHidePanel = null;
			_docked = true;
			_captionBar = true;
			_closeButton = true;
            _hideButton = true;
            _autoHidden = false;

			// Overwrite default with values read in
			LoadFromXml(xmlIn, formatVersion);
        }

        public Content(DockingManager manager)
        {
            InternalConstruct(manager, null, "", null, -1);
        }

        public Content(DockingManager manager, Control control)
        {
            InternalConstruct(manager, control, "", null, -1);
        }

        public Content(DockingManager manager, Control control, string title)
        {
            InternalConstruct(manager, control, title, null, -1);
        }

        public Content(DockingManager manager, Control control, string title, ImageList imageList, int imageIndex)
        {
            InternalConstruct(manager, control, title, imageList, imageIndex);
        }

        protected void InternalConstruct(DockingManager manager, 
                                         Control control, 
                                         string title, 
                                         ImageList imageList, 
                                         int imageIndex)
        {
            // Must provide a valid manager instance
            if (manager == null)
                throw new ArgumentNullException("DockingManager");

            // Define the initial object state
            _control = control;
            _title = title;
            _imageList = imageList;
            _imageIndex = imageIndex;
            _manager = manager;
            _parentWindowContent = null;
            _order = _counter++;
            _visible = false;
            _displaySize = new Size(_defaultDisplaySize, _defaultDisplaySize);
            _autoHideSize = new Size(_defaultAutoHideSize, _defaultAutoHideSize);
            _floatingSize = new Size(_defaultFloatingSize, _defaultFloatingSize);
            _displayLocation = new Point(_defaultLocation, _defaultLocation);
			_defaultRestore = new RestoreContentState(State.DockLeft, this);
			_floatingRestore = new RestoreContentState(State.Floating, this);
            _autoHideRestore = new RestoreAutoHideState(State.DockLeft, this);
            _dockingRestore = _defaultRestore;
            _autoHidePanel = null;
			_docked = true;
            _captionBar = true;
            _closeButton = true;
            _hideButton = true;
            _autoHidden = false;
            _fullTitle = title;
        }

        public DockingManager DockingManager
        {
            get { return _manager; }
			set { _manager = value; }
        }

        public Control Control
        {
            get { return _control; }
			
            set 
            {
                if (_control != value)
                {
                    OnPropertyChanging(Property.Control);
                    _control = value;
                    OnPropertyChanged(Property.Control);
                }
            }
        }

        public string Title
        {
            get { return _title; }

            set 
            {
                if (_title != value)
                {
                    OnPropertyChanging(Property.Title);
                    _title = value;
                    OnPropertyChanged(Property.Title);
                }
            }
        }
        
        public string FullTitle
        {
            get { return _fullTitle; }
            
            set
            {
                if (_fullTitle != value)
                {
                    OnPropertyChanging(Property.FullTitle);
                    _fullTitle = value;
                    OnPropertyChanged(Property.FullTitle);
                }
            }
        }

        public ImageList ImageList
        {
            get { return _imageList; }

            set 
            {
                if(_imageList != value) 
                {
                    OnPropertyChanging(Property.ImageList);
                    _imageList = value; 
                    OnPropertyChanged(Property.ImageList);
                }
            }
        }

        public int ImageIndex
        {
            get { return _imageIndex; }

            set 
            {
                if (_imageIndex != value)
                {
                    OnPropertyChanging(Property.ImageIndex);
                    _imageIndex = value;
                    OnPropertyChanged(Property.ImageIndex);
                }
            }
        }

        public bool CaptionBar
        {
            get { return _captionBar; }
            
            set
            {
                if (_captionBar != value)
                {
                    OnPropertyChanging(Property.CaptionBar);
                    _captionBar = value;
                    OnPropertyChanged(Property.CaptionBar);
                }
            }
        }

        public bool CloseButton
        {
            get { return _closeButton; }
            
            set
            {
                if (_closeButton != value)
                {
                    OnPropertyChanging(Property.CloseButton);
                    _closeButton = value;
                    OnPropertyChanged(Property.CloseButton);
                }
            }
        }

        public bool HideButton
        {
            get { return _hideButton; }
            
            set
            {
                if (_hideButton != value)
                {
                    OnPropertyChanging(Property.HideButton);
                    _hideButton = value;
                    OnPropertyChanged(Property.HideButton);
                }
            }
        }

        public Size DisplaySize
        {
            get { return _displaySize; }

            set 
            {
                if (_displaySize != value)
                {
                    OnPropertyChanging(Property.DisplaySize);
                    _displaySize = value;
                    OnPropertyChanged(Property.DisplaySize);
                }
            }
        }
        
        public Size AutoHideSize
        {
            get { return _autoHideSize; }
            
            set
            {
                if (_autoHideSize != value)
                {
                    OnPropertyChanging(Property.AutoHideSize);
                    _autoHideSize = value;
                    OnPropertyChanged(Property.AutoHideSize);
                }
            }
        }

        public Size FloatingSize
        {
            get { return _floatingSize; }

            set 
            {
                if (_floatingSize != value)
                {
                    OnPropertyChanging(Property.FloatingSize);
                    _floatingSize = value;
                    OnPropertyChanged(Property.FloatingSize);
                }
            }
        }

        public Point DisplayLocation
        {
            get { return _displayLocation; }

            set 
            {
                if (_displayLocation != value)
                {
                    OnPropertyChanging(Property.DisplayLocation);
                    _displayLocation = value;
                    OnPropertyChanged(Property.DisplayLocation);
                }
            }
        }
        
		public int Order
		{
			get { return _order; }

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久福利| 欧美在线影院一区二区| 精品免费国产一区二区三区四区| 亚洲国产综合色| 91精品国产全国免费观看| 午夜在线成人av| 在线播放亚洲一区| 老司机精品视频在线| www激情久久| www.在线成人| 一区二区三区四区蜜桃| 欧美日韩国产综合一区二区| 五月综合激情网| 久久婷婷国产综合国色天香| 成人午夜视频免费看| 一区二区三区在线观看动漫| 欧美精品一二三| 国产在线视频一区二区三区| 国产精品入口麻豆原神| 91久久人澡人人添人人爽欧美| 亚瑟在线精品视频| 久久亚洲一区二区三区四区| 9i看片成人免费高清| 亚洲国产aⅴ天堂久久| 久久综合九色综合97婷婷| www.亚洲色图| 奇米888四色在线精品| 亚洲国产精品激情在线观看| 亚洲最大成人综合| av午夜一区麻豆| 国产欧美日韩亚州综合| 成人av在线播放网址| 亚洲一区二区三区四区在线| 日韩丝袜情趣美女图片| 国产成人超碰人人澡人人澡| 亚洲www啪成人一区二区麻豆 | 国产一区二区三区四区五区入口| 国产午夜精品久久| 欧美日韩在线免费视频| 国产毛片精品视频| 亚洲成av人在线观看| 久久久99久久| 日韩一级免费一区| 91免费观看视频在线| 国内外成人在线| 亚洲国产欧美一区二区三区丁香婷| www久久久久| 欧美肥妇毛茸茸| 99久久国产综合精品女不卡| 国产乱码精品一区二区三区五月婷 | 久久久精品国产99久久精品芒果| 欧美综合视频在线观看| 高清国产一区二区| 韩国av一区二区三区在线观看| 亚洲一区在线看| 国产精品乱码妇女bbbb| 精品成人在线观看| 91精品国产欧美一区二区18 | 欧美一级艳片视频免费观看| 91捆绑美女网站| 国产夫妻精品视频| 六月丁香婷婷久久| 免费欧美在线视频| 视频一区欧美日韩| 亚洲香肠在线观看| 亚洲日穴在线视频| 国产精品网站在线播放| 制服丝袜在线91| 欧美日韩精品高清| 91视频一区二区| 99精品欧美一区二区三区小说 | 《视频一区视频二区| 久久午夜国产精品| 欧美日韩国产系列| 欧美美女网站色| 色悠悠亚洲一区二区| 91麻豆精东视频| 福利91精品一区二区三区| 国产精品亚洲一区二区三区妖精| 五月天亚洲婷婷| 日韩在线一区二区| 亚洲成人精品一区| 婷婷国产v国产偷v亚洲高清| 有坂深雪av一区二区精品| 亚洲色图19p| 国产精品久久久久久久久免费丝袜 | 欧美视频在线不卡| 欧美日韩国产经典色站一区二区三区| 处破女av一区二区| av高清不卡在线| 国产麻豆视频一区| 成人做爰69片免费看网站| 国产成人免费视频网站高清观看视频| 国产成+人+日韩+欧美+亚洲| 国产乱子伦一区二区三区国色天香| 国产乱妇无码大片在线观看| 国产精品综合av一区二区国产馆| 国产精品1024久久| 国产成人免费视| 色悠悠久久综合| 欧美性大战久久| 日韩欧美不卡一区| 精品久久久久久久久久久院品网 | 成人动漫一区二区三区| 日本乱码高清不卡字幕| 欧美在线观看禁18| 精品福利视频一区二区三区| 久久女同精品一区二区| 亚洲久草在线视频| 亚洲在线观看免费| 精品一区二区久久久| 激情图区综合网| 91色婷婷久久久久合中文| 在线观看三级视频欧美| 日韩欧美亚洲一区二区| 久久综合五月天婷婷伊人| 亚洲九九爱视频| 日本视频一区二区三区| jvid福利写真一区二区三区| 一本久久综合亚洲鲁鲁五月天| 91精品视频网| 国产性天天综合网| 亚洲成a人v欧美综合天堂| 亚洲精品免费播放| 国产福利91精品一区二区三区| 国产精品99久久久久久久vr| 精品视频123区在线观看| 911精品国产一区二区在线| 欧美激情艳妇裸体舞| 一区二区三区在线视频播放| 日本成人在线网站| 色综合久久中文字幕综合网| 5858s免费视频成人| 亚洲欧美国产毛片在线| 蜜桃视频在线一区| 一本色道久久综合亚洲精品按摩| 日韩午夜三级在线| 亚洲第一福利视频在线| 国产成人在线网站| 日韩视频一区二区| 亚洲欧美二区三区| 国产成人精品免费在线| 91久久国产综合久久| 中文字幕国产一区| 美女在线观看视频一区二区| 色婷婷综合激情| 久久天堂av综合合色蜜桃网| 蜜臀av亚洲一区中文字幕| av男人天堂一区| 国产精品电影一区二区三区| 亚洲永久免费av| 色噜噜狠狠色综合中国| 日本二三区不卡| 国产精品久久久久久久久图文区| 激情图区综合网| 欧美高清hd18日本| 一区二区三区精品| 成人国产精品免费网站| 国产欧美一区二区精品性色| 蜜臀久久久99精品久久久久久| 欧美三级三级三级爽爽爽| 日本一区二区成人在线| 国产91精品免费| 日韩一区二区三区电影在线观看 | 中文在线资源观看网站视频免费不卡 | 国产激情91久久精品导航 | 日韩视频在线你懂得| 国产精品美女久久久久久久| 国产精品亚洲а∨天堂免在线| 欧美日韩精品一区二区三区四区 | 欧美xingq一区二区| 亚洲综合成人网| 国产成人精品亚洲午夜麻豆| 日韩欧美自拍偷拍| 免费一级片91| 日韩欧美www| 国产成人精品免费视频网站| 2021国产精品久久精品| 国产成人av影院| 国产亚洲一区字幕| 99热这里都是精品| 中文字幕日本不卡| 91福利视频网站| 国产精品久久久久久久久免费相片| 99久久精品国产观看| 一区二区三区日韩精品| 欧洲国产伦久久久久久久| 亚洲精品国产成人久久av盗摄| av网站免费线看精品| 中文字幕一区二区三区四区不卡| 福利电影一区二区三区| 樱花影视一区二区| 在线这里只有精品| 免费精品视频在线| 91丨九色丨国产丨porny| 天天影视涩香欲综合网| 久久亚区不卡日本| 波多野结衣91| 亚洲精品精品亚洲| 91黄色免费版|