public AppStatus(LabelItem statusLabel1, LabelItem statusLabel2,
     ProgressBarItem pbItem)
 {
     label1 = statusLabel1;
     label2 = statusLabel2;
     progressBar = pbItem;
 }
        /// <summary>
        /// Initializes a new instance of the CrumbBarViewContainer class.
        /// </summary>
        public CrumbBarViewContainer()
            : base()
        {
            LabelItem imageLabel = new LabelItem("sys_crumbbarimagelabel");
            this.SubItems.Add(imageLabel);

            CrumbBarOverflowButton overflowButton = new CrumbBarOverflowButton("sys_crumbbaroverflowbutton");
            this.SubItems.Add(overflowButton);
            m_IsContainer = true;
        }
Exemple #3
0
 public LabelX()
 {
     m_Label = new LabelItem();
     m_Label.Style = eDotNetBarStyle.Office2007;
     m_Label.MarkupLinkClick += new MarkupLinkClickEventHandler(LabelMarkupLinkClick);
     this.FocusCuesEnabled = false;
     this.HostItem = m_Label;
     this.TabStop = false;
     this.SetStyle(ControlStyles.Selectable, false);
 }
Exemple #4
0
        public OfficeForm()
            : base()
        {
            // This forces the initialization out of paint loop which speeds up how fast components show up
            BaseRenderer renderer = Rendering.GlobalManager.Renderer;

            m_BorderWidth = SystemInformation.Border3DSize.Width + NativeFunctions.BorderMultiplierFactor;
            this.DockPadding.All = 0;

            m_Caption = new GenericItemContainer();
            m_Caption.GlobalItem = false;
            m_Caption.ContainerControl = this;
            m_Caption.WrapItems = false;
            m_Caption.EventHeight = false;
            m_Caption.UseMoreItemsButton = false;
            m_Caption.Stretch = true;
            m_Caption.Displayed = true;
            m_Caption.SystemContainer = true;
            m_Caption.PaddingTop = 0;
            m_Caption.PaddingBottom = 0;
            m_Caption.PaddingLeft = 2;
            m_Caption.ItemSpacing = 1;
            m_Caption.SetOwner(this);
            m_Caption.Style = eDotNetBarStyle.StyleManagerControlled;
            m_Caption.ToolbarItemsAlign = eContainerVerticalAlignment.Top;

            m_SystemIcon = new SystemCaptionItem();
            m_SystemIcon.GlobalItem = false;
            m_SystemIcon.Enabled = false;
            m_Caption.SubItems.Add(m_SystemIcon);
            m_SystemIcon.IsSystemIcon = true;
            m_SystemIcon.Icon = this.Icon;

            m_TitleLabel = CreateTitleLabel();
            m_Caption.SubItems.Add(m_TitleLabel);
            
            CreateAdditionalCaptionItems(m_Caption);

            m_SystemButtons = new SystemCaptionItem();
            m_SystemButtons.GlobalItem = false;
            //m_SystemButtons.ItemAlignment = eItemAlignment.Far;
            m_SystemButtons.Click += new EventHandler(SystemButtons_Click);
            m_SystemButtons.MouseEnter += new EventHandler(SystemButtons_MouseEnter);
            m_Caption.SubItems.Add(m_SystemButtons);
        }
Exemple #5
0
        /// <summary>
        /// 初始化数据
        /// </summary>
        private void InitData()
        {
            // 调整label的宽度
            int maxLabelLength = 0;
            int length = 0;
            foreach(string s in data)
            {
                string[] t = s.Split(new char[]{','});
                length = 0;
                foreach(char c in t[0].ToCharArray())
                {
                    if (c == 60 || c > 128) // 中文字符
                    {
                        length += 15;
                    }
                    else // 英文字符
                    {
                        length += 8;
                    }
                }

                if(length > maxLabelLength)
                {
                    maxLabelLength = length;
                }
            }

            for(int i = 0; i < data.Length; i++)
            {
                string[] values = data[i].Split(new char[] {','});

                ItemContainer container = new ItemContainer();
                LabelItem label = new LabelItem("labelItem" + i, values[0]);
                label.Width = maxLabelLength;
                TextBoxItem textBox = new TextBoxItem("textBoxItem" + i, values[2]);
                textBox.Tag = values[1];
                textBox.TextBoxWidth = 200;
               
                textBox.TextBox.BorderStyle = BorderStyle.Fixed3D;
                textBox.TextBox.Text = values[2];
                container.SubItems.Add(label);
                container.SubItems.Add(textBox);
                switch(values[1]) // 检查输入的类型
                {
                    case "text": // 文本类型
                        {
                            ButtonItem buttonItem = new ButtonItem("buttonItem" + i, "编辑");
                            buttonItem.Click += new EventHandler(editText);
                            buttonItem.Tag = textBox.TextBox; // 绑定文本框
                            container.SubItems.Add(buttonItem);
                            while (maxLabelLength + 270 + 30 > this.Width) // 自动调整宽度
                            {
                                this.Width += 30;
                            }
                            break;
                        }
                    case "int": // 整数类型
                        {
                            textBox.TextBox.TextChanged += new EventHandler(textBoxTextChanged);
                            while (maxLabelLength + 270 > this.Width) // 自动调整宽度
                            {
                                this.Width += 30;
                            }
                            break;
                        }
                    case "readonly": // 只读类型
                        {
                            textBox.Enabled = false;
                            while (maxLabelLength + 270 > this.Width) // 自动调整宽度
                            {
                                this.Width += 30;
                            }
                            break;
                        }
                    case "list": // 下拉菜单类型
                        {
                            ComboBoxItem comboBox = new ComboBoxItem("comboBox" + i, "");
                            string s = values[2];
                            string[] sections = s.Split(new char[]{'@'}, StringSplitOptions.RemoveEmptyEntries);
                            switch(sections.Length)
                            {
                                case 1: // 无内容有列表值
                                    {
                                        if(s.Contains("@")) // 带文本的下拉框
                                        {
                                            textBox.TextBox.Text = ""; // 更改文本内容
                                            string[] t = sections[0].Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
                                            foreach (string r in t)
                                            {
                                                comboBox.Items.Add(r);
                                            }
                                            comboBox.SelectedIndex = 0;
                                            container.SubItems.Add(comboBox);

                                            while (maxLabelLength + 270 + comboBox.ComboWidth> this.Width) // 自动调整宽度
                                            {
                                                this.Width += 30;
                                            }
                                        }
                                        else // 不带文本的下拉框
                                        {
                                            container.SubItems.Remove(textBox);
                                            string[] t = sections[0].Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
                                            foreach(string r in t)
                                            {
                                                comboBox.Items.Add(r);
                                            }
                                            comboBox.SelectedIndex = 0;
                                            comboBox.ComboWidth = 200;
                                            container.SubItems.Add(comboBox);

                                            while (maxLabelLength + 270 > this.Width) // 自动调整宽度
                                            {
                                                this.Width += 30;
                                            }
                                        }
                                      
                                        break;
                                    }
                                case 2: // 有内容和列表值
                                    {
                                        textBox.TextBox.Text = sections[0]; // 更改文本内容
                                        string[] t = sections[1].Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
                                        foreach(string r in t)
                                        {
                                            comboBox.Items.Add(r);
                                        }
                                        comboBox.SelectedIndex = 0;
                                        container.SubItems.Add(comboBox);

                                        while (maxLabelLength + 270 + comboBox.ComboWidth > this.Width) // 自动调整宽度
                                        {
                                            this.Width += 30;
                                        }
                                        break;
                                    }
                            }
                            break;
                        }
                }                
                
                itemPanel1.Items.Add(container);
            }
        }
Exemple #6
0
        protected override PopupItem CreatePopupItem()
        {
            ButtonItem button = new ButtonItem("sysPopupProvider");
            button.PopupClose += new EventHandler(DropDownPopupClose);

            ItemContainer container = new ItemContainer();
            container.LayoutOrientation = eOrientation.Horizontal;
            container.BackgroundStyle.Padding = 4;

            MonthCalendarItem mc = new MonthCalendarItem();
            mc.CalendarDimensions = new Size(1, 1);
            //mc.DayClickAutoClosePopup = false;
            //mc.BackgroundStyle.BackColor = SystemColors.Window;
            mc.DateChanged += new EventHandler(PopupSelectedDateChanged);
            container.SubItems.Add(mc);
            button.SubItems.Add(container);

            LabelItem sep = new LabelItem();
            sep.Width = 8;
            sep.AutoCollapseOnClick = false;
            sep.Visible = false;
            container.SubItems.Add(sep);
            TimeSelectorItem timeSelector = new TimeSelectorItem();
            timeSelector.SelectorType = eTimeSelectorType.MonthCalendarStyle;
            timeSelector.SelectedTimeChanged += new EventHandler(TimeSelectorChanged);
            timeSelector.TimeFormat = _TimeSelectorTimeFormat;
            timeSelector.Visible = false;
            container.SubItems.Add(timeSelector);

            _PopupItem = button;
            _MonthCalendar = mc;
            _TimeSelector = timeSelector;
            _Spacer = sep;
            UpdateTimeSelectorItemSize();
            return button;
        }
Exemple #7
0
		public override BaseItem Copy()
		{
			LabelItem copy=new LabelItem(m_Name);
			this.CopyToItem(copy);

			return copy;
		}
Exemple #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.ribbonControl1       = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1         = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar1           = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem1          = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem1           = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer1       = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5          = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem2           = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer2       = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem6          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem8          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9          = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem3           = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer3       = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem10         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11         = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem4           = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer4       = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13         = new DevComponents.DotNetBar.ButtonItem();
     this.galleryContainer1    = new DevComponents.DotNetBar.GalleryContainer();
     this.galleryGroupStock    = new DevComponents.DotNetBar.GalleryGroup();
     this.galleryGroupSurface  = new DevComponents.DotNetBar.GalleryGroup();
     this.galleryGroupDoughnut = new DevComponents.DotNetBar.GalleryGroup();
     this.buttonItem14         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24         = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25         = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItem1       = new DevComponents.DotNetBar.RibbonTabItem();
     this.pictureBox1          = new System.Windows.Forms.PictureBox();
     this.label1             = new System.Windows.Forms.Label();
     this.galleryGroupBubble = new DevComponents.DotNetBar.GalleryGroup();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     //
     // ribbonControl1.BackgroundStyle
     //
     this.ribbonControl1.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(191)), ((System.Byte)(219)), ((System.Byte)(255)));
     this.ribbonControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.ribbonPanel1
     });
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.DockPadding.Bottom = 2;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.ribbonTabItem1
     });
     this.ribbonControl1.KeyTipsFont    = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Name           = "ribbonControl1";
     this.ribbonControl1.Size           = new System.Drawing.Size(464, 120);
     this.ribbonControl1.Style          = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex       = 0;
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.ribbonBar1
     });
     this.ribbonPanel1.DefaultLayout      = true;
     this.ribbonPanel1.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.DockPadding.Bottom = 3;
     this.ribbonPanel1.DockPadding.Left   = 3;
     this.ribbonPanel1.DockPadding.Right  = 3;
     this.ribbonPanel1.Location           = new System.Drawing.Point(0, 25);
     this.ribbonPanel1.Name               = "ribbonPanel1";
     this.ribbonPanel1.Size               = new System.Drawing.Size(464, 93);
     //
     // ribbonPanel1.Style
     //
     this.ribbonPanel1.Style.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(232)), ((System.Byte)(245)));
     this.ribbonPanel1.Style.BackColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(232)), ((System.Byte)(245))), 0F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(209)), ((System.Byte)(223)), ((System.Byte)(240))), 15F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(199)), ((System.Byte)(216)), ((System.Byte)(237))), 15F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(231)), ((System.Byte)(242)), ((System.Byte)(255))), 1F)
     });
     this.ribbonPanel1.Style.BackColorGradientAngle = 90;
     this.ribbonPanel1.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.ribbonPanel1.Style.BorderBottomWidth      = 1;
     this.ribbonPanel1.Style.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(141)), ((System.Byte)(178)), ((System.Byte)(227)));
     this.ribbonPanel1.Style.BorderColor2           = System.Drawing.Color.FromArgb(((System.Byte)(136)), ((System.Byte)(161)), ((System.Byte)(194)));
     this.ribbonPanel1.Style.BorderColorLight       = System.Drawing.Color.FromArgb(((System.Byte)(231)), ((System.Byte)(239)), ((System.Byte)(248)));
     this.ribbonPanel1.Style.BorderColorLight2      = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(249)), ((System.Byte)(255)));
     this.ribbonPanel1.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.ribbonPanel1.Style.BorderLeftWidth        = 1;
     this.ribbonPanel1.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Double;
     this.ribbonPanel1.Style.BorderRightWidth       = 1;
     this.ribbonPanel1.Style.BorderTopWidth         = 1;
     this.ribbonPanel1.Style.CornerDiameter         = 3;
     this.ribbonPanel1.Style.CornerType             = DevComponents.DotNetBar.eCornerType.Rounded;
     this.ribbonPanel1.Style.CornerTypeTopLeft      = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.Style.CornerTypeTopRight     = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.BackColor           = System.Drawing.Color.Transparent;
     //
     // ribbonBar1.BackgroundMouseOverStyle
     //
     this.ribbonBar1.BackgroundMouseOverStyle.BackColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(230)), ((System.Byte)(241)), ((System.Byte)(255))), 0F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(233)), ((System.Byte)(241)), ((System.Byte)(253))), 15F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(236)), ((System.Byte)(253))), 15F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(234)), ((System.Byte)(250))), 1F)
     });
     this.ribbonBar1.BackgroundMouseOverStyle.BackColorGradientAngle = 90;
     this.ribbonBar1.BackgroundMouseOverStyle.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(173)), ((System.Byte)(199)), ((System.Byte)(224)));
     this.ribbonBar1.BackgroundMouseOverStyle.BorderColor2           = System.Drawing.Color.FromArgb(((System.Byte)(126)), ((System.Byte)(173)), ((System.Byte)(211)));
     this.ribbonBar1.BackgroundMouseOverStyle.BorderColorLight       = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // ribbonBar1.BackgroundStyle
     //
     this.ribbonBar1.BackgroundStyle.BackColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(232)), ((System.Byte)(245))), 0F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(209)), ((System.Byte)(223)), ((System.Byte)(240))), 15F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(199)), ((System.Byte)(216)), ((System.Byte)(237))), 15F),
         new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((System.Byte)(231)), ((System.Byte)(242)), ((System.Byte)(255))), 1F)
     });
     this.ribbonBar1.BackgroundStyle.BackColorGradientAngle = 90;
     this.ribbonBar1.BackgroundStyle.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Etched;
     this.ribbonBar1.BackgroundStyle.BorderBottomWidth      = 1;
     this.ribbonBar1.BackgroundStyle.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(198)), ((System.Byte)(210)), ((System.Byte)(223)));
     this.ribbonBar1.BackgroundStyle.BorderColor2           = System.Drawing.Color.FromArgb(((System.Byte)(159)), ((System.Byte)(193)), ((System.Byte)(219)));
     this.ribbonBar1.BackgroundStyle.BorderColorLight       = System.Drawing.Color.FromArgb(((System.Byte)(239)), ((System.Byte)(244)), ((System.Byte)(250)));
     this.ribbonBar1.BackgroundStyle.BorderColorLight2      = System.Drawing.Color.FromArgb(((System.Byte)(243)), ((System.Byte)(249)), ((System.Byte)(255)));
     this.ribbonBar1.BackgroundStyle.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Etched;
     this.ribbonBar1.BackgroundStyle.BorderLeftWidth        = 1;
     this.ribbonBar1.BackgroundStyle.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Etched;
     this.ribbonBar1.BackgroundStyle.BorderRightWidth       = 1;
     this.ribbonBar1.BackgroundStyle.BorderTop      = DevComponents.DotNetBar.eStyleBorderType.Etched;
     this.ribbonBar1.BackgroundStyle.BorderTopWidth = 1;
     this.ribbonBar1.BackgroundStyle.CornerDiameter = 3;
     this.ribbonBar1.BackgroundStyle.CornerType     = DevComponents.DotNetBar.eCornerType.Rounded;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.galleryContainer1
     });
     this.ribbonBar1.Location = new System.Drawing.Point(4, 0);
     this.ribbonBar1.Name     = "ribbonBar1";
     this.ribbonBar1.Size     = new System.Drawing.Size(308, 88);
     this.ribbonBar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 1;
     this.ribbonBar1.Text     = "Drop-Down Galleries";
     //
     // ribbonBar1.TitleStyle
     //
     this.ribbonBar1.TitleStyle.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(194)), ((System.Byte)(217)), ((System.Byte)(241)));
     this.ribbonBar1.TitleStyle.BackColor2             = System.Drawing.Color.FromArgb(((System.Byte)(193)), ((System.Byte)(217)), ((System.Byte)(240)));
     this.ribbonBar1.TitleStyle.BackColorGradientAngle = 90;
     this.ribbonBar1.TitleStyle.PaddingBottom          = 1;
     this.ribbonBar1.TitleStyle.PaddingTop             = 1;
     this.ribbonBar1.TitleStyle.TextAlignment          = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.ribbonBar1.TitleStyle.TextColor              = System.Drawing.Color.FromArgb(((System.Byte)(62)), ((System.Byte)(106)), ((System.Byte)(170)));
     //
     // ribbonBar1.TitleStyleMouseOver
     //
     this.ribbonBar1.TitleStyleMouseOver.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(200)), ((System.Byte)(224)), ((System.Byte)(255)));
     this.ribbonBar1.TitleStyleMouseOver.BackColor2             = System.Drawing.Color.FromArgb(((System.Byte)(214)), ((System.Byte)(237)), ((System.Byte)(255)));
     this.ribbonBar1.TitleStyleMouseOver.BackColorGradientAngle = 90;
     this.ribbonBar1.TitleStyleMouseOver.TextAlignment          = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.ribbonBar1.TitleStyleMouseOver.TextColor              = System.Drawing.Color.FromArgb(((System.Byte)(62)), ((System.Byte)(106)), ((System.Byte)(170)));
     this.ribbonBar1.MouseEnter += new System.EventHandler(this.ribbonBar1_MouseEnter);
     this.ribbonBar1.MouseLeave += new System.EventHandler(this.ribbonBar1_MouseLeave);
     //
     // buttonItem1
     //
     this.buttonItem1.AutoExpandOnClick = true;
     this.buttonItem1.ButtonStyle       = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem1.Image             = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImagePosition     = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.labelItem1,
         this.itemContainer1,
         this.labelItem2,
         this.itemContainer2,
         this.labelItem3,
         this.itemContainer3,
         this.labelItem4,
         this.itemContainer4
     });
     this.buttonItem1.Text = "Chart";
     //
     // labelItem1
     //
     this.labelItem1.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(217)), ((System.Byte)(228)), ((System.Byte)(236)));
     this.labelItem1.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem1.ForeColor       = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(15)), ((System.Byte)(99)));
     this.labelItem1.Name            = "labelItem1";
     this.labelItem1.PaddingBottom   = 1;
     this.labelItem1.PaddingTop      = 1;
     this.labelItem1.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem1.Text            = "Stock";
     //
     // itemContainer1
     //
     this.itemContainer1.MinimumSize = new System.Drawing.Size(0, 0);
     this.itemContainer1.Name        = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem2,
         this.buttonItem3,
         this.buttonItem4,
         this.buttonItem5
     });
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name  = "buttonItem2";
     this.buttonItem2.Text  = "Stock-Line";
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name  = "buttonItem3";
     this.buttonItem3.Text  = "Stock Line 2";
     //
     // buttonItem4
     //
     this.buttonItem4.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.Name  = "buttonItem4";
     this.buttonItem4.Text  = "Stock Line 3";
     //
     // buttonItem5
     //
     this.buttonItem5.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.Name  = "buttonItem5";
     this.buttonItem5.Text  = "Stock Line 4";
     //
     // labelItem2
     //
     this.labelItem2.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(217)), ((System.Byte)(228)), ((System.Byte)(236)));
     this.labelItem2.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem2.ForeColor       = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(15)), ((System.Byte)(99)));
     this.labelItem2.Name            = "labelItem2";
     this.labelItem2.PaddingBottom   = 1;
     this.labelItem2.PaddingTop      = 1;
     this.labelItem2.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem2.Text            = "Surface";
     //
     // itemContainer2
     //
     this.itemContainer2.MinimumSize = new System.Drawing.Size(0, 0);
     this.itemContainer2.Name        = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem6,
         this.buttonItem7,
         this.buttonItem8,
         this.buttonItem9
     });
     //
     // buttonItem6
     //
     this.buttonItem6.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.Name  = "buttonItem6";
     this.buttonItem6.Text  = "Surface Graph 1";
     //
     // buttonItem7
     //
     this.buttonItem7.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.Name  = "buttonItem7";
     this.buttonItem7.Text  = "Surface Graph 2";
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.Name  = "buttonItem8";
     this.buttonItem8.Text  = "Surface Graph 3";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.Name  = "buttonItem9";
     this.buttonItem9.Text  = "Surface Graph 4";
     //
     // labelItem3
     //
     this.labelItem3.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(217)), ((System.Byte)(228)), ((System.Byte)(236)));
     this.labelItem3.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem3.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem3.ForeColor       = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(15)), ((System.Byte)(99)));
     this.labelItem3.Name            = "labelItem3";
     this.labelItem3.PaddingBottom   = 1;
     this.labelItem3.PaddingTop      = 1;
     this.labelItem3.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem3.Text            = "Doughnut";
     //
     // itemContainer3
     //
     this.itemContainer3.MinimumSize = new System.Drawing.Size(0, 0);
     this.itemContainer3.Name        = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem10,
         this.buttonItem11
     });
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.Name  = "buttonItem10";
     this.buttonItem10.Text  = "Doughnut Graph 1";
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.Name  = "buttonItem11";
     this.buttonItem11.Text  = "Doughnut Graph 2";
     //
     // labelItem4
     //
     this.labelItem4.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(217)), ((System.Byte)(228)), ((System.Byte)(236)));
     this.labelItem4.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem4.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem4.ForeColor       = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(15)), ((System.Byte)(99)));
     this.labelItem4.Name            = "labelItem4";
     this.labelItem4.PaddingBottom   = 1;
     this.labelItem4.PaddingTop      = 1;
     this.labelItem4.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem4.Text            = "Bubble";
     //
     // itemContainer4
     //
     this.itemContainer4.MinimumSize = new System.Drawing.Size(0, 0);
     this.itemContainer4.Name        = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem12,
         this.buttonItem13
     });
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name  = "buttonItem12";
     this.buttonItem12.Text  = "Bubble Graph 1";
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name  = "buttonItem13";
     this.buttonItem13.Text  = "Bubble Graph 2";
     //
     // galleryContainer1
     //
     //
     // galleryContainer1.BackgroundStyle
     //
     this.galleryContainer1.BackgroundStyle.Class = "RibbonGalleryContainer";
     this.galleryContainer1.GalleryGroups.AddRange(new DevComponents.DotNetBar.GalleryGroup[] {
         this.galleryGroupStock,
         this.galleryGroupSurface,
         this.galleryGroupDoughnut,
         this.galleryGroupBubble
     });
     this.galleryContainer1.MinimumSize    = new System.Drawing.Size(58, 58);
     this.galleryContainer1.Name           = "galleryContainer1";
     this.galleryContainer1.StretchGallery = true;
     this.galleryContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem14,
         this.buttonItem15,
         this.buttonItem16,
         this.buttonItem17,
         this.buttonItem18,
         this.buttonItem19,
         this.buttonItem20,
         this.buttonItem21,
         this.buttonItem22,
         this.buttonItem23,
         this.buttonItem24,
         this.buttonItem25
     });
     //
     // galleryGroupStock
     //
     this.galleryGroupStock.Name = "galleryGroupStock";
     this.galleryGroupStock.Text = "<b>Stock</b>";
     //
     // galleryGroupSurface
     //
     this.galleryGroupSurface.DisplayOrder = 1;
     this.galleryGroupSurface.Name         = "galleryGroupSurface";
     this.galleryGroupSurface.Text         = "<b>Surface</b>";
     //
     // galleryGroupDoughnut
     //
     this.galleryGroupDoughnut.DisplayOrder = 2;
     this.galleryGroupDoughnut.Name         = "galleryGroupDoughnut";
     this.galleryGroupDoughnut.Text         = "<b>Doughnut</b>";
     //
     // buttonItem14
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem14, this.galleryGroupStock);
     this.buttonItem14.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.Name  = "buttonItem14";
     this.buttonItem14.Text  = "buttonItem14";
     //
     // buttonItem15
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem15, this.galleryGroupStock);
     this.buttonItem15.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.Name  = "buttonItem15";
     this.buttonItem15.Text  = "buttonItem15";
     //
     // buttonItem16
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem16, this.galleryGroupStock);
     this.buttonItem16.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.Name  = "buttonItem16";
     this.buttonItem16.Text  = "buttonItem16";
     //
     // buttonItem17
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem17, this.galleryGroupStock);
     this.buttonItem17.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem17.Image")));
     this.buttonItem17.Name  = "buttonItem17";
     this.buttonItem17.Text  = "buttonItem17";
     //
     // buttonItem18
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem18, this.galleryGroupSurface);
     this.buttonItem18.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem18.Image")));
     this.buttonItem18.Name  = "buttonItem18";
     this.buttonItem18.Text  = "buttonItem18";
     //
     // buttonItem19
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem19, this.galleryGroupSurface);
     this.buttonItem19.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem19.Image")));
     this.buttonItem19.Name  = "buttonItem19";
     this.buttonItem19.Text  = "buttonItem19";
     //
     // buttonItem20
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem20, this.galleryGroupSurface);
     this.buttonItem20.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name  = "buttonItem20";
     this.buttonItem20.Text  = "buttonItem20";
     //
     // buttonItem21
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem21, this.galleryGroupSurface);
     this.buttonItem21.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name  = "buttonItem21";
     this.buttonItem21.Text  = "buttonItem21";
     //
     // buttonItem22
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem22, this.galleryGroupDoughnut);
     this.buttonItem22.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name  = "buttonItem22";
     this.buttonItem22.Text  = "buttonItem22";
     //
     // buttonItem23
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem23, this.galleryGroupDoughnut);
     this.buttonItem23.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name  = "buttonItem23";
     this.buttonItem23.Text  = "buttonItem23";
     //
     // buttonItem24
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem24, this.galleryGroupBubble);
     this.buttonItem24.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name  = "buttonItem24";
     this.buttonItem24.Text  = "buttonItem24";
     //
     // buttonItem25
     //
     this.galleryContainer1.SetGalleryGroup(this.buttonItem25, this.galleryGroupBubble);
     this.buttonItem25.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name  = "buttonItem25";
     this.buttonItem25.Text  = "buttonItem25";
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.Name    = "ribbonTabItem1";
     this.ribbonTabItem1.Panel   = this.ribbonPanel1;
     this.ribbonTabItem1.Text    = "Insert";
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor    = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.pictureBox1.BackColor = System.Drawing.Color.White;
     this.pictureBox1.Location  = new System.Drawing.Point(272, 152);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(176, 152);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex  = 1;
     this.pictureBox1.TabStop   = false;
     //
     // label1
     //
     this.label1.Anchor   = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.label1.Location = new System.Drawing.Point(272, 128);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Preview";
     //
     // galleryGroupBubble
     //
     this.galleryGroupBubble.DisplayOrder = 3;
     this.galleryGroupBubble.Name         = "galleryGroupBubble";
     this.galleryGroupBubble.Text         = "<b>Bubble</b>";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(464, 318);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label1,
         this.pictureBox1,
         this.ribbonControl1
     });
     this.Name = "Form1";
     this.Text = "Form1";
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        private void CreateStudentMenuItem()
        {
            btnAdd.SubItems.Clear();

            if (K12.Presentation.NLDPanels.Student.TempSource.Count == 0)
            {
                LabelItem item = new LabelItem("No", "沒有任何學生在待處理");
                btnAdd.SubItems.Add(item);
                return;
            }

            foreach (StudentRecord each in Student.SelectByIDs(K12.Presentation.NLDPanels.Student.TempSource))
            {
                ButtonItem item = new ButtonItem(each.ID, each.Name + " (" + (each.Class == null ? "" : each.Class.Name) + ")");
                item.Tooltip = "班級:" + (each.Class == null ? "" : each.Class.Name) + "\n學號:" + each.StudentNumber;
                item.Tag = each;
                item.Click += new EventHandler(AttendStudent_Click);

                btnAdd.SubItems.Add(item);
            }
        }
Exemple #10
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
            System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
            "!",
            "Description of the task number 1"}, -1, System.Drawing.SystemColors.WindowText, System.Drawing.Color.WhiteSmoke, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))));
            System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
            "",
            "Task number 2 "}, -1, System.Drawing.SystemColors.WindowText, System.Drawing.Color.WhiteSmoke, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))));
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.mdiClient1 = new System.Windows.Forms.MdiClient();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.barLeftDockSite = new DevComponents.DotNetBar.DockSite();
            this.barTopDockSite = new DevComponents.DotNetBar.DockSite();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
            this.barBottomDockSite = new DevComponents.DotNetBar.DockSite();
            this.barTaskList = new DevComponents.DotNetBar.Bar();
            this.panelDockContainer1 = new DevComponents.DotNetBar.PanelDockContainer();
            this.listView1 = new System.Windows.Forms.ListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.panelDockContainer2 = new DevComponents.DotNetBar.PanelDockContainer();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.dockTaskList = new DevComponents.DotNetBar.DockContainerItem();
            this.dockSearchResults = new DevComponents.DotNetBar.DockContainerItem();
            this.barRightDockSite = new DevComponents.DotNetBar.DockSite();
            this.barTaskPane = new DevComponents.DotNetBar.Bar();
            this.panelDockContainer4 = new DevComponents.DotNetBar.PanelDockContainer();
            this.explorerBar1 = new DevComponents.DotNetBar.ExplorerBar();
            this.explorerBarGroupItem1 = new DevComponents.DotNetBar.ExplorerBarGroupItem();
            this.buttonItem32 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem31 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
            this.explorerBarGroupItem2 = new DevComponents.DotNetBar.ExplorerBarGroupItem();
            this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem30 = new DevComponents.DotNetBar.ButtonItem();
            this.panelDockContainer3 = new DevComponents.DotNetBar.PanelDockContainer();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.label2 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.TaskPane1 = new DevComponents.DotNetBar.DockContainerItem();
            this.TaskPane2 = new DevComponents.DotNetBar.DockContainerItem();
            this.dockSite4 = new DevComponents.DotNetBar.DockSite();
            this.windowlist = new DevComponents.DotNetBar.Bar();
            this.item_162 = new DevComponents.DotNetBar.MdiWindowListItem();
            this.dockSite1 = new DevComponents.DotNetBar.DockSite();
            this.dockSite2 = new DevComponents.DotNetBar.DockSite();
            this.dockSite3 = new DevComponents.DotNetBar.DockSite();
            this.mainmenu = new DevComponents.DotNetBar.Bar();
            this.bFile = new DevComponents.DotNetBar.ButtonItem();
            this.NewDocument = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
            this.cmdCloseDocument = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
            this.cmdSaveDocumentAs = new DevComponents.DotNetBar.ButtonItem();
            this.cmdPageSetup = new DevComponents.DotNetBar.ButtonItem();
            this.PrintPreview = new DevComponents.DotNetBar.ButtonItem();
            this.Print = new DevComponents.DotNetBar.ButtonItem();
            this.ExitApplication = new DevComponents.DotNetBar.ButtonItem();
            this.bEdit = new DevComponents.DotNetBar.ButtonItem();
            this.bUndo = new DevComponents.DotNetBar.ButtonItem();
            this.bCut = new DevComponents.DotNetBar.ButtonItem();
            this.bCopy = new DevComponents.DotNetBar.ButtonItem();
            this.bPaste = new DevComponents.DotNetBar.ButtonItem();
            this.bDelete = new DevComponents.DotNetBar.ButtonItem();
            this.bSelectAll = new DevComponents.DotNetBar.ButtonItem();
            this.Find = new DevComponents.DotNetBar.ButtonItem();
            this.bFindNext = new DevComponents.DotNetBar.ButtonItem();
            this.bReplace = new DevComponents.DotNetBar.ButtonItem();
            this.bFormat = new DevComponents.DotNetBar.ButtonItem();
            this.bBold = new DevComponents.DotNetBar.ButtonItem();
            this.bItalic = new DevComponents.DotNetBar.ButtonItem();
            this.bUnderline = new DevComponents.DotNetBar.ButtonItem();
            this.bStrikethrough = new DevComponents.DotNetBar.ButtonItem();
            this.bAlignLeft = new DevComponents.DotNetBar.ButtonItem();
            this.bAlignCenter = new DevComponents.DotNetBar.ButtonItem();
            this.bAlignRight = new DevComponents.DotNetBar.ButtonItem();
            this.bTextColor = new DevComponents.DotNetBar.ColorPickerDropDown();
            this.bWindow = new DevComponents.DotNetBar.ButtonItem();
            this.WindowNew = new DevComponents.DotNetBar.ButtonItem();
            this.WindowArrangeAll = new DevComponents.DotNetBar.ButtonItem();
            this.item_236 = new DevComponents.DotNetBar.MdiWindowListItem();
            this.bHelp = new DevComponents.DotNetBar.ButtonItem();
            this.bAbout = new DevComponents.DotNetBar.ButtonItem();
            this.bChangeStyle = new DevComponents.DotNetBar.ButtonItem();
            this.cmdStyleOffice2003 = new DevComponents.DotNetBar.ButtonItem();
            this.cmdStyleVS2005 = new DevComponents.DotNetBar.ButtonItem();
            this.cmdStyleOfficeXP = new DevComponents.DotNetBar.ButtonItem();
            this.cmdStyleOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
            this.barStandard = new DevComponents.DotNetBar.Bar();
            this.cmdNewDocument = new DevComponents.DotNetBar.ButtonItem();
            this.cmdOpenDocument = new DevComponents.DotNetBar.ButtonItem();
            this.cmdSaveDocument = new DevComponents.DotNetBar.ButtonItem();
            this.cmdPrintPreview = new DevComponents.DotNetBar.ButtonItem();
            this.cmdPrint = new DevComponents.DotNetBar.ButtonItem();
            this.bThemes = new DevComponents.DotNetBar.ButtonItem();
            this.cmdTabbedMdi = new DevComponents.DotNetBar.ButtonItem();
            this.item_139 = new DevComponents.DotNetBar.CustomizeItem();
            this.barEdit = new DevComponents.DotNetBar.Bar();
            this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
            this.bFind = new DevComponents.DotNetBar.ButtonItem();
            this.item_140 = new DevComponents.DotNetBar.CustomizeItem();
            this.barFormat = new DevComponents.DotNetBar.Bar();
            this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
            this.colorPickerDropDown1 = new DevComponents.DotNetBar.ColorPickerDropDown();
            this.item_141 = new DevComponents.DotNetBar.CustomizeItem();
            this.tabStrip1 = new DevComponents.DotNetBar.TabStrip();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.timerInfoBallon = new System.Windows.Forms.Timer(this.components);
            this.bar1 = new DevComponents.DotNetBar.Bar();
            this.labelStatus = new DevComponents.DotNetBar.LabelItem();
            this.labelPosition = new DevComponents.DotNetBar.LabelItem();
            this.itemProgressBar = new DevComponents.DotNetBar.ProgressBarItem();
            this.contextMenuBar1 = new DevComponents.DotNetBar.ContextMenuBar();
            this.bDockContext = new DevComponents.DotNetBar.ButtonItem();
            this.bTabContext = new DevComponents.DotNetBar.ButtonItem();
            this.cmdContextSave = new DevComponents.DotNetBar.ButtonItem();
            this.cmdContextClose = new DevComponents.DotNetBar.ButtonItem();
            this.bTabColor = new DevComponents.DotNetBar.ButtonItem();
            this.bEditPopup = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
            this.bTaskListMenu = new DevComponents.DotNetBar.ButtonItem();
            this.item_477 = new DevComponents.DotNetBar.ButtonItem();
            this.item_504 = new DevComponents.DotNetBar.ButtonItem();
            this.item_531 = new DevComponents.DotNetBar.ButtonItem();
            this.barBottomDockSite.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barTaskList)).BeginInit();
            this.barTaskList.SuspendLayout();
            this.panelDockContainer1.SuspendLayout();
            this.panelDockContainer2.SuspendLayout();
            this.barRightDockSite.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barTaskPane)).BeginInit();
            this.barTaskPane.SuspendLayout();
            this.panelDockContainer4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.explorerBar1)).BeginInit();
            this.panelDockContainer3.SuspendLayout();
            this.dockSite4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.windowlist)).BeginInit();
            this.dockSite3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.mainmenu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barStandard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barFormat)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
            this.SuspendLayout();
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.DefaultExt = "*.rtf";
            this.openFileDialog1.Filter = "Text Files (*.txt)|*.txt|RTF Files (*.rtf)|*.rtf|All Files(*.*)|*.*";
            this.openFileDialog1.FilterIndex = 2;
            this.openFileDialog1.Title = "Open File";
            // 
            // mdiClient1
            // 
            this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.mdiClient1.Location = new System.Drawing.Point(0, 108);
            this.mdiClient1.Name = "mdiClient1";
            this.mdiClient1.Size = new System.Drawing.Size(473, 244);
            this.mdiClient1.TabIndex = 5;
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
            this.imageList1.Images.SetKeyName(0, "");
            this.imageList1.Images.SetKeyName(1, "");
            this.imageList1.Images.SetKeyName(2, "");
            this.imageList1.Images.SetKeyName(3, "");
            this.imageList1.Images.SetKeyName(4, "");
            this.imageList1.Images.SetKeyName(5, "");
            this.imageList1.Images.SetKeyName(6, "");
            this.imageList1.Images.SetKeyName(7, "");
            this.imageList1.Images.SetKeyName(8, "");
            this.imageList1.Images.SetKeyName(9, "");
            this.imageList1.Images.SetKeyName(10, "");
            this.imageList1.Images.SetKeyName(11, "");
            this.imageList1.Images.SetKeyName(12, "");
            this.imageList1.Images.SetKeyName(13, "");
            this.imageList1.Images.SetKeyName(14, "");
            this.imageList1.Images.SetKeyName(15, "");
            this.imageList1.Images.SetKeyName(16, "");
            this.imageList1.Images.SetKeyName(17, "");
            this.imageList1.Images.SetKeyName(18, "");
            this.imageList1.Images.SetKeyName(19, "");
            this.imageList1.Images.SetKeyName(20, "");
            this.imageList1.Images.SetKeyName(21, "");
            this.imageList1.Images.SetKeyName(22, "");
            this.imageList1.Images.SetKeyName(23, "");
            // 
            // barLeftDockSite
            // 
            this.barLeftDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.barLeftDockSite.Dock = System.Windows.Forms.DockStyle.Left;
            this.barLeftDockSite.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
            this.barLeftDockSite.Location = new System.Drawing.Point(0, 80);
            this.barLeftDockSite.Name = "barLeftDockSite";
            this.barLeftDockSite.Size = new System.Drawing.Size(0, 272);
            this.barLeftDockSite.TabIndex = 3;
            this.barLeftDockSite.TabStop = false;
            // 
            // barTopDockSite
            // 
            this.barTopDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.barTopDockSite.Dock = System.Windows.Forms.DockStyle.Top;
            this.barTopDockSite.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
            this.barTopDockSite.Location = new System.Drawing.Point(0, 80);
            this.barTopDockSite.Name = "barTopDockSite";
            this.barTopDockSite.Size = new System.Drawing.Size(704, 0);
            this.barTopDockSite.TabIndex = 1;
            this.barTopDockSite.TabStop = false;
            // 
            // saveFileDialog1
            // 
            this.saveFileDialog1.DefaultExt = "*.rtf";
            this.saveFileDialog1.FileName = "doc1";
            this.saveFileDialog1.Filter = "Text Files (*.txt)|*.txt|RTF Files (*.rtf)|*.rtf|All Files(*.*)|*.*";
            this.saveFileDialog1.FilterIndex = 2;
            this.saveFileDialog1.Title = "Save File";
            // 
            // dotNetBarManager1
            // 
            this.dotNetBarManager1.BottomDockSite = this.barBottomDockSite;
            this.dotNetBarManager1.DefinitionName = "";
            this.dotNetBarManager1.Images = this.imageList1;
            this.dotNetBarManager1.LeftDockSite = this.barLeftDockSite;
            this.dotNetBarManager1.MdiSystemItemVisible = false;
            this.dotNetBarManager1.ParentForm = this;
            this.dotNetBarManager1.RightDockSite = this.barRightDockSite;
            this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite4;
            this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite1;
            this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite2;
            this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite3;
            this.dotNetBarManager1.TopDockSite = this.barTopDockSite;
            this.dotNetBarManager1.BarClosing += new DevComponents.DotNetBar.DotNetBarManager.BarClosingEventHandler(this.dotNetBarManager1_BarClosing);
            this.dotNetBarManager1.ItemClick += new System.EventHandler(this.BarItemClick);
            this.dotNetBarManager1.PopupContainerLoad += new System.EventHandler(this.LoadPopup);
            this.dotNetBarManager1.MouseLeave += new System.EventHandler(this.dotNetBarManager1_MouseLeave);
            this.dotNetBarManager1.MouseEnter += new System.EventHandler(this.dotNetBarManager1_MouseEnter);
            this.dotNetBarManager1.PopupContainerUnload += new System.EventHandler(this.UnloadPopup);
            this.dotNetBarManager1.DockTabChange += new DevComponents.DotNetBar.DotNetBarManager.DockTabChangeEventHandler(this.dotNetBarManager1_DockTabChange);
            // 
            // barBottomDockSite
            // 
            this.barBottomDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.barBottomDockSite.Controls.Add(this.barTaskList);
            this.barBottomDockSite.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barBottomDockSite.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
            ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barTaskList, 704, 128)))}, DevComponents.DotNetBar.eOrientation.Vertical);
            this.barBottomDockSite.Location = new System.Drawing.Point(0, 352);
            this.barBottomDockSite.Name = "barBottomDockSite";
            this.barBottomDockSite.Size = new System.Drawing.Size(704, 131);
            this.barBottomDockSite.TabIndex = 2;
            this.barBottomDockSite.TabStop = false;
            // 
            // barTaskList
            // 
            this.barTaskList.AccessibleDescription = "DotNetBar Bar (barTaskList)";
            this.barTaskList.AccessibleName = "DotNetBar Bar";
            this.barTaskList.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.barTaskList.CanCustomize = false;
            this.barTaskList.CanHide = true;
            this.contextMenuBar1.SetContextMenuEx(this.barTaskList, this.bDockContext);
            this.barTaskList.Controls.Add(this.panelDockContainer1);
            this.barTaskList.Controls.Add(this.panelDockContainer2);
            this.barTaskList.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Caption;
            this.barTaskList.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.dockTaskList,
            this.dockSearchResults});
            this.barTaskList.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
            this.barTaskList.Location = new System.Drawing.Point(0, 3);
            this.barTaskList.Name = "barTaskList";
            this.barTaskList.SelectedDockTab = 0;
            this.barTaskList.Size = new System.Drawing.Size(704, 128);
            this.barTaskList.Stretch = true;
            this.barTaskList.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.barTaskList.TabIndex = 0;
            this.barTaskList.TabNavigation = true;
            this.barTaskList.TabStop = false;
            this.barTaskList.Text = "Dockable Window";
            // 
            // panelDockContainer1
            // 
            this.panelDockContainer1.Controls.Add(this.listView1);
            this.panelDockContainer1.Location = new System.Drawing.Point(3, 23);
            this.panelDockContainer1.Name = "panelDockContainer1";
            this.panelDockContainer1.Size = new System.Drawing.Size(698, 77);
            this.panelDockContainer1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelDockContainer1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelDockContainer1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelDockContainer1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelDockContainer1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelDockContainer1.Style.GradientAngle = 90;
            this.panelDockContainer1.TabIndex = 1;
            // 
            // listView1
            // 
            this.listView1.BackColor = System.Drawing.SystemColors.Window;
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2});
            this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView1.FullRowSelect = true;
            this.listView1.GridLines = true;
            this.listView1.HideSelection = false;
            this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
            listViewItem1,
            listViewItem2});
            this.listView1.Location = new System.Drawing.Point(0, 0);
            this.listView1.Name = "listView1";
            this.listView1.Size = new System.Drawing.Size(698, 77);
            this.listView1.TabIndex = 2;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "!";
            this.columnHeader1.Width = 18;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Description";
            this.columnHeader2.Width = 110;
            // 
            // panelDockContainer2
            // 
            this.panelDockContainer2.Controls.Add(this.textBox1);
            this.panelDockContainer2.Location = new System.Drawing.Point(3, 23);
            this.panelDockContainer2.Name = "panelDockContainer2";
            this.panelDockContainer2.Size = new System.Drawing.Size(698, 77);
            this.panelDockContainer2.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelDockContainer2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelDockContainer2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelDockContainer2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelDockContainer2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelDockContainer2.Style.GradientAngle = 90;
            this.panelDockContainer2.TabIndex = 2;
            // 
            // textBox1
            // 
            this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBox1.Location = new System.Drawing.Point(0, 0);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(698, 16);
            this.textBox1.TabIndex = 0;
            // 
            // dockTaskList
            // 
            this.dockTaskList.Control = this.panelDockContainer1;
            this.dockTaskList.DefaultFloatingSize = new System.Drawing.Size(256, 196);
            this.dockTaskList.GlobalItem = true;
            this.dockTaskList.GlobalName = "dockTaskList";
            this.dockTaskList.Image = ((System.Drawing.Image)(resources.GetObject("dockTaskList.Image")));
            this.dockTaskList.Name = "dockTaskList";
            this.dockTaskList.Text = "Task ListView";
            // 
            // dockSearchResults
            // 
            this.dockSearchResults.Control = this.panelDockContainer2;
            this.dockSearchResults.DefaultFloatingSize = new System.Drawing.Size(256, 196);
            this.dockSearchResults.GlobalItem = true;
            this.dockSearchResults.GlobalName = "dockSearchResults";
            this.dockSearchResults.Image = ((System.Drawing.Image)(resources.GetObject("dockSearchResults.Image")));
            this.dockSearchResults.Name = "dockSearchResults";
            this.dockSearchResults.Text = "Search Results";
            // 
            // barRightDockSite
            // 
            this.barRightDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.barRightDockSite.Controls.Add(this.barTaskPane);
            this.barRightDockSite.Dock = System.Windows.Forms.DockStyle.Right;
            this.barRightDockSite.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer(new DevComponents.DotNetBar.DocumentBaseContainer[] {
            ((DevComponents.DotNetBar.DocumentBaseContainer)(new DevComponents.DotNetBar.DocumentBarContainer(this.barTaskPane, 228, 272)))}, DevComponents.DotNetBar.eOrientation.Horizontal);
            this.barRightDockSite.Location = new System.Drawing.Point(473, 80);
            this.barRightDockSite.Name = "barRightDockSite";
            this.barRightDockSite.Size = new System.Drawing.Size(231, 272);
            this.barRightDockSite.TabIndex = 4;
            this.barRightDockSite.TabStop = false;
            // 
            // barTaskPane
            // 
            this.barTaskPane.AccessibleDescription = "DotNetBar Bar (barTaskPane)";
            this.barTaskPane.AccessibleName = "DotNetBar Bar";
            this.barTaskPane.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.barTaskPane.AutoSyncBarCaption = true;
            this.barTaskPane.Controls.Add(this.panelDockContainer4);
            this.barTaskPane.Controls.Add(this.panelDockContainer3);
            this.barTaskPane.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.CaptionTaskPane;
            this.barTaskPane.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.TaskPane1,
            this.TaskPane2});
            this.barTaskPane.LayoutType = DevComponents.DotNetBar.eLayoutType.DockContainer;
            this.barTaskPane.Location = new System.Drawing.Point(3, 0);
            this.barTaskPane.Name = "barTaskPane";
            this.barTaskPane.SelectedDockTab = 0;
            this.barTaskPane.Size = new System.Drawing.Size(228, 272);
            this.barTaskPane.Stretch = true;
            this.barTaskPane.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.barTaskPane.TabIndex = 0;
            this.barTaskPane.TabStop = false;
            this.barTaskPane.Text = "Getting Started";
            // 
            // panelDockContainer4
            // 
            this.panelDockContainer4.Controls.Add(this.explorerBar1);
            this.panelDockContainer4.Location = new System.Drawing.Point(3, 26);
            this.panelDockContainer4.Name = "panelDockContainer4";
            this.panelDockContainer4.Size = new System.Drawing.Size(222, 243);
            this.panelDockContainer4.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelDockContainer4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelDockContainer4.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelDockContainer4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelDockContainer4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelDockContainer4.Style.GradientAngle = 90;
            this.panelDockContainer4.TabIndex = 2;
            // 
            // explorerBar1
            // 
            this.explorerBar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.explorerBar1.BackColor = System.Drawing.SystemColors.Control;
            // 
            // 
            // 
            this.explorerBar1.BackStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.explorerBar1.BackStyle.BackColorGradientAngle = 90;
            this.explorerBar1.BackStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.explorerBar1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.explorerBar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
            this.explorerBar1.GroupImages = null;
            this.explorerBar1.Groups.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.explorerBarGroupItem1,
            this.explorerBarGroupItem2});
            this.explorerBar1.Images = null;
            this.explorerBar1.Location = new System.Drawing.Point(0, 0);
            this.explorerBar1.Name = "explorerBar1";
            this.explorerBar1.Size = new System.Drawing.Size(222, 243);
            this.explorerBar1.TabIndex = 4;
            this.explorerBar1.Text = "explorerBar1";
            // 
            // explorerBarGroupItem1
            // 
            // 
            // 
            // 
            this.explorerBarGroupItem1.BackStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.explorerBarGroupItem1.BackStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem1.BackStyle.BorderColor = System.Drawing.Color.White;
            this.explorerBarGroupItem1.BackStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem1.BackStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem1.BackStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem1.ExpandBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(182)))), ((int)(((byte)(216)))));
            this.explorerBarGroupItem1.ExpandButtonVisible = false;
            this.explorerBarGroupItem1.Expanded = true;
            this.explorerBarGroupItem1.ExpandForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(60)))), ((int)(((byte)(165)))));
            this.explorerBarGroupItem1.ExpandHotBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(182)))), ((int)(((byte)(216)))));
            this.explorerBarGroupItem1.ExpandHotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.explorerBarGroupItem1.HeaderExpands = false;
            this.explorerBarGroupItem1.Name = "explorerBarGroupItem1";
            this.explorerBarGroupItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem32,
            this.buttonItem31,
            this.buttonItem26});
            this.explorerBarGroupItem1.Text = "Assistance";
            // 
            // 
            // 
            this.explorerBarGroupItem1.TitleHotStyle.BackColor = System.Drawing.Color.White;
            this.explorerBarGroupItem1.TitleHotStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(211)))), ((int)(((byte)(247)))));
            this.explorerBarGroupItem1.TitleHotStyle.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
            this.explorerBarGroupItem1.TitleHotStyle.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            // 
            // 
            // 
            this.explorerBarGroupItem1.TitleStyle.BackColor = System.Drawing.Color.White;
            this.explorerBarGroupItem1.TitleStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.explorerBarGroupItem1.TitleStyle.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
            this.explorerBarGroupItem1.TitleStyle.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            // 
            // buttonItem32
            // 
            this.buttonItem32.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem32.HotFontUnderline = true;
            this.buttonItem32.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem32.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem32.Name = "buttonItem32";
            this.buttonItem32.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem32.Text = " Connect to DevComponents Online";
            // 
            // buttonItem31
            // 
            this.buttonItem31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem31.HotFontUnderline = true;
            this.buttonItem31.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem31.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem31.Name = "buttonItem31";
            this.buttonItem31.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem31.Text = " Get latest news about using this product";
            // 
            // buttonItem26
            // 
            this.buttonItem26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem26.HotFontUnderline = true;
            this.buttonItem26.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem26.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem26.Name = "buttonItem26";
            this.buttonItem26.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem26.Text = " Automatically update this list from web";
            // 
            // explorerBarGroupItem2
            // 
            // 
            // 
            // 
            this.explorerBarGroupItem2.BackStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.explorerBarGroupItem2.BackStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem2.BackStyle.BorderColor = System.Drawing.Color.White;
            this.explorerBarGroupItem2.BackStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem2.BackStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem2.BackStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.explorerBarGroupItem2.ExpandBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(182)))), ((int)(((byte)(216)))));
            this.explorerBarGroupItem2.ExpandButtonVisible = false;
            this.explorerBarGroupItem2.Expanded = true;
            this.explorerBarGroupItem2.ExpandForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(60)))), ((int)(((byte)(165)))));
            this.explorerBarGroupItem2.ExpandHotBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(182)))), ((int)(((byte)(216)))));
            this.explorerBarGroupItem2.ExpandHotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.explorerBarGroupItem2.HeaderExpands = false;
            this.explorerBarGroupItem2.Name = "explorerBarGroupItem2";
            this.explorerBarGroupItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem27,
            this.buttonItem28,
            this.buttonItem29,
            this.buttonItem30});
            this.explorerBarGroupItem2.Text = "Open";
            // 
            // 
            // 
            this.explorerBarGroupItem2.TitleHotStyle.BackColor = System.Drawing.Color.White;
            this.explorerBarGroupItem2.TitleHotStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(211)))), ((int)(((byte)(247)))));
            this.explorerBarGroupItem2.TitleHotStyle.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
            this.explorerBarGroupItem2.TitleHotStyle.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            // 
            // 
            // 
            this.explorerBarGroupItem2.TitleStyle.BackColor = System.Drawing.Color.White;
            this.explorerBarGroupItem2.TitleStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.explorerBarGroupItem2.TitleStyle.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
            this.explorerBarGroupItem2.TitleStyle.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            // 
            // buttonItem27
            // 
            this.buttonItem27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem27.HotFontUnderline = true;
            this.buttonItem27.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem27.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem27.Name = "buttonItem27";
            this.buttonItem27.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem27.Text = "Document1.doc";
            // 
            // buttonItem28
            // 
            this.buttonItem28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem28.HotFontUnderline = true;
            this.buttonItem28.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem28.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem28.Name = "buttonItem28";
            this.buttonItem28.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem28.Text = "My Document 2.doc";
            // 
            // buttonItem29
            // 
            this.buttonItem29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem29.HotFontUnderline = true;
            this.buttonItem29.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem29.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem29.Name = "buttonItem29";
            this.buttonItem29.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem29.Text = "Report.doc";
            // 
            // buttonItem30
            // 
            this.buttonItem30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(93)))), ((int)(((byte)(198)))));
            this.buttonItem30.HotFontUnderline = true;
            this.buttonItem30.HotForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(142)))), ((int)(((byte)(255)))));
            this.buttonItem30.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.None;
            this.buttonItem30.Name = "buttonItem30";
            this.buttonItem30.PopupSide = DevComponents.DotNetBar.ePopupSide.Left;
            this.buttonItem30.Text = "End of year account.doc";
            // 
            // panelDockContainer3
            // 
            this.panelDockContainer3.Controls.Add(this.listBox1);
            this.panelDockContainer3.Controls.Add(this.label2);
            this.panelDockContainer3.Controls.Add(this.button1);
            this.panelDockContainer3.Controls.Add(this.textBox2);
            this.panelDockContainer3.Controls.Add(this.label1);
            this.panelDockContainer3.Location = new System.Drawing.Point(3, 26);
            this.panelDockContainer3.Name = "panelDockContainer3";
            this.panelDockContainer3.Size = new System.Drawing.Size(222, 243);
            this.panelDockContainer3.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelDockContainer3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelDockContainer3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelDockContainer3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelDockContainer3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelDockContainer3.Style.GradientAngle = 90;
            this.panelDockContainer3.TabIndex = 1;
            // 
            // listBox1
            // 
            this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.listBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.listBox1.IntegralHeight = false;
            this.listBox1.ItemHeight = 17;
            this.listBox1.Location = new System.Drawing.Point(8, 78);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(205, 163);
            this.listBox1.TabIndex = 9;
            // 
            // label2
            // 
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Location = new System.Drawing.Point(8, 60);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(96, 18);
            this.label2.TabIndex = 8;
            this.label2.Text = "Search results:";
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.button1.BackColor = System.Drawing.Color.Transparent;
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button1.ForeColor = System.Drawing.Color.Transparent;
            this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
            this.button1.Location = new System.Drawing.Point(184, 26);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(25, 22);
            this.button1.TabIndex = 7;
            this.button1.UseVisualStyleBackColor = false;
            // 
            // textBox2
            // 
            this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox2.Location = new System.Drawing.Point(8, 26);
            this.textBox2.Name = "textBox2";
            this.textBox2.Size = new System.Drawing.Size(169, 23);
            this.textBox2.TabIndex = 6;
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Location = new System.Drawing.Point(8, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(96, 17);
            this.label1.TabIndex = 5;
            this.label1.Text = "Search for:";
            // 
            // TaskPane1
            // 
            this.TaskPane1.Control = this.panelDockContainer4;
            this.TaskPane1.DefaultFloatingSize = new System.Drawing.Size(193, 290);
            this.TaskPane1.GlobalItem = true;
            this.TaskPane1.GlobalName = "TaskPane1";
            this.TaskPane1.Name = "TaskPane1";
            this.TaskPane1.Text = "Getting Started";
            // 
            // TaskPane2
            // 
            this.TaskPane2.Control = this.panelDockContainer3;
            this.TaskPane2.DefaultFloatingSize = new System.Drawing.Size(193, 290);
            this.TaskPane2.GlobalItem = true;
            this.TaskPane2.GlobalName = "TaskPane2";
            this.TaskPane2.Name = "TaskPane2";
            this.TaskPane2.Text = "Research";
            // 
            // dockSite4
            // 
            this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite4.Controls.Add(this.windowlist);
            this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.dockSite4.Location = new System.Drawing.Point(0, 483);
            this.dockSite4.Name = "dockSite4";
            this.dockSite4.Size = new System.Drawing.Size(704, 28);
            this.dockSite4.TabIndex = 11;
            this.dockSite4.TabStop = false;
            // 
            // windowlist
            // 
            this.windowlist.AccessibleDescription = "Open Windows (windowlist)";
            this.windowlist.AccessibleName = "Open Windows";
            this.windowlist.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.windowlist.CanDockLeft = false;
            this.windowlist.CanDockRight = false;
            this.windowlist.CanDockTop = false;
            this.windowlist.DockSide = DevComponents.DotNetBar.eDockSide.Bottom;
            this.windowlist.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.item_162});
            this.windowlist.Location = new System.Drawing.Point(0, 0);
            this.windowlist.Name = "windowlist";
            this.windowlist.Size = new System.Drawing.Size(704, 27);
            this.windowlist.Stretch = true;
            this.windowlist.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.windowlist.TabIndex = 0;
            this.windowlist.TabStop = false;
            this.windowlist.Text = "Open Windows";
            this.windowlist.Visible = false;
            // 
            // item_162
            // 
            this.item_162.GlobalName = "item_162";
            this.item_162.Name = "item_162";
            this.item_162.ShowWindowIcons = true;
            this.item_162.Text = "MDI Window List";
            // 
            // dockSite1
            // 
            this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
            this.dockSite1.Location = new System.Drawing.Point(0, 80);
            this.dockSite1.Name = "dockSite1";
            this.dockSite1.Size = new System.Drawing.Size(0, 403);
            this.dockSite1.TabIndex = 8;
            this.dockSite1.TabStop = false;
            // 
            // dockSite2
            // 
            this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
            this.dockSite2.Location = new System.Drawing.Point(704, 80);
            this.dockSite2.Name = "dockSite2";
            this.dockSite2.Size = new System.Drawing.Size(0, 403);
            this.dockSite2.TabIndex = 9;
            this.dockSite2.TabStop = false;
            // 
            // dockSite3
            // 
            this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
            this.dockSite3.Controls.Add(this.mainmenu);
            this.dockSite3.Controls.Add(this.barStandard);
            this.dockSite3.Controls.Add(this.barEdit);
            this.dockSite3.Controls.Add(this.barFormat);
            this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
            this.dockSite3.Location = new System.Drawing.Point(0, 0);
            this.dockSite3.Name = "dockSite3";
            this.dockSite3.Size = new System.Drawing.Size(704, 80);
            this.dockSite3.TabIndex = 10;
            this.dockSite3.TabStop = false;
            // 
            // mainmenu
            // 
            this.mainmenu.AccessibleDescription = "DotNetBar Bar (mainmenu)";
            this.mainmenu.AccessibleName = "DotNetBar Bar";
            this.mainmenu.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
            this.mainmenu.DockSide = DevComponents.DotNetBar.eDockSide.Top;
            this.mainmenu.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.bFile,
            this.bEdit,
            this.bFormat,
            this.bWindow,
            this.bHelp,
            this.bChangeStyle});
            this.mainmenu.Location = new System.Drawing.Point(0, 0);
            this.mainmenu.LockDockPosition = true;
            this.mainmenu.MenuBar = true;
            this.mainmenu.Name = "mainmenu";
            this.mainmenu.Size = new System.Drawing.Size(704, 26);
            this.mainmenu.Stretch = true;
            this.mainmenu.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.mainmenu.TabIndex = 0;
            this.mainmenu.TabStop = false;
            this.mainmenu.Text = "Main Menu";
            // 
            // bFile
            // 
            this.bFile.Category = "Main Menu";
            this.bFile.GlobalName = "bFile";
            this.bFile.Name = "bFile";
            this.bFile.PersonalizedMenus = DevComponents.DotNetBar.ePersonalizedMenus.Both;
            this.bFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.NewDocument,
            this.buttonItem1,
            this.cmdCloseDocument,
            this.buttonItem2,
            this.cmdSaveDocumentAs,
            this.cmdPageSetup,
            this.PrintPreview,
            this.Print,
            this.ExitApplication});
            this.bFile.Text = "&File";
            // 
            // NewDocument
            // 
            this.NewDocument.Category = "File";
            this.NewDocument.GlobalName = "NewDocument";
            this.NewDocument.ImageIndex = 10;
            this.NewDocument.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.NewDocument.Name = "NewDocument";
            this.NewDocument.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.NewDocument.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
            this.NewDocument.Text = "&New";
            this.NewDocument.Tooltip = "Create new document";
            this.NewDocument.Click += new System.EventHandler(this.cmdNewDocument_Click);
            // 
            // buttonItem1
            // 
            this.buttonItem1.Category = "File";
            this.buttonItem1.GlobalName = "OpenDocument";
            this.buttonItem1.ImageIndex = 11;
            this.buttonItem1.Name = "buttonItem1";
            this.buttonItem1.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem1.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlO);
            this.buttonItem1.Text = "&Open";
            this.buttonItem1.Tooltip = "Open existing document";
            this.buttonItem1.Click += new System.EventHandler(this.cmdOpenDocument_Click);
            // 
            // cmdCloseDocument
            // 
            this.cmdCloseDocument.Category = "File";
            this.cmdCloseDocument.Enabled = false;
            this.cmdCloseDocument.GlobalName = "CloseDocument";
            this.cmdCloseDocument.ImageIndex = 3;
            this.cmdCloseDocument.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.cmdCloseDocument.Name = "cmdCloseDocument";
            this.cmdCloseDocument.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdCloseDocument.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
            this.cmdCloseDocument.Text = "&Close";
            this.cmdCloseDocument.Tooltip = "Close active document";
            this.cmdCloseDocument.Click += new System.EventHandler(this.cmdCloseDocument_Click);
            // 
            // buttonItem2
            // 
            this.buttonItem2.BeginGroup = true;
            this.buttonItem2.Category = "File";
            this.buttonItem2.GlobalName = "SaveDocument";
            this.buttonItem2.ImageIndex = 17;
            this.buttonItem2.Name = "buttonItem2";
            this.buttonItem2.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem2.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
            this.buttonItem2.Text = "&Save";
            this.buttonItem2.Tooltip = "Save active document";
            this.buttonItem2.Click += new System.EventHandler(this.cmdSaveDocument_Click);
            // 
            // cmdSaveDocumentAs
            // 
            this.cmdSaveDocumentAs.Category = "File";
            this.cmdSaveDocumentAs.GlobalName = "SaveDocumentAs";
            this.cmdSaveDocumentAs.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.cmdSaveDocumentAs.Name = "cmdSaveDocumentAs";
            this.cmdSaveDocumentAs.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdSaveDocumentAs.Text = "Save &As...";
            this.cmdSaveDocumentAs.Click += new System.EventHandler(this.cmdSaveDocumentAs_Click);
            // 
            // cmdPageSetup
            // 
            this.cmdPageSetup.BeginGroup = true;
            this.cmdPageSetup.Category = "File";
            this.cmdPageSetup.GlobalName = "PageSetup";
            this.cmdPageSetup.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.cmdPageSetup.Name = "cmdPageSetup";
            this.cmdPageSetup.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdPageSetup.Text = "Page &Setup...";
            this.cmdPageSetup.Click += new System.EventHandler(this.cmdPageSetup_Click);
            // 
            // PrintPreview
            // 
            this.PrintPreview.Category = "File";
            this.PrintPreview.GlobalName = "PrintPreview";
            this.PrintPreview.ImageIndex = 14;
            this.PrintPreview.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.PrintPreview.Name = "PrintPreview";
            this.PrintPreview.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.PrintPreview.Text = "Print Pre&view";
            this.PrintPreview.Click += new System.EventHandler(this.cmdPrintPreview_Click);
            // 
            // Print
            // 
            this.Print.Category = "File";
            this.Print.GlobalName = "Print";
            this.Print.ImageIndex = 13;
            this.Print.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.Print.Name = "Print";
            this.Print.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.Print.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
            this.Print.Text = "&Print";
            this.Print.Click += new System.EventHandler(this.cmdPrint_Click);
            // 
            // ExitApplication
            // 
            this.ExitApplication.BeginGroup = true;
            this.ExitApplication.Category = "File";
            this.ExitApplication.GlobalName = "ExitApplication";
            this.ExitApplication.Name = "ExitApplication";
            this.ExitApplication.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.ExitApplication.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
            this.ExitApplication.Text = "E&xit";
            this.ExitApplication.Click += new System.EventHandler(this.cmdExitApplication_Click);
            // 
            // bEdit
            // 
            this.bEdit.Category = "Main Menu";
            this.bEdit.GlobalName = "bEdit";
            this.bEdit.Name = "bEdit";
            this.bEdit.PersonalizedMenus = DevComponents.DotNetBar.ePersonalizedMenus.Both;
            this.bEdit.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.bUndo,
            this.bCut,
            this.bCopy,
            this.bPaste,
            this.bDelete,
            this.bSelectAll,
            this.Find,
            this.bFindNext,
            this.bReplace});
            this.bEdit.Text = "&Edit";
            // 
            // bUndo
            // 
            this.bUndo.Category = "Edit";
            this.bUndo.Enabled = false;
            this.bUndo.GlobalName = "bUndo";
            this.bUndo.ImageIndex = 19;
            this.bUndo.Name = "bUndo";
            this.bUndo.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bUndo.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
            this.bUndo.Text = "&Undo";
            // 
            // bCut
            // 
            this.bCut.BeginGroup = true;
            this.bCut.Category = "Edit";
            this.bCut.Enabled = false;
            this.bCut.GlobalName = "bCut";
            this.bCut.ImageIndex = 5;
            this.bCut.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bCut.Name = "bCut";
            this.bCut.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bCut.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
            this.bCut.Text = "Cu&t";
            // 
            // bCopy
            // 
            this.bCopy.Category = "Edit";
            this.bCopy.Enabled = false;
            this.bCopy.GlobalName = "bCopy";
            this.bCopy.ImageIndex = 4;
            this.bCopy.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bCopy.Name = "bCopy";
            this.bCopy.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bCopy.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
            this.bCopy.Text = "&Copy";
            // 
            // bPaste
            // 
            this.bPaste.Category = "Edit";
            this.bPaste.Enabled = false;
            this.bPaste.GlobalName = "bPaste";
            this.bPaste.ImageIndex = 12;
            this.bPaste.Name = "bPaste";
            this.bPaste.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bPaste.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
            this.bPaste.Text = "&Paste";
            // 
            // bDelete
            // 
            this.bDelete.Category = "Edit";
            this.bDelete.Enabled = false;
            this.bDelete.GlobalName = "bDelete";
            this.bDelete.ImageIndex = 2;
            this.bDelete.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bDelete.Name = "bDelete";
            this.bDelete.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bDelete.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlD);
            this.bDelete.Text = "&Delete";
            // 
            // bSelectAll
            // 
            this.bSelectAll.BeginGroup = true;
            this.bSelectAll.Category = "Edit";
            this.bSelectAll.Enabled = false;
            this.bSelectAll.GlobalName = "bSelectAll";
            this.bSelectAll.Name = "bSelectAll";
            this.bSelectAll.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bSelectAll.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
            this.bSelectAll.Text = "Select &All";
            // 
            // Find
            // 
            this.Find.BeginGroup = true;
            this.Find.Category = "Edit";
            this.Find.Enabled = false;
            this.Find.GlobalName = "Find";
            this.Find.ImageIndex = 7;
            this.Find.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.Find.Name = "Find";
            this.Find.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.Find.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlF);
            this.Find.Text = "&Find...";
            // 
            // bFindNext
            // 
            this.bFindNext.Category = "Edit";
            this.bFindNext.Enabled = false;
            this.bFindNext.GlobalName = "bFindNext";
            this.bFindNext.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bFindNext.Name = "bFindNext";
            this.bFindNext.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bFindNext.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F3);
            this.bFindNext.Text = "Find &Next";
            // 
            // bReplace
            // 
            this.bReplace.Category = "Edit";
            this.bReplace.Enabled = false;
            this.bReplace.GlobalName = "bReplace";
            this.bReplace.ImageIndex = 15;
            this.bReplace.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bReplace.Name = "bReplace";
            this.bReplace.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bReplace.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlH);
            this.bReplace.Text = "&Replace...";
            // 
            // bFormat
            // 
            this.bFormat.Category = "Main Menu";
            this.bFormat.GlobalName = "bFormat";
            this.bFormat.Name = "bFormat";
            this.bFormat.PersonalizedMenus = DevComponents.DotNetBar.ePersonalizedMenus.Both;
            this.bFormat.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.bBold,
            this.bItalic,
            this.bUnderline,
            this.bStrikethrough,
            this.bAlignLeft,
            this.bAlignCenter,
            this.bAlignRight,
            this.bTextColor});
            this.bFormat.Text = "F&ormat";
            // 
            // bBold
            // 
            this.bBold.Category = "Format";
            this.bBold.Enabled = false;
            this.bBold.GlobalName = "bBold";
            this.bBold.ImageIndex = 0;
            this.bBold.Name = "bBold";
            this.bBold.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bBold.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlB);
            this.bBold.Text = "&Bold";
            // 
            // bItalic
            // 
            this.bItalic.Category = "Format";
            this.bItalic.Enabled = false;
            this.bItalic.GlobalName = "bItalic";
            this.bItalic.ImageIndex = 8;
            this.bItalic.Name = "bItalic";
            this.bItalic.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bItalic.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
            this.bItalic.Text = "&Italic";
            // 
            // bUnderline
            // 
            this.bUnderline.Category = "Format";
            this.bUnderline.Enabled = false;
            this.bUnderline.GlobalName = "bUnderline";
            this.bUnderline.ImageIndex = 18;
            this.bUnderline.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bUnderline.Name = "bUnderline";
            this.bUnderline.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bUnderline.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlU);
            this.bUnderline.Text = "&Underline";
            // 
            // bStrikethrough
            // 
            this.bStrikethrough.Category = "Format";
            this.bStrikethrough.Enabled = false;
            this.bStrikethrough.GlobalName = "bStrikethrough";
            this.bStrikethrough.ImageIndex = 20;
            this.bStrikethrough.Name = "bStrikethrough";
            this.bStrikethrough.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bStrikethrough.Text = "&Strikethrough";
            // 
            // bAlignLeft
            // 
            this.bAlignLeft.BeginGroup = true;
            this.bAlignLeft.Category = "Format";
            this.bAlignLeft.Enabled = false;
            this.bAlignLeft.GlobalName = "bAlignLeft";
            this.bAlignLeft.ImageIndex = 9;
            this.bAlignLeft.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bAlignLeft.Name = "bAlignLeft";
            this.bAlignLeft.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bAlignLeft.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlL);
            this.bAlignLeft.Text = "Align &Left";
            // 
            // bAlignCenter
            // 
            this.bAlignCenter.Category = "Format";
            this.bAlignCenter.Enabled = false;
            this.bAlignCenter.GlobalName = "bAlignCenter";
            this.bAlignCenter.ImageIndex = 1;
            this.bAlignCenter.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bAlignCenter.Name = "bAlignCenter";
            this.bAlignCenter.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bAlignCenter.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlM);
            this.bAlignCenter.Text = "Align &Center";
            // 
            // bAlignRight
            // 
            this.bAlignRight.Category = "Format";
            this.bAlignRight.Enabled = false;
            this.bAlignRight.GlobalName = "bAlignRight";
            this.bAlignRight.ImageIndex = 16;
            this.bAlignRight.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bAlignRight.Name = "bAlignRight";
            this.bAlignRight.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bAlignRight.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
            this.bAlignRight.Text = "Align &Right";
            // 
            // bTextColor
            // 
            this.bTextColor.Enabled = false;
            this.bTextColor.GlobalName = "bTextColor";
            this.bTextColor.ImageIndex = 21;
            this.bTextColor.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.bTextColor.Name = "bTextColor";
            this.bTextColor.Text = "&Text Color";
            // 
            // bWindow
            // 
            this.bWindow.Category = "Main Menu";
            this.bWindow.GlobalName = "bWindow";
            this.bWindow.Name = "bWindow";
            this.bWindow.PersonalizedMenus = DevComponents.DotNetBar.ePersonalizedMenus.Both;
            this.bWindow.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.WindowNew,
            this.WindowArrangeAll,
            this.item_236});
            this.bWindow.Text = "&Window";
            // 
            // WindowNew
            // 
            this.WindowNew.Category = "Window";
            this.WindowNew.GlobalName = "WindowNew";
            this.WindowNew.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.WindowNew.Name = "WindowNew";
            this.WindowNew.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.WindowNew.Text = "&New Window";
            this.WindowNew.Click += new System.EventHandler(this.cmdNewDocument_Click);
            // 
            // WindowArrangeAll
            // 
            this.WindowArrangeAll.Category = "Window";
            this.WindowArrangeAll.GlobalName = "WindowArrangeAll";
            this.WindowArrangeAll.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.WindowArrangeAll.Name = "WindowArrangeAll";
            this.WindowArrangeAll.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.WindowArrangeAll.Text = "&Arrange All";
            this.WindowArrangeAll.Click += new System.EventHandler(this.cmdWindowArrangeAll_Click);
            // 
            // item_236
            // 
            this.item_236.BeginGroup = true;
            this.item_236.GlobalName = "item_236";
            this.item_236.Name = "item_236";
            this.item_236.ShowWindowIcons = true;
            this.item_236.Text = "MDI Window List";
            // 
            // bHelp
            // 
            this.bHelp.Category = "Main Menu";
            this.bHelp.GlobalName = "bHelp";
            this.bHelp.Name = "bHelp";
            this.bHelp.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.bAbout});
            this.bHelp.Text = "&Help";
            // 
            // bAbout
            // 
            this.bAbout.Category = "Help";
            this.bAbout.GlobalName = "bAbout";
            this.bAbout.Name = "bAbout";
            this.bAbout.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bAbout.Text = "&About...";
            // 
            // bChangeStyle
            // 
            this.bChangeStyle.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.bChangeStyle.GlobalName = "bChangeStyle";
            this.bChangeStyle.Image = ((System.Drawing.Image)(resources.GetObject("bChangeStyle.Image")));
            this.bChangeStyle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Right;
            this.bChangeStyle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
            this.bChangeStyle.Name = "bChangeStyle";
            this.bChangeStyle.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.cmdStyleOffice2003,
            this.cmdStyleVS2005,
            this.cmdStyleOfficeXP,
            this.cmdStyleOffice2007Blue});
            this.bChangeStyle.Text = "Style";
            // 
            // cmdStyleOffice2003
            // 
            this.cmdStyleOffice2003.GlobalName = "StyleOffice2003";
            this.cmdStyleOffice2003.Name = "cmdStyleOffice2003";
            this.cmdStyleOffice2003.Text = "Office 2003";
            this.cmdStyleOffice2003.Click += new System.EventHandler(this.cmdStyleOffice2003_Click);
            // 
            // cmdStyleVS2005
            // 
            this.cmdStyleVS2005.GlobalName = "StyleVS2005";
            this.cmdStyleVS2005.Name = "cmdStyleVS2005";
            this.cmdStyleVS2005.Text = "VS 2005";
            this.cmdStyleVS2005.Click += new System.EventHandler(this.cmdStyleVS2005_Click);
            // 
            // cmdStyleOfficeXP
            // 
            this.cmdStyleOfficeXP.GlobalName = "StyleOfficeXP";
            this.cmdStyleOfficeXP.Name = "cmdStyleOfficeXP";
            this.cmdStyleOfficeXP.Text = "Office XP";
            this.cmdStyleOfficeXP.Click += new System.EventHandler(this.cmdStyleOfficeXP_Click);
            // 
            // cmdStyleOffice2007Blue
            // 
            this.cmdStyleOffice2007Blue.GlobalName = "StyleOffice2007Blue";
            this.cmdStyleOffice2007Blue.Name = "cmdStyleOffice2007Blue";
            this.cmdStyleOffice2007Blue.Text = "Office 2007 <font color=\"Blue\"><b>Blue</b></font>";
            this.cmdStyleOffice2007Blue.Click += new System.EventHandler(this.cmdStyleOffice2007Blue_Click);
            // 
            // barStandard
            // 
            this.barStandard.AccessibleDescription = "DotNetBar Bar (barStandard)";
            this.barStandard.AccessibleName = "DotNetBar Bar";
            this.barStandard.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.barStandard.CanHide = true;
            this.barStandard.DockLine = 1;
            this.barStandard.DockSide = DevComponents.DotNetBar.eDockSide.Top;
            this.barStandard.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
            this.barStandard.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.cmdNewDocument,
            this.cmdOpenDocument,
            this.cmdSaveDocument,
            this.cmdPrintPreview,
            this.cmdPrint,
            this.bThemes,
            this.cmdTabbedMdi,
            this.item_139});
            this.barStandard.Location = new System.Drawing.Point(0, 27);
            this.barStandard.Name = "barStandard";
            this.barStandard.Size = new System.Drawing.Size(365, 27);
            this.barStandard.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.barStandard.TabIndex = 1;
            this.barStandard.TabStop = false;
            this.barStandard.Text = "Standard";
            // 
            // cmdNewDocument
            // 
            this.cmdNewDocument.GlobalName = "NewDocument";
            this.cmdNewDocument.ImageIndex = 10;
            this.cmdNewDocument.Name = "cmdNewDocument";
            this.cmdNewDocument.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdNewDocument.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
            this.cmdNewDocument.Text = "&New";
            this.cmdNewDocument.Tooltip = "Create new document";
            this.cmdNewDocument.Click += new System.EventHandler(this.cmdNewDocument_Click);
            // 
            // cmdOpenDocument
            // 
            this.cmdOpenDocument.GlobalName = "OpenDocument";
            this.cmdOpenDocument.ImageIndex = 11;
            this.cmdOpenDocument.Name = "cmdOpenDocument";
            this.cmdOpenDocument.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdOpenDocument.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlO);
            this.cmdOpenDocument.Text = "&Open";
            this.cmdOpenDocument.Tooltip = "Open existing document";
            this.cmdOpenDocument.Click += new System.EventHandler(this.cmdOpenDocument_Click);
            // 
            // cmdSaveDocument
            // 
            this.cmdSaveDocument.GlobalName = "SaveDocument";
            this.cmdSaveDocument.ImageIndex = 17;
            this.cmdSaveDocument.Name = "cmdSaveDocument";
            this.cmdSaveDocument.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdSaveDocument.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
            this.cmdSaveDocument.Text = "&Save";
            this.cmdSaveDocument.Tooltip = "Save active document";
            this.cmdSaveDocument.Click += new System.EventHandler(this.cmdSaveDocument_Click);
            // 
            // cmdPrintPreview
            // 
            this.cmdPrintPreview.BeginGroup = true;
            this.cmdPrintPreview.GlobalName = "PrintPreview";
            this.cmdPrintPreview.ImageIndex = 14;
            this.cmdPrintPreview.Name = "cmdPrintPreview";
            this.cmdPrintPreview.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdPrintPreview.Text = "Print Pre&view";
            this.cmdPrintPreview.Tooltip = "Display print preview";
            this.cmdPrintPreview.Click += new System.EventHandler(this.cmdPrintPreview_Click);
            // 
            // cmdPrint
            // 
            this.cmdPrint.GlobalName = "Print";
            this.cmdPrint.ImageIndex = 13;
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.cmdPrint.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
            this.cmdPrint.Text = "&Print";
            this.cmdPrint.Tooltip = "Print active document";
            this.cmdPrint.Click += new System.EventHandler(this.cmdPrint_Click);
            // 
            // bThemes
            // 
            this.bThemes.BeginGroup = true;
            this.bThemes.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
            this.bThemes.Category = "Commands";
            this.bThemes.GlobalName = "bThemes";
            this.bThemes.Image = ((System.Drawing.Image)(resources.GetObject("bThemes.Image")));
            this.bThemes.Name = "bThemes";
            this.bThemes.Text = "Enable Themes";
            this.bThemes.Tooltip = "Enable DotNetBar Theme Support";
            // 
            // cmdTabbedMdi
            // 
            this.cmdTabbedMdi.BeginGroup = true;
            this.cmdTabbedMdi.Category = "Commands";
            this.cmdTabbedMdi.Checked = true;
            this.cmdTabbedMdi.GlobalName = "TabbedMdi";
            this.cmdTabbedMdi.Name = "cmdTabbedMdi";
            this.cmdTabbedMdi.Text = "Tabbed Mdi";
            this.cmdTabbedMdi.Click += new System.EventHandler(this.cmdTabbedMdi_Click);
            // 
            // item_139
            // 
            this.item_139.AutoCollapseOnClick = true;
            this.item_139.CanCustomize = true;
            this.item_139.GlobalName = "item_139";
            this.item_139.Name = "item_139";
            this.item_139.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.item_139.Text = "&Add or Remove Buttons";
            this.item_139.Tooltip = "Bar Options";
            // 
            // barEdit
            // 
            this.barEdit.AccessibleDescription = "DotNetBar Bar (barEdit)";
            this.barEdit.AccessibleName = "DotNetBar Bar";
            this.barEdit.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.barEdit.CanHide = true;
            this.barEdit.DockLine = 1;
            this.barEdit.DockOffset = 224;
            this.barEdit.DockSide = DevComponents.DotNetBar.eDockSide.Top;
            this.barEdit.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
            this.barEdit.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem9,
            this.buttonItem10,
            this.buttonItem11,
            this.buttonItem12,
            this.bFind,
            this.item_140});
            this.barEdit.Location = new System.Drawing.Point(367, 27);
            this.barEdit.Name = "barEdit";
            this.barEdit.Size = new System.Drawing.Size(159, 25);
            this.barEdit.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.barEdit.TabIndex = 2;
            this.barEdit.TabStop = false;
            this.barEdit.Text = "Edit";
            // 
            // buttonItem9
            // 
            this.buttonItem9.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem9.DisabledImage")));
            this.buttonItem9.Enabled = false;
            this.buttonItem9.GlobalName = "bUndo";
            this.buttonItem9.ImageIndex = 19;
            this.buttonItem9.Name = "buttonItem9";
            this.buttonItem9.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem9.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
            this.buttonItem9.Text = "&Undo";
            this.buttonItem9.Tooltip = "Undo last action";
            // 
            // buttonItem10
            // 
            this.buttonItem10.BeginGroup = true;
            this.buttonItem10.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem10.DisabledImage")));
            this.buttonItem10.Enabled = false;
            this.buttonItem10.GlobalName = "bCut";
            this.buttonItem10.ImageIndex = 5;
            this.buttonItem10.Name = "buttonItem10";
            this.buttonItem10.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem10.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
            this.buttonItem10.Text = "Cu&t";
            this.buttonItem10.Tooltip = "Cut selected text";
            // 
            // buttonItem11
            // 
            this.buttonItem11.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem11.DisabledImage")));
            this.buttonItem11.Enabled = false;
            this.buttonItem11.GlobalName = "bCopy";
            this.buttonItem11.ImageIndex = 4;
            this.buttonItem11.Name = "buttonItem11";
            this.buttonItem11.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem11.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
            this.buttonItem11.Text = "&Copy";
            this.buttonItem11.Tooltip = "Copy selected text";
            // 
            // buttonItem12
            // 
            this.buttonItem12.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem12.DisabledImage")));
            this.buttonItem12.Enabled = false;
            this.buttonItem12.GlobalName = "bPaste";
            this.buttonItem12.ImageIndex = 12;
            this.buttonItem12.Name = "buttonItem12";
            this.buttonItem12.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem12.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
            this.buttonItem12.Text = "&Paste";
            this.buttonItem12.Tooltip = "Paste text from clipboard";
            // 
            // bFind
            // 
            this.bFind.BeginGroup = true;
            this.bFind.DisabledImage = ((System.Drawing.Image)(resources.GetObject("bFind.DisabledImage")));
            this.bFind.Enabled = false;
            this.bFind.GlobalName = "Find";
            this.bFind.ImageIndex = 7;
            this.bFind.Name = "bFind";
            this.bFind.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bFind.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlF);
            this.bFind.Text = "&Find...";
            this.bFind.Tooltip = "Find text in active document";
            // 
            // item_140
            // 
            this.item_140.AutoCollapseOnClick = true;
            this.item_140.CanCustomize = true;
            this.item_140.GlobalName = "item_140";
            this.item_140.Name = "item_140";
            this.item_140.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.item_140.Text = "&Add or Remove Buttons";
            this.item_140.Tooltip = "Bar Options";
            // 
            // barFormat
            // 
            this.barFormat.AccessibleDescription = "DotNetBar Bar (barFormat)";
            this.barFormat.AccessibleName = "DotNetBar Bar";
            this.barFormat.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.barFormat.CanHide = true;
            this.barFormat.DockLine = 2;
            this.barFormat.DockSide = DevComponents.DotNetBar.eDockSide.Top;
            this.barFormat.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
            this.barFormat.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem14,
            this.buttonItem15,
            this.buttonItem16,
            this.buttonItem17,
            this.buttonItem18,
            this.buttonItem19,
            this.buttonItem20,
            this.colorPickerDropDown1,
            this.item_141});
            this.barFormat.Location = new System.Drawing.Point(0, 55);
            this.barFormat.Name = "barFormat";
            this.barFormat.Size = new System.Drawing.Size(247, 25);
            this.barFormat.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.barFormat.TabIndex = 3;
            this.barFormat.TabStop = false;
            this.barFormat.Text = "Format";
            // 
            // buttonItem14
            // 
            this.buttonItem14.Category = "Format";
            this.buttonItem14.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem14.DisabledImage")));
            this.buttonItem14.Enabled = false;
            this.buttonItem14.GlobalName = "bBold";
            this.buttonItem14.ImageIndex = 0;
            this.buttonItem14.Name = "buttonItem14";
            this.buttonItem14.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem14.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlB);
            this.buttonItem14.Text = "&Bold";
            this.buttonItem14.Tooltip = "Bold";
            // 
            // buttonItem15
            // 
            this.buttonItem15.Category = "Format";
            this.buttonItem15.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem15.DisabledImage")));
            this.buttonItem15.Enabled = false;
            this.buttonItem15.GlobalName = "bItalic";
            this.buttonItem15.ImageIndex = 8;
            this.buttonItem15.Name = "buttonItem15";
            this.buttonItem15.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem15.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
            this.buttonItem15.Text = "&Italic";
            this.buttonItem15.Tooltip = "Italic";
            // 
            // buttonItem16
            // 
            this.buttonItem16.Category = "Format";
            this.buttonItem16.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem16.DisabledImage")));
            this.buttonItem16.Enabled = false;
            this.buttonItem16.GlobalName = "bUnderline";
            this.buttonItem16.ImageIndex = 18;
            this.buttonItem16.Name = "buttonItem16";
            this.buttonItem16.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem16.Text = "&Underline";
            this.buttonItem16.Tooltip = "Underline";
            // 
            // buttonItem17
            // 
            this.buttonItem17.Category = "Format";
            this.buttonItem17.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem17.DisabledImage")));
            this.buttonItem17.Enabled = false;
            this.buttonItem17.GlobalName = "bStrikethrough";
            this.buttonItem17.ImageIndex = 20;
            this.buttonItem17.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleIfRecentlyUsed;
            this.buttonItem17.Name = "buttonItem17";
            this.buttonItem17.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem17.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlT);
            this.buttonItem17.Text = "&Strikethrough";
            // 
            // buttonItem18
            // 
            this.buttonItem18.BeginGroup = true;
            this.buttonItem18.Category = "Format";
            this.buttonItem18.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem18.DisabledImage")));
            this.buttonItem18.Enabled = false;
            this.buttonItem18.GlobalName = "bAlignLeft";
            this.buttonItem18.ImageIndex = 9;
            this.buttonItem18.Name = "buttonItem18";
            this.buttonItem18.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem18.Text = "Align &Left";
            this.buttonItem18.Tooltip = "Align Left";
            // 
            // buttonItem19
            // 
            this.buttonItem19.Category = "Format";
            this.buttonItem19.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem19.DisabledImage")));
            this.buttonItem19.Enabled = false;
            this.buttonItem19.GlobalName = "bAlignCenter";
            this.buttonItem19.ImageIndex = 1;
            this.buttonItem19.Name = "buttonItem19";
            this.buttonItem19.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem19.Text = "Align &Center";
            this.buttonItem19.Tooltip = "Align Center";
            // 
            // buttonItem20
            // 
            this.buttonItem20.Category = "Format";
            this.buttonItem20.DisabledImage = ((System.Drawing.Image)(resources.GetObject("buttonItem20.DisabledImage")));
            this.buttonItem20.Enabled = false;
            this.buttonItem20.GlobalName = "bAlignRight";
            this.buttonItem20.ImageIndex = 16;
            this.buttonItem20.Name = "buttonItem20";
            this.buttonItem20.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem20.Text = "Align &Right";
            this.buttonItem20.Tooltip = "Align Right";
            // 
            // colorPickerDropDown1
            // 
            this.colorPickerDropDown1.Enabled = false;
            this.colorPickerDropDown1.GlobalName = "bTextColor";
            this.colorPickerDropDown1.ImageIndex = 21;
            this.colorPickerDropDown1.Name = "colorPickerDropDown1";
            this.colorPickerDropDown1.Text = "colorPickerDropDown1";
            // 
            // item_141
            // 
            this.item_141.AutoCollapseOnClick = true;
            this.item_141.CanCustomize = true;
            this.item_141.GlobalName = "item_141";
            this.item_141.Name = "item_141";
            this.item_141.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.item_141.Text = "&Add or Remove Buttons";
            this.item_141.Tooltip = "Bar Options";
            // 
            // tabStrip1
            // 
            this.tabStrip1.AutoSelectAttachedControl = true;
            this.tabStrip1.CanReorderTabs = true;
            this.tabStrip1.CloseButtonOnTabsVisible = true;
            this.tabStrip1.CloseButtonVisible = false;
            this.contextMenuBar1.SetContextMenuEx(this.tabStrip1, this.bTabContext);
            this.tabStrip1.Dock = System.Windows.Forms.DockStyle.Top;
            this.tabStrip1.Location = new System.Drawing.Point(0, 80);
            this.tabStrip1.MdiTabbedDocuments = true;
            this.tabStrip1.Name = "tabStrip1";
            this.tabStrip1.SelectedTab = null;
            this.tabStrip1.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tabStrip1.Size = new System.Drawing.Size(473, 28);
            this.tabStrip1.Style = DevComponents.DotNetBar.eTabStripStyle.OneNote;
            this.tabStrip1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
            this.tabStrip1.TabIndex = 6;
            this.tabStrip1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
            this.tabStrip1.Text = "tabStrip1";
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // timerInfoBallon
            // 
            this.timerInfoBallon.Interval = 3000;
            this.timerInfoBallon.Tick += new System.EventHandler(this.timerInfoBallon_Tick);
            // 
            // bar1
            // 
            this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
            this.bar1.AccessibleName = "DotNetBar Bar";
            this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar;
            this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
            this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.labelStatus,
            this.labelPosition,
            this.itemProgressBar});
            this.bar1.ItemSpacing = 2;
            this.bar1.Location = new System.Drawing.Point(0, 511);
            this.bar1.Name = "bar1";
            this.bar1.Size = new System.Drawing.Size(704, 23);
            this.bar1.Stretch = true;
            this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.bar1.TabIndex = 7;
            this.bar1.TabStop = false;
            this.bar1.Text = "barStatus";
            // 
            // labelStatus
            // 
            this.labelStatus.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.labelStatus.Name = "labelStatus";
            this.labelStatus.PaddingLeft = 2;
            this.labelStatus.PaddingRight = 2;
            this.labelStatus.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
            this.labelStatus.Stretch = true;
            // 
            // labelPosition
            // 
            this.labelPosition.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.labelPosition.Name = "labelPosition";
            this.labelPosition.PaddingLeft = 2;
            this.labelPosition.PaddingRight = 2;
            this.labelPosition.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
            this.labelPosition.Width = 100;
            // 
            // itemProgressBar
            // 
            this.itemProgressBar.ChunkColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.itemProgressBar.ChunkColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139)))));
            this.itemProgressBar.ChunkGradientAngle = 90F;
            this.itemProgressBar.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
            this.itemProgressBar.Name = "itemProgressBar";
            this.itemProgressBar.RecentlyUsed = false;
            this.itemProgressBar.Text = "progressBarItem1";
            // 
            // contextMenuBar1
            // 
            this.contextMenuBar1.Images = this.imageList1;
            this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.bEditPopup,
            this.bTaskListMenu,
            this.bTabContext,
            this.bDockContext});
            this.contextMenuBar1.Location = new System.Drawing.Point(211, 129);
            this.contextMenuBar1.Name = "contextMenuBar1";
            this.contextMenuBar1.Size = new System.Drawing.Size(394, 51);
            this.contextMenuBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
            this.contextMenuBar1.TabIndex = 12;
            this.contextMenuBar1.TabStop = false;
            this.contextMenuBar1.PopupOpen += new DevComponents.DotNetBar.DotNetBarManager.PopupOpenEventHandler(this.contextMenuBar1_PopupOpen);
            this.contextMenuBar1.PopupContainerUnload += new System.EventHandler(this.UnloadPopup);
            this.contextMenuBar1.PopupContainerLoad += new System.EventHandler(this.LoadPopup);
            // 
            // bDockContext
            // 
            this.bDockContext.AutoExpandOnClick = true;
            this.bDockContext.GlobalName = "bDockContext";
            this.bDockContext.Name = "bDockContext";
            this.bDockContext.Text = "bDockContext";
            // 
            // bTabContext
            // 
            this.bTabContext.AutoExpandOnClick = true;
            this.bTabContext.GlobalName = "bTabContext";
            this.bTabContext.Name = "bTabContext";
            this.bTabContext.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.cmdContextSave,
            this.cmdContextClose,
            this.bTabColor});
            this.bTabContext.Text = "bTabContext";
            // 
            // cmdContextSave
            // 
            this.cmdContextSave.GlobalItem = false;
            this.cmdContextSave.ImageIndex = 17;
            this.cmdContextSave.Name = "cmdContextSave";
            this.cmdContextSave.Text = "Save";
            this.cmdContextSave.Tooltip = "Save active document";
            this.cmdContextSave.Click += new System.EventHandler(this.cmdSaveDocument_Click);
            // 
            // cmdContextClose
            // 
            this.cmdContextClose.Enabled = false;
            this.cmdContextClose.GlobalItem = false;
            this.cmdContextClose.Name = "cmdContextClose";
            this.cmdContextClose.Text = "Close";
            this.cmdContextClose.Tooltip = "Close active document";
            this.cmdContextClose.Click += new System.EventHandler(this.cmdCloseDocument_Click);
            // 
            // bTabColor
            // 
            this.bTabColor.BeginGroup = true;
            this.bTabColor.GlobalName = "bTabColor";
            this.bTabColor.Name = "bTabColor";
            this.bTabColor.PopupType = DevComponents.DotNetBar.ePopupType.Container;
            this.bTabColor.Text = "Change Tab Color";
            // 
            // bEditPopup
            // 
            this.bEditPopup.AutoExpandOnClick = true;
            this.bEditPopup.GlobalName = "bEditPopup";
            this.bEditPopup.Name = "bEditPopup";
            this.bEditPopup.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.bEditPopup.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonItem22,
            this.buttonItem23,
            this.buttonItem24,
            this.buttonItem25});
            this.bEditPopup.Text = "bEditPopup";
            // 
            // buttonItem22
            // 
            this.buttonItem22.BeginGroup = true;
            this.buttonItem22.GlobalName = "bCut";
            this.buttonItem22.ImageIndex = 5;
            this.buttonItem22.Name = "buttonItem22";
            this.buttonItem22.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem22.Text = "Cu&t";
            this.buttonItem22.Click += new System.EventHandler(this.DocumentContextMenuCommand);
            // 
            // buttonItem23
            // 
            this.buttonItem23.GlobalName = "bCopy";
            this.buttonItem23.ImageIndex = 4;
            this.buttonItem23.Name = "buttonItem23";
            this.buttonItem23.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem23.Text = "&Copy";
            this.buttonItem23.Click += new System.EventHandler(this.DocumentContextMenuCommand);
            // 
            // buttonItem24
            // 
            this.buttonItem24.GlobalName = "bPaste";
            this.buttonItem24.ImageIndex = 12;
            this.buttonItem24.Name = "buttonItem24";
            this.buttonItem24.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem24.Text = "&Paste";
            this.buttonItem24.Click += new System.EventHandler(this.DocumentContextMenuCommand);
            // 
            // buttonItem25
            // 
            this.buttonItem25.BeginGroup = true;
            this.buttonItem25.GlobalName = "bSelectAll";
            this.buttonItem25.Name = "buttonItem25";
            this.buttonItem25.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
            this.buttonItem25.Text = "Select &All";
            this.buttonItem25.Click += new System.EventHandler(this.DocumentContextMenuCommand);
            // 
            // bTaskListMenu
            // 
            this.bTaskListMenu.AutoExpandOnClick = true;
            this.bTaskListMenu.GlobalName = "bTaskListMenu";
            this.bTaskListMenu.Name = "bTaskListMenu";
            this.bTaskListMenu.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.item_477,
            this.item_504,
            this.item_531});
            this.bTaskListMenu.Text = "bTaskListMenu";
            // 
            // item_477
            // 
            this.item_477.GlobalName = "item_477";
            this.item_477.Name = "item_477";
            this.item_477.Text = "Show All Tasks";
            // 
            // item_504
            // 
            this.item_504.GlobalName = "item_504";
            this.item_504.Name = "item_504";
            this.item_504.Text = "Show High Importance only";
            // 
            // item_531
            // 
            this.item_531.BeginGroup = true;
            this.item_531.GlobalName = "item_531";
            this.item_531.Name = "item_531";
            this.item_531.Text = "Hide";
            // 
            // frmMain
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(704, 534);
            this.Controls.Add(this.contextMenuBar1);
            this.Controls.Add(this.tabStrip1);
            this.Controls.Add(this.barLeftDockSite);
            this.Controls.Add(this.barRightDockSite);
            this.Controls.Add(this.barTopDockSite);
            this.Controls.Add(this.barBottomDockSite);
            this.Controls.Add(this.dockSite1);
            this.Controls.Add(this.dockSite2);
            this.Controls.Add(this.dockSite3);
            this.Controls.Add(this.dockSite4);
            this.Controls.Add(this.bar1);
            this.Controls.Add(this.mdiClient1);
            this.IsMdiContainer = true;
            this.Name = "frmMain";
            this.Text = "DotNetBar Notepad Sample";
            this.MdiChildActivate += new System.EventHandler(this.MdiChildActivated);
            this.Move += new System.EventHandler(this.frmMain_Move);
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.barBottomDockSite.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.barTaskList)).EndInit();
            this.barTaskList.ResumeLayout(false);
            this.panelDockContainer1.ResumeLayout(false);
            this.panelDockContainer2.ResumeLayout(false);
            this.panelDockContainer2.PerformLayout();
            this.barRightDockSite.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.barTaskPane)).EndInit();
            this.barTaskPane.ResumeLayout(false);
            this.panelDockContainer4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.explorerBar1)).EndInit();
            this.panelDockContainer3.ResumeLayout(false);
            this.panelDockContainer3.PerformLayout();
            this.dockSite4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.windowlist)).EndInit();
            this.dockSite3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.mainmenu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barStandard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barFormat)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
            this.ResumeLayout(false);

		}
Exemple #11
0
 internal static BaseItem CreateItemFromXml(System.Xml.XmlElement xmlItem)
 {
     string cl = xmlItem.GetAttribute("class");
     BaseItem returnItem = null;
     switch (cl)
     {
         case "DevComponents.DotNetBar.ButtonItem":
             returnItem = new ButtonItem();
             break;
         case "DevComponents.DotNetBar.TextBoxItem":
             returnItem = new TextBoxItem();
             break;
         case "DevComponents.DotNetBar.ComboBoxItem":
             returnItem = new ComboBoxItem();
             break;
         case "DevComponents.DotNetBar.LabelItem":
             returnItem = new LabelItem();
             break;
         case "DevComponents.DotNetBar.CustomizeItem":
             returnItem = new CustomizeItem();
             break;
         case "DevComponents.DotNetBar.ControlContainerItem":
             returnItem = new ControlContainerItem();
             break;
         case "DevComponents.DotNetBar.DockContainerItem":
             returnItem = new DockContainerItem();
             break;
         case "DevComponents.DotNetBar.MdiWindowListItem":
             returnItem = new MdiWindowListItem();
             break;
         case "DevComponents.DotNetBar.SideBarContainerItem":
             returnItem = new SideBarContainerItem();
             break;
         case "DevComponents.DotNetBar.SideBarPanelItem":
             returnItem = new SideBarPanelItem();
             break;
         case "DevComponents.DotNetBar.ExplorerBarGroupItem":
             returnItem = new ExplorerBarGroupItem();
             break;
         case "DevComponents.DotNetBar.ExplorerBarContainerItem":
             returnItem = new ExplorerBarContainerItem();
             break;
         case "DevComponents.DotNetBar.ProgressBarItem":
             returnItem = new ProgressBarItem();
             break;
         case "DevComponents.DotNetBar.ColorPickerDropDown":
             returnItem = new ColorPickerDropDown();
             break;
         default:
             {
                 try
                 {
                     //System.Windows.Forms.MessageBox.Show("Loading custom: "+xmlItem.GetAttribute("assembly")+"   "+xmlItem.GetAttribute("class"));
                     System.Reflection.Assembly a = System.Reflection.Assembly.Load(xmlItem.GetAttribute("assembly"));
                     if (a == null)
                         return null;
                     BaseItem item = a.CreateInstance(xmlItem.GetAttribute("class")) as BaseItem;
                     returnItem = item;
                 }
                 catch (Exception e)
                 {
                     throw new ArgumentException("Could not create item from XML. Assembly=" + xmlItem.GetAttribute("assembly") + ", Class=" + xmlItem.GetAttribute("class") + ", Inner Exception: " + e.Message + ", Source=" + e.Source);
                 }
                 break;
             }
     }
     return returnItem;
 }
Exemple #12
0
        protected virtual LabelItem CreateTitleLabel()
        {
            LabelItem label = new LabelItem();
            label.GlobalItem = false;
            label.Font = SystemFonts.CaptionFont;
            label.Stretch = true;
            label.TextLineAlignment = StringAlignment.Center;
            label.Text = this.Text;
            label.PaddingLeft = 3;
            label.PaddingRight = 3;

            return label;
        }
		private void LoadCalendarPartToggles()
		{
			MainController.Instance.MainForm.ribbonPanelCalendar.SuspendLayout();
			MainController.Instance.MainForm.ribbonBarCalendarParts.Items.Clear();
			var partToggles = _viewer.GetPartToggleButtons().ToArray();
			if (partToggles.Any())
				MainController.Instance.MainForm.ribbonBarCalendarParts.Items.AddRange(partToggles);
			else
			{
				var emptyLabel = new LabelItem();
				emptyLabel.ForeColor = System.Drawing.Color.White;
				emptyLabel.Text = "No Calendars";
				MainController.Instance.MainForm.ribbonBarCalendarParts.Items.Add(emptyLabel);
			}
			MainController.Instance.MainForm.ribbonPanelCalendar.ResumeLayout();
			MainController.Instance.MainForm.ribbonBarCalendarParts.RecalcLayout();
			MainController.Instance.MainForm.ribbonPanelCalendar.PerformLayout();
		}
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.styleManager = new DevComponents.DotNetBar.StyleManager(this.components);
     this.comboItem31 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.comboItem16 = new DevComponents.Editors.ComboItem();
     this.comboItem17 = new DevComponents.Editors.ComboItem();
     this.comboItem18 = new DevComponents.Editors.ComboItem();
     this.comboItem19 = new DevComponents.Editors.ComboItem();
     this.comboItem20 = new DevComponents.Editors.ComboItem();
     this.comboItem21 = new DevComponents.Editors.ComboItem();
     this.comboItem22 = new DevComponents.Editors.ComboItem();
     this.comboItem23 = new DevComponents.Editors.ComboItem();
     this.comboItem24 = new DevComponents.Editors.ComboItem();
     this.comboItem25 = new DevComponents.Editors.ComboItem();
     this.comboItem26 = new DevComponents.Editors.ComboItem();
     this.comboItem27 = new DevComponents.Editors.ComboItem();
     this.comboItem28 = new DevComponents.Editors.ComboItem();
     this.comboItem29 = new DevComponents.Editors.ComboItem();
     this.comboItem30 = new DevComponents.Editors.ComboItem();
     this.comboItem32 = new DevComponents.Editors.ComboItem();
     this.comboItem33 = new DevComponents.Editors.ComboItem();
     this.comboItem34 = new DevComponents.Editors.ComboItem();
     this.comboItem35 = new DevComponents.Editors.ComboItem();
     this.comboItem36 = new DevComponents.Editors.ComboItem();
     this.comboItem37 = new DevComponents.Editors.ComboItem();
     this.comboItem38 = new DevComponents.Editors.ComboItem();
     this.comboItem39 = new DevComponents.Editors.ComboItem();
     this.comboItem40 = new DevComponents.Editors.ComboItem();
     this.comboItem41 = new DevComponents.Editors.ComboItem();
     this.comboItem42 = new DevComponents.Editors.ComboItem();
     this.comboItem43 = new DevComponents.Editors.ComboItem();
     this.comboItem44 = new DevComponents.Editors.ComboItem();
     this.comboItem45 = new DevComponents.Editors.ComboItem();
     this.comboItem46 = new DevComponents.Editors.ComboItem();
     this.comboItem47 = new DevComponents.Editors.ComboItem();
     this.comboItem48 = new DevComponents.Editors.ComboItem();
     this.comboItem49 = new DevComponents.Editors.ComboItem();
     this.comboItem50 = new DevComponents.Editors.ComboItem();
     this.comboItem51 = new DevComponents.Editors.ComboItem();
     this.comboItem52 = new DevComponents.Editors.ComboItem();
     this.comboItem53 = new DevComponents.Editors.ComboItem();
     this.comboItem54 = new DevComponents.Editors.ComboItem();
     this.comboItem55 = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.metroShell1 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.metroShell2 = new DevComponents.DotNetBar.Metro.MetroShell();
     this.metroTabPanel1 = new DevComponents.DotNetBar.Metro.MetroTabPanel();
     this.lnbHelp = new System.Windows.Forms.LinkLabel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.lbCredibility = new DevComponents.DotNetBar.LabelX();
     this.lbName = new DevComponents.DotNetBar.LabelX();
     this.btnRegister = new DevComponents.DotNetBar.ButtonX();
     this.btnLogin = new DevComponents.DotNetBar.ButtonX();
     this.tbPasswd = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tbUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbPassword = new DevComponents.DotNetBar.LabelX();
     this.lbuser = new DevComponents.DotNetBar.LabelX();
     this.metroTabItem1 = new DevComponents.DotNetBar.Metro.MetroTabItem();
     this.metroStatusBar1 = new DevComponents.DotNetBar.Metro.MetroStatusBar();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.lbItemTime = new DevComponents.DotNetBar.LabelItem();
     this.lbItemSpanTime = new DevComponents.DotNetBar.LabelItem();
     this.btnItemDonate = new DevComponents.DotNetBar.ButtonItem();
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mstripShow = new System.Windows.Forms.ToolStripMenuItem();
     this.mstripExit = new System.Windows.Forms.ToolStripMenuItem();
     this.registerControl = new WindowsForm.RegisterControl();
     this.metroShell2.SuspendLayout();
     this.metroTabPanel1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // styleManager
     //
     this.styleManager.ManagerColorTint = System.Drawing.Color.White;
     this.styleManager.ManagerStyle = DevComponents.DotNetBar.eStyle.OfficeMobile2014;
     this.styleManager.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(254)))), ((int)(((byte)(254))))), System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(120)))), ((int)(((byte)(143))))));
     //
     // comboItem31
     //
     this.comboItem31.Text = "Default";
     //
     // comboItem14
     //
     this.comboItem14.Text = "VisualStudio2012Light";
     //
     // comboItem15
     //
     this.comboItem15.Text = "VisualStudio2012Dark";
     //
     // comboItem16
     //
     this.comboItem16.Text = "WashedWhite";
     //
     // comboItem17
     //
     this.comboItem17.Text = "WashedBlue";
     //
     // comboItem18
     //
     this.comboItem18.Text = "BlackClouds";
     //
     // comboItem19
     //
     this.comboItem19.Text = "BlackLilac";
     //
     // comboItem20
     //
     this.comboItem20.Text = "BlackMaroon";
     //
     // comboItem21
     //
     this.comboItem21.Text = "BlackSky";
     //
     // comboItem22
     //
     this.comboItem22.Text = "Blue";
     //
     // comboItem23
     //
     this.comboItem23.Text = "BlueishBrown";
     //
     // comboItem24
     //
     this.comboItem24.Text = "Bordeaux";
     //
     // comboItem25
     //
     this.comboItem25.Text = "Brown";
     //
     // comboItem26
     //
     this.comboItem26.Text = "Cherry";
     //
     // comboItem27
     //
     this.comboItem27.Text = "DarkBlue";
     //
     // comboItem28
     //
     this.comboItem28.Text = "DarkBrown";
     //
     // comboItem29
     //
     this.comboItem29.Text = "DarkPurple";
     //
     // comboItem30
     //
     this.comboItem30.Text = "DarkRed";
     //
     // comboItem32
     //
     this.comboItem32.Text = "EarlyMaroon";
     //
     // comboItem33
     //
     this.comboItem33.Text = "EarlyOrange";
     //
     // comboItem34
     //
     this.comboItem34.Text = "EarlyRed";
     //
     // comboItem35
     //
     this.comboItem35.Text = "Espresso";
     //
     // comboItem36
     //
     this.comboItem36.Text = "ForestGreen";
     //
     // comboItem37
     //
     this.comboItem37.Text = "GrayOrange";
     //
     // comboItem38
     //
     this.comboItem38.Text = "Green";
     //
     // comboItem39
     //
     this.comboItem39.Text = "Latte";
     //
     // comboItem40
     //
     this.comboItem40.Text = "LatteDarkSteel";
     //
     // comboItem41
     //
     this.comboItem41.Text = "LatteRed";
     //
     // comboItem42
     //
     this.comboItem42.Text = "Magenta";
     //
     // comboItem43
     //
     this.comboItem43.Text = "MaroonSilver";
     //
     // comboItem44
     //
     this.comboItem44.Text = "NapaRed";
     //
     // comboItem45
     //
     this.comboItem45.Text = "Orange";
     //
     // comboItem46
     //
     this.comboItem46.Text = "PowderRed";
     //
     // comboItem47
     //
     this.comboItem47.Text = "Purple";
     //
     // comboItem48
     //
     this.comboItem48.Text = "Red";
     //
     // comboItem49
     //
     this.comboItem49.Text = "RedAmplified";
     //
     // comboItem50
     //
     this.comboItem50.Text = "RetroBlue";
     //
     // comboItem51
     //
     this.comboItem51.Text = "Rust";
     //
     // comboItem52
     //
     this.comboItem52.Text = "SilverBlues";
     //
     // comboItem53
     //
     this.comboItem53.Text = "SilverGreen";
     //
     // comboItem54
     //
     this.comboItem54.Text = "SimplyBlue";
     //
     // comboItem55
     //
     this.comboItem55.Text = "SkyGreen";
     //
     // comboItem1
     //
     this.comboItem1.Text = "Office2007Blue";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Office2007Silver";
     //
     // comboItem3
     //
     this.comboItem3.Text = "Office2007Black";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Office2007VistaGlass";
     //
     // comboItem5
     //
     this.comboItem5.Text = "Office2010Silver";
     //
     // comboItem6
     //
     this.comboItem6.Text = "Office2010Blue";
     //
     // comboItem7
     //
     this.comboItem7.Text = "Office2010Black";
     //
     // comboItem8
     //
     this.comboItem8.Text = "Windows7Blue";
     //
     // comboItem9
     //
     this.comboItem9.Text = "VisualStudio2010Blue";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Office2013";
     //
     // comboItem11
     //
     this.comboItem11.Text = "VisualStudio2012Light";
     //
     // comboItem12
     //
     this.comboItem12.Text = "VisualStudio2012Dark";
     //
     // comboItem13
     //
     this.comboItem13.Text = "OfficeMobile2014";
     //
     // metroShell1
     //
     this.metroShell1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.metroShell1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell1.ForeColor = System.Drawing.Color.Black;
     this.metroShell1.HelpButtonText = null;
     this.metroShell1.Location = new System.Drawing.Point(0, 0);
     this.metroShell1.Name = "metroShell1";
     this.metroShell1.Size = new System.Drawing.Size(200, 100);
     this.metroShell1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell1.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell1.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell1.SystemText.QatDialogOkButton = "OK";
     this.metroShell1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell1.TabIndex = 0;
     this.metroShell1.TabStripFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     //
     // metroShell2
     //
     this.metroShell2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(254)))), ((int)(((byte)(254)))));
     //
     //
     //
     this.metroShell2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroShell2.CaptionVisible = true;
     this.metroShell2.Controls.Add(this.metroTabPanel1);
     this.metroShell2.Dock = System.Windows.Forms.DockStyle.Top;
     this.metroShell2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.metroShell2.ForeColor = System.Drawing.Color.Black;
     this.metroShell2.HelpButtonText = "关于";
     this.metroShell2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.metroTabItem1});
     this.metroShell2.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.metroShell2.Location = new System.Drawing.Point(1, 1);
     this.metroShell2.Margin = new System.Windows.Forms.Padding(2);
     this.metroShell2.MouseWheelTabScrollEnabled = false;
     this.metroShell2.Name = "metroShell2";
     this.metroShell2.SettingsButtonText = "设置";
     this.metroShell2.Size = new System.Drawing.Size(1034, 132);
     this.metroShell2.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.metroShell2.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.metroShell2.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.metroShell2.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.metroShell2.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.metroShell2.SystemText.QatDialogAddButton = "&Add >>";
     this.metroShell2.SystemText.QatDialogCancelButton = "Cancel";
     this.metroShell2.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.metroShell2.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.metroShell2.SystemText.QatDialogOkButton = "OK";
     this.metroShell2.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell2.SystemText.QatDialogRemoveButton = "&Remove";
     this.metroShell2.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.metroShell2.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.metroShell2.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.metroShell2.TabIndex = 0;
     this.metroShell2.TabStripFont = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroShell2.Text = "metroShell2";
     this.metroShell2.UseCustomizeDialog = false;
     this.metroShell2.SettingsButtonClick += new System.EventHandler(this.metroShell2_SettingsButtonClick);
     this.metroShell2.HelpButtonClick += new System.EventHandler(this.metroShell2_HelpButtonClick);
     this.metroShell2.SizeChanged += new System.EventHandler(this.metroShell2_SizeChanged);
     //
     // metroTabPanel1
     //
     this.metroTabPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.metroTabPanel1.Controls.Add(this.lnbHelp);
     this.metroTabPanel1.Controls.Add(this.labelX1);
     this.metroTabPanel1.Controls.Add(this.lbCredibility);
     this.metroTabPanel1.Controls.Add(this.lbName);
     this.metroTabPanel1.Controls.Add(this.btnRegister);
     this.metroTabPanel1.Controls.Add(this.btnLogin);
     this.metroTabPanel1.Controls.Add(this.tbPasswd);
     this.metroTabPanel1.Controls.Add(this.tbUser);
     this.metroTabPanel1.Controls.Add(this.lbPassword);
     this.metroTabPanel1.Controls.Add(this.lbuser);
     this.metroTabPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.metroTabPanel1.Location = new System.Drawing.Point(0, 63);
     this.metroTabPanel1.Margin = new System.Windows.Forms.Padding(2);
     this.metroTabPanel1.Name = "metroTabPanel1";
     this.metroTabPanel1.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
     this.metroTabPanel1.Size = new System.Drawing.Size(1034, 69);
     //
     //
     //
     this.metroTabPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.metroTabPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.metroTabPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTabPanel1.TabIndex = 1;
     //
     // lnbHelp
     //
     this.lnbHelp.AutoSize = true;
     this.lnbHelp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(254)))), ((int)(((byte)(254)))));
     this.lnbHelp.ForeColor = System.Drawing.Color.Black;
     this.lnbHelp.Location = new System.Drawing.Point(360, 44);
     this.lnbHelp.Name = "lnbHelp";
     this.lnbHelp.Size = new System.Drawing.Size(119, 14);
     this.lnbHelp.TabIndex = 9;
     this.lnbHelp.TabStop = true;
     this.lnbHelp.Text = "信誉度等常见问题";
     this.lnbHelp.Click += new System.EventHandler(this.lnbHelp_Click);
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.ForeColor = System.Drawing.Color.Black;
     this.labelX1.Location = new System.Drawing.Point(360, 13);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(583, 23);
     this.labelX1.TabIndex = 8;
     this.labelX1.Text = "声明:本软件使用过程中不记录用户名和密码,同时也不以任何形式保存用户名和密码。";
     //
     // lbCredibility
     //
     this.lbCredibility.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbCredibility.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbCredibility.ForeColor = System.Drawing.Color.Black;
     this.lbCredibility.Location = new System.Drawing.Point(132, 39);
     this.lbCredibility.Name = "lbCredibility";
     this.lbCredibility.Size = new System.Drawing.Size(111, 23);
     this.lbCredibility.TabIndex = 7;
     this.lbCredibility.Visible = false;
     //
     // lbName
     //
     this.lbName.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbName.ForeColor = System.Drawing.Color.Black;
     this.lbName.Location = new System.Drawing.Point(132, 11);
     this.lbName.Name = "lbName";
     this.lbName.Size = new System.Drawing.Size(111, 23);
     this.lbName.TabIndex = 6;
     this.lbName.Visible = false;
     //
     // btnRegister
     //
     this.btnRegister.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRegister.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRegister.Location = new System.Drawing.Point(254, 41);
     this.btnRegister.Name = "btnRegister";
     this.btnRegister.Size = new System.Drawing.Size(75, 23);
     this.btnRegister.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnRegister.TabIndex = 5;
     this.btnRegister.Text = "免费注册";
     this.btnRegister.Click += new System.EventHandler(this.btnRegister_Click);
     //
     // btnLogin
     //
     this.btnLogin.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnLogin.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnLogin.Location = new System.Drawing.Point(254, 10);
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Size = new System.Drawing.Size(75, 23);
     this.btnLogin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnLogin.TabIndex = 4;
     this.btnLogin.Text = "登陆";
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // tbPasswd
     //
     this.tbPasswd.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.tbPasswd.Border.Class = "TextBoxBorder";
     this.tbPasswd.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbPasswd.DisabledBackColor = System.Drawing.Color.White;
     this.tbPasswd.ForeColor = System.Drawing.Color.Black;
     this.tbPasswd.Location = new System.Drawing.Point(86, 40);
     this.tbPasswd.Name = "tbPasswd";
     this.tbPasswd.PasswordChar = '*';
     this.tbPasswd.PreventEnterBeep = true;
     this.tbPasswd.Size = new System.Drawing.Size(151, 23);
     this.tbPasswd.TabIndex = 3;
     //
     // tbUser
     //
     this.tbUser.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.tbUser.Border.Class = "TextBoxBorder";
     this.tbUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbUser.DisabledBackColor = System.Drawing.Color.White;
     this.tbUser.ForeColor = System.Drawing.Color.Black;
     this.tbUser.Location = new System.Drawing.Point(86, 10);
     this.tbUser.Name = "tbUser";
     this.tbUser.PreventEnterBeep = true;
     this.tbUser.Size = new System.Drawing.Size(151, 23);
     this.tbUser.TabIndex = 2;
     this.tbUser.WatermarkText = "请输入身份证";
     //
     // lbPassword
     //
     this.lbPassword.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbPassword.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbPassword.ForeColor = System.Drawing.Color.Black;
     this.lbPassword.Location = new System.Drawing.Point(21, 40);
     this.lbPassword.Name = "lbPassword";
     this.lbPassword.Size = new System.Drawing.Size(59, 23);
     this.lbPassword.TabIndex = 1;
     this.lbPassword.Text = "密 码";
     //
     // lbuser
     //
     this.lbuser.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbuser.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbuser.ForeColor = System.Drawing.Color.Black;
     this.lbuser.Location = new System.Drawing.Point(21, 10);
     this.lbuser.Name = "lbuser";
     this.lbuser.Size = new System.Drawing.Size(59, 23);
     this.lbuser.TabIndex = 0;
     this.lbuser.Text = "账户名";
     //
     // metroTabItem1
     //
     this.metroTabItem1.Checked = true;
     this.metroTabItem1.Name = "metroTabItem1";
     this.metroTabItem1.Panel = this.metroTabPanel1;
     this.metroTabItem1.Text = "个人中心";
     //
     // metroStatusBar1
     //
     this.metroStatusBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(254)))), ((int)(((byte)(254)))));
     //
     //
     //
     this.metroStatusBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroStatusBar1.ContainerControlProcessDialogKey = true;
     this.metroStatusBar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.metroStatusBar1.DragDropSupport = true;
     this.metroStatusBar1.Font = new System.Drawing.Font("Segoe UI", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.metroStatusBar1.ForeColor = System.Drawing.Color.Black;
     this.metroStatusBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.lbItemTime,
     this.lbItemSpanTime,
     this.btnItemDonate});
     this.metroStatusBar1.Location = new System.Drawing.Point(1, 642);
     this.metroStatusBar1.Margin = new System.Windows.Forms.Padding(2);
     this.metroStatusBar1.Name = "metroStatusBar1";
     this.metroStatusBar1.Size = new System.Drawing.Size(1034, 32);
     this.metroStatusBar1.TabIndex = 1;
     this.metroStatusBar1.Text = "metroStatusBar1";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "北京时间:";
     //
     // lbItemTime
     //
     this.lbItemTime.Cursor = System.Windows.Forms.Cursors.Hand;
     this.lbItemTime.Name = "lbItemTime";
     this.lbItemTime.Text = "网络连接失败";
     this.lbItemTime.Click += new System.EventHandler(this.lbItemTime_Click);
     //
     // lbItemSpanTime
     //
     this.lbItemSpanTime.Name = "lbItemSpanTime";
     //
     // btnItemDonate
     //
     this.btnItemDonate.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.btnItemDonate.Name = "btnItemDonate";
     this.btnItemDonate.Text = "捐助软件";
     this.btnItemDonate.Click += new System.EventHandler(this.btnItemDonate_Click);
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
     this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text = "杭州预约挂号辅助软件";
     this.notifyIcon1.Visible = true;
     this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mstripShow,
     this.mstripExit});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(137, 48);
     //
     // mstripShow
     //
     this.mstripShow.Name = "mstripShow";
     this.mstripShow.Size = new System.Drawing.Size(136, 22);
     this.mstripShow.Text = "打开主程序";
     this.mstripShow.Click += new System.EventHandler(this.mstripShow_Click);
     //
     // mstripExit
     //
     this.mstripExit.Name = "mstripExit";
     this.mstripExit.Size = new System.Drawing.Size(136, 22);
     this.mstripExit.Text = "退出";
     this.mstripExit.Click += new System.EventHandler(this.mstripExit_Click);
     //
     // registerControl
     //
     this.registerControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(254)))), ((int)(((byte)(254)))));
     this.registerControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.registerControl.ForeColor = System.Drawing.Color.Black;
     this.registerControl.Location = new System.Drawing.Point(1, 133);
     this.registerControl.Name = "registerControl";
     this.registerControl.Size = new System.Drawing.Size(1034, 509);
     this.registerControl.TabIndex = 2;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1036, 675);
     this.Controls.Add(this.registerControl);
     this.Controls.Add(this.metroStatusBar1);
     this.Controls.Add(this.metroShell2);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.SystemMenuClose = "关闭";
     this.SystemMenuMaximize = "最大化";
     this.SystemMenuMinimize = "最小化";
     this.SystemMenuMove = "移动";
     this.SystemMenuRestore = "还原";
     this.SystemMenuSize = "大小";
     this.Text = "杭州预约挂号辅助软件";
     this.metroShell2.ResumeLayout(false);
     this.metroShell2.PerformLayout();
     this.metroTabPanel1.ResumeLayout(false);
     this.metroTabPanel1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void WireUpLabel(ref LabelItem oldLabel, LabelItem newLabel)
 {
     if (oldLabel != newLabel)
     {
         oldLabel = newLabel;
         this.RefreshStateInternal();
     }
 }
Exemple #16
0
 internal void InternalCopyToItem(LabelItem copy)
 {
     CopyToItem(copy);
 }
        /// <summary>
        /// Initializes a new instance of the YearSelectorContainer class.
        /// </summary>
        public CenturySelectorContainer()
        {
            this.LayoutOrientation = eOrientation.Vertical;

            // Add navigation container
            ItemContainer cont = new ItemContainer();
            cont.AutoCollapseOnClick = false;
            cont.MinimumSize = new Size(0, _FixedButtonSize.Height + 3);
            cont.LayoutOrientation = eOrientation.Horizontal;
            cont.HorizontalItemAlignment = eHorizontalItemsAlignment.Center;
            cont.VerticalItemAlignment = eVerticalItemsAlignment.Middle;
            cont.ItemSpacing = 2;
            ButtonItem nav = new ButtonItem("NavDecreaseYears");
            nav.GlobalItem = false;
            nav._FadeEnabled = false;
            nav.Text = "<expand direction=\"left\"/>";
            nav.Click += YearsDecreaseClick;
            nav.AutoCollapseOnClick = false;
            nav.FixedSize = _FixedButtonSize;
            nav._FixedSizeCenterText = true;
            nav.ClickAutoRepeat = true;
            cont.SubItems.Add(nav);
            LabelItem label = new LabelItem("CenturyLabel");
            label.AutoCollapseOnClick = false;
            label.GlobalItem = false;
            label.TextAlignment = StringAlignment.Center;
            label.TextLineAlignment = StringAlignment.Center;
            label.PaddingBottom = 2;
            label.Text = "2000-2099";
            _CenturyLabel = label;
            cont.SubItems.Add(label);
            nav = new ButtonItem("NavIncreaseYears");
            nav.GlobalItem = false;
            nav._FadeEnabled = false;
            nav.Text = "<expand direction=\"right\"/>";
            nav.Click += YearsIncreaseClick;
            nav.AutoCollapseOnClick = false;
            nav.FixedSize = _FixedButtonSize;
            nav._FixedSizeCenterText = true;
            nav.ClickAutoRepeat = true;
            cont.SubItems.Add(nav);
            this.SubItems.Add(cont);

            cont = new ItemContainer();
            cont.LayoutOrientation = eOrientation.Horizontal;
            cont.MultiLine = true;
            this.SubItems.Add(cont);
            for (int i = 0; i < 12; i++)
            {
                ButtonItem by = new ButtonItem("centurySelector" + i.ToString());
                by.Text = (2009 + i).ToString();
                by.FixedSize = new Size(54, 35);
                by._FixedSizeCenterText = true;
                by.OptionGroup = "century";
                by.AutoCheckOnClick = true;
                by.Click += CenturyClick;
                cont.SubItems.Add(by);
            }
            _YearsContainer = cont;
            CenturyYearStart = (DateTime.Today.Year / 100) * 100;
        }
        private void RecreateItems()
        {
            _AmPmLabel = null;
            _HourLabel = null;
            _MinuteLabel = null;
            if (_InnerContainer.SubItems.Count > 0)
            {
                BaseItem[] list = new BaseItem[_InnerContainer.SubItems.Count];
                _InnerContainer.SubItems.CopyTo(list, 0);
                _InnerContainer.SubItems.Clear();
                foreach (BaseItem item in list)
                {
                    item.Dispose();
                }
            }
            if (_SelectorType == eTimeSelectorType.MonthCalendarStyle)
                RecreateItemsMonthCalendarStyle();
            else if (_SelectorType == eTimeSelectorType.TouchStyle)
                RecreateItemsTouchStyle();
            else
                throw new NotImplementedException("Selector type '" + _SelectorType.ToString() + "' not implemented");

            UpdateSelectedTimeText();
        }
        /// <summary>
        /// Initializes a new instance of the CalendarMonth class.
        /// </summary>
        public SingleMonthCalendar()
        {
            _FirstDayOfWeek = DateTimeInput.GetActiveCulture().DateTimeFormat.FirstDayOfWeek;
            m_IsContainer = true;
            this.AutoCollapseOnClick = true;
            this.MouseUpNotification = true;
            this.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            _Colors.Parent = this;
            for (int i = 0; i < 49; i++)
            {
                DayLabel day = new DayLabel();
                day.Visible = false;
                this.SubItems.Add(day);
            }

            // Add navigation container
            Size fixedButtonSize = new Size(13, 18);
            ItemContainer cont = new ItemContainer();
            cont.Name = NavigationContainerName;
            cont.AutoCollapseOnClick = false;
            cont.MinimumSize = new Size(0, fixedButtonSize.Height + 3);
            cont.LayoutOrientation = eOrientation.Horizontal;
            cont.HorizontalItemAlignment = eHorizontalItemsAlignment.Center;
            cont.VerticalItemAlignment = eVerticalItemsAlignment.Middle;
            cont.ItemSpacing = 2;
            ButtonItem nav = new ButtonItem(NavDecreaseMonth);
            nav.GlobalItem = false;
            nav._FadeEnabled = false;
            nav.Text = "<expand direction=\"left\"/>";
            nav.Click += new EventHandler(MonthNavigationDecreaseClick);
            nav.AutoCollapseOnClick = false;
            nav.FixedSize = fixedButtonSize;
            nav._FixedSizeCenterText = true;
            nav.ClickAutoRepeat = true;
            cont.SubItems.Add(nav);
            LabelItem label = new LabelItem(NavMonthLabel);
            label.AutoCollapseOnClick = false;
            label.GlobalItem = false;
            label.TextAlignment = StringAlignment.Center;
            label.TextLineAlignment = StringAlignment.Center;
            label.PaddingBottom = 2;
            label.Click += new EventHandler(ShowMonthSelectionPopupMenu);
            cont.SubItems.Add(label);
            nav = new ButtonItem(NavIncreaseMonth);
            nav.GlobalItem = false;
            nav._FadeEnabled = false;
            nav.Text = "<expand direction=\"right\"/>";
            nav.Click += new EventHandler(MonthNavigationIncreaseClick);
            nav.AutoCollapseOnClick = false;
            nav.FixedSize = fixedButtonSize;
            nav._FixedSizeCenterText = true;
            nav.ClickAutoRepeat = true;
            cont.SubItems.Add(nav);

            // Year Navigation
            nav = new ButtonItem(NavDecreaseYear);
            nav.GlobalItem = false;
            nav._FadeEnabled = false;
            nav.Text = "<expand direction=\"left\"/>";
            nav.Click += new EventHandler(YearNavigationDecreaseClick);
            nav.AutoCollapseOnClick = false;
            nav.FixedSize = fixedButtonSize;
            nav._FixedSizeCenterText = true;
            nav.ClickAutoRepeat = true;
            cont.SubItems.Add(nav);
            label = new LabelItem(NavYearLabel);
            label.AutoCollapseOnClick = false;
            label.GlobalItem = false;
            label.TextAlignment = StringAlignment.Center;
            label.TextLineAlignment = StringAlignment.Center;
            label.PaddingBottom = 2;
            label.Click += ShowYearSelection;
            label.Cursor = Cursors.Hand;
            cont.SubItems.Add(label);
            nav = new ButtonItem(NavIncreaseYear);
            nav.GlobalItem = false;
            nav._FadeEnabled = false;
            nav.Text = "<expand direction=\"right\"/>";
            nav.Click += new EventHandler(YearNavigationIncreaseClick);
            nav.AutoCollapseOnClick = false;
            nav.FixedSize = fixedButtonSize;
            nav._FixedSizeCenterText = true;
            nav.ClickAutoRepeat = true;
            cont.SubItems.Add(nav);

            _MonthsPopupMenu = new ButtonItem(MonthsPopupMenu);
            _MonthsPopupMenu.Visible = false;
            cont.SubItems.Add(_MonthsPopupMenu);

            this.SubItems.Add(cont);
        }
        private void RecreateItemsTouchStyle()
        {
            if (_InnerContainer.SubItems.Count > 0)
            {
                BaseItem[] list = new BaseItem[_InnerContainer.SubItems.Count];
                _InnerContainer.SubItems.CopyTo(list, 0);
                _InnerContainer.SubItems.Clear();
                foreach (BaseItem item in list)
                {
                    item.Dispose();
                }
            }
            _InnerContainer.ResizeItemsToFit = false;
            _CurrentTimeLabel = new DevComponents.DotNetBar.LabelItem();
            ItemContainer itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
            ButtonItem buttonMinuteUp = new DevComponents.DotNetBar.ButtonItem();
            ButtonItem buttonMinuteDown = new DevComponents.DotNetBar.ButtonItem();
            LabelItem labelSpacerTop = new DevComponents.DotNetBar.LabelItem();
            ButtonItem buttonClearTime = new DevComponents.DotNetBar.ButtonItem();
            ItemContainer itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
            LabelItem labelHour = new DevComponents.DotNetBar.LabelItem();
            ItemContainer hourRow1 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer hourRow2 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer hourRow3 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer hourRow4 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer itemContainer10 = new DevComponents.DotNetBar.ItemContainer();
            LabelItem labelMinute = new DevComponents.DotNetBar.LabelItem();
            ItemContainer minuteRow1 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer minuteRow2 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer minuteRow3 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer minuteRow4 = new DevComponents.DotNetBar.ItemContainer();
            ItemContainer itemContainer15 = new DevComponents.DotNetBar.ItemContainer();
            LabelItem labelSpacerAm = new DevComponents.DotNetBar.LabelItem();
            _ButtonAm = new DevComponents.DotNetBar.ButtonItem();
            _ButtonPm = new DevComponents.DotNetBar.ButtonItem();
            LabelItem labelSpacerBottom = new DevComponents.DotNetBar.LabelItem();
            ButtonItem buttonOk = new DevComponents.DotNetBar.ButtonItem();

            _InnerContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            itemContainer1,
            itemContainer3,
            itemContainer15});
            _InnerContainer.ItemSpacing = 3;
            _InnerContainer.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;

            itemContainer1.ItemSpacing = 3;
            itemContainer1.Name = "itemContainer1";
            itemContainer1.AutoCollapseOnClick = false;
            itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            itemContainer2});

            itemContainer2.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
            itemContainer2.ItemSpacing = 4;
            itemContainer2.Name = "itemContainer2";
            itemContainer2.AutoCollapseOnClick = false;
            itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            _CurrentTimeLabel,
            itemContainer6,
            labelSpacerTop,
            buttonClearTime});

            _CurrentTimeLabel.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            _CurrentTimeLabel.Name = "labelCurrentTime";
            //_CurrentTimeLabel.Text = "1:00 AM";
            _CurrentTimeLabel.TextAlignment = System.Drawing.StringAlignment.Far;
            _CurrentTimeLabel.Width = 150;
            _CurrentTimeLabel.AutoCollapseOnClick = false;

            itemContainer6.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            itemContainer6.Name = "itemContainer6";
            itemContainer6.AutoCollapseOnClick = false;
            itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            buttonMinuteUp,
            buttonMinuteDown});

            buttonMinuteUp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.TextOnlyAlways;
            buttonMinuteUp.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            buttonMinuteUp.FixedSize = new System.Drawing.Size(24, 14);
            buttonMinuteUp.Name = "buttonMinuteUp";
            buttonMinuteUp.Text = "<div width=\"20\" align=\"center\"><expand direction=\"top\"/></div>";
            buttonMinuteUp.Command = _MinuteChangeCommand;
            buttonMinuteUp.CommandParameter = 1;
            buttonMinuteUp.ClickAutoRepeat = true;
            buttonMinuteUp.AutoCollapseOnClick = false;

            buttonMinuteDown.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.TextOnlyAlways;
            buttonMinuteDown.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            buttonMinuteDown.FixedSize = new System.Drawing.Size(24, 14);
            buttonMinuteDown.Name = "buttonMinuteDown";
            buttonMinuteDown.Text = "<div width=\"20\" align=\"center\"><expand direction=\"bottom\"/></div>";
            buttonMinuteDown.Command = _MinuteChangeCommand;
            buttonMinuteDown.CommandParameter = -1;
            buttonMinuteDown.ClickAutoRepeat = true;
            buttonMinuteDown.AutoCollapseOnClick = false;

            labelSpacerTop.Name = "labelSpacerTop";
            labelSpacerTop.Width = 4;
            labelSpacerTop.AutoCollapseOnClick = false;

            buttonClearTime.Name = "buttonClearTime";
            buttonClearTime.Text = "<symbol/>";
            buttonClearTime.Command = _ClearCommand;
            buttonClearTime.Visible = _ClearButtonVisible;
            buttonClearTime.AutoCollapseOnClick = false;

            itemContainer3.ItemSpacing = 8;
            itemContainer3.Name = "itemContainer3";
            itemContainer3.AutoCollapseOnClick = false;
            itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            itemContainer4,
            itemContainer5});

            itemContainer4.ItemSpacing = 3;
            itemContainer4.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            itemContainer4.MultiLine = true;
            itemContainer4.Name = "itemContainer4";
            itemContainer4.AutoCollapseOnClick = false;
            itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            labelHour,
            hourRow1,
            hourRow2,
            hourRow3,
            hourRow4});

            labelHour.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelHour.Name = "labelHour";
            labelHour.Text = GetHourText();
            labelHour.TextAlignment = System.Drawing.StringAlignment.Center;
            labelHour.AutoCollapseOnClick = false;
            _HourLabel = labelHour;

            hourRow1.ItemSpacing = 3;
            hourRow1.Name = "hourRow1";
            hourRow1.AutoCollapseOnClick = false;
            hourRow1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                CreateHourItem(1, eTimeSelectorType.TouchStyle),
                CreateHourItem(2, eTimeSelectorType.TouchStyle),
                CreateHourItem(3, eTimeSelectorType.TouchStyle)});

            hourRow2.ItemSpacing = 3;
            hourRow2.Name = "hourRow2";
            hourRow2.AutoCollapseOnClick = false;
            hourRow2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateHourItem(4, eTimeSelectorType.TouchStyle),
            CreateHourItem(5, eTimeSelectorType.TouchStyle),
            CreateHourItem(6, eTimeSelectorType.TouchStyle)});

            hourRow3.ItemSpacing = 3;
            hourRow3.Name = "hourRow3";
            hourRow3.AutoCollapseOnClick = false;
            hourRow3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateHourItem(7, eTimeSelectorType.TouchStyle),
            CreateHourItem(8, eTimeSelectorType.TouchStyle),
            CreateHourItem(9, eTimeSelectorType.TouchStyle)});

            hourRow4.ItemSpacing = 3;
            hourRow4.Name = "hourRow4";
            hourRow4.AutoCollapseOnClick = false;
            hourRow4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateHourItem(10, eTimeSelectorType.TouchStyle),
            CreateHourItem(11, eTimeSelectorType.TouchStyle),
            CreateHourItem(12, eTimeSelectorType.TouchStyle)});

            itemContainer5.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            itemContainer5.Name = "itemContainer5";
            itemContainer5.AutoCollapseOnClick = false;
            itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            itemContainer10});

            itemContainer10.ItemSpacing = 3;
            itemContainer10.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            itemContainer10.MultiLine = true;
            itemContainer10.Name = "itemContainer10";
            itemContainer10.AutoCollapseOnClick = false;
            itemContainer10.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            labelMinute,
            minuteRow1,
            minuteRow2,
            minuteRow3,
            minuteRow4});

            labelMinute.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelMinute.Name = "labelMinute";
            labelMinute.Text = GetMinuteText();
            labelMinute.TextAlignment = System.Drawing.StringAlignment.Center;
            labelMinute.AutoCollapseOnClick = false;
            _MinuteLabel = labelMinute;

            minuteRow1.ItemSpacing = 3;
            minuteRow1.Name = "minuteRow1";
            minuteRow1.AutoCollapseOnClick = false;
            minuteRow1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateMinuteItem(0, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(5, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(10, eTimeSelectorType.TouchStyle)});

            minuteRow2.ItemSpacing = 3;
            minuteRow2.Name = "minuteRow2";
            minuteRow2.AutoCollapseOnClick = false;
            minuteRow2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateMinuteItem(15, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(20, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(25, eTimeSelectorType.TouchStyle)});

            minuteRow3.ItemSpacing = 3;
            minuteRow3.Name = "minuteRow3";
            minuteRow3.AutoCollapseOnClick = false;
            minuteRow3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateMinuteItem(30, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(35, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(40, eTimeSelectorType.TouchStyle)});

            minuteRow4.ItemSpacing = 3;
            minuteRow4.Name = "minuteRow4";
            minuteRow4.AutoCollapseOnClick = false;
            minuteRow4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            CreateMinuteItem(45, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(50, eTimeSelectorType.TouchStyle),
            CreateMinuteItem(55, eTimeSelectorType.TouchStyle)});

            itemContainer15.Name = "itemContainer15";
            itemContainer15.AutoCollapseOnClick = false;
            itemContainer15.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            labelSpacerAm,
            _ButtonAm,
            _ButtonPm,
            labelSpacerBottom,
            buttonOk});

            labelSpacerAm.Name = "labelSpacerAm";
            labelSpacerAm.Width = IsZuluTime ? 84 : 36;
            labelSpacerAm.AutoCollapseOnClick = false;

            _ButtonAm.Checked = true;
            _ButtonAm.Name = "buttonAm";
            _ButtonAm.Text = "AM";
            _ButtonAm.Visible = !IsZuluTime;
            _ButtonAm.Command = _AmPmCommand;
            _ButtonAm.CommandParameter = "AM";
            _ButtonAm.AutoCollapseOnClick = false;
            _ButtonPm.Name = "buttonPm";
            _ButtonPm.Text = "PM";
            _ButtonPm.Visible = !IsZuluTime;
            _ButtonPm.Command = _AmPmCommand;
            _ButtonPm.CommandParameter = "PM";
            _ButtonPm.AutoCollapseOnClick = false;

            if (_SelectedTime != TimeSpan.Zero)
            {
                _ButtonAm.Checked = _SelectedTime.Hours <= 12;
                _ButtonPm.Checked = _SelectedTime.Hours > 12;
            }

            labelSpacerBottom.Name = "labelSpacerBottom";
            labelSpacerBottom.Width = 124;
            labelSpacerBottom.AutoCollapseOnClick = false;

            buttonOk.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueWithBackground;
            buttonOk.Name = "buttonOk";
            buttonOk.Text = "<div align=\"center\" width=\"32\"><b>" + GetOkText() + "</b></div>";
            buttonOk.Visible = _OkButtonVisible;
            buttonOk.Command = _OkCommand;

        }
        /// <summary>
        /// 建立待處理學生在按鈕內
        /// </summary>
        private void CreateStudentMenuItem()
        {
            btnInserStudent.SubItems.Clear();

            if (K12.Presentation.NLDPanels.Student.TempSource.Count == 0)
            {
                LabelItem item = new LabelItem("No", "没有任何学生在待处理");
                btnInserStudent.SubItems.Add(item);
                return;
            }

            List<StudentRecord> StudentList = Student.SelectByIDs(K12.Presentation.NLDPanels.Student.TempSource);

            foreach (ClassRecord cr in tool.GetClassDic(StudentList).Values)
            {
                if (!ClassDic.ContainsKey(cr.ID))
                {
                    ClassDic.Add(cr.ID, cr);
                }
            }

            StudentList = SortClassIndex.K12Data_StudentRecord(StudentList);
            foreach (StudentRecord each in StudentList)
            {
                StringBuilder sbstud = new StringBuilder();
                string classname = "";
                string seatno = "";

                if (!string.IsNullOrEmpty(each.RefClassID))
                {
                    if (ClassDic.ContainsKey(each.RefClassID))
                    {
                        classname = ClassDic[each.RefClassID].Name;
                        seatno = (each.SeatNo.HasValue ? each.SeatNo.Value.ToString() : "");
                    }
                }

                sbstud.Append("班级「" + classname + "」");
                sbstud.Append("学号「" + seatno + "」");
                sbstud.Append("姓名「" + each.Name + "」");
                ButtonItem item = new ButtonItem(each.ID, sbstud.ToString());
                item.Tag = each;
                item.Click += new EventHandler(item_Click);
                btnInserStudent.SubItems.Add(item);


            }
        }
        private void CreateStudentMenuItem()
        {
            btnAddTempStudent.SubItems.Clear();
            if (K12.Presentation.NLDPanels.Student.TempSource.Count == 0)
            {
                LabelItem item = new LabelItem("No", "沒有任何學生在待處理");
                btnAddTempStudent.SubItems.Add(item);
                return;
            }

            List<StudentRecord> studTempRecList = Student.SelectByIDs(K12.Presentation.NLDPanels.Student.TempSource);

            foreach (StudentRecord stud in studTempRecList)
            {
                string strclassname = "", strSeatNo = ""; ;
                if (stud.Class != null)
                {
                    strclassname = stud.Class.Name;
                }
                if (stud.SeatNo.HasValue)
                    strSeatNo = stud.SeatNo.Value.ToString();
                ButtonItem item = new ButtonItem(stud.ID, stud.Name + "(" + strclassname + ")");
                item.Tooltip = "班級:" + strclassname + "\n座號:" + strSeatNo + "\n學號:" + stud.StudentNumber;
                item.Tag = stud;
                item.Click += new EventHandler(item_Click);
                btnAddTempStudent.SubItems.Add(item);
            }

        }
 private void AddPriorityItem(System.Windows.Forms.DataGridViewCell cell)
 {
     if (!this.m_allSelectDoctors.Exists((SelectDoctor T) => T.CellIndex == cell.ColumnIndex - 1 && T.RowsIndex == cell.RowIndex))
     {
         SelectDoctor selectDoctor = new SelectDoctor
         {
             CellIndex = cell.ColumnIndex - 1,
             RowsIndex = cell.RowIndex,
             Name = this.dataGridViewX1.Rows[cell.RowIndex].Cells[0].Value + " " + this.dataGridViewX1.Columns[cell.ColumnIndex].HeaderText
         };
         this.m_allSelectDoctors.Add(selectDoctor);
         LabelItem labelItem = new LabelItem();
         labelItem.Text = selectDoctor.Name;
         labelItem.Font = new System.Drawing.Font("宋体", 9.5f, System.Drawing.FontStyle.Underline);
         labelItem.Cursor = System.Windows.Forms.Cursors.Hand;
         this.itemPrioritys.Items.Add(labelItem);
         labelItem.Tag = selectDoctor;
         this.itemPrioritys.Refresh();
     }
 }
Exemple #24
0
        private void SetupMetroTabCustomizeItem()
        {
            this.SubItems.Clear();

            // Add customize items...
            string qatCustomize = "&Customize Quick Access Toolbar...";

            MetroShell tab = GetMetroTab();

            if (tab != null)
            {
                qatCustomize = tab.SystemText.QatCustomizeText;
                this.PopupFont = tab.Font;
            }

            SubItemsCollection qatFrequentCommands = tab.QatFrequentCommands;

            string s = "<b>Customize Quick Access Toolbar</b>";
            if (tab != null)
                s = tab.SystemText.QatCustomizeMenuLabel;
            LabelItem label = new LabelItem(RibbonControl.SysQatCustomizeLabelName, s);
            label.PaddingBottom = 2;
            label.PaddingTop = 2;
            label.PaddingLeft = 12;
            label.BorderSide = eBorderSide.Bottom;
            label.BorderType = eBorderType.SingleLine;
            label.CanCustomize = false;
            if (GlobalManager.Renderer is Office2007Renderer)
            {
                label.BackColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.QuickAccessToolbar.QatCustomizeMenuLabelBackground;
                label.ForeColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.QuickAccessToolbar.QatCustomizeMenuLabelText;
            }
            this.SubItems.Add(label);

            bool beginGroup = false;

            if (qatFrequentCommands.Count > 0)
            {
                beginGroup = true;
                foreach (BaseItem qatFC in qatFrequentCommands)
                {
                    if (qatFC.Text.Length > 0)
                    {
                        ButtonItem bf = new ButtonItem(RibbonControl.SysFrequentlyQatNamePart + qatFC.Name, qatFC.Text);
                        if (QatContainsItem(tab, qatFC.Name))
                            bf.Checked = true;
                        bf.CanCustomize = false;
                        this.SubItems.Add(bf);
                        bf.Click += new EventHandler(AddFrequentCommandToQat);
                        bf.Tag = qatFC.Name;
                    }
                }
            }

            ButtonItem item = new ButtonItem(RibbonControl.SysQatCustomizeItemName, qatCustomize);
            item.BeginGroup = beginGroup;
            item.CanCustomize = false;
            this.SubItems.Add(item);
            item.Click += new EventHandler(QatCustomizeItemClick);

            //if (tab != null && tab.EnableQatPlacement)
            //{
            //    ButtonItem b = new ButtonItem(RibbonControl.SysQatPlaceItemName);
            //    b.CanCustomize = false;
            //    //if (tab.QatPositionedBelowRibbon)
            //    //    b.Text = tab.SystemText.QatPlaceAboveRibbonText;
            //    //else
            //        b.Text = tab.SystemText.QatPlaceBelowRibbonText;
            //    b.Click += new EventHandler(QuickAccessToolbarChangePlacement);
            //    this.SubItems.Add(b);
            //}

            //if (tab != null)
            //{
            //    ButtonItem b = null;
            //    if (tab.Expanded)
            //        b = new ButtonItem(RibbonControl.SysMinimizeRibbon, tab.SystemText.MinimizeRibbonText);
            //    else
            //        b = new ButtonItem(RibbonControl.SysMaximizeRibbon, tab.SystemText.MaximizeRibbonText);
            //    b.CanCustomize = false;
            //    b.BeginGroup = true;
            //    b.Click += new EventHandler(ToggleRibbonExpand);
            //    this.SubItems.Add(b);
            //}
        }
        private void RecreateItemsMonthCalendarStyle()
        {
            Size fixedButtonSize = new Size(13, 18);
            bool isZuluTime = IsZuluTime;

            ItemContainer itemContainer2 = new ItemContainer();
            ItemContainer itemContainer3 = new ItemContainer();

            // 
            // buttonMinuteDown
            // 
            ButtonItem buttonMinuteDown = new ButtonItem();
            buttonMinuteDown.FixedSize = fixedButtonSize;
            buttonMinuteDown.Name = "buttonMinuteDown";
            buttonMinuteDown.Text = "<expand direction=\"left\"/>";
            buttonMinuteDown.AutoCollapseOnClick = false;
            buttonMinuteDown._FixedSizeCenterText = true;
            buttonMinuteDown.ClickAutoRepeat = true;
            buttonMinuteDown.Command = _MinuteChangeCommand;
            buttonMinuteDown.CommandParameter = -1;
            // 
            // _CurrentTimeLabel
            // 
            _CurrentTimeLabel = new LabelItem();
            _CurrentTimeLabel.Name = "_CurrentTimeLabel";
            _CurrentTimeLabel.Text = "03:45";
            _CurrentTimeLabel.TextAlignment = System.Drawing.StringAlignment.Center;
            _CurrentTimeLabel.Width = 64;
            _CurrentTimeLabel.AutoCollapseOnClick = false;
            // 
            // buttonMinuteUp
            // 
            ButtonItem buttonMinuteUp = new ButtonItem();
            buttonMinuteUp.FixedSize = fixedButtonSize;
            buttonMinuteUp.Name = "buttonMinuteUp";
            buttonMinuteUp.Text = "<expand direction=\"right\"/>";
            buttonMinuteUp.AutoCollapseOnClick = false;
            buttonMinuteUp._FixedSizeCenterText = true;
            buttonMinuteUp.ClickAutoRepeat = true;
            buttonMinuteUp.Command = _MinuteChangeCommand;
            buttonMinuteUp.CommandParameter = 1;
            // 
            // labelSpacerLine1
            // 
            LabelItem labelSpacerLine1 = new LabelItem();
            labelSpacerLine1.Name = "labelSpacerLine1";
            labelSpacerLine1.Width = 10;
            labelSpacerLine1.AutoCollapseOnClick = false;
            // 
            // _ButtonAm
            // 
            ButtonItem _ButtonAm = new ButtonItem();
            _ButtonAm.FixedSize = fixedButtonSize;
            _ButtonAm.Name = "_ButtonAm";
            _ButtonAm.Text = "<expand direction=\"left\"/>";
            _ButtonAm.AutoCollapseOnClick = false;
            _ButtonAm._FixedSizeCenterText = true;
            _ButtonAm.Visible = !isZuluTime;
            _ButtonAm.Command = _AmPmCommand;
            _ButtonAm.CommandParameter = "AM";
            // 
            // labelItem2
            // 
            _AmPmLabel = new LabelItem();
            _AmPmLabel.Name = "labelItem2";
            _AmPmLabel.Text = "PM";
            _AmPmLabel.TextAlignment = System.Drawing.StringAlignment.Center;
            _AmPmLabel.Width = 28;
            _AmPmLabel.AutoCollapseOnClick = false;
            _AmPmLabel.Visible = !isZuluTime;
            // 
            // _ButtonPm
            // 
            _ButtonPm = new ButtonItem();
            _ButtonPm.FixedSize = fixedButtonSize;
            _ButtonPm.Name = "_ButtonPm";
            _ButtonPm.Text = "<expand direction=\"right\"/>";
            _ButtonPm.AutoCollapseOnClick = false;
            _ButtonPm._FixedSizeCenterText = true;
            _ButtonPm.Command = _AmPmCommand;
            _ButtonPm.CommandParameter = "PM";
            _ButtonPm.Visible = !isZuluTime;

            itemContainer2.AutoCollapseOnClick = false;
            //itemContainer2.BackgroundStyle.PaddingTop = 2;
            //itemContainer2.BackgroundStyle.PaddingBottom = 1;
            itemContainer2.BackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            itemContainer2.BackgroundStyle.BackColorGradientAngle = 90;
            itemContainer2.BackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            itemContainer2.BackgroundStyle.Class = "";
            itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            itemContainer2.Name = "itemContainer2";
            itemContainer2.MinimumSize = new Size(0, fixedButtonSize.Height + 3);
            itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            buttonMinuteDown,
            _CurrentTimeLabel,
            buttonMinuteUp,
            labelSpacerLine1,
            _ButtonAm,
            _AmPmLabel,
            _ButtonPm});

            // 
            // labelHour
            // 
            LabelItem labelHour = new LabelItem();
            labelHour.Name = "labelHour";
            labelHour.Text = GetHourText();
            labelHour.ForeColorColorSchemePart = eColorSchemePart.ItemText;
            labelHour.TextAlignment = System.Drawing.StringAlignment.Center;
            labelHour.Width = isZuluTime ? (_HourMinuteButtonSize.Width * 4 + 3) : (_HourMinuteButtonSize.Width * 3 + 2);
            labelHour.Height = _HourMinuteButtonSize.Height - 3;
            labelHour.AutoCollapseOnClick = false;
            labelHour.PaddingBottom = 1;
            _HourLabel = labelHour;
            // 
            // labelMinute
            // 
            LabelItem labelMinute = new LabelItem();
            labelMinute.Name = "labelMinute";
            labelMinute.Text = GetMinuteText();
            labelMinute.ForeColorColorSchemePart = eColorSchemePart.ItemText;
            labelMinute.TextAlignment = System.Drawing.StringAlignment.Center;
            labelMinute.Width = (_HourMinuteButtonSize.Width * 3 + 2);
            labelMinute.Height = _HourMinuteButtonSize.Height - 3;
            labelMinute.AutoCollapseOnClick = false;
            labelMinute.PaddingBottom = 1;
            _MinuteLabel = labelMinute;
            LabelItem labelHMSpacer = new LabelItem();
            labelHMSpacer.Height = _HourMinuteButtonSize.Height - 3;
            labelHMSpacer.Width = isZuluTime ? 2 : 18;
            // 
            // hourMinLabelRow
            // 
            // 
            // 
            // 
            ItemContainer hourMinLabelRow = new ItemContainer();
            hourMinLabelRow.AutoCollapseOnClick = false;
            hourMinLabelRow.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            hourMinLabelRow.BackgroundStyle.BorderBottomColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            hourMinLabelRow.BackgroundStyle.BorderBottomWidth = 1;
            hourMinLabelRow.BackgroundStyle.Class = "";
            hourMinLabelRow.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            hourMinLabelRow.Name = "hourMinLabelRow";
            hourMinLabelRow.BackgroundStyle.MarginBottom = 2;
            hourMinLabelRow.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            labelHour,
            labelHMSpacer,
            labelMinute});

            LabelItem labelSpacerLine3 = new LabelItem();
            labelSpacerLine3.Name = "labelSpacerLine3";
            labelSpacerLine3.Width = 18;
            labelSpacerLine3.AutoCollapseOnClick = false;
            // 
            // hourMinRow1
            // 
            // 
            // 
            // 
            ItemContainer hourMinRow1 = new ItemContainer();
            hourMinRow1.AutoCollapseOnClick = false;
            hourMinRow1.BackgroundStyle.Class = "";
            hourMinRow1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            hourMinRow1.Name = "hourMinRow1";
            if (isZuluTime)
            {
                labelSpacerLine3.Width -= 12;
                hourMinRow1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(0, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(1, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(2, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(3, eTimeSelectorType.MonthCalendarStyle),
                    labelSpacerLine3,
                    CreateMinuteItem(0, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(5, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(10, eTimeSelectorType.MonthCalendarStyle)});
            }
            else
            {
                hourMinRow1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(1, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(2, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(3, eTimeSelectorType.MonthCalendarStyle),
                    labelSpacerLine3,
                    CreateMinuteItem(0, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(5, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(10, eTimeSelectorType.MonthCalendarStyle)});
            }

            // 
            // labelItem5
            // 
            LabelItem labelItem5 = new LabelItem();
            labelItem5.Name = "labelItem5";
            labelItem5.Width = 18;
            labelItem5.AutoCollapseOnClick = false;
            // 
            // hourMinRow2
            // 
            // 
            // 
            // 
            ItemContainer hourMinRow2 = new ItemContainer();
            hourMinRow2.AutoCollapseOnClick = false;
            hourMinRow2.BackgroundStyle.Class = "";
            hourMinRow2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            hourMinRow2.Name = "hourMinRow2";
            if (isZuluTime)
            {
                labelItem5.Width -= 12;
                hourMinRow2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(4, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(5, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(6, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(7, eTimeSelectorType.MonthCalendarStyle),
                    labelItem5,
                    CreateMinuteItem(15, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(20, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(25, eTimeSelectorType.MonthCalendarStyle)});
            }
            else
            {
                hourMinRow2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(4, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(5, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(6, eTimeSelectorType.MonthCalendarStyle),
                    labelItem5,
                    CreateMinuteItem(15, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(20, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(25, eTimeSelectorType.MonthCalendarStyle)});
            }
            // 
            // labelItem6
            // 
            LabelItem labelItem6 = new LabelItem();
            labelItem6.Name = "labelItem6";
            labelItem6.Width = 18;
            labelItem6.AutoCollapseOnClick = false;
            // 
            // hourMinRow3
            // 
            // 
            // 
            // 
            ItemContainer hourMinRow3 = new ItemContainer();
            hourMinRow3.AutoCollapseOnClick = false;
            hourMinRow3.BackgroundStyle.Class = "";
            hourMinRow3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            hourMinRow3.Name = "hourMinRow3";
            if (isZuluTime)
            {
                labelItem6.Width -= 12;
                hourMinRow3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(8, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(9, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(10, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(11, eTimeSelectorType.MonthCalendarStyle),
                    labelItem6,
                    CreateMinuteItem(30, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(35, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(40, eTimeSelectorType.MonthCalendarStyle)});
            }
            else
            {
                hourMinRow3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(7, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(8, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(9, eTimeSelectorType.MonthCalendarStyle),
                    labelItem6,
                    CreateMinuteItem(30, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(35, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(40, eTimeSelectorType.MonthCalendarStyle)});
            }
            // 
            // labelItem7
            // 
            LabelItem labelItem7 = new LabelItem();
            labelItem7.Name = "labelItem7";
            labelItem7.Width = 18;
            labelItem7.AutoCollapseOnClick = false;
            // 
            // hourMinRow4
            // 
            // 
            // 
            // 
            ItemContainer hourMinRow4 = new ItemContainer();
            hourMinRow4.AutoCollapseOnClick = false;
            hourMinRow4.BackgroundStyle.Class = "";
            hourMinRow4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            hourMinRow4.Name = "hourMinRow4";
            if (isZuluTime)
            {
                labelItem7.Width -= 12;
                hourMinRow4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(12, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(13, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(14, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(15, eTimeSelectorType.MonthCalendarStyle),
                    labelItem7,
                    CreateMinuteItem(45, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(50, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(55, eTimeSelectorType.MonthCalendarStyle)});
            }
            else
            {
                hourMinRow4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                    CreateHourItem(10, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(11, eTimeSelectorType.MonthCalendarStyle),
                    CreateHourItem(12, eTimeSelectorType.MonthCalendarStyle),
                    labelItem7,
                    CreateMinuteItem(45, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(50, eTimeSelectorType.MonthCalendarStyle),
                    CreateMinuteItem(55, eTimeSelectorType.MonthCalendarStyle)});
            }
            // 
            // hourMinRow4
            // 
            // 
            // 
            // 
            ItemContainer hourMinRow5 = null, hourMinRow6 = null; ;
            if (isZuluTime)
            {
                hourMinRow5 = new ItemContainer();
                hourMinRow5.AutoCollapseOnClick = false;
                hourMinRow5.BackgroundStyle.Class = "";
                hourMinRow5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
                hourMinRow5.Name = "hourMinRow5";
                hourMinRow5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                CreateHourItem(16, eTimeSelectorType.MonthCalendarStyle),
                CreateHourItem(17, eTimeSelectorType.MonthCalendarStyle),
                CreateHourItem(18, eTimeSelectorType.MonthCalendarStyle),
                CreateHourItem(19, eTimeSelectorType.MonthCalendarStyle)});

                hourMinRow6 = new ItemContainer();
                hourMinRow6.AutoCollapseOnClick = false;
                hourMinRow6.BackgroundStyle.Class = "";
                hourMinRow6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
                hourMinRow6.Name = "hourMinRow6";
                hourMinRow6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
                CreateHourItem(20, eTimeSelectorType.MonthCalendarStyle),
                CreateHourItem(21, eTimeSelectorType.MonthCalendarStyle),
                CreateHourItem(22, eTimeSelectorType.MonthCalendarStyle),
                CreateHourItem(23, eTimeSelectorType.MonthCalendarStyle)});

            }
            //
            // itemContainer3
            // 
            // 
            // 
            // 
            itemContainer3.AutoCollapseOnClick = false;
            itemContainer3.BackgroundStyle.Class = "";
            itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            itemContainer3.Name = "itemContainer3";
            itemContainer3.ItemSpacing = 0;
            itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            hourMinLabelRow,
            hourMinRow1,
            hourMinRow2,
            hourMinRow3,
            hourMinRow4});
            if (hourMinRow5 != null)
                itemContainer3.SubItems.Add(hourMinRow5);
            if (hourMinRow6 != null)
                itemContainer3.SubItems.Add(hourMinRow6);

            // 
            // buttonItem29
            // 
            ButtonItem buttonClearTime = new ButtonItem("buttonClearTime");
            buttonClearTime.Text = "<div align=\"center\" width=\"32\">" + GetClearText() + "</div>";
            buttonClearTime.Command = _ClearCommand;
            buttonClearTime.Visible = _ClearButtonVisible;
            buttonClearTime.AutoCollapseOnClick = false;
            // 
            // buttonItem30
            // 
            ButtonItem buttonOk = new ButtonItem("buttonOk");
            buttonOk.Text = "<div align=\"center\" width=\"32\">" + GetOkText() + "</div>";
            buttonOk.Visible = _OkButtonVisible;
            buttonOk.Command = _OkCommand;
            // 
            // commandRow
            // 
            // 
            // 
            // 
            ItemContainer commandRow = new ItemContainer();
            commandRow.AutoCollapseOnClick = false;
            commandRow.BackgroundStyle.MarginTop = isZuluTime ? 2 : 35 + 2 * (_HourMinuteButtonSize.Height - DefaultHourMinuteButtonSize.Height);
            commandRow.BackgroundStyle.Border = DevComponents.DotNetBar.eStyleBorderType.Solid;
            commandRow.BackgroundStyle.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            commandRow.BackgroundStyle.BorderTopWidth = 1;
            commandRow.BackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            commandRow.BackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            commandRow.BackgroundStyle.BackColorGradientAngle = 90;
            commandRow.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
            commandRow.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Center;
            commandRow.Name = "commandRow";
            commandRow.ItemSpacing = 5;
            commandRow.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            buttonClearTime,
            buttonOk});

            _InnerContainer.ResizeItemsToFit = true;
            _InnerContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            itemContainer2,
            itemContainer3,
            commandRow});
        }
Exemple #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.panelEx1        = new DevComponents.DotNetBar.PanelEx();
     this.chartTypes      = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem1     = new DevComponents.DotNetBar.ButtonItem();
     this.columnSelector  = new DevComponents.DotNetBar.ButtonItem();
     this.lineSelector    = new DevComponents.DotNetBar.ButtonItem();
     this.pieSelector     = new DevComponents.DotNetBar.ButtonItem();
     this.barSelector     = new DevComponents.DotNetBar.ButtonItem();
     this.areaSelector    = new DevComponents.DotNetBar.ButtonItem();
     this.xySelector      = new DevComponents.DotNetBar.ButtonItem();
     this.stockSelector   = new DevComponents.DotNetBar.ButtonItem();
     this.buttonX1        = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2        = new DevComponents.DotNetBar.ButtonX();
     this.itemPanel2      = new DevComponents.DotNetBar.ItemPanel();
     this.labelItem1      = new DevComponents.DotNetBar.LabelItem();
     this.columnContainer = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19    = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem2      = new DevComponents.DotNetBar.LabelItem();
     this.lineContainer   = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem20    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23    = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem3      = new DevComponents.DotNetBar.LabelItem();
     this.pieContainer    = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem9     = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11    = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem4      = new DevComponents.DotNetBar.LabelItem();
     this.barContainer    = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem24    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem26    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem27    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem30    = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem5      = new DevComponents.DotNetBar.LabelItem();
     this.areaContainer   = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem31    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem32    = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem33    = new DevComponents.DotNetBar.ButtonItem();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor                     = System.Drawing.SystemColors.Control;
     this.panelEx1.Dock                            = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Font                            = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.panelEx1.Location                        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name                            = "panelEx1";
     this.panelEx1.Size                            = new System.Drawing.Size(562, 32);
     this.panelEx1.Style.BackColor1.Color          = System.Drawing.Color.FromArgb(((System.Byte)(95)), ((System.Byte)(136)), ((System.Byte)(215)));
     this.panelEx1.Style.BackColor2.Color          = System.Drawing.Color.FromArgb(((System.Byte)(67)), ((System.Byte)(108)), ((System.Byte)(191)));
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle             = 90;
     this.panelEx1.Style.MarginLeft                = 8;
     this.panelEx1.TabIndex                        = 0;
     this.panelEx1.Text                            = "Choose a Chart Type";
     //
     // chartTypes
     //
     this.chartTypes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)));
     //
     // chartTypes.BackgroundStyle
     //
     this.chartTypes.BackgroundStyle.BackColor         = System.Drawing.Color.White;
     this.chartTypes.BackgroundStyle.BorderBottom      = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.chartTypes.BackgroundStyle.BorderBottomWidth = 1;
     this.chartTypes.BackgroundStyle.BorderColor       = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(157)), ((System.Byte)(185)));
     this.chartTypes.BackgroundStyle.BorderLeft        = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.chartTypes.BackgroundStyle.BorderLeftWidth   = 1;
     this.chartTypes.BackgroundStyle.BorderRight       = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.chartTypes.BackgroundStyle.BorderRightWidth  = 1;
     this.chartTypes.BackgroundStyle.BorderTop         = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.chartTypes.BackgroundStyle.BorderTopWidth    = 1;
     this.chartTypes.BackgroundStyle.PaddingBottom     = 1;
     this.chartTypes.BackgroundStyle.PaddingLeft       = 1;
     this.chartTypes.BackgroundStyle.PaddingRight      = 1;
     this.chartTypes.BackgroundStyle.PaddingTop        = 1;
     this.chartTypes.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.chartTypes.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.columnSelector,
         this.lineSelector,
         this.pieSelector,
         this.barSelector,
         this.areaSelector,
         this.xySelector,
         this.stockSelector
     });
     this.chartTypes.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.chartTypes.Location          = new System.Drawing.Point(6, 36);
     this.chartTypes.Name     = "chartTypes";
     this.chartTypes.Size     = new System.Drawing.Size(152, 262);
     this.chartTypes.TabIndex = 1;
     this.chartTypes.Text     = "itemPanel1";
     //
     // buttonItem1
     //
     this.buttonItem1.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem1.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.Name        = "buttonItem1";
     this.buttonItem1.OptionGroup = "charts";
     this.buttonItem1.Text        = "Templates";
     //
     // columnSelector
     //
     this.columnSelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.columnSelector.Checked     = true;
     this.columnSelector.Image       = ((System.Drawing.Image)(resources.GetObject("columnSelector.Image")));
     this.columnSelector.Name        = "columnSelector";
     this.columnSelector.OptionGroup = "charts";
     this.columnSelector.Text        = "Column";
     this.columnSelector.Click      += new System.EventHandler(this.columnSelector_Click);
     //
     // lineSelector
     //
     this.lineSelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.lineSelector.Image       = ((System.Drawing.Image)(resources.GetObject("lineSelector.Image")));
     this.lineSelector.Name        = "lineSelector";
     this.lineSelector.OptionGroup = "charts";
     this.lineSelector.Text        = "Line";
     this.lineSelector.Click      += new System.EventHandler(this.lineSelector_Click);
     //
     // pieSelector
     //
     this.pieSelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.pieSelector.Image       = ((System.Drawing.Image)(resources.GetObject("pieSelector.Image")));
     this.pieSelector.Name        = "pieSelector";
     this.pieSelector.OptionGroup = "charts";
     this.pieSelector.Text        = "Pie";
     this.pieSelector.Click      += new System.EventHandler(this.pieSelector_Click);
     //
     // barSelector
     //
     this.barSelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.barSelector.Image       = ((System.Drawing.Image)(resources.GetObject("barSelector.Image")));
     this.barSelector.Name        = "barSelector";
     this.barSelector.OptionGroup = "charts";
     this.barSelector.Text        = "Bar";
     this.barSelector.Click      += new System.EventHandler(this.barSelector_Click);
     //
     // areaSelector
     //
     this.areaSelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.areaSelector.Image       = ((System.Drawing.Image)(resources.GetObject("areaSelector.Image")));
     this.areaSelector.Name        = "areaSelector";
     this.areaSelector.OptionGroup = "charts";
     this.areaSelector.Text        = "Area";
     this.areaSelector.Click      += new System.EventHandler(this.areaSelector_Click);
     //
     // xySelector
     //
     this.xySelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.xySelector.Image       = ((System.Drawing.Image)(resources.GetObject("xySelector.Image")));
     this.xySelector.Name        = "xySelector";
     this.xySelector.OptionGroup = "charts";
     this.xySelector.Text        = "X Y (Scatter)";
     //
     // stockSelector
     //
     this.stockSelector.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.stockSelector.Image       = ((System.Drawing.Image)(resources.GetObject("stockSelector.Image")));
     this.stockSelector.Name        = "stockSelector";
     this.stockSelector.OptionGroup = "charts";
     this.stockSelector.Text        = "Stock";
     //
     // buttonX1
     //
     this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonX1.ColorScheme.DockSiteBackColorGradientAngle = 0;
     this.buttonX1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonX1.Location     = new System.Drawing.Point(404, 304);
     this.buttonX1.Name         = "buttonX1";
     this.buttonX1.Size         = new System.Drawing.Size(72, 24);
     this.buttonX1.TabIndex     = 2;
     this.buttonX1.Text         = "OK";
     this.buttonX1.ThemeAware   = true;
     this.buttonX1.Click       += new System.EventHandler(this.buttonX1_Click);
     //
     // buttonX2
     //
     this.buttonX2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonX2.ColorScheme.DockSiteBackColorGradientAngle = 0;
     this.buttonX2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonX2.Location     = new System.Drawing.Point(482, 304);
     this.buttonX2.Name         = "buttonX2";
     this.buttonX2.Size         = new System.Drawing.Size(72, 24);
     this.buttonX2.TabIndex     = 3;
     this.buttonX2.Text         = "Cancel";
     this.buttonX2.ThemeAware   = true;
     this.buttonX2.Click       += new System.EventHandler(this.buttonX2_Click);
     //
     // itemPanel2
     //
     this.itemPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.itemPanel2.AutoScroll        = true;
     this.itemPanel2.AutoScrollMinSize = new System.Drawing.Size(369, 493);
     //
     // itemPanel2.BackgroundStyle
     //
     this.itemPanel2.BackgroundStyle.BackColor         = System.Drawing.Color.White;
     this.itemPanel2.BackgroundStyle.BorderBottom      = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemPanel2.BackgroundStyle.BorderBottomWidth = 1;
     this.itemPanel2.BackgroundStyle.BorderColor       = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(157)), ((System.Byte)(185)));
     this.itemPanel2.BackgroundStyle.BorderLeft        = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemPanel2.BackgroundStyle.BorderLeftWidth   = 1;
     this.itemPanel2.BackgroundStyle.BorderRight       = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemPanel2.BackgroundStyle.BorderRightWidth  = 1;
     this.itemPanel2.BackgroundStyle.BorderTop         = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemPanel2.BackgroundStyle.BorderTopWidth    = 1;
     this.itemPanel2.BackgroundStyle.PaddingBottom     = 1;
     this.itemPanel2.BackgroundStyle.PaddingLeft       = 1;
     this.itemPanel2.BackgroundStyle.PaddingRight      = 1;
     this.itemPanel2.BackgroundStyle.PaddingTop        = 1;
     this.itemPanel2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.labelItem1,
         this.columnContainer,
         this.labelItem2,
         this.lineContainer,
         this.labelItem3,
         this.pieContainer,
         this.labelItem4,
         this.barContainer,
         this.labelItem5,
         this.areaContainer
     });
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location          = new System.Drawing.Point(168, 36);
     this.itemPanel2.Name       = "itemPanel2";
     this.itemPanel2.Size       = new System.Drawing.Size(386, 262);
     this.itemPanel2.TabIndex   = 4;
     this.itemPanel2.Text       = "itemPanel2";
     this.itemPanel2.ItemClick += new System.EventHandler(this.itemPanel2_ItemClick);
     //
     // labelItem1
     //
     this.labelItem1.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(235)), ((System.Byte)(235)));
     this.labelItem1.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem1.Name            = "labelItem1";
     this.labelItem1.PaddingBottom   = 1;
     this.labelItem1.PaddingLeft     = 1;
     this.labelItem1.PaddingRight    = 1;
     this.labelItem1.PaddingTop      = 1;
     this.labelItem1.SingleLineColor = System.Drawing.Color.FromArgb(((System.Byte)(197)), ((System.Byte)(197)), ((System.Byte)(197)));
     this.labelItem1.Text            = "<b>Column</b>";
     //
     // columnContainer
     //
     this.columnContainer.MinimumSize = new System.Drawing.Size(0, 0);
     this.columnContainer.MultiLine   = true;
     this.columnContainer.Name        = "columnContainer";
     this.columnContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem12,
         this.buttonItem13,
         this.buttonItem14,
         this.buttonItem15,
         this.buttonItem16,
         this.buttonItem17,
         this.buttonItem18,
         this.buttonItem19
     });
     //
     // buttonItem12
     //
     this.buttonItem12.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name        = "buttonItem12";
     this.buttonItem12.OptionGroup = "chart";
     this.buttonItem12.Text        = "Clustered Column";
     this.buttonItem12.Tooltip     = "Clustered Column";
     //
     // buttonItem13
     //
     this.buttonItem13.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name        = "buttonItem13";
     this.buttonItem13.OptionGroup = "chart";
     this.buttonItem13.Text        = "Stacked Column";
     this.buttonItem13.Tooltip     = "Stacked Column";
     //
     // buttonItem14
     //
     this.buttonItem14.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.Name        = "buttonItem14";
     this.buttonItem14.OptionGroup = "chart";
     this.buttonItem14.Text        = "100% Stacked Column";
     this.buttonItem14.Tooltip     = "100% Stacked Column";
     //
     // buttonItem15
     //
     this.buttonItem15.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.Name        = "buttonItem15";
     this.buttonItem15.OptionGroup = "chart";
     this.buttonItem15.Text        = "Clustered Column";
     this.buttonItem15.Tooltip     = "Clustered Column";
     //
     // buttonItem16
     //
     this.buttonItem16.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.Name        = "buttonItem16";
     this.buttonItem16.OptionGroup = "chart";
     this.buttonItem16.Text        = "Stacked Column";
     this.buttonItem16.Tooltip     = "Stacked Column";
     //
     // buttonItem17
     //
     this.buttonItem17.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem17.Image")));
     this.buttonItem17.Name        = "buttonItem17";
     this.buttonItem17.OptionGroup = "chart";
     this.buttonItem17.Text        = "100% Stacked Column";
     this.buttonItem17.Tooltip     = "100% Stacked Column";
     //
     // buttonItem18
     //
     this.buttonItem18.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem18.Image")));
     this.buttonItem18.Name        = "buttonItem18";
     this.buttonItem18.OptionGroup = "chart";
     this.buttonItem18.Text        = "Clustered Column";
     this.buttonItem18.Tooltip     = "Clustered Column";
     //
     // buttonItem19
     //
     this.buttonItem19.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem19.Image")));
     this.buttonItem19.Name        = "buttonItem19";
     this.buttonItem19.OptionGroup = "chart";
     this.buttonItem19.Text        = "Stacked Column";
     this.buttonItem19.Tooltip     = "Stacked Column";
     //
     // labelItem2
     //
     this.labelItem2.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(235)), ((System.Byte)(235)));
     this.labelItem2.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem2.Name            = "labelItem2";
     this.labelItem2.PaddingBottom   = 1;
     this.labelItem2.PaddingLeft     = 1;
     this.labelItem2.PaddingRight    = 1;
     this.labelItem2.PaddingTop      = 1;
     this.labelItem2.SingleLineColor = System.Drawing.Color.FromArgb(((System.Byte)(197)), ((System.Byte)(197)), ((System.Byte)(197)));
     this.labelItem2.Text            = "<b>Line</b>";
     //
     // lineContainer
     //
     this.lineContainer.MinimumSize = new System.Drawing.Size(0, 0);
     this.lineContainer.MultiLine   = true;
     this.lineContainer.Name        = "lineContainer";
     this.lineContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem20,
         this.buttonItem21,
         this.buttonItem22,
         this.buttonItem23
     });
     //
     // buttonItem20
     //
     this.buttonItem20.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name        = "buttonItem20";
     this.buttonItem20.OptionGroup = "chart";
     this.buttonItem20.Text        = "Line";
     this.buttonItem20.Tooltip     = "Line";
     //
     // buttonItem21
     //
     this.buttonItem21.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name        = "buttonItem21";
     this.buttonItem21.OptionGroup = "chart";
     this.buttonItem21.Text        = "Stacked Line";
     this.buttonItem21.Tooltip     = "Stacked Line";
     //
     // buttonItem22
     //
     this.buttonItem22.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name        = "buttonItem22";
     this.buttonItem22.OptionGroup = "chart";
     this.buttonItem22.Text        = "100% Stacked Line";
     this.buttonItem22.Tooltip     = "100% Stacked Line";
     //
     // buttonItem23
     //
     this.buttonItem23.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name        = "buttonItem23";
     this.buttonItem23.OptionGroup = "chart";
     this.buttonItem23.Text        = "Line With Markers";
     this.buttonItem23.Tooltip     = "Line With Markers";
     //
     // labelItem3
     //
     this.labelItem3.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(235)), ((System.Byte)(235)));
     this.labelItem3.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem3.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem3.Name            = "labelItem3";
     this.labelItem3.PaddingBottom   = 1;
     this.labelItem3.PaddingLeft     = 1;
     this.labelItem3.PaddingRight    = 1;
     this.labelItem3.PaddingTop      = 1;
     this.labelItem3.SingleLineColor = System.Drawing.Color.FromArgb(((System.Byte)(197)), ((System.Byte)(197)), ((System.Byte)(197)));
     this.labelItem3.Text            = "<b>Pie</b>";
     //
     // pieContainer
     //
     this.pieContainer.MinimumSize = new System.Drawing.Size(0, 0);
     this.pieContainer.MultiLine   = true;
     this.pieContainer.Name        = "pieContainer";
     this.pieContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem9,
         this.buttonItem10,
         this.buttonItem11
     });
     //
     // buttonItem9
     //
     this.buttonItem9.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.Name        = "buttonItem9";
     this.buttonItem9.OptionGroup = "chart";
     this.buttonItem9.Text        = "Pie";
     this.buttonItem9.Tooltip     = "Pie";
     //
     // buttonItem10
     //
     this.buttonItem10.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.Name        = "buttonItem10";
     this.buttonItem10.OptionGroup = "chart";
     this.buttonItem10.Text        = "Pie";
     this.buttonItem10.Tooltip     = "Pie";
     //
     // buttonItem11
     //
     this.buttonItem11.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.Name        = "buttonItem11";
     this.buttonItem11.OptionGroup = "chart";
     this.buttonItem11.Text        = "Pie";
     this.buttonItem11.Tooltip     = "Pie";
     //
     // labelItem4
     //
     this.labelItem4.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(235)), ((System.Byte)(235)));
     this.labelItem4.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem4.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem4.Name            = "labelItem4";
     this.labelItem4.PaddingBottom   = 1;
     this.labelItem4.PaddingLeft     = 1;
     this.labelItem4.PaddingRight    = 1;
     this.labelItem4.PaddingTop      = 1;
     this.labelItem4.SingleLineColor = System.Drawing.Color.FromArgb(((System.Byte)(197)), ((System.Byte)(197)), ((System.Byte)(197)));
     this.labelItem4.Text            = "<b>Bar</b>";
     //
     // barContainer
     //
     this.barContainer.MinimumSize = new System.Drawing.Size(0, 0);
     this.barContainer.MultiLine   = true;
     this.barContainer.Name        = "barContainer";
     this.barContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem24,
         this.buttonItem25,
         this.buttonItem26,
         this.buttonItem27,
         this.buttonItem28,
         this.buttonItem29,
         this.buttonItem30
     });
     //
     // buttonItem24
     //
     this.buttonItem24.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name        = "buttonItem24";
     this.buttonItem24.OptionGroup = "chart";
     this.buttonItem24.Text        = "Clustered Bar";
     this.buttonItem24.Tooltip     = "Clustered Bar";
     //
     // buttonItem25
     //
     this.buttonItem25.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name        = "buttonItem25";
     this.buttonItem25.OptionGroup = "chart";
     this.buttonItem25.Text        = "Stacked Bar";
     this.buttonItem25.Tooltip     = "Stacked Bar";
     //
     // buttonItem26
     //
     this.buttonItem26.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem26.Image")));
     this.buttonItem26.Name        = "buttonItem26";
     this.buttonItem26.OptionGroup = "chart";
     this.buttonItem26.Text        = "100% Stacked Bar";
     this.buttonItem26.Tooltip     = "100% Stacked Bar";
     //
     // buttonItem27
     //
     this.buttonItem27.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem27.Image")));
     this.buttonItem27.Name        = "buttonItem27";
     this.buttonItem27.OptionGroup = "chart";
     this.buttonItem27.Text        = "Clustered Bar";
     this.buttonItem27.Tooltip     = "Clustered Bar";
     //
     // buttonItem28
     //
     this.buttonItem28.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem28.Image")));
     this.buttonItem28.Name        = "buttonItem28";
     this.buttonItem28.OptionGroup = "chart";
     this.buttonItem28.Text        = "Stacked Bar";
     this.buttonItem28.Tooltip     = "Stacked Bar";
     //
     // buttonItem29
     //
     this.buttonItem29.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem29.Image")));
     this.buttonItem29.Name        = "buttonItem29";
     this.buttonItem29.OptionGroup = "chart";
     this.buttonItem29.Text        = "100% Stacked Bar";
     this.buttonItem29.Tooltip     = "100% Stacked Bar";
     //
     // buttonItem30
     //
     this.buttonItem30.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem30.Image")));
     this.buttonItem30.Name        = "buttonItem30";
     this.buttonItem30.OptionGroup = "chart";
     this.buttonItem30.Text        = "Clustered Bar";
     this.buttonItem30.Tooltip     = "Clustered Bar";
     //
     // labelItem5
     //
     this.labelItem5.BackColor       = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(235)), ((System.Byte)(235)));
     this.labelItem5.BorderSide      = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem5.BorderType      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem5.Name            = "labelItem5";
     this.labelItem5.PaddingBottom   = 1;
     this.labelItem5.PaddingLeft     = 1;
     this.labelItem5.PaddingRight    = 1;
     this.labelItem5.PaddingTop      = 1;
     this.labelItem5.SingleLineColor = System.Drawing.Color.FromArgb(((System.Byte)(197)), ((System.Byte)(197)), ((System.Byte)(197)));
     this.labelItem5.Text            = "<b>Area</b>";
     //
     // areaContainer
     //
     this.areaContainer.MinimumSize = new System.Drawing.Size(0, 0);
     this.areaContainer.MultiLine   = true;
     this.areaContainer.Name        = "areaContainer";
     this.areaContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem31,
         this.buttonItem32,
         this.buttonItem33
     });
     //
     // buttonItem31
     //
     this.buttonItem31.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem31.Image")));
     this.buttonItem31.Name        = "buttonItem31";
     this.buttonItem31.OptionGroup = "chart";
     this.buttonItem31.Text        = "Area";
     this.buttonItem31.Tooltip     = "Area";
     //
     // buttonItem32
     //
     this.buttonItem32.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem32.Image")));
     this.buttonItem32.Name        = "buttonItem32";
     this.buttonItem32.OptionGroup = "chart";
     this.buttonItem32.Text        = "Stacked Area";
     this.buttonItem32.Tooltip     = "Stacked Area";
     //
     // buttonItem33
     //
     this.buttonItem33.Image       = ((System.Drawing.Image)(resources.GetObject("buttonItem33.Image")));
     this.buttonItem33.Name        = "buttonItem33";
     this.buttonItem33.OptionGroup = "chart";
     this.buttonItem33.Text        = "100% Stacked Area";
     this.buttonItem33.Tooltip     = "100% Stacked Area";
     //
     // Form1
     //
     this.AcceptButton      = this.buttonX1;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.buttonX2;
     this.ClientSize        = new System.Drawing.Size(562, 332);
     this.Controls.Add(this.itemPanel2);
     this.Controls.Add(this.buttonX2);
     this.Controls.Add(this.buttonX1);
     this.Controls.Add(this.chartTypes);
     this.Controls.Add(this.panelEx1);
     this.MinimumSize = new System.Drawing.Size(234, 132);
     this.Name        = "Form1";
     this.Text        = "Create Chart";
     this.ResumeLayout(false);
 }
        private void InitializeColorDropDown()
        {
            this.SubItems.Clear();

            LoadResources();
            if (m_DisplayThemeColors)
            {
                LabelItem label = new LabelItem();
                label.CanCustomize = false;
                label.Text = m_ThemeColorsLabel;
                if (GlobalManager.Renderer is Office2007Renderer)
                {
                    label.BackColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.Gallery.GroupLabelBackground;
                    label.ForeColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.Gallery.GroupLabelText;
                    label.SingleLineColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.Gallery.GroupLabelBorder;
                }
                else
                {
                    label.BackColor = ColorScheme.GetColor("DDE7EE");
                    label.ForeColor = ColorScheme.GetColor("00156E");
                    label.SingleLineColor = ColorScheme.GetColor("C5C5C5");
                }
                label.PaddingBottom = 1;
                label.PaddingLeft = 0;
                label.PaddingRight = 0;
                label.PaddingTop = 1;
                label.BorderSide = eBorderSide.Bottom;
                label.BorderType = eBorderType.SingleLine;
                this.SubItems.Add(label);
                ArrayList colors = this.GetThemeColors();
                AddColors(colors);
            }

            if (m_DisplayStandardColors)
            {
                LabelItem label = new LabelItem();
                label.CanCustomize = false;
                label.Text = m_StandardColorsLabel;
                if (GlobalManager.Renderer is Office2007Renderer)
                {
                    label.BackColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.QuickAccessToolbar.QatCustomizeMenuLabelBackground;
                    label.ForeColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.QuickAccessToolbar.QatCustomizeMenuLabelText;
                    label.SingleLineColor = ((Office2007Renderer)GlobalManager.Renderer).ColorTable.Gallery.GroupLabelBorder;
                }
                else
                {
                    label.BackColor = ColorScheme.GetColor("DDE7EE");
                    label.ForeColor = ColorScheme.GetColor("00156E");
                    label.SingleLineColor = ColorScheme.GetColor("C5C5C5");
                }
                label.PaddingBottom = 1;
                label.PaddingLeft = 0;
                label.PaddingRight = 0;
                label.PaddingTop = 1;
                label.BorderSide = eBorderSide.Bottom;
                label.BorderType = eBorderType.SingleLine;
                this.SubItems.Add(label);
                ArrayList colors = this.GetStandardColors();
                AddColors(colors);
            }

            if (m_DisplayMoreColors)
            {
                ButtonItem button = new ButtonItem("sys_CPMoreColors", m_MoreColorsLabel);
                button.CanCustomize = false;
                button.Image = BarFunctions.LoadBitmap("SystemImages.ColorPickerCustomColors.png");
                button.Click += new EventHandler(MoreColorsButtonClick);
                button.BeginGroup = true;
                this.SubItems.Add(button);
            }

            m_ColorsInitialized = true;
        }
Exemple #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.mdiClient1 = new System.Windows.Forms.MdiClient();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.tabStrip1 = new DevComponents.DotNetBar.TabStrip();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.labelStatus = new DevComponents.DotNetBar.LabelItem();
     this.progressBarItem1 = new DevComponents.DotNetBar.ProgressBarItem();
     this.itemContainer13 = new DevComponents.DotNetBar.ItemContainer();
     this.labelPosition = new DevComponents.DotNetBar.LabelItem();
     this.mainRibbonControl = new DevComponents.DotNetBar.RibbonControl();
     this.contextMenuBar = new DevComponents.DotNetBar.ContextMenuBar();
     this.bEditPopup = new DevComponents.DotNetBar.ButtonItem();
     this.bCut = new DevComponents.DotNetBar.ButtonItem();
     this.bCopy = new DevComponents.DotNetBar.ButtonItem();
     this.bPaste = new DevComponents.DotNetBar.ButtonItem();
     this.bSelectAll = new DevComponents.DotNetBar.ButtonItem();
     this.switchButtonItem1 = new DevComponents.DotNetBar.SwitchButtonItem();
     this.RibbonStateCommand = new DevComponents.DotNetBar.Command(this.components);
     this.buttonFile = new DevComponents.DotNetBar.Office2007StartButton();
     this.superTabControl1 = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.recentPlacesItemsPanel = new DevComponents.DotNetBar.ItemPanel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.recentDocsItemPane = new DevComponents.DotNetBar.ItemPanel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem67 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandNew = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem68 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem69 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem70 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem71 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem72 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel4 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem77 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandGoToUrl = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem73 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem74 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem75 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem76 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem4 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.superTabItem3 = new DevComponents.DotNetBar.SuperTabItem();
     this.buttonItem61 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandSave = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem63 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandOpen = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem64 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem65 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem66 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandExit = new DevComponents.DotNetBar.Command(this.components);
     this.menuFileContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileTwoColumnContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileItems = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFileSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandSaveAs = new DevComponents.DotNetBar.Command(this.components);
     this.itemContainer12 = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem56 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileMRU = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileBottomContainer = new DevComponents.DotNetBar.ItemContainer();
     this.buttonOptions = new DevComponents.DotNetBar.ButtonItem();
     this.buttonExit = new DevComponents.DotNetBar.ButtonItem();
     this.buttonNew = new DevComponents.DotNetBar.ButtonItem();
     this.buttonSave = new DevComponents.DotNetBar.ButtonItem();
     this.buttonUndo = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.ribbonTabItemGroup1 = new DevComponents.DotNetBar.RibbonTabItemGroup();
     this.buttonStyleMetro = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandTheme = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.progressBarTimer = new System.Windows.Forms.Timer(this.components);
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit();
     this.superTabControl1.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.superTabControlPanel4.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.SuspendLayout();
     //
     // openFileDialog1
     //
     this.openFileDialog1.DefaultExt = "*.rtf";
     this.openFileDialog1.Filter = "Text Files (*.txt)|*.txt|RTF Files (*.rtf)|*.rtf|All Files(*.*)|*.*";
     this.openFileDialog1.FilterIndex = 2;
     this.openFileDialog1.Title = "Open File";
     //
     // mdiClient1
     //
     this.mdiClient1.BackColor = System.Drawing.Color.White;
     this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mdiClient1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdiClient1.Location = new System.Drawing.Point(5, 178);
     this.mdiClient1.Name = "mdiClient1";
     this.mdiClient1.Size = new System.Drawing.Size(766, 301);
     this.mdiClient1.TabIndex = 5;
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.DefaultExt = "*.rtf";
     this.saveFileDialog1.FileName = "doc1";
     this.saveFileDialog1.Filter = "Text Files (*.txt)|*.txt|RTF Files (*.rtf)|*.rtf|All Files(*.*)|*.*";
     this.saveFileDialog1.FilterIndex = 2;
     this.saveFileDialog1.Title = "Save File";
     //
     // tabStrip1
     //
     this.tabStrip1.AutoSelectAttachedControl = true;
     this.tabStrip1.CanReorderTabs = true;
     this.tabStrip1.CloseButtonOnTabsVisible = true;
     this.tabStrip1.CloseButtonVisible = false;
     this.tabStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabStrip1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStrip1.ForeColor = System.Drawing.Color.Black;
     this.tabStrip1.Location = new System.Drawing.Point(5, 152);
     this.tabStrip1.MdiForm = this;
     this.tabStrip1.MdiTabbedDocuments = true;
     this.tabStrip1.Name = "tabStrip1";
     this.tabStrip1.SelectedTab = null;
     this.tabStrip1.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStrip1.Size = new System.Drawing.Size(766, 26);
     this.tabStrip1.Style = DevComponents.DotNetBar.eTabStripStyle.Metro;
     this.tabStrip1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.tabStrip1.TabIndex = 6;
     this.tabStrip1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabStrip1.Text = "tabStrip1";
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar;
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelStatus,
     this.progressBarItem1,
     this.itemContainer13});
     this.bar1.ItemSpacing = 2;
     this.bar1.Location = new System.Drawing.Point(5, 479);
     this.bar1.Name = "bar1";
     this.bar1.PaddingBottom = 0;
     this.bar1.PaddingTop = 0;
     this.bar1.Size = new System.Drawing.Size(766, 19);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "barStatus";
     //
     // labelStatus
     //
     this.labelStatus.Name = "labelStatus";
     this.labelStatus.PaddingLeft = 2;
     this.labelStatus.PaddingRight = 2;
     this.labelStatus.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelStatus.Stretch = true;
     //
     // progressBarItem1
     //
     //
     //
     //
     this.progressBarItem1.BackStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarItem1.ChunkGradientAngle = 0F;
     this.progressBarItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.progressBarItem1.Name = "progressBarItem1";
     this.progressBarItem1.RecentlyUsed = false;
     //
     // itemContainer13
     //
     //
     //
     //
     this.itemContainer13.BackgroundStyle.Class = "Office2007StatusBarBackground2";
     this.itemContainer13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer13.Name = "itemContainer13";
     this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelPosition});
     //
     //
     //
     this.itemContainer13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelPosition
     //
     this.labelPosition.Name = "labelPosition";
     this.labelPosition.PaddingLeft = 2;
     this.labelPosition.PaddingRight = 2;
     this.labelPosition.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelPosition.Stretch = true;
     this.labelPosition.Text = "����˹̹�Ƽ����޹�˾ ��Ȩ����";
     this.labelPosition.Width = 180;
     //
     // mainRibbonControl
     //
     this.mainRibbonControl.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.mainRibbonControl.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.mainRibbonControl.CaptionVisible = true;
     this.mainRibbonControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.mainRibbonControl.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainRibbonControl.ForeColor = System.Drawing.Color.Black;
     this.mainRibbonControl.GlobalContextMenuBar = this.contextMenuBar;
     this.mainRibbonControl.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.switchButtonItem1});
     this.mainRibbonControl.KeyTipsFont = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainRibbonControl.Location = new System.Drawing.Point(5, 1);
     this.mainRibbonControl.MdiSystemItemVisible = false;
     this.mainRibbonControl.Name = "mainRibbonControl";
     this.mainRibbonControl.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.mainRibbonControl.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFile,
     this.buttonNew,
     this.buttonSave,
     this.buttonUndo,
     this.qatCustomizeItem1});
     this.mainRibbonControl.RibbonStripFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainRibbonControl.Size = new System.Drawing.Size(766, 151);
     this.mainRibbonControl.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.mainRibbonControl.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.mainRibbonControl.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.mainRibbonControl.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.mainRibbonControl.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.mainRibbonControl.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.mainRibbonControl.SystemText.QatDialogAddButton = "&Add >>";
     this.mainRibbonControl.SystemText.QatDialogCancelButton = "Cancel";
     this.mainRibbonControl.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.mainRibbonControl.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.mainRibbonControl.SystemText.QatDialogOkButton = "OK";
     this.mainRibbonControl.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.mainRibbonControl.SystemText.QatDialogRemoveButton = "&Remove";
     this.mainRibbonControl.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.mainRibbonControl.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.mainRibbonControl.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.mainRibbonControl.TabGroupHeight = 14;
     this.mainRibbonControl.TabGroups.AddRange(new DevComponents.DotNetBar.RibbonTabItemGroup[] {
     this.ribbonTabItemGroup1});
     this.mainRibbonControl.TabGroupsVisible = true;
     this.mainRibbonControl.TabIndex = 8;
     this.mainRibbonControl.BeforeRibbonPanelPopupClose += new DevComponents.DotNetBar.RibbonPopupCloseEventHandler(this.ribbonControl1_BeforeRibbonPanelPopupClose);
     //
     // contextMenuBar
     //
     this.contextMenuBar.AntiAlias = true;
     this.contextMenuBar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.contextMenuBar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.bEditPopup});
     this.contextMenuBar.Location = new System.Drawing.Point(352, 309);
     this.contextMenuBar.Name = "contextMenuBar";
     this.contextMenuBar.Size = new System.Drawing.Size(150, 25);
     this.contextMenuBar.Stretch = true;
     this.contextMenuBar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.contextMenuBar.TabIndex = 13;
     this.contextMenuBar.TabStop = false;
     //
     // bEditPopup
     //
     this.bEditPopup.AutoExpandOnClick = true;
     this.bEditPopup.GlobalName = "bEditPopup";
     this.bEditPopup.Name = "bEditPopup";
     this.bEditPopup.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bEditPopup.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.bCut,
     this.bCopy,
     this.bPaste,
     this.bSelectAll});
     this.bEditPopup.Text = "bEditPopup";
     //
     // bCut
     //
     this.bCut.BeginGroup = true;
     this.bCut.GlobalName = "bCut";
     this.bCut.ImageIndex = 5;
     this.bCut.Name = "bCut";
     this.bCut.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bCut.Text = "Cu&t";
     //
     // bCopy
     //
     this.bCopy.GlobalName = "bCopy";
     this.bCopy.ImageIndex = 4;
     this.bCopy.Name = "bCopy";
     this.bCopy.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bCopy.Text = "&Copy";
     //
     // bPaste
     //
     this.bPaste.GlobalName = "bPaste";
     this.bPaste.ImageIndex = 12;
     this.bPaste.Name = "bPaste";
     this.bPaste.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bPaste.Text = "&Paste";
     //
     // bSelectAll
     //
     this.bSelectAll.BeginGroup = true;
     this.bSelectAll.GlobalName = "bSelectAll";
     this.bSelectAll.Name = "bSelectAll";
     this.bSelectAll.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bSelectAll.Text = "Select &All";
     //
     // switchButtonItem1
     //
     this.switchButtonItem1.ButtonHeight = 20;
     this.switchButtonItem1.ButtonWidth = 62;
     this.switchButtonItem1.Command = this.RibbonStateCommand;
     this.switchButtonItem1.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.switchButtonItem1.Margin.Bottom = 2;
     this.switchButtonItem1.Margin.Left = 4;
     this.switchButtonItem1.Name = "switchButtonItem1";
     this.switchButtonItem1.OffText = "MAX";
     this.switchButtonItem1.OnText = "MIN";
     this.switchButtonItem1.Tooltip = "Minimizes/Maximizes the Ribbon";
     //
     // RibbonStateCommand
     //
     this.RibbonStateCommand.Name = "RibbonStateCommand";
     this.RibbonStateCommand.Executed += new System.EventHandler(this.RibbonStateCommand_Executed);
     //
     // buttonFile
     //
     this.buttonFile.AutoExpandOnClick = true;
     this.buttonFile.BackstageTab = this.superTabControl1;
     this.buttonFile.CanCustomize = false;
     this.buttonFile.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.buttonFile.Image = ((System.Drawing.Image)(resources.GetObject("buttonFile.Image")));
     this.buttonFile.ImagePaddingHorizontal = 2;
     this.buttonFile.ImagePaddingVertical = 2;
     this.buttonFile.Name = "buttonFile";
     this.buttonFile.ShowSubItems = false;
     this.buttonFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileContainer});
     this.buttonFile.Text = "&File";
     //
     // superTabControl1
     //
     this.superTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.superTabControl1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     //
     //
     //
     this.superTabControl1.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl1.ControlBox.MenuBox.Name = "";
     this.superTabControl1.ControlBox.Name = "";
     this.superTabControl1.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControl1.ControlBox.MenuBox,
     this.superTabControl1.ControlBox.CloseBox});
     this.superTabControl1.ControlBox.Visible = false;
     this.superTabControl1.Controls.Add(this.superTabControlPanel1);
     this.superTabControl1.Controls.Add(this.superTabControlPanel2);
     this.superTabControl1.Controls.Add(this.superTabControlPanel4);
     this.superTabControl1.Controls.Add(this.superTabControlPanel3);
     this.superTabControl1.ForeColor = System.Drawing.Color.Black;
     this.superTabControl1.ItemPadding.Left = 6;
     this.superTabControl1.ItemPadding.Right = 4;
     this.superTabControl1.ItemPadding.Top = 4;
     this.superTabControl1.Location = new System.Drawing.Point(6, 47);
     this.superTabControl1.Name = "superTabControl1";
     this.superTabControl1.ReorderTabsEnabled = false;
     this.superTabControl1.SelectedTabFont = new System.Drawing.Font("Segoe UI", 9.75F);
     this.superTabControl1.SelectedTabIndex = 0;
     this.superTabControl1.Size = new System.Drawing.Size(766, 448);
     this.superTabControl1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.superTabControl1.TabFont = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControl1.TabHorizontalSpacing = 16;
     this.superTabControl1.TabIndex = 14;
     this.superTabControl1.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem61,
     this.buttonItem63,
     this.buttonItem64,
     this.superTabItem1,
     this.superTabItem2,
     this.superTabItem3,
     this.superTabItem4,
     this.buttonItem65,
     this.buttonItem66});
     this.superTabControl1.TabStyle = DevComponents.DotNetBar.eSuperTabStyle.Office2010BackstageBlue;
     this.superTabControl1.TabVerticalSpacing = 8;
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel1.Controls.Add(this.panelEx2);
     this.superTabControlPanel1.Controls.Add(this.panelEx1);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.superTabItem1;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.recentPlacesItemsPanel);
     this.panelEx2.Controls.Add(this.labelX2);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx2.Location = new System.Drawing.Point(314, 0);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx2.Size = new System.Drawing.Size(352, 448);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 1;
     this.panelEx2.Text = "panelEx2";
     //
     // recentPlacesItemsPanel
     //
     this.recentPlacesItemsPanel.AutoScroll = true;
     //
     //
     //
     this.recentPlacesItemsPanel.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.recentPlacesItemsPanel.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentPlacesItemsPanel.ContainerControlProcessDialogKey = true;
     this.recentPlacesItemsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentPlacesItemsPanel.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentPlacesItemsPanel.Location = new System.Drawing.Point(12, 35);
     this.recentPlacesItemsPanel.Name = "recentPlacesItemsPanel";
     this.recentPlacesItemsPanel.Size = new System.Drawing.Size(328, 401);
     this.recentPlacesItemsPanel.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX2.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX2.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.Color.DimGray;
     this.labelX2.Location = new System.Drawing.Point(12, 12);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(328, 23);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "Recent Places";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.recentDocsItemPane);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx1.Size = new System.Drawing.Size(314, 448);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "panelEx1";
     //
     // recentDocsItemPane
     //
     this.recentDocsItemPane.AutoScroll = true;
     //
     //
     //
     this.recentDocsItemPane.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.recentDocsItemPane.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentDocsItemPane.ContainerControlProcessDialogKey = true;
     this.recentDocsItemPane.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentDocsItemPane.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentDocsItemPane.Location = new System.Drawing.Point(12, 35);
     this.recentDocsItemPane.Name = "recentDocsItemPane";
     this.recentDocsItemPane.Size = new System.Drawing.Size(290, 401);
     this.recentDocsItemPane.TabIndex = 1;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX1.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX1.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.DimGray;
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(290, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Recent Documents";
     //
     // superTabItem1
     //
     this.superTabItem1.AttachedControl = this.superTabControlPanel1;
     this.superTabItem1.GlobalItem = false;
     this.superTabItem1.KeyTips = "R";
     this.superTabItem1.Name = "superTabItem1";
     this.superTabItem1.Text = "Recent";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel2.Controls.Add(this.itemPanel1);
     this.superTabControlPanel2.Controls.Add(this.labelX3);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel2.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel2.TabIndex = 2;
     this.superTabControlPanel2.TabItem = this.superTabItem2;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem67,
     this.buttonItem68,
     this.buttonItem69,
     this.buttonItem70,
     this.buttonItem71,
     this.buttonItem72});
     this.itemPanel1.Location = new System.Drawing.Point(12, 35);
     this.itemPanel1.MultiLine = true;
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(642, 401);
     this.itemPanel1.TabIndex = 3;
     //
     // buttonItem67
     //
     this.buttonItem67.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem67.Command = this.AppCommandNew;
     this.buttonItem67.ForeColor = System.Drawing.Color.Black;
     this.buttonItem67.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem67.Image")));
     this.buttonItem67.ImagePaddingVertical = 12;
     this.buttonItem67.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem67.Name = "buttonItem67";
     this.buttonItem67.Text = "<span align=\"center\">Blank<br/>document</span>";
     //
     // AppCommandNew
     //
     this.AppCommandNew.Name = "AppCommandNew";
     this.AppCommandNew.Executed += new System.EventHandler(this.AppCommandNew_Executed);
     //
     // buttonItem68
     //
     this.buttonItem68.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem68.ForeColor = System.Drawing.Color.Black;
     this.buttonItem68.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem68.Image")));
     this.buttonItem68.ImagePaddingVertical = 12;
     this.buttonItem68.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem68.Name = "buttonItem68";
     this.buttonItem68.Text = "Blog post";
     //
     // buttonItem69
     //
     this.buttonItem69.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem69.ForeColor = System.Drawing.Color.Black;
     this.buttonItem69.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem69.Image")));
     this.buttonItem69.ImagePaddingHorizontal = 12;
     this.buttonItem69.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem69.Name = "buttonItem69";
     this.buttonItem69.Text = "<span align=\"center\">Recent<br/>templates</span>";
     //
     // buttonItem70
     //
     this.buttonItem70.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem70.ForeColor = System.Drawing.Color.Black;
     this.buttonItem70.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem70.Image")));
     this.buttonItem70.ImagePaddingHorizontal = 12;
     this.buttonItem70.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem70.Name = "buttonItem70";
     this.buttonItem70.Text = "<span align=\"center\">Sample<br/>templates</span>";
     //
     // buttonItem71
     //
     this.buttonItem71.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem71.ForeColor = System.Drawing.Color.Black;
     this.buttonItem71.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem71.Image")));
     this.buttonItem71.ImagePaddingHorizontal = 12;
     this.buttonItem71.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem71.Name = "buttonItem71";
     this.buttonItem71.Text = "My templates";
     //
     // buttonItem72
     //
     this.buttonItem72.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem72.ForeColor = System.Drawing.Color.Black;
     this.buttonItem72.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem72.Image")));
     this.buttonItem72.ImagePaddingHorizontal = 12;
     this.buttonItem72.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem72.Name = "buttonItem72";
     this.buttonItem72.Text = "<span align=\"center\">New from<br/>existing</span>";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX3.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX3.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.ForeColor = System.Drawing.Color.DimGray;
     this.labelX3.Location = new System.Drawing.Point(12, 12);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(642, 23);
     this.labelX3.TabIndex = 1;
     this.labelX3.Text = "Available Templates";
     //
     // superTabItem2
     //
     this.superTabItem2.AttachedControl = this.superTabControlPanel2;
     this.superTabItem2.GlobalItem = false;
     this.superTabItem2.KeyTips = "N";
     this.superTabItem2.Name = "superTabItem2";
     this.superTabItem2.Text = "New";
     //
     // superTabControlPanel4
     //
     this.superTabControlPanel4.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel4.Controls.Add(this.itemPanel2);
     this.superTabControlPanel4.Controls.Add(this.labelX6);
     this.superTabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel4.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel4.Name = "superTabControlPanel4";
     this.superTabControlPanel4.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel4.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel4.TabIndex = 4;
     this.superTabControlPanel4.TabItem = this.superTabItem4;
     //
     // itemPanel2
     //
     this.itemPanel2.AutoScroll = true;
     this.itemPanel2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel2.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem77,
     this.buttonItem73,
     this.buttonItem74,
     this.buttonItem75,
     this.buttonItem76});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(12, 35);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(642, 401);
     this.itemPanel2.TabIndex = 3;
     //
     // buttonItem77
     //
     this.buttonItem77.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem77.Command = this.AppCommandGoToUrl;
     this.buttonItem77.CommandParameter = "http://www.devcomponents.com/kb/questions.php?questionid=127";
     this.buttonItem77.ForeColor = System.Drawing.Color.Black;
     this.buttonItem77.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem77.Image")));
     this.buttonItem77.Name = "buttonItem77";
     this.buttonItem77.Text = "Backstage<br/>\r\n<font color=\"Gray\">How to build Office 2010 style Backstage with " +
         "DotNetBar</font>";
     //
     // AppCommandGoToUrl
     //
     this.AppCommandGoToUrl.Name = "AppCommandGoToUrl";
     this.AppCommandGoToUrl.Executed += new System.EventHandler(this.AppCommandGoToUrl_Executed);
     //
     // buttonItem73
     //
     this.buttonItem73.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem73.Command = this.AppCommandGoToUrl;
     this.buttonItem73.CommandParameter = "http://www.devcomponents.com/kb/";
     this.buttonItem73.ForeColor = System.Drawing.Color.Black;
     this.buttonItem73.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem73.Image")));
     this.buttonItem73.Name = "buttonItem73";
     this.buttonItem73.Text = "DotNetBar Knowledge Base<br/>\r\n<font color=\"Gray\">Browse our online Knowledge Bas" +
         "e.</font>";
     //
     // buttonItem74
     //
     this.buttonItem74.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem74.Command = this.AppCommandGoToUrl;
     this.buttonItem74.CommandParameter = "http://www.devcomponents.com/dotnetbar/movies.aspx";
     this.buttonItem74.ForeColor = System.Drawing.Color.Black;
     this.buttonItem74.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem74.Image")));
     this.buttonItem74.Name = "buttonItem74";
     this.buttonItem74.Text = "Movie Tutorials<br/>\r\n<font color=\"Gray\">Watch getting started online movie tutor" +
         "ials</font>";
     //
     // buttonItem75
     //
     this.buttonItem75.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem75.Command = this.AppCommandGoToUrl;
     this.buttonItem75.CommandParameter = "http://www.devcomponents.com/support.aspx";
     this.buttonItem75.ForeColor = System.Drawing.Color.Black;
     this.buttonItem75.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem75.Image")));
     this.buttonItem75.Name = "buttonItem75";
     this.buttonItem75.Text = "Contact Us<br/>\r\n<font color=\"Gray\">Let us know if you need help or how we can ma" +
         "ke DotNetBar even better.</font>";
     //
     // buttonItem76
     //
     this.buttonItem76.BeginGroup = true;
     this.buttonItem76.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem76.Command = this.AppCommandGoToUrl;
     this.buttonItem76.CommandParameter = "http://www.devcomponents.com/dotnetbar/applicationgallery/";
     this.buttonItem76.ForeColor = System.Drawing.Color.Black;
     this.buttonItem76.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem76.Image")));
     this.buttonItem76.Name = "buttonItem76";
     this.buttonItem76.Text = "Application Gallery<br/>\r\n<font color=\"Gray\">See how other developers are using D" +
         "otNetBar in our application gallery</font>";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX6.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX6.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.ForeColor = System.Drawing.Color.DimGray;
     this.labelX6.Location = new System.Drawing.Point(12, 12);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(642, 23);
     this.labelX6.TabIndex = 2;
     this.labelX6.Text = "Support";
     //
     // superTabItem4
     //
     this.superTabItem4.AttachedControl = this.superTabControlPanel4;
     this.superTabItem4.GlobalItem = false;
     this.superTabItem4.KeyTips = "H";
     this.superTabItem4.Name = "superTabItem4";
     this.superTabItem4.Text = "Help";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel3.Controls.Add(this.panelEx3);
     this.superTabControlPanel3.Controls.Add(this.labelX5);
     this.superTabControlPanel3.Controls.Add(this.integerInput1);
     this.superTabControlPanel3.Controls.Add(this.labelX4);
     this.superTabControlPanel3.Controls.Add(this.buttonX1);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel3.TabIndex = 3;
     this.superTabControlPanel3.TabItem = this.superTabItem3;
     //
     // panelEx3
     //
     this.panelEx3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx3.Location = new System.Drawing.Point(292, 4);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(371, 441);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.White;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.Color = System.Drawing.Color.Silver;
     this.panelEx3.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx3.Style.ForeColor.Color = System.Drawing.Color.Gray;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 5;
     this.panelEx3.Text = "Print Preview Goes Here...";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.ForeColor = System.Drawing.Color.Black;
     this.labelX5.Location = new System.Drawing.Point(143, 54);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(48, 19);
     this.labelX5.TabIndex = 4;
     this.labelX5.Text = "Copies:";
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(198, 53);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(66, 22);
     this.integerInput1.TabIndex = 3;
     this.integerInput1.Value = 1;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX4.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX4.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.ForeColor = System.Drawing.Color.DimGray;
     this.labelX4.Location = new System.Drawing.Point(144, 16);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(120, 23);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "Print";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonX1.Location = new System.Drawing.Point(21, 21);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(109, 101);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "Print";
     //
     // superTabItem3
     //
     this.superTabItem3.AttachedControl = this.superTabControlPanel3;
     this.superTabItem3.GlobalItem = false;
     this.superTabItem3.KeyTips = "P";
     this.superTabItem3.Name = "superTabItem3";
     this.superTabItem3.Text = "Print";
     //
     // buttonItem61
     //
     this.buttonItem61.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem61.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem61.Command = this.AppCommandSave;
     this.buttonItem61.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem61.Image")));
     this.buttonItem61.ImagePaddingHorizontal = 18;
     this.buttonItem61.ImagePaddingVertical = 10;
     this.buttonItem61.KeyTips = "S";
     this.buttonItem61.Name = "buttonItem61";
     this.buttonItem61.Stretch = true;
     this.buttonItem61.Text = "Save";
     //
     // AppCommandSave
     //
     this.AppCommandSave.Name = "AppCommandSave";
     this.AppCommandSave.Executed += new System.EventHandler(this.AppCommandSave_Executed);
     //
     // buttonItem63
     //
     this.buttonItem63.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem63.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem63.Command = this.AppCommandOpen;
     this.buttonItem63.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem63.Image")));
     this.buttonItem63.ImagePaddingHorizontal = 18;
     this.buttonItem63.ImagePaddingVertical = 10;
     this.buttonItem63.KeyTips = "O";
     this.buttonItem63.Name = "buttonItem63";
     this.buttonItem63.Stretch = true;
     this.buttonItem63.Text = "Open";
     //
     // AppCommandOpen
     //
     this.AppCommandOpen.Name = "AppCommandOpen";
     this.AppCommandOpen.Executed += new System.EventHandler(this.AppCommandOpen_Executed);
     //
     // buttonItem64
     //
     this.buttonItem64.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem64.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem64.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem64.Image")));
     this.buttonItem64.ImagePaddingHorizontal = 18;
     this.buttonItem64.ImagePaddingVertical = 10;
     this.buttonItem64.KeyTips = "C";
     this.buttonItem64.Name = "buttonItem64";
     this.buttonItem64.Stretch = true;
     this.buttonItem64.Text = "Close";
     //
     // buttonItem65
     //
     this.buttonItem65.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem65.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem65.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem65.Image")));
     this.buttonItem65.ImagePaddingHorizontal = 18;
     this.buttonItem65.ImagePaddingVertical = 10;
     this.buttonItem65.KeyTips = "T";
     this.buttonItem65.Name = "buttonItem65";
     this.buttonItem65.Stretch = true;
     this.buttonItem65.Text = "Options";
     //
     // buttonItem66
     //
     this.buttonItem66.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem66.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem66.Command = this.AppCommandExit;
     this.buttonItem66.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem66.Image")));
     this.buttonItem66.ImagePaddingHorizontal = 18;
     this.buttonItem66.ImagePaddingVertical = 10;
     this.buttonItem66.KeyTips = "X";
     this.buttonItem66.Name = "buttonItem66";
     this.buttonItem66.Stretch = true;
     this.buttonItem66.Text = "Exit";
     //
     // AppCommandExit
     //
     this.AppCommandExit.Name = "AppCommandExit";
     this.AppCommandExit.Executed += new System.EventHandler(this.AppCommandExit_Executed);
     //
     // menuFileContainer
     //
     //
     //
     //
     this.menuFileContainer.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.menuFileContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileContainer.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileContainer.Name = "menuFileContainer";
     this.menuFileContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileTwoColumnContainer,
     this.menuFileBottomContainer});
     //
     //
     //
     this.menuFileContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileTwoColumnContainer
     //
     //
     //
     //
     this.menuFileTwoColumnContainer.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.menuFileTwoColumnContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingBottom = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingLeft = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingRight = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingTop = 2;
     this.menuFileTwoColumnContainer.ItemSpacing = 0;
     this.menuFileTwoColumnContainer.Name = "menuFileTwoColumnContainer";
     this.menuFileTwoColumnContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileItems,
     this.menuFileMRU});
     //
     //
     //
     this.menuFileTwoColumnContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileItems
     //
     //
     //
     //
     this.menuFileItems.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.menuFileItems.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileItems.ItemSpacing = 5;
     this.menuFileItems.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileItems.MinimumSize = new System.Drawing.Size(120, 0);
     this.menuFileItems.Name = "menuFileItems";
     this.menuFileItems.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem20,
     this.buttonItem21,
     this.buttonFileSaveAs,
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25});
     //
     //
     //
     this.menuFileItems.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.Command = this.AppCommandNew;
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem20.ImageSmall")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.SubItemsExpandWidth = 24;
     this.buttonItem20.Text = "&New";
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.Command = this.AppCommandOpen;
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.SubItemsExpandWidth = 24;
     this.buttonItem21.Text = "&Open...";
     //
     // buttonFileSaveAs
     //
     this.buttonFileSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonFileSaveAs.Command = this.AppCommandSaveAs;
     this.buttonFileSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.Image")));
     this.buttonFileSaveAs.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.ImageSmall")));
     this.buttonFileSaveAs.Name = "buttonFileSaveAs";
     this.buttonFileSaveAs.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer12});
     this.buttonFileSaveAs.SubItemsExpandWidth = 24;
     this.buttonFileSaveAs.Text = "&Save As...";
     this.buttonFileSaveAs.ExpandChange += new System.EventHandler(this.buttonFileSaveAs_ExpandChange);
     //
     // AppCommandSaveAs
     //
     this.AppCommandSaveAs.Name = "AppCommandSaveAs";
     this.AppCommandSaveAs.Executed += new System.EventHandler(this.AppCommandSaveAs_Executed);
     //
     // itemContainer12
     //
     //
     //
     //
     this.itemContainer12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer12.ItemSpacing = 4;
     this.itemContainer12.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer12.MinimumSize = new System.Drawing.Size(210, 256);
     this.itemContainer12.Name = "itemContainer12";
     this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem56,
     this.buttonItem57,
     this.buttonItem58,
     this.buttonItem59});
     //
     //
     //
     this.itemContainer12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 5;
     this.labelItem1.PaddingLeft = 5;
     this.labelItem1.PaddingRight = 5;
     this.labelItem1.PaddingTop = 5;
     this.labelItem1.Text = "<b>Save a copy of the document</b>";
     //
     // buttonItem56
     //
     this.buttonItem56.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem56.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem56.Image")));
     this.buttonItem56.Name = "buttonItem56";
     this.buttonItem56.Text = "<b>&Rich Text Document</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save the document " +
         "in the default file format.</div>";
     //
     // buttonItem57
     //
     this.buttonItem57.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem57.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem57.Image")));
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Text = "<b>Document &Template</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save as a template " +
         "that can be used to format future documents.</div>";
     //
     // buttonItem58
     //
     this.buttonItem58.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem58.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem58.Image")));
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.Text = "<b>&Find add-ins for other formats</b>\r\n<div padding=\"0,0,4,0\" width=\"180\">Learn " +
         "about add-ins to save to other formats such as PDF or XPS.</div>";
     //
     // buttonItem59
     //
     this.buttonItem59.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem59.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem59.Image")));
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "<b>&Other Formats</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Open the Save As dialog" +
         " box to select from all possible file types.</div>";
     //
     // buttonItem23
     //
     this.buttonItem23.BeginGroup = true;
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.SubItemsExpandWidth = 24;
     this.buttonItem23.Text = "S&hare...";
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.SubItemsExpandWidth = 24;
     this.buttonItem24.Text = "&Print...";
     //
     // buttonItem25
     //
     this.buttonItem25.BeginGroup = true;
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.SubItemsExpandWidth = 24;
     this.buttonItem25.Text = "&Close";
     //
     // menuFileMRU
     //
     //
     //
     //
     this.menuFileMRU.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.menuFileMRU.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileMRU.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileMRU.MinimumSize = new System.Drawing.Size(225, 0);
     this.menuFileMRU.Name = "menuFileMRU";
     this.menuFileMRU.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem26,
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     //
     //
     //
     this.menuFileMRU.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem26
     //
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem27
     //
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem28
     //
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "&3. Customer Email.rtf";
     //
     // buttonItem29
     //
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "&4. example.rtf";
     //
     // menuFileBottomContainer
     //
     //
     //
     //
     this.menuFileBottomContainer.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.menuFileBottomContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileBottomContainer.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.menuFileBottomContainer.Name = "menuFileBottomContainer";
     this.menuFileBottomContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonOptions,
     this.buttonExit});
     //
     //
     //
     this.menuFileBottomContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonOptions
     //
     this.buttonOptions.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonOptions.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonOptions.Image = ((System.Drawing.Image)(resources.GetObject("buttonOptions.Image")));
     this.buttonOptions.Name = "buttonOptions";
     this.buttonOptions.SubItemsExpandWidth = 24;
     this.buttonOptions.Text = "RibbonPad Opt&ions";
     //
     // buttonExit
     //
     this.buttonExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonExit.Command = this.AppCommandExit;
     this.buttonExit.Image = ((System.Drawing.Image)(resources.GetObject("buttonExit.Image")));
     this.buttonExit.Name = "buttonExit";
     this.buttonExit.SubItemsExpandWidth = 24;
     this.buttonExit.Text = "E&xit RibbonPad";
     //
     // buttonNew
     //
     this.buttonNew.Command = this.AppCommandNew;
     this.buttonNew.Image = ((System.Drawing.Image)(resources.GetObject("buttonNew.Image")));
     this.buttonNew.Name = "buttonNew";
     this.buttonNew.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonNew.Text = "New Document";
     //
     // buttonSave
     //
     this.buttonSave.Command = this.AppCommandSave;
     this.buttonSave.Enabled = false;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Text = "buttonItem2";
     //
     // buttonUndo
     //
     this.buttonUndo.Enabled = false;
     this.buttonUndo.Image = ((System.Drawing.Image)(resources.GetObject("buttonUndo.Image")));
     this.buttonUndo.Name = "buttonUndo";
     this.buttonUndo.Text = "Undo";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // ribbonTabItemGroup1
     //
     this.ribbonTabItemGroup1.Color = DevComponents.DotNetBar.eRibbonTabGroupColor.Orange;
     this.ribbonTabItemGroup1.GroupTitle = "Tab Group";
     this.ribbonTabItemGroup1.Name = "ribbonTabItemGroup1";
     //
     //
     //
     this.ribbonTabItemGroup1.Style.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(158)))), ((int)(((byte)(159)))));
     this.ribbonTabItemGroup1.Style.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(225)))), ((int)(((byte)(226)))));
     this.ribbonTabItemGroup1.Style.BackColorGradientAngle = 90;
     this.ribbonTabItemGroup1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderBottomWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(58)))), ((int)(((byte)(59)))));
     this.ribbonTabItemGroup1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderLeftWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderRightWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderTopWidth = 1;
     this.ribbonTabItemGroup1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonTabItemGroup1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.ribbonTabItemGroup1.Style.TextColor = System.Drawing.Color.Black;
     this.ribbonTabItemGroup1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     // buttonStyleMetro
     //
     this.buttonStyleMetro.Checked = true;
     this.buttonStyleMetro.Command = this.AppCommandTheme;
     this.buttonStyleMetro.CommandParameter = "Metro";
     this.buttonStyleMetro.Name = "buttonStyleMetro";
     this.buttonStyleMetro.OptionGroup = "style";
     this.buttonStyleMetro.Text = "Metro/Office 2013";
     //
     // AppCommandTheme
     //
     this.AppCommandTheme.Name = "AppCommandTheme";
     this.AppCommandTheme.Executed += new System.EventHandler(this.AppCommandTheme_Executed);
     //
     // buttonItem47
     //
     this.buttonItem47.BeginGroup = true;
     this.buttonItem47.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem47.Image")));
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Text = "Search for Templates Online...";
     //
     // buttonItem48
     //
     this.buttonItem48.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem48.Image")));
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.Text = "Browse for Templates...";
     //
     // buttonItem49
     //
     this.buttonItem49.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem49.Image")));
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Text = "Save Current Template...";
     //
     // comboItem1
     //
     this.comboItem1.Text = "6";
     //
     // comboItem2
     //
     this.comboItem2.Text = "7";
     //
     // comboItem3
     //
     this.comboItem3.Text = "8";
     //
     // comboItem4
     //
     this.comboItem4.Text = "9";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10";
     //
     // comboItem6
     //
     this.comboItem6.Text = "11";
     //
     // comboItem7
     //
     this.comboItem7.Text = "12";
     //
     // comboItem8
     //
     this.comboItem8.Text = "13";
     //
     // comboItem9
     //
     this.comboItem9.Text = "14";
     //
     // superTooltip1
     //
     this.superTooltip1.DefaultFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTooltip1.MinimumTooltipSize = new System.Drawing.Size(150, 50);
     //
     // progressBarTimer
     //
     this.progressBarTimer.Enabled = true;
     this.progressBarTimer.Interval = 800;
     this.progressBarTimer.Tick += new System.EventHandler(this.progressBarTimer_Tick);
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "OpenExistingPlace.png");
     //
     // frmMain
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ClientSize = new System.Drawing.Size(776, 500);
     this.Controls.Add(this.superTabControl1);
     this.Controls.Add(this.contextMenuBar);
     this.Controls.Add(this.tabStrip1);
     this.Controls.Add(this.mainRibbonControl);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.mdiClient1);
     this.EnableGlass = false;
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Text = "����˹̹ƽ̨";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.MdiChildActivate += new System.EventHandler(this.MdiChildActivated);
     this.Move += new System.EventHandler(this.frmMain_Move);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit();
     this.superTabControl1.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.superTabControlPanel4.ResumeLayout(false);
     this.superTabControlPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #29
0
 private LabelItem CreateLabelForGroup(GalleryGroup g)
 {
     LabelItem l = new LabelItem("label_" + g.Name, g.Text);
     if (Rendering.GlobalManager.Renderer is Rendering.Office2007Renderer)
     {
         Rendering.Office2007ColorTable ct = ((Rendering.Office2007Renderer)Rendering.GlobalManager.Renderer).ColorTable;
         l.BackColor = ct.Gallery.GroupLabelBackground;
         l.ForeColor = ct.Gallery.GroupLabelText;
         l.SingleLineColor= ct.Gallery.GroupLabelBorder;
         l.BorderType = eBorderType.SingleLine;
         l.BorderSide = eBorderSide.Bottom;
         l.PaddingTop = 1;
         l.PaddingLeft = 10;
         l.PaddingBottom = 1;
     }
     return l;
 }
Exemple #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.mdiClient1 = new System.Windows.Forms.MdiClient();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.itemContainer9 = new DevComponents.DotNetBar.ItemContainer();
     this.btnText = new DevComponents.DotNetBar.ButtonItem();
     this.btnNavigation = new DevComponents.DotNetBar.ButtonItem();
     this.labelStatus = new DevComponents.DotNetBar.LabelItem();
     this.progressBarItem1 = new DevComponents.DotNetBar.ProgressBarItem();
     this.itemContainer13 = new DevComponents.DotNetBar.ItemContainer();
     this.labelPosition = new DevComponents.DotNetBar.LabelItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribPnlContext = new DevComponents.DotNetBar.RibbonPanel();
     this.ribGrpMainLoop = new DevComponents.DotNetBar.RibbonBar();
     this.btnParamIn4MainLoop = new DevComponents.DotNetBar.ButtonItem();
     this.btnCalc4MainLoop = new DevComponents.DotNetBar.ButtonItem();
     this.btnProcess4MainLoop = new DevComponents.DotNetBar.ButtonItem();
     this.ribPnlWrite = new DevComponents.DotNetBar.RibbonPanel();
     this.ribTagParagraph = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainerParagrapg1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainerParagrapg2 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonAlignLeft = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignCenter = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignRight = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignJustify = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerParagrapg4 = new DevComponents.DotNetBar.ItemContainer();
     this.btnSeqNumber = new DevComponents.DotNetBar.ButtonItem();
     this.btnGrade = new DevComponents.DotNetBar.ButtonItem();
     this.btnToRigth = new DevComponents.DotNetBar.ButtonItem();
     this.btnToLeft = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerParagrapg3 = new DevComponents.DotNetBar.ItemContainer();
     this.btnBorders = new DevComponents.DotNetBar.ButtonItem();
     this.btnShading = new DevComponents.DotNetBar.ButtonItem();
     this.ribTagFont = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainerFont1 = new DevComponents.DotNetBar.ItemContainer();
     this.comboFont = new DevComponents.DotNetBar.ComboBoxItem();
     this.comboFontSize = new DevComponents.DotNetBar.ComboBoxItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.itemContainerFont2 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonFontBold = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontItalic = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontUnderline = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontStrike = new DevComponents.DotNetBar.ButtonItem();
     this.buttonTextColor = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.ribTagClipboard = new DevComponents.DotNetBar.RibbonBar();
     this.buttonPaste = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.btnPasteSpecial = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerClipboard = new DevComponents.DotNetBar.ItemContainer();
     this.buttonCut = new DevComponents.DotNetBar.ButtonItem();
     this.btnFormat = new DevComponents.DotNetBar.ButtonItem();
     this.ribPnlLayout = new DevComponents.DotNetBar.RibbonPanel();
     this.ribBarOptions = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainerOptions1 = new DevComponents.DotNetBar.ItemContainer();
     this.checkBoxItem1 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem3 = new DevComponents.DotNetBar.CheckBoxItem();
     this.itemContainer1Options2 = new DevComponents.DotNetBar.ItemContainer();
     this.checkBoxItem4 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem6 = new DevComponents.DotNetBar.CheckBoxItem();
     this.ribBarFind = new DevComponents.DotNetBar.RibbonBar();
     this.buttonFind = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerFind = new DevComponents.DotNetBar.ItemContainer();
     this.buttonReplace = new DevComponents.DotNetBar.ButtonItem();
     this.buttonGoto = new DevComponents.DotNetBar.ButtonItem();
     this.ribTagPageSetup = new DevComponents.DotNetBar.RibbonBar();
     this.buttonMargins = new DevComponents.DotNetBar.ButtonItem();
     this.btnOrientation = new DevComponents.DotNetBar.ButtonItem();
     this.btnAuto = new DevComponents.DotNetBar.ButtonItem();
     this.btnHorizontal = new DevComponents.DotNetBar.ButtonItem();
     this.btnVertical = new DevComponents.DotNetBar.ButtonItem();
     this.btnSize = new DevComponents.DotNetBar.ButtonItem();
     this.btnPrintArea = new DevComponents.DotNetBar.ButtonItem();
     this.ribTabPrjManage = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribTabMainDevice = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribTagMainLoop = new DevComponents.DotNetBar.RibbonTabItem();
     this.buttonChangeStyle = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandTheme = new DevComponents.DotNetBar.Command(this.components);
     this.buttonStyleOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFile = new DevComponents.DotNetBar.Office2007StartButton();
     this.superTabControl1 = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.recentPlacesItemsPanel = new DevComponents.DotNetBar.ItemPanel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.recentDocsItemPane = new DevComponents.DotNetBar.ItemPanel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem67 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem68 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem69 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem70 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem71 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem72 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.superTabItem3 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel4 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem77 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem73 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem74 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem75 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem76 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem4 = new DevComponents.DotNetBar.SuperTabItem();
     this.buttonItem61 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandSave = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem63 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem64 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem65 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem66 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonSave = new DevComponents.DotNetBar.ButtonItem();
     this.buttonUndo = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleMetro = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem62 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem60 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleCustom = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.RibbonStateCommand = new DevComponents.DotNetBar.Command(this.components);
     this.menuFileContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileTwoColumnContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileItems = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFileSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer12 = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem56 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileMRU = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileBottomContainer = new DevComponents.DotNetBar.ItemContainer();
     this.buttonOptions = new DevComponents.DotNetBar.ButtonItem();
     this.buttonExit = new DevComponents.DotNetBar.ButtonItem();
     this.progressBarTimer = new System.Windows.Forms.Timer(this.components);
     this.styleManager = new DevComponents.DotNetBar.StyleManager(this.components);
     this.grpBoxTree = new System.Windows.Forms.GroupBox();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.ribbonControl1.SuspendLayout();
     this.ribPnlContext.SuspendLayout();
     this.ribPnlWrite.SuspendLayout();
     this.ribPnlLayout.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit();
     this.superTabControl1.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.superTabControlPanel4.SuspendLayout();
     this.grpBoxTree.SuspendLayout();
     this.SuspendLayout();
     //
     // mdiClient1
     //
     this.mdiClient1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mdiClient1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdiClient1.Location = new System.Drawing.Point(5, 148);
     this.mdiClient1.Name = "mdiClient1";
     this.mdiClient1.Size = new System.Drawing.Size(958, 452);
     this.mdiClient1.TabIndex = 5;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar;
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
     this.bar1.IsMaximized = false;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer9,
     this.labelStatus,
     this.progressBarItem1,
     this.itemContainer13});
     this.bar1.ItemSpacing = 2;
     this.bar1.Location = new System.Drawing.Point(5, 600);
     this.bar1.Name = "bar1";
     this.bar1.PaddingBottom = 0;
     this.bar1.PaddingTop = 0;
     this.bar1.Size = new System.Drawing.Size(958, 28);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "barStatus";
     //
     // itemContainer9
     //
     //
     //
     //
     this.itemContainer9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer9.BeginGroup = true;
     this.itemContainer9.Name = "itemContainer9";
     this.itemContainer9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnText,
     this.btnNavigation});
     //
     //
     //
     this.itemContainer9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnText
     //
     this.btnText.Enabled = false;
     this.btnText.EnableMarkup = false;
     this.btnText.FontBold = true;
     this.btnText.ForeColor = System.Drawing.Color.Black;
     this.btnText.ImagePaddingVertical = 9;
     this.btnText.Name = "btnText";
     this.btnText.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
     this.btnText.RibbonWordWrap = false;
     this.btnText.ShowSubItems = false;
     this.btnText.StopPulseOnMouseOver = false;
     this.btnText.SymbolSize = 10F;
     this.btnText.Text = "当前位置:";
     //
     // btnNavigation
     //
     this.btnNavigation.Enabled = false;
     this.btnNavigation.FontBold = true;
     this.btnNavigation.ImagePaddingVertical = 9;
     this.btnNavigation.Name = "btnNavigation";
     this.btnNavigation.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
     this.btnNavigation.SymbolSize = 10F;
     this.btnNavigation.Tooltip = "Comments";
     //
     // labelStatus
     //
     this.labelStatus.Name = "labelStatus";
     this.labelStatus.PaddingLeft = 2;
     this.labelStatus.PaddingRight = 2;
     this.labelStatus.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelStatus.Stretch = true;
     //
     // progressBarItem1
     //
     //
     //
     //
     this.progressBarItem1.BackStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarItem1.ChunkGradientAngle = 0F;
     this.progressBarItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.progressBarItem1.Name = "progressBarItem1";
     this.progressBarItem1.RecentlyUsed = false;
     //
     // itemContainer13
     //
     //
     //
     //
     this.itemContainer13.BackgroundStyle.Class = "Office2007StatusBarBackground2";
     this.itemContainer13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer13.Name = "itemContainer13";
     this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelPosition});
     //
     //
     //
     this.itemContainer13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelPosition
     //
     this.labelPosition.Name = "labelPosition";
     this.labelPosition.PaddingLeft = 2;
     this.labelPosition.PaddingRight = 2;
     this.labelPosition.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelPosition.Width = 100;
     //
     // ribbonControl1
     //
     this.ribbonControl1.BackColor = System.Drawing.SystemColors.Control;
     this.ribbonControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ribbonControl1.BackgroundImage")));
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribPnlContext);
     this.ribbonControl1.Controls.Add(this.ribPnlWrite);
     this.ribbonControl1.Controls.Add(this.ribPnlLayout);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.ForeColor = System.Drawing.Color.Black;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribTabPrjManage,
     this.ribTabMainDevice,
     this.ribTagMainLoop,
     this.buttonChangeStyle});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFile,
     this.buttonSave,
     this.buttonUndo});
     this.ribbonControl1.RibbonStripFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Size = new System.Drawing.Size(958, 147);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 8;
     //
     // ribPnlContext
     //
     this.ribPnlContext.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribPnlContext.Controls.Add(this.ribGrpMainLoop);
     this.ribPnlContext.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribPnlContext.Location = new System.Drawing.Point(0, 58);
     this.ribPnlContext.Name = "ribPnlContext";
     this.ribPnlContext.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribPnlContext.Size = new System.Drawing.Size(958, 86);
     //
     //
     //
     this.ribPnlContext.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlContext.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlContext.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribPnlContext.TabIndex = 4;
     //
     // ribGrpMainLoop
     //
     this.ribGrpMainLoop.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribGrpMainLoop.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribGrpMainLoop.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribGrpMainLoop.ContainerControlProcessDialogKey = true;
     this.ribGrpMainLoop.DragDropSupport = true;
     this.ribGrpMainLoop.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribGrpMainLoop.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnParamIn4MainLoop,
     this.btnCalc4MainLoop,
     this.btnProcess4MainLoop});
     this.ribGrpMainLoop.Location = new System.Drawing.Point(3, 0);
     this.ribGrpMainLoop.Name = "ribGrpMainLoop";
     this.ribGrpMainLoop.Size = new System.Drawing.Size(189, 89);
     this.ribGrpMainLoop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribGrpMainLoop.TabIndex = 0;
     this.ribGrpMainLoop.Text = "主回路状态计算";
     //
     //
     //
     this.ribGrpMainLoop.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribGrpMainLoop.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnParamIn4MainLoop
     //
     this.btnParamIn4MainLoop.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnParamIn4MainLoop.Image = ((System.Drawing.Image)(resources.GetObject("btnParamIn4MainLoop.Image")));
     this.btnParamIn4MainLoop.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnParamIn4MainLoop.Name = "btnParamIn4MainLoop";
     this.btnParamIn4MainLoop.RibbonWordWrap = false;
     this.btnParamIn4MainLoop.Text = "参数录入";
     //
     // btnCalc4MainLoop
     //
     this.btnCalc4MainLoop.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnCalc4MainLoop.Image = ((System.Drawing.Image)(resources.GetObject("btnCalc4MainLoop.Image")));
     this.btnCalc4MainLoop.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnCalc4MainLoop.Name = "btnCalc4MainLoop";
     this.btnCalc4MainLoop.RibbonWordWrap = false;
     this.btnCalc4MainLoop.Text = "工况计算";
     //
     // btnProcess4MainLoop
     //
     this.btnProcess4MainLoop.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnProcess4MainLoop.Image = ((System.Drawing.Image)(resources.GetObject("btnProcess4MainLoop.Image")));
     this.btnProcess4MainLoop.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnProcess4MainLoop.Name = "btnProcess4MainLoop";
     this.btnProcess4MainLoop.RibbonWordWrap = false;
     this.btnProcess4MainLoop.Text = "结果处理";
     //
     // ribPnlWrite
     //
     this.ribPnlWrite.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribPnlWrite.Controls.Add(this.ribTagParagraph);
     this.ribPnlWrite.Controls.Add(this.ribTagFont);
     this.ribPnlWrite.Controls.Add(this.ribTagClipboard);
     this.ribPnlWrite.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribPnlWrite.Location = new System.Drawing.Point(0, 58);
     this.ribPnlWrite.Name = "ribPnlWrite";
     this.ribPnlWrite.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribPnlWrite.Size = new System.Drawing.Size(958, 86);
     //
     //
     //
     this.ribPnlWrite.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlWrite.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlWrite.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribPnlWrite.TabIndex = 1;
     this.ribPnlWrite.Visible = false;
     //
     // ribTagParagraph
     //
     this.ribTagParagraph.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagParagraph.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagParagraph.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagParagraph.ContainerControlProcessDialogKey = true;
     this.ribTagParagraph.DialogLauncherVisible = true;
     this.ribTagParagraph.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagParagraph.DragDropSupport = true;
     this.ribTagParagraph.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerParagrapg1,
     this.itemContainerParagrapg3});
     this.ribTagParagraph.Location = new System.Drawing.Point(242, 0);
     this.ribTagParagraph.Name = "ribTagParagraph";
     this.ribTagParagraph.Size = new System.Drawing.Size(203, 83);
     this.ribTagParagraph.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagParagraph.TabIndex = 2;
     this.ribTagParagraph.Text = "&Paragraph";
     //
     //
     //
     this.ribTagParagraph.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagParagraph.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagParagraph.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     this.ribTagParagraph.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // itemContainerParagrapg1
     //
     //
     //
     //
     this.itemContainerParagrapg1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg1.ItemSpacing = 3;
     this.itemContainerParagrapg1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerParagrapg1.Name = "itemContainerParagrapg1";
     this.itemContainerParagrapg1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerParagrapg2,
     this.itemContainerParagrapg4});
     //
     //
     //
     this.itemContainerParagrapg1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg1.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainerParagrapg2
     //
     //
     //
     //
     this.itemContainerParagrapg2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg2.BeginGroup = true;
     this.itemContainerParagrapg2.Name = "itemContainerParagrapg2";
     this.itemContainerParagrapg2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonAlignLeft,
     this.buttonAlignCenter,
     this.buttonAlignRight,
     this.buttonAlignJustify});
     //
     //
     //
     this.itemContainerParagrapg2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonAlignLeft
     //
     this.buttonAlignLeft.Enabled = false;
     this.buttonAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignLeft.Image")));
     this.buttonAlignLeft.Name = "buttonAlignLeft";
     this.buttonAlignLeft.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlL);
     this.buttonAlignLeft.Text = "Align &Left";
     //
     // buttonAlignCenter
     //
     this.buttonAlignCenter.Enabled = false;
     this.buttonAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignCenter.Image")));
     this.buttonAlignCenter.Name = "buttonAlignCenter";
     this.buttonAlignCenter.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlE);
     this.buttonAlignCenter.Text = "Align &Center";
     //
     // buttonAlignRight
     //
     this.buttonAlignRight.Enabled = false;
     this.buttonAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignRight.Image")));
     this.buttonAlignRight.Name = "buttonAlignRight";
     this.buttonAlignRight.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonAlignRight.Text = "Align &Right";
     //
     // buttonAlignJustify
     //
     this.buttonAlignJustify.Enabled = false;
     this.buttonAlignJustify.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignJustify.Image")));
     this.buttonAlignJustify.Name = "buttonAlignJustify";
     this.buttonAlignJustify.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlJ);
     this.buttonAlignJustify.Text = "&Justify";
     //
     // itemContainerParagrapg4
     //
     //
     //
     //
     this.itemContainerParagrapg4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg4.BeginGroup = true;
     this.itemContainerParagrapg4.Name = "itemContainerParagrapg4";
     this.itemContainerParagrapg4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSeqNumber,
     this.btnGrade,
     this.btnToRigth,
     this.btnToLeft});
     //
     //
     //
     this.itemContainerParagrapg4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnSeqNumber
     //
     this.btnSeqNumber.Image = ((System.Drawing.Image)(resources.GetObject("btnSeqNumber.Image")));
     this.btnSeqNumber.Name = "btnSeqNumber";
     this.btnSeqNumber.Text = "&Numbered Bullets";
     //
     // btnGrade
     //
     this.btnGrade.Image = ((System.Drawing.Image)(resources.GetObject("btnGrade.Image")));
     this.btnGrade.Name = "btnGrade";
     this.btnGrade.Text = "&Bullets";
     //
     // btnToRigth
     //
     this.btnToRigth.Image = ((System.Drawing.Image)(resources.GetObject("btnToRigth.Image")));
     this.btnToRigth.Name = "btnToRigth";
     this.btnToRigth.Text = "&Indent";
     //
     // btnToLeft
     //
     this.btnToLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnToLeft.Image")));
     this.btnToLeft.Name = "btnToLeft";
     this.btnToLeft.Text = "&Outdent";
     //
     // itemContainerParagrapg3
     //
     //
     //
     //
     this.itemContainerParagrapg3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg3.ItemSpacing = 3;
     this.itemContainerParagrapg3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerParagrapg3.Name = "itemContainerParagrapg3";
     this.itemContainerParagrapg3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnBorders,
     this.btnShading});
     //
     //
     //
     this.itemContainerParagrapg3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg3.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnBorders
     //
     this.btnBorders.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnBorders.Image = ((System.Drawing.Image)(resources.GetObject("btnBorders.Image")));
     this.btnBorders.Name = "btnBorders";
     this.btnBorders.NotificationMarkText = "4";
     this.btnBorders.Text = "&Borders";
     this.btnBorders.Click += new System.EventHandler(this.buttonItem6_Click);
     //
     // btnShading
     //
     this.btnShading.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnShading.Image = ((System.Drawing.Image)(resources.GetObject("btnShading.Image")));
     this.btnShading.Name = "btnShading";
     this.btnShading.Text = "&Shading";
     //
     // ribTagFont
     //
     this.ribTagFont.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagFont.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagFont.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagFont.ContainerControlProcessDialogKey = true;
     this.ribTagFont.DialogLauncherVisible = true;
     this.ribTagFont.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagFont.DragDropSupport = true;
     this.ribTagFont.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerFont1,
     this.itemContainerFont2});
     this.ribTagFont.ItemSpacing = 5;
     this.ribTagFont.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.ribTagFont.Location = new System.Drawing.Point(76, 0);
     this.ribTagFont.Name = "ribTagFont";
     this.ribTagFont.ResizeItemsToFit = false;
     this.ribTagFont.Size = new System.Drawing.Size(166, 83);
     this.ribTagFont.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagFont.TabIndex = 1;
     this.ribTagFont.Text = "F&ont";
     //
     //
     //
     this.ribTagFont.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagFont.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagFont.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     this.ribTagFont.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // itemContainerFont1
     //
     //
     //
     //
     this.itemContainerFont1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerFont1.Name = "itemContainerFont1";
     this.itemContainerFont1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.comboFont,
     this.comboFontSize});
     //
     //
     //
     this.itemContainerFont1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // comboFont
     //
     this.comboFont.ComboWidth = 96;
     this.comboFont.DropDownHeight = 106;
     this.comboFont.DropDownWidth = 242;
     this.comboFont.Enabled = false;
     this.comboFont.FontCombo = true;
     this.comboFont.ItemHeight = 14;
     this.comboFont.Name = "comboFont";
     //
     // comboFontSize
     //
     this.comboFontSize.ComboWidth = 40;
     this.comboFontSize.DropDownHeight = 106;
     this.comboFontSize.ItemHeight = 16;
     this.comboFontSize.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5});
     this.comboFontSize.Name = "comboFontSize";
     //
     // comboItem1
     //
     this.comboItem1.Text = "6";
     //
     // comboItem2
     //
     this.comboItem2.Text = "7";
     //
     // comboItem3
     //
     this.comboItem3.Text = "8";
     //
     // comboItem4
     //
     this.comboItem4.Text = "9";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10";
     //
     // itemContainerFont2
     //
     //
     //
     //
     this.itemContainerFont2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerFont2.BeginGroup = true;
     this.itemContainerFont2.Name = "itemContainerFont2";
     this.itemContainerFont2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFontBold,
     this.buttonFontItalic,
     this.buttonFontUnderline,
     this.buttonFontStrike,
     this.buttonTextColor});
     //
     //
     //
     this.itemContainerFont2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonFontBold
     //
     this.buttonFontBold.Enabled = false;
     this.buttonFontBold.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontBold.Image")));
     this.buttonFontBold.Name = "buttonFontBold";
     this.buttonFontBold.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlB);
     this.buttonFontBold.Text = "&Bold";
     //
     // buttonFontItalic
     //
     this.buttonFontItalic.Enabled = false;
     this.buttonFontItalic.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontItalic.Image")));
     this.buttonFontItalic.Name = "buttonFontItalic";
     this.buttonFontItalic.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonFontItalic.Text = "&Italic";
     //
     // buttonFontUnderline
     //
     this.buttonFontUnderline.Enabled = false;
     this.buttonFontUnderline.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontUnderline.Image")));
     this.buttonFontUnderline.Name = "buttonFontUnderline";
     this.buttonFontUnderline.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlU);
     this.buttonFontUnderline.Text = "&Underline";
     //
     // buttonFontStrike
     //
     this.buttonFontStrike.Enabled = false;
     this.buttonFontStrike.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontStrike.Image")));
     this.buttonFontStrike.Name = "buttonFontStrike";
     this.buttonFontStrike.Text = "&Strike";
     //
     // buttonTextColor
     //
     this.buttonTextColor.Enabled = false;
     this.buttonTextColor.Image = ((System.Drawing.Image)(resources.GetObject("buttonTextColor.Image")));
     this.buttonTextColor.Name = "buttonTextColor";
     this.buttonTextColor.SelectedColorImageRectangle = new System.Drawing.Rectangle(0, 13, 16, 3);
     this.buttonTextColor.Text = "Text &Color";
     //
     // ribTagClipboard
     //
     this.ribTagClipboard.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagClipboard.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagClipboard.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagClipboard.ContainerControlProcessDialogKey = true;
     this.ribTagClipboard.DialogLauncherVisible = true;
     this.ribTagClipboard.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagClipboard.DragDropSupport = true;
     this.ribTagClipboard.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonPaste,
     this.itemContainerClipboard});
     this.ribTagClipboard.Location = new System.Drawing.Point(3, 0);
     this.ribTagClipboard.Name = "ribTagClipboard";
     this.ribTagClipboard.Size = new System.Drawing.Size(73, 83);
     this.ribTagClipboard.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagClipboard.TabIndex = 0;
     this.ribTagClipboard.Text = "&Clipboard";
     //
     //
     //
     this.ribTagClipboard.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagClipboard.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagClipboard.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // buttonPaste
     //
     this.buttonPaste.Image = ((System.Drawing.Image)(resources.GetObject("buttonPaste.Image")));
     this.buttonPaste.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonPaste.Name = "buttonPaste";
     this.buttonPaste.SplitButton = true;
     this.buttonPaste.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem53,
     this.btnPasteSpecial});
     this.buttonPaste.Text = "&Paste";
     //
     // buttonItem53
     //
     this.buttonItem53.Enabled = false;
     this.buttonItem53.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem53.Image")));
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Text = "&Paste";
     //
     // btnPasteSpecial
     //
     this.btnPasteSpecial.Image = ((System.Drawing.Image)(resources.GetObject("btnPasteSpecial.Image")));
     this.btnPasteSpecial.Name = "btnPasteSpecial";
     this.btnPasteSpecial.Text = "Paste &Special...";
     //
     // itemContainerClipboard
     //
     //
     //
     //
     this.itemContainerClipboard.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerClipboard.ItemSpacing = 0;
     this.itemContainerClipboard.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerClipboard.Name = "itemContainerClipboard";
     this.itemContainerClipboard.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonCut,
     this.btnFormat});
     //
     //
     //
     this.itemContainerClipboard.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonCut
     //
     this.buttonCut.Enabled = false;
     this.buttonCut.Image = ((System.Drawing.Image)(resources.GetObject("buttonCut.Image")));
     this.buttonCut.Name = "buttonCut";
     this.buttonCut.Text = "Cu&t";
     //
     // btnFormat
     //
     this.btnFormat.Image = ((System.Drawing.Image)(resources.GetObject("btnFormat.Image")));
     this.btnFormat.Name = "btnFormat";
     this.btnFormat.Text = "Format Painter";
     //
     // ribPnlLayout
     //
     this.ribPnlLayout.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribPnlLayout.Controls.Add(this.ribBarOptions);
     this.ribPnlLayout.Controls.Add(this.ribBarFind);
     this.ribPnlLayout.Controls.Add(this.ribTagPageSetup);
     this.ribPnlLayout.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribPnlLayout.Location = new System.Drawing.Point(0, 58);
     this.ribPnlLayout.Name = "ribPnlLayout";
     this.ribPnlLayout.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribPnlLayout.Size = new System.Drawing.Size(958, 86);
     //
     //
     //
     this.ribPnlLayout.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlLayout.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlLayout.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribPnlLayout.TabIndex = 3;
     this.ribPnlLayout.Visible = false;
     //
     // ribBarOptions
     //
     this.ribBarOptions.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribBarOptions.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarOptions.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribBarOptions.ContainerControlProcessDialogKey = true;
     this.ribBarOptions.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribBarOptions.DragDropSupport = true;
     this.ribBarOptions.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerOptions1,
     this.itemContainer1Options2});
     this.ribBarOptions.ItemSpacing = 4;
     this.ribBarOptions.Location = new System.Drawing.Point(375, 0);
     this.ribBarOptions.Name = "ribBarOptions";
     this.ribBarOptions.Size = new System.Drawing.Size(200, 83);
     this.ribBarOptions.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribBarOptions.TabIndex = 4;
     this.ribBarOptions.Text = "Options";
     //
     //
     //
     this.ribBarOptions.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarOptions.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // itemContainerOptions1
     //
     //
     //
     //
     this.itemContainerOptions1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerOptions1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerOptions1.Name = "itemContainerOptions1";
     this.itemContainerOptions1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.checkBoxItem1,
     this.checkBoxItem3});
     //
     //
     //
     this.itemContainerOptions1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // checkBoxItem1
     //
     this.checkBoxItem1.Checked = true;
     this.checkBoxItem1.CheckState = System.Windows.Forms.CheckState.Indeterminate;
     this.checkBoxItem1.Name = "checkBoxItem1";
     this.checkBoxItem1.Text = "Header";
     this.checkBoxItem1.ThreeState = true;
     //
     // checkBoxItem3
     //
     this.checkBoxItem3.Checked = true;
     this.checkBoxItem3.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxItem3.Name = "checkBoxItem3";
     this.checkBoxItem3.Text = "Margins";
     //
     // itemContainer1Options2
     //
     //
     //
     //
     this.itemContainer1Options2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1Options2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1Options2.Name = "itemContainer1Options2";
     this.itemContainer1Options2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.checkBoxItem4,
     this.checkBoxItem6});
     //
     //
     //
     this.itemContainer1Options2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // checkBoxItem4
     //
     this.checkBoxItem4.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem4.Name = "checkBoxItem4";
     this.checkBoxItem4.Text = "Horizontal Layout";
     //
     // checkBoxItem6
     //
     this.checkBoxItem6.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem6.Checked = true;
     this.checkBoxItem6.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxItem6.Name = "checkBoxItem6";
     this.checkBoxItem6.Text = "Automatic Layout";
     //
     // ribBarFind
     //
     this.ribBarFind.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribBarFind.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarFind.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribBarFind.ContainerControlProcessDialogKey = true;
     this.ribBarFind.DialogLauncherVisible = true;
     this.ribBarFind.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribBarFind.DragDropSupport = true;
     this.ribBarFind.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFind,
     this.itemContainerFind});
     this.ribBarFind.Location = new System.Drawing.Point(231, 0);
     this.ribBarFind.Name = "ribBarFind";
     this.ribBarFind.Size = new System.Drawing.Size(144, 83);
     this.ribBarFind.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribBarFind.TabIndex = 3;
     this.ribBarFind.Text = "Fi&nd";
     //
     //
     //
     this.ribBarFind.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarFind.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribBarFind.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // buttonFind
     //
     this.buttonFind.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonFind.Enabled = false;
     this.buttonFind.Image = ((System.Drawing.Image)(resources.GetObject("buttonFind.Image")));
     this.buttonFind.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonFind.Name = "buttonFind";
     this.buttonFind.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlF);
     this.buttonFind.Text = "&Find";
     //
     // itemContainerFind
     //
     //
     //
     //
     this.itemContainerFind.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerFind.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerFind.Name = "itemContainerFind";
     this.itemContainerFind.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonReplace,
     this.buttonGoto});
     //
     //
     //
     this.itemContainerFind.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonReplace
     //
     this.buttonReplace.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonReplace.Enabled = false;
     this.buttonReplace.Image = ((System.Drawing.Image)(resources.GetObject("buttonReplace.Image")));
     this.buttonReplace.Name = "buttonReplace";
     this.buttonReplace.Text = "&Replace";
     //
     // buttonGoto
     //
     this.buttonGoto.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonGoto.Enabled = false;
     this.buttonGoto.Image = ((System.Drawing.Image)(resources.GetObject("buttonGoto.Image")));
     this.buttonGoto.Name = "buttonGoto";
     this.buttonGoto.Text = "&Goto";
     //
     // ribTagPageSetup
     //
     this.ribTagPageSetup.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagPageSetup.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagPageSetup.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagPageSetup.ContainerControlProcessDialogKey = true;
     this.ribTagPageSetup.DialogLauncherVisible = true;
     this.ribTagPageSetup.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagPageSetup.DragDropSupport = true;
     this.ribTagPageSetup.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonMargins,
     this.btnOrientation,
     this.btnSize,
     this.btnPrintArea});
     this.ribTagPageSetup.Location = new System.Drawing.Point(3, 0);
     this.ribTagPageSetup.Name = "ribTagPageSetup";
     this.ribTagPageSetup.Size = new System.Drawing.Size(228, 83);
     this.ribTagPageSetup.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagPageSetup.TabIndex = 1;
     this.ribTagPageSetup.Text = "Page Setup";
     //
     //
     //
     this.ribTagPageSetup.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagPageSetup.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagPageSetup.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // buttonMargins
     //
     this.buttonMargins.Image = ((System.Drawing.Image)(resources.GetObject("buttonMargins.Image")));
     this.buttonMargins.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonMargins.Name = "buttonMargins";
     this.buttonMargins.Text = "Margins";
     //
     // btnOrientation
     //
     this.btnOrientation.AutoExpandOnClick = true;
     this.btnOrientation.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnOrientation.Image = ((System.Drawing.Image)(resources.GetObject("btnOrientation.Image")));
     this.btnOrientation.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnOrientation.Name = "btnOrientation";
     this.btnOrientation.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAuto,
     this.btnHorizontal,
     this.btnVertical});
     this.btnOrientation.Text = "Orientation <expand/>";
     //
     // btnAuto
     //
     this.btnAuto.Checked = true;
     this.btnAuto.Name = "btnAuto";
     this.btnAuto.OptionGroup = "orientation";
     this.btnAuto.Text = "Auto";
     //
     // btnHorizontal
     //
     this.btnHorizontal.Name = "btnHorizontal";
     this.btnHorizontal.OptionGroup = "orientation";
     this.btnHorizontal.Text = "Horizontal";
     //
     // btnVertical
     //
     this.btnVertical.Name = "btnVertical";
     this.btnVertical.OptionGroup = "orientation";
     this.btnVertical.Text = "Vertical";
     //
     // btnSize
     //
     this.btnSize.Image = ((System.Drawing.Image)(resources.GetObject("btnSize.Image")));
     this.btnSize.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnSize.Name = "btnSize";
     this.btnSize.Text = "Size";
     //
     // btnPrintArea
     //
     this.btnPrintArea.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnPrintArea.Image = ((System.Drawing.Image)(resources.GetObject("btnPrintArea.Image")));
     this.btnPrintArea.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnPrintArea.Name = "btnPrintArea";
     this.btnPrintArea.Text = "Print Area";
     //
     // ribTabPrjManage
     //
     this.ribTabPrjManage.Name = "ribTabPrjManage";
     this.ribTabPrjManage.Panel = this.ribPnlWrite;
     this.ribTabPrjManage.Text = "工程管理";
     //
     // ribTabMainDevice
     //
     this.ribTabMainDevice.Name = "ribTabMainDevice";
     this.ribTabMainDevice.Panel = this.ribPnlLayout;
     this.ribTabMainDevice.Text = "主设备参数选择";
     //
     // ribTagMainLoop
     //
     this.ribTagMainLoop.Checked = true;
     this.ribTagMainLoop.ColorTable = DevComponents.DotNetBar.eRibbonTabColor.Orange;
     this.ribTagMainLoop.Name = "ribTagMainLoop";
     this.ribTagMainLoop.Panel = this.ribPnlContext;
     this.ribTagMainLoop.Text = "主回路状态计算";
     //
     // buttonChangeStyle
     //
     this.buttonChangeStyle.AutoExpandOnClick = true;
     this.buttonChangeStyle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonChangeStyle.Name = "buttonChangeStyle";
     this.buttonChangeStyle.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonStyleOffice2007Blue,
     this.buttonStyleOffice2007Silver});
     this.buttonChangeStyle.Text = "Style";
     //
     // buttonStyleOffice2007Blue
     //
     this.buttonStyleOffice2007Blue.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Blue.CommandParameter = "Office2007Blue";
     this.buttonStyleOffice2007Blue.Name = "buttonStyleOffice2007Blue";
     this.buttonStyleOffice2007Blue.OptionGroup = "style";
     this.buttonStyleOffice2007Blue.Text = "Office 2007 <font color=\"Blue\"><b>Blue</b></font>";
     //
     // AppCommandTheme
     //
     this.AppCommandTheme.Name = "AppCommandTheme";
     this.AppCommandTheme.Executed += new System.EventHandler(this.AppCommandTheme_Executed);
     //
     // buttonStyleOffice2007Silver
     //
     this.buttonStyleOffice2007Silver.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Silver.CommandParameter = "Office2007Silver";
     this.buttonStyleOffice2007Silver.Name = "buttonStyleOffice2007Silver";
     this.buttonStyleOffice2007Silver.OptionGroup = "style";
     this.buttonStyleOffice2007Silver.Text = "Office 2007 <font color=\"Silver\"><b>Silver</b></font>";
     //
     // buttonFile
     //
     this.buttonFile.BackstageTab = this.superTabControl1;
     this.buttonFile.CanCustomize = false;
     this.buttonFile.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.buttonFile.Image = ((System.Drawing.Image)(resources.GetObject("buttonFile.Image")));
     this.buttonFile.ImagePaddingHorizontal = 2;
     this.buttonFile.ImagePaddingVertical = 2;
     this.buttonFile.Name = "buttonFile";
     this.buttonFile.ShowSubItems = false;
     this.buttonFile.Text = "&FILE";
     //
     // superTabControl1
     //
     this.superTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.superTabControl1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     //
     //
     //
     this.superTabControl1.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl1.ControlBox.MenuBox.Name = "";
     this.superTabControl1.ControlBox.Name = "";
     this.superTabControl1.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControl1.ControlBox.MenuBox,
     this.superTabControl1.ControlBox.CloseBox});
     this.superTabControl1.ControlBox.Visible = false;
     this.superTabControl1.Controls.Add(this.superTabControlPanel1);
     this.superTabControl1.Controls.Add(this.superTabControlPanel2);
     this.superTabControl1.Controls.Add(this.superTabControlPanel3);
     this.superTabControl1.Controls.Add(this.superTabControlPanel4);
     this.superTabControl1.ForeColor = System.Drawing.Color.Black;
     this.superTabControl1.ItemPadding.Left = 6;
     this.superTabControl1.ItemPadding.Right = 4;
     this.superTabControl1.ItemPadding.Top = 4;
     this.superTabControl1.Location = new System.Drawing.Point(6, 47);
     this.superTabControl1.Name = "superTabControl1";
     this.superTabControl1.ReorderTabsEnabled = false;
     this.superTabControl1.SelectedTabFont = new System.Drawing.Font("Segoe UI", 9.75F);
     this.superTabControl1.SelectedTabIndex = 0;
     this.superTabControl1.Size = new System.Drawing.Size(958, 578);
     this.superTabControl1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.superTabControl1.TabFont = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControl1.TabHorizontalSpacing = 16;
     this.superTabControl1.TabIndex = 14;
     this.superTabControl1.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem61,
     this.buttonItem63,
     this.buttonItem64,
     this.superTabItem1,
     this.superTabItem2,
     this.superTabItem3,
     this.superTabItem4,
     this.buttonItem65,
     this.buttonItem66});
     this.superTabControl1.TabVerticalSpacing = 8;
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel1.Controls.Add(this.panelEx2);
     this.superTabControlPanel1.Controls.Add(this.panelEx1);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.superTabItem1;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.recentPlacesItemsPanel);
     this.panelEx2.Controls.Add(this.labelX2);
     this.panelEx2.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx2.Location = new System.Drawing.Point(314, 0);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx2.Size = new System.Drawing.Size(408, 578);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 1;
     this.panelEx2.Text = "panelEx2";
     //
     // recentPlacesItemsPanel
     //
     this.recentPlacesItemsPanel.AutoScroll = true;
     //
     //
     //
     this.recentPlacesItemsPanel.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentPlacesItemsPanel.ContainerControlProcessDialogKey = true;
     this.recentPlacesItemsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentPlacesItemsPanel.DragDropSupport = true;
     this.recentPlacesItemsPanel.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentPlacesItemsPanel.Location = new System.Drawing.Point(12, 35);
     this.recentPlacesItemsPanel.Name = "recentPlacesItemsPanel";
     this.recentPlacesItemsPanel.Size = new System.Drawing.Size(384, 531);
     this.recentPlacesItemsPanel.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX2.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX2.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.Color.DimGray;
     this.labelX2.Location = new System.Drawing.Point(12, 12);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(384, 23);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "Recent Places";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.recentDocsItemPane);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx1.Size = new System.Drawing.Size(314, 578);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "panelEx1";
     //
     // recentDocsItemPane
     //
     this.recentDocsItemPane.AutoScroll = true;
     //
     //
     //
     this.recentDocsItemPane.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentDocsItemPane.ContainerControlProcessDialogKey = true;
     this.recentDocsItemPane.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentDocsItemPane.DragDropSupport = true;
     this.recentDocsItemPane.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentDocsItemPane.Location = new System.Drawing.Point(12, 35);
     this.recentDocsItemPane.Name = "recentDocsItemPane";
     this.recentDocsItemPane.Size = new System.Drawing.Size(290, 531);
     this.recentDocsItemPane.TabIndex = 1;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX1.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX1.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.DimGray;
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(290, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Recent Documents";
     //
     // superTabItem1
     //
     this.superTabItem1.AttachedControl = this.superTabControlPanel1;
     this.superTabItem1.GlobalItem = false;
     this.superTabItem1.KeyTips = "R";
     this.superTabItem1.Name = "superTabItem1";
     this.superTabItem1.Text = "Recent";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel2.Controls.Add(this.itemPanel1);
     this.superTabControlPanel2.Controls.Add(this.labelX3);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel2.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel2.TabIndex = 2;
     this.superTabControlPanel2.TabItem = this.superTabItem2;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.DragDropSupport = true;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem67,
     this.buttonItem68,
     this.buttonItem69,
     this.buttonItem70,
     this.buttonItem71,
     this.buttonItem72});
     this.itemPanel1.Location = new System.Drawing.Point(12, 35);
     this.itemPanel1.MultiLine = true;
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(698, 531);
     this.itemPanel1.TabIndex = 3;
     //
     // buttonItem67
     //
     this.buttonItem67.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem67.ForeColor = System.Drawing.Color.Black;
     this.buttonItem67.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem67.Image")));
     this.buttonItem67.ImagePaddingVertical = 12;
     this.buttonItem67.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem67.Name = "buttonItem67";
     this.buttonItem67.Text = "<span align=\"center\">Blank<br/>document</span>";
     //
     // buttonItem68
     //
     this.buttonItem68.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem68.ForeColor = System.Drawing.Color.Black;
     this.buttonItem68.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem68.Image")));
     this.buttonItem68.ImagePaddingVertical = 12;
     this.buttonItem68.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem68.Name = "buttonItem68";
     this.buttonItem68.Text = "Blog post";
     //
     // buttonItem69
     //
     this.buttonItem69.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem69.ForeColor = System.Drawing.Color.Black;
     this.buttonItem69.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem69.Image")));
     this.buttonItem69.ImagePaddingHorizontal = 12;
     this.buttonItem69.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem69.Name = "buttonItem69";
     this.buttonItem69.Text = "<span align=\"center\">Recent<br/>templates</span>";
     //
     // buttonItem70
     //
     this.buttonItem70.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem70.ForeColor = System.Drawing.Color.Black;
     this.buttonItem70.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem70.Image")));
     this.buttonItem70.ImagePaddingHorizontal = 12;
     this.buttonItem70.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem70.Name = "buttonItem70";
     this.buttonItem70.Text = "<span align=\"center\">Sample<br/>templates</span>";
     //
     // buttonItem71
     //
     this.buttonItem71.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem71.ForeColor = System.Drawing.Color.Black;
     this.buttonItem71.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem71.Image")));
     this.buttonItem71.ImagePaddingHorizontal = 12;
     this.buttonItem71.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem71.Name = "buttonItem71";
     this.buttonItem71.Text = "My templates";
     //
     // buttonItem72
     //
     this.buttonItem72.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem72.ForeColor = System.Drawing.Color.Black;
     this.buttonItem72.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem72.Image")));
     this.buttonItem72.ImagePaddingHorizontal = 12;
     this.buttonItem72.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem72.Name = "buttonItem72";
     this.buttonItem72.Text = "<span align=\"center\">New from<br/>existing</span>";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX3.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX3.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.ForeColor = System.Drawing.Color.DimGray;
     this.labelX3.Location = new System.Drawing.Point(12, 12);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(698, 23);
     this.labelX3.TabIndex = 1;
     this.labelX3.Text = "Available Templates";
     //
     // superTabItem2
     //
     this.superTabItem2.AttachedControl = this.superTabControlPanel2;
     this.superTabItem2.GlobalItem = false;
     this.superTabItem2.KeyTips = "N";
     this.superTabItem2.Name = "superTabItem2";
     this.superTabItem2.Text = "New";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel3.Controls.Add(this.panelEx3);
     this.superTabControlPanel3.Controls.Add(this.labelX5);
     this.superTabControlPanel3.Controls.Add(this.integerInput1);
     this.superTabControlPanel3.Controls.Add(this.labelX4);
     this.superTabControlPanel3.Controls.Add(this.buttonX1);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel3.TabIndex = 3;
     this.superTabControlPanel3.TabItem = this.superTabItem3;
     //
     // panelEx3
     //
     this.panelEx3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx3.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx3.Location = new System.Drawing.Point(292, 4);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(427, 571);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.White;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.Color = System.Drawing.Color.Silver;
     this.panelEx3.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx3.Style.ForeColor.Color = System.Drawing.Color.Gray;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 5;
     this.panelEx3.Text = "Print Preview Goes Here...";
     //
     // labelX5
     //
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.ForeColor = System.Drawing.Color.Black;
     this.labelX5.Location = new System.Drawing.Point(143, 54);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(48, 19);
     this.labelX5.TabIndex = 4;
     this.labelX5.Text = "Copies:";
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(198, 53);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(66, 22);
     this.integerInput1.TabIndex = 3;
     this.integerInput1.Value = 1;
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX4.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX4.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.ForeColor = System.Drawing.Color.DimGray;
     this.labelX4.Location = new System.Drawing.Point(144, 16);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(120, 23);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "Print";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonX1.Location = new System.Drawing.Point(21, 21);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(109, 101);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "Print";
     //
     // superTabItem3
     //
     this.superTabItem3.AttachedControl = this.superTabControlPanel3;
     this.superTabItem3.GlobalItem = false;
     this.superTabItem3.KeyTips = "P";
     this.superTabItem3.Name = "superTabItem3";
     this.superTabItem3.Text = "Print";
     //
     // superTabControlPanel4
     //
     this.superTabControlPanel4.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel4.Controls.Add(this.itemPanel2);
     this.superTabControlPanel4.Controls.Add(this.labelX6);
     this.superTabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel4.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel4.Name = "superTabControlPanel4";
     this.superTabControlPanel4.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel4.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel4.TabIndex = 4;
     this.superTabControlPanel4.TabItem = this.superTabItem4;
     //
     // itemPanel2
     //
     this.itemPanel2.AutoScroll = true;
     this.itemPanel2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.DragDropSupport = true;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem77,
     this.buttonItem73,
     this.buttonItem74,
     this.buttonItem75,
     this.buttonItem76});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(12, 35);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(698, 531);
     this.itemPanel2.TabIndex = 3;
     //
     // buttonItem77
     //
     this.buttonItem77.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem77.CommandParameter = "http://www.devcomponents.com/kb/questions.php?questionid=127";
     this.buttonItem77.ForeColor = System.Drawing.Color.Black;
     this.buttonItem77.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem77.Image")));
     this.buttonItem77.Name = "buttonItem77";
     this.buttonItem77.Text = "Backstage<br/>\r\n<font color=\"Gray\">How to build Office 2010 style Backstage with " +
     "DotNetBar</font>";
     //
     // buttonItem73
     //
     this.buttonItem73.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem73.CommandParameter = "http://www.devcomponents.com/kb/";
     this.buttonItem73.ForeColor = System.Drawing.Color.Black;
     this.buttonItem73.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem73.Image")));
     this.buttonItem73.Name = "buttonItem73";
     this.buttonItem73.Text = "DotNetBar Knowledge Base<br/>\r\n<font color=\"Gray\">Browse our online Knowledge Bas" +
     "e.</font>";
     //
     // buttonItem74
     //
     this.buttonItem74.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem74.CommandParameter = "http://www.devcomponents.com/dotnetbar/movies.aspx";
     this.buttonItem74.ForeColor = System.Drawing.Color.Black;
     this.buttonItem74.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem74.Image")));
     this.buttonItem74.Name = "buttonItem74";
     this.buttonItem74.Text = "Movie Tutorials<br/>\r\n<font color=\"Gray\">Watch getting started online movie tutor" +
     "ials</font>";
     //
     // buttonItem75
     //
     this.buttonItem75.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem75.CommandParameter = "http://www.devcomponents.com/support.aspx";
     this.buttonItem75.ForeColor = System.Drawing.Color.Black;
     this.buttonItem75.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem75.Image")));
     this.buttonItem75.Name = "buttonItem75";
     this.buttonItem75.Text = "Contact Us<br/>\r\n<font color=\"Gray\">Let us know if you need help or how we can ma" +
     "ke DotNetBar even better.</font>";
     //
     // buttonItem76
     //
     this.buttonItem76.BeginGroup = true;
     this.buttonItem76.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem76.CommandParameter = "http://www.devcomponents.com/dotnetbar/applicationgallery/";
     this.buttonItem76.ForeColor = System.Drawing.Color.Black;
     this.buttonItem76.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem76.Image")));
     this.buttonItem76.Name = "buttonItem76";
     this.buttonItem76.Text = "Application Gallery<br/>\r\n<font color=\"Gray\">See how other developers are using D" +
     "otNetBar in our application gallery</font>";
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX6.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX6.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.ForeColor = System.Drawing.Color.DimGray;
     this.labelX6.Location = new System.Drawing.Point(12, 12);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(698, 23);
     this.labelX6.TabIndex = 2;
     this.labelX6.Text = "Support";
     //
     // superTabItem4
     //
     this.superTabItem4.AttachedControl = this.superTabControlPanel4;
     this.superTabItem4.GlobalItem = false;
     this.superTabItem4.KeyTips = "H";
     this.superTabItem4.Name = "superTabItem4";
     this.superTabItem4.Text = "Help";
     //
     // buttonItem61
     //
     this.buttonItem61.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem61.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem61.Command = this.AppCommandSave;
     this.buttonItem61.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem61.Image")));
     this.buttonItem61.ImagePaddingHorizontal = 18;
     this.buttonItem61.ImagePaddingVertical = 10;
     this.buttonItem61.KeyTips = "S";
     this.buttonItem61.Name = "buttonItem61";
     this.buttonItem61.Stretch = true;
     this.buttonItem61.Text = "Save";
     //
     // AppCommandSave
     //
     this.AppCommandSave.Name = "AppCommandSave";
     //
     // buttonItem63
     //
     this.buttonItem63.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem63.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem63.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem63.Image")));
     this.buttonItem63.ImagePaddingHorizontal = 18;
     this.buttonItem63.ImagePaddingVertical = 10;
     this.buttonItem63.KeyTips = "O";
     this.buttonItem63.Name = "buttonItem63";
     this.buttonItem63.Stretch = true;
     this.buttonItem63.Text = "Open";
     //
     // buttonItem64
     //
     this.buttonItem64.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem64.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem64.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem64.Image")));
     this.buttonItem64.ImagePaddingHorizontal = 18;
     this.buttonItem64.ImagePaddingVertical = 10;
     this.buttonItem64.KeyTips = "C";
     this.buttonItem64.Name = "buttonItem64";
     this.buttonItem64.Stretch = true;
     this.buttonItem64.Text = "Close";
     //
     // buttonItem65
     //
     this.buttonItem65.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem65.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem65.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem65.Image")));
     this.buttonItem65.ImagePaddingHorizontal = 18;
     this.buttonItem65.ImagePaddingVertical = 10;
     this.buttonItem65.KeyTips = "T";
     this.buttonItem65.Name = "buttonItem65";
     this.buttonItem65.Stretch = true;
     this.buttonItem65.Text = "Options";
     //
     // buttonItem66
     //
     this.buttonItem66.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem66.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem66.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem66.Image")));
     this.buttonItem66.ImagePaddingHorizontal = 18;
     this.buttonItem66.ImagePaddingVertical = 10;
     this.buttonItem66.KeyTips = "X";
     this.buttonItem66.Name = "buttonItem66";
     this.buttonItem66.Stretch = true;
     this.buttonItem66.Text = "Exit";
     //
     // buttonSave
     //
     this.buttonSave.Command = this.AppCommandSave;
     this.buttonSave.Enabled = false;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Text = "buttonItem2";
     //
     // buttonUndo
     //
     this.buttonUndo.Enabled = false;
     this.buttonUndo.Name = "buttonUndo";
     this.buttonUndo.Text = "Undo";
     //
     // buttonItem47
     //
     this.buttonItem47.BeginGroup = true;
     this.buttonItem47.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem47.Image")));
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Text = "Search for Templates Online...";
     //
     // buttonItem48
     //
     this.buttonItem48.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem48.Image")));
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.Text = "Browse for Templates...";
     //
     // buttonItem49
     //
     this.buttonItem49.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem49.Image")));
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Text = "Save Current Template...";
     //
     // buttonItem17
     //
     this.buttonItem17.Name = "buttonItem17";
     //
     // buttonStyleMetro
     //
     this.buttonStyleMetro.Name = "buttonStyleMetro";
     //
     // buttonItem62
     //
     this.buttonItem62.Name = "buttonItem62";
     //
     // buttonStyleOffice2007Black
     //
     this.buttonStyleOffice2007Black.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Black.CommandParameter = "Office2007Black";
     this.buttonStyleOffice2007Black.Name = "buttonStyleOffice2007Black";
     this.buttonStyleOffice2007Black.OptionGroup = "style";
     this.buttonStyleOffice2007Black.Text = "Office 2007 <font color=\"black\"><b>Black</b></font>";
     //
     // buttonItem60
     //
     this.buttonItem60.Name = "buttonItem60";
     //
     // buttonItem16
     //
     this.buttonItem16.Name = "buttonItem16";
     //
     // buttonStyleCustom
     //
     this.buttonStyleCustom.BeginGroup = true;
     this.buttonStyleCustom.Command = this.AppCommandTheme;
     this.buttonStyleCustom.Name = "buttonStyleCustom";
     this.buttonStyleCustom.Text = "Custom scheme";
     this.buttonStyleCustom.Tooltip = "Custom color scheme is created based on currently selected color table. Try selec" +
     "ting Silver or Blue color table and then creating custom color scheme.";
     this.buttonStyleCustom.SelectedColorChanged += new System.EventHandler(this.buttonStyleCustom_SelectedColorChanged);
     this.buttonStyleCustom.ColorPreview += new DevComponents.DotNetBar.ColorPreviewEventHandler(this.buttonStyleCustom_ColorPreview);
     this.buttonStyleCustom.ExpandChange += new System.EventHandler(this.buttonStyleCustom_ExpandChange);
     //
     // RibbonStateCommand
     //
     this.RibbonStateCommand.Name = "RibbonStateCommand";
     this.RibbonStateCommand.Executed += new System.EventHandler(this.RibbonStateCommand_Executed);
     //
     // menuFileContainer
     //
     //
     //
     //
     this.menuFileContainer.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.menuFileContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileContainer.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileContainer.Name = "menuFileContainer";
     this.menuFileContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileTwoColumnContainer,
     this.menuFileBottomContainer});
     //
     //
     //
     this.menuFileContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileTwoColumnContainer
     //
     //
     //
     //
     this.menuFileTwoColumnContainer.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.menuFileTwoColumnContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingBottom = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingLeft = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingRight = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingTop = 2;
     this.menuFileTwoColumnContainer.ItemSpacing = 0;
     this.menuFileTwoColumnContainer.Name = "menuFileTwoColumnContainer";
     this.menuFileTwoColumnContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileItems,
     this.menuFileMRU});
     //
     //
     //
     this.menuFileTwoColumnContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileItems
     //
     //
     //
     //
     this.menuFileItems.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.menuFileItems.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileItems.ItemSpacing = 5;
     this.menuFileItems.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileItems.MinimumSize = new System.Drawing.Size(120, 0);
     this.menuFileItems.Name = "menuFileItems";
     this.menuFileItems.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem20,
     this.buttonItem21,
     this.buttonFileSaveAs,
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25});
     //
     //
     //
     this.menuFileItems.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem20.ImageSmall")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.SubItemsExpandWidth = 24;
     this.buttonItem20.Text = "&New";
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.SubItemsExpandWidth = 24;
     this.buttonItem21.Text = "&Open...";
     //
     // buttonFileSaveAs
     //
     this.buttonFileSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonFileSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.Image")));
     this.buttonFileSaveAs.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.ImageSmall")));
     this.buttonFileSaveAs.Name = "buttonFileSaveAs";
     this.buttonFileSaveAs.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer12});
     this.buttonFileSaveAs.SubItemsExpandWidth = 24;
     this.buttonFileSaveAs.Text = "&Save As...";
     //
     // itemContainer12
     //
     //
     //
     //
     this.itemContainer12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer12.ItemSpacing = 4;
     this.itemContainer12.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer12.MinimumSize = new System.Drawing.Size(210, 256);
     this.itemContainer12.Name = "itemContainer12";
     this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem56,
     this.buttonItem57,
     this.buttonItem58,
     this.buttonItem59});
     //
     //
     //
     this.itemContainer12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 5;
     this.labelItem1.PaddingLeft = 5;
     this.labelItem1.PaddingRight = 5;
     this.labelItem1.PaddingTop = 5;
     this.labelItem1.Text = "<b>Save a copy of the document</b>";
     //
     // buttonItem56
     //
     this.buttonItem56.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem56.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem56.Image")));
     this.buttonItem56.Name = "buttonItem56";
     this.buttonItem56.Text = "<b>&Rich Text Document</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save the document " +
     "in the default file format.</div>";
     //
     // buttonItem57
     //
     this.buttonItem57.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem57.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem57.Image")));
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Text = "<b>Document &Template</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save as a template " +
     "that can be used to format future documents.</div>";
     //
     // buttonItem58
     //
     this.buttonItem58.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem58.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem58.Image")));
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.Text = "<b>&Find add-ins for other formats</b>\r\n<div padding=\"0,0,4,0\" width=\"180\">Learn " +
     "about add-ins to save to other formats such as PDF or XPS.</div>";
     //
     // buttonItem59
     //
     this.buttonItem59.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem59.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem59.Image")));
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "<b>&Other Formats</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Open the Save As dialog" +
     " box to select from all possible file types.</div>";
     //
     // buttonItem23
     //
     this.buttonItem23.BeginGroup = true;
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.SubItemsExpandWidth = 24;
     this.buttonItem23.Text = "S&hare...";
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.SubItemsExpandWidth = 24;
     this.buttonItem24.Text = "&Print...";
     //
     // buttonItem25
     //
     this.buttonItem25.BeginGroup = true;
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.SubItemsExpandWidth = 24;
     this.buttonItem25.Text = "&Close";
     //
     // menuFileMRU
     //
     //
     //
     //
     this.menuFileMRU.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.menuFileMRU.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileMRU.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileMRU.MinimumSize = new System.Drawing.Size(225, 0);
     this.menuFileMRU.Name = "menuFileMRU";
     this.menuFileMRU.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem26,
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     //
     //
     //
     this.menuFileMRU.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem26
     //
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem27
     //
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem28
     //
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "&3. Customer Email.rtf";
     //
     // buttonItem29
     //
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "&4. example.rtf";
     //
     // menuFileBottomContainer
     //
     //
     //
     //
     this.menuFileBottomContainer.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.menuFileBottomContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileBottomContainer.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.menuFileBottomContainer.Name = "menuFileBottomContainer";
     this.menuFileBottomContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonOptions,
     this.buttonExit});
     //
     //
     //
     this.menuFileBottomContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonOptions
     //
     this.buttonOptions.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonOptions.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonOptions.Image = ((System.Drawing.Image)(resources.GetObject("buttonOptions.Image")));
     this.buttonOptions.Name = "buttonOptions";
     this.buttonOptions.SubItemsExpandWidth = 24;
     this.buttonOptions.Text = "RibbonPad Opt&ions";
     //
     // buttonExit
     //
     this.buttonExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonExit.Image = ((System.Drawing.Image)(resources.GetObject("buttonExit.Image")));
     this.buttonExit.Name = "buttonExit";
     this.buttonExit.SubItemsExpandWidth = 24;
     this.buttonExit.Text = "E&xit RibbonPad";
     //
     // progressBarTimer
     //
     this.progressBarTimer.Enabled = true;
     this.progressBarTimer.Interval = 800;
     this.progressBarTimer.Tick += new System.EventHandler(this.progressBarTimer_Tick);
     //
     // styleManager
     //
     this.styleManager.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Silver;
     this.styleManager.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(115)))), ((int)(((byte)(199))))));
     //
     // grpBoxTree
     //
     this.grpBoxTree.Controls.Add(this.treeView1);
     this.grpBoxTree.Location = new System.Drawing.Point(8, 154);
     this.grpBoxTree.Name = "grpBoxTree";
     this.grpBoxTree.Size = new System.Drawing.Size(210, 443);
     this.grpBoxTree.TabIndex = 15;
     this.grpBoxTree.TabStop = false;
     //
     // treeView1
     //
     this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Font = new System.Drawing.Font("Segoe UI", 7.9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList;
     this.treeView1.Indent = 23;
     this.treeView1.ItemHeight = 18;
     this.treeView1.Location = new System.Drawing.Point(3, 18);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(204, 422);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "node.png");
     this.imageList.Images.SetKeyName(1, "leaf.png");
     //
     // frmMain
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.ClientSize = new System.Drawing.Size(968, 630);
     this.Controls.Add(this.grpBoxTree);
     this.Controls.Add(this.superTabControl1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.mdiClient1);
     this.EnableGlass = false;
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HelpButton = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Text = "DPCP SOFTWAVE";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribPnlContext.ResumeLayout(false);
     this.ribPnlWrite.ResumeLayout(false);
     this.ribPnlLayout.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit();
     this.superTabControl1.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.superTabControlPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     this.superTabControlPanel4.ResumeLayout(false);
     this.grpBoxTree.ResumeLayout(false);
     this.ResumeLayout(false);
 }