/// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabOptions = new Crownwood.Magic.Controls.TabControl();
     this.SuspendLayout();
     //
     // tabOptions
     //
     this.tabOptions.Appearance     = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiBox;
     this.tabOptions.Dock           = System.Windows.Forms.DockStyle.Top;
     this.tabOptions.IDEPixelArea   = true;
     this.tabOptions.IDEPixelBorder = true;
     this.tabOptions.Name           = "tabOptions";
     this.tabOptions.PositionTop    = true;
     this.tabOptions.Size           = new System.Drawing.Size(632, 240);
     this.tabOptions.TabIndex       = 21;
     //
     // TextExtractor
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabOptions
     });
     this.Name = "TextExtractor";
     this.Size = new System.Drawing.Size(632, 400);
     this.ResumeLayout(false);
 }
Beispiel #2
0
        public SchemaForm(string AScript)
        {
            InitializeComponent();

            FScript = AScript;

            SetStyle(ControlStyles.AllPaintingInWmPaint, true);

            // Init controls
            SuspendLayout();

            FDesignerPage         = new Crownwood.Magic.Controls.TabPage();
            FDesignerPage.Title   = "Designer";
            FDesignerPage.TabStop = false;

            FEditorPage         = new Crownwood.Magic.Controls.TabPage();
            FEditorPage.Title   = "Editor";
            FEditorPage.TabStop = false;

            FTabControl        = new Crownwood.Magic.Controls.TabControl();
            FTabControl.Height = FTabControl.TabsAreaRect.Height;
            FTabControl.Dock   = System.Windows.Forms.DockStyle.Bottom;
            FTabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { FDesignerPage, FEditorPage });
            FTabControl.SelectionChanging += new EventHandler(TabSelectionChanging);
            FTabControl.TabStop            = false;

            Controls.Add(FTabControl);

            InitializeDesigner();

            ResumeLayout(false);

            UpdateTitle();
        }
        protected override void WndProc(ref Message msg)
        {
            // Test for the left mouse down windows message
            if (msg.Msg == (int)Win32.Msgs.WM_LBUTTONDOWN)
            {
                // Get access to the TabControl we are the designer for
                Crownwood.Magic.Controls.TabControl tabControl = this.SelectionService.PrimarySelection as Crownwood.Magic.Controls.TabControl;

                // Check we have a valid object reference
                if (tabControl != null)
                {
                    // Extract the mouse position
                    int xPos = (short)((uint)msg.LParam & 0x0000FFFFU);
                    int yPos = (short)(((uint)msg.LParam & 0xFFFF0000U) >> 16);

                    // Ask the TabControl to change tabs according to mouse message
                    tabControl.ExternalMouseTest(msg.HWnd, new Point(xPos, yPos));
                }
            }
            else
            {
                if (msg.Msg == (int)Win32.Msgs.WM_LBUTTONDBLCLK)
                {
                    // Get access to the TabControl we are the designer for
                    Crownwood.Magic.Controls.TabControl tabControl = this.SelectionService.PrimarySelection as Crownwood.Magic.Controls.TabControl;

                    // Check we have a valid object reference
                    if (tabControl != null)
                    {
                        // Extract the mouse position
                        int xPos = (short)((uint)msg.LParam & 0x0000FFFFU);
                        int yPos = (short)(((uint)msg.LParam & 0xFFFF0000U) >> 16);

                        // Ask the TabControl to process a double click over an arrow as a simple
                        // click of the arrow button. In which case we return immediately to prevent
                        // the base class from using the double to generate the default event
                        if (tabControl.WantDoubleClick(msg.HWnd, new Point(xPos, yPos)))
                        {
                            return;
                        }
                    }
                }
            }

            base.WndProc(ref msg);
        }
Beispiel #4
0
        private void ExternalDrop(Crownwood.Magic.Controls.TabbedGroups tg,
                                  Crownwood.Magic.Controls.TabGroupLeaf tgl,
                                  Crownwood.Magic.Controls.TabControl tc,
                                  Crownwood.Magic.Controls.TabbedGroups.DragProvider dp)
        {
            // Create a new tab page
            Crownwood.Magic.Controls.TabPage tp = NewTabPage();

            // Define the text in this control
            (tp.Control as RichTextBox).Text = "Dragged from node '" + (string)dp.Tag + "'";

            // We want the new page to become selected
            tp.Selected = true;

            // Add new page into the destination tab control
            tgl.TabPages.Add(tp);
        }
Beispiel #5
0
        protected void OnRemovePage(object sender, EventArgs e)
        {
            Crownwood.Magic.Controls.TabControl tc = null;

            // Find the active tab control in the selected group
            if (tabControl1.SelectedIndex == 0)
            {
                if (tabbedGroups1.ActiveLeaf != null)
                {
                    tc = tabbedGroups1.ActiveLeaf.GroupControl as Crownwood.Magic.Controls.TabControl;
                }
            }
            else
            {
                if (tabControl1.SelectedIndex == 1)
                {
                    if (tabbedGroups2.ActiveLeaf != null)
                    {
                        tc = tabbedGroups2.ActiveLeaf.GroupControl as Crownwood.Magic.Controls.TabControl;
                    }
                }
                else
                {
                    if (tabbedGroups3.ActiveLeaf != null)
                    {
                        tc = tabbedGroups3.ActiveLeaf.GroupControl as Crownwood.Magic.Controls.TabControl;
                    }
                }
            }

            // Did we find a current tab control?
            if (tc != null)
            {
                // Does it have a selected tab?
                if (tc.SelectedTab != null)
                {
                    // Remove the page
                    tc.TabPages.Remove(tc.SelectedTab);
                }
            }
        }
Beispiel #6
0
        protected void OnPages(MenuCommand pages)
        {
            Crownwood.Magic.Controls.TabControl tc = null;

            // Find the active tab control in the selected group
            if (tabControl1.SelectedIndex == 0)
            {
                if (tabbedGroups1.ActiveLeaf != null)
                {
                    tc = tabbedGroups1.ActiveLeaf.GroupControl as Crownwood.Magic.Controls.TabControl;
                }
            }
            else
            {
                if (tabControl1.SelectedIndex == 1)
                {
                    if (tabbedGroups2.ActiveLeaf != null)
                    {
                        tc = tabbedGroups2.ActiveLeaf.GroupControl as Crownwood.Magic.Controls.TabControl;
                    }
                }
                else
                {
                    if (tabbedGroups3.ActiveLeaf != null)
                    {
                        tc = tabbedGroups3.ActiveLeaf.GroupControl as Crownwood.Magic.Controls.TabControl;
                    }
                }
            }

            // Did we find a current tab control?
            if ((tc != null) && (tc.SelectedTab != null))
            {
                pages.MenuCommands[1].Enabled = true;
            }
            else
            {
                pages.MenuCommands[1].Enabled = false;
            }
        }
Beispiel #7
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.MainTabs = new Crownwood.Magic.Controls.TabControl();
            this.GameTab = new Crownwood.Magic.Controls.TabPage();
            this.RenderTarget = new System.Windows.Forms.Panel();
            this.MainMenu = new Crownwood.Magic.Menus.MenuControl();
            this.FileMenu = new Crownwood.Magic.Menus.MenuCommand();
            this.FileSave = new Crownwood.Magic.Menus.MenuCommand();
            this.FileQuit = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewMenu = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewLog = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewConnect = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewWhoList = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewSkillList = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewChat = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewCommand = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewFirstPerson = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewChaseCam = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewMiniMap = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewOptions = new Crownwood.Magic.Menus.MenuCommand();
            this.ViewAdmin = new Crownwood.Magic.Menus.MenuCommand();
            this.MainStatus = new System.Windows.Forms.StatusBar();
            this.AreaInformation = new System.Windows.Forms.StatusBarPanel();
            this.Information = new System.Windows.Forms.StatusBarPanel();
            this.Coords = new System.Windows.Forms.StatusBarPanel();
            this.GameTab.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.AreaInformation)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Information)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Coords)).BeginInit();
            this.SuspendLayout();
            // 
            // MainTabs
            // 
            this.MainTabs.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MainTabs.Location = new System.Drawing.Point(2, 27);
            this.MainTabs.Name = "MainTabs";
            this.MainTabs.SelectedIndex = 0;
            this.MainTabs.SelectedTab = this.GameTab;
            this.MainTabs.Size = new System.Drawing.Size(888, 715);
            this.MainTabs.TabIndex = 0;
            this.MainTabs.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
            this.GameTab});
            // 
            // GameTab
            // 
            this.GameTab.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.GameTab.Controls.Add(this.RenderTarget);
            this.GameTab.Location = new System.Drawing.Point(0, 0);
            this.GameTab.Name = "GameTab";
            this.GameTab.Size = new System.Drawing.Size(888, 690);
            this.GameTab.TabIndex = 0;
            this.GameTab.Title = "Game";
            // 
            // RenderTarget
            // 
            this.RenderTarget.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.RenderTarget.Location = new System.Drawing.Point(0, 0);
            this.RenderTarget.Name = "RenderTarget";
            this.RenderTarget.Size = new System.Drawing.Size(782, 427);
            this.RenderTarget.TabIndex = 1;
            // 
            // MainMenu
            // 
            this.MainMenu.AnimateStyle = Crownwood.Magic.Menus.Animation.System;
            this.MainMenu.AnimateTime = 100;
            this.MainMenu.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.MainMenu.Direction = Crownwood.Magic.Common.Direction.Horizontal;
            this.MainMenu.Dock = System.Windows.Forms.DockStyle.Top;
            this.MainMenu.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
            this.MainMenu.HighlightTextColor = System.Drawing.SystemColors.MenuText;
            this.MainMenu.Location = new System.Drawing.Point(2, 2);
            this.MainMenu.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
            this.FileMenu,
            this.ViewMenu});
            this.MainMenu.Name = "MainMenu";
            this.MainMenu.Size = new System.Drawing.Size(888, 25);
            this.MainMenu.Style = Crownwood.Magic.Common.VisualStyle.IDE;
            this.MainMenu.TabIndex = 0;
            this.MainMenu.TabStop = false;
            // 
            // FileMenu
            // 
            this.FileMenu.Description = "The File menu";
            this.FileMenu.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
            this.FileSave,
            this.FileQuit});
            this.FileMenu.Text = "&File";
            // 
            // FileSave
            // 
            this.FileSave.Description = "MenuItem";
            this.FileSave.Text = "Save";
            this.FileSave.Click += new System.EventHandler(this.FileSave_Click);
            // 
            // FileQuit
            // 
            this.FileQuit.Description = "MenuItem";
            this.FileQuit.Text = "Quit";
            this.FileQuit.Click += new System.EventHandler(this.FileQuit_Click);
            // 
            // ViewMenu
            // 
            this.ViewMenu.Description = "MenuItem";
            this.ViewMenu.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
            this.ViewLog,
            this.ViewConnect,
            this.ViewWhoList,
            this.ViewSkillList,
            this.ViewChat,
            this.ViewCommand,
            this.ViewFirstPerson,
            this.ViewChaseCam,
            this.ViewMiniMap,
            this.ViewOptions,
            this.ViewAdmin});
            this.ViewMenu.Text = "&View";
            // 
            // ViewLog
            // 
            this.ViewLog.Description = "MenuItem";
            this.ViewLog.Text = "Log";
            this.ViewLog.Click += new System.EventHandler(this.ViewLog_Click);
            // 
            // ViewConnect
            // 
            this.ViewConnect.Description = "MenuItem";
            this.ViewConnect.Text = "Connect";
            this.ViewConnect.Click += new System.EventHandler(this.ViewConnect_Click);
            // 
            // ViewWhoList
            // 
            this.ViewWhoList.Description = "MenuItem";
            this.ViewWhoList.Text = "Who";
            this.ViewWhoList.Click += new System.EventHandler(this.ViewWhoList_Click);
            // 
            // ViewSkillList
            // 
            this.ViewSkillList.Description = "MenuItem";
            this.ViewSkillList.Text = "Skills";
            this.ViewSkillList.Click += new System.EventHandler(this.ViewSkillList_Click);
            // 
            // ViewChat
            // 
            this.ViewChat.Description = "View Chat";
            this.ViewChat.Text = "Chat";
            this.ViewChat.Click += new System.EventHandler(this.ViewChat_Click);
            // 
            // ViewCommand
            // 
            this.ViewCommand.Description = "View Command";
            this.ViewCommand.Text = "Command";
            this.ViewCommand.Click += new System.EventHandler(this.ViewCommand_Click);
            // 
            // ViewFirstPerson
            // 
            this.ViewFirstPerson.Description = "First Person Mode";
            this.ViewFirstPerson.Text = "First Person Mode";
            this.ViewFirstPerson.Click += new System.EventHandler(this.ViewFirstPerson_Click);
            // 
            // ViewChaseCam
            // 
            this.ViewChaseCam.Description = "Chase Camera";
            this.ViewChaseCam.Text = "Chase Camera";
            this.ViewChaseCam.Click += new System.EventHandler(this.ViewChaseCam_Click);
            // 
            // ViewMiniMap
            // 
            this.ViewMiniMap.Description = "MenuItem";
            this.ViewMiniMap.Text = "Mini Map";
            this.ViewMiniMap.Click += new System.EventHandler(this.ViewMiniMap_Click);
            // 
            // ViewOptions
            // 
            this.ViewOptions.Description = "Options";
            this.ViewOptions.Text = "Options";
            this.ViewOptions.Click += new System.EventHandler(this.ViewOptions_Click);
            // 
            // ViewAdmin
            // 
            this.ViewAdmin.Description = "ViewAdmin";
            this.ViewAdmin.Text = "ViewAdmin";
            this.ViewAdmin.Click += new System.EventHandler(this.ViewAdmin_Click);
            // 
            // MainStatus
            // 
            this.MainStatus.Location = new System.Drawing.Point(2, 742);
            this.MainStatus.Name = "MainStatus";
            this.MainStatus.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
            this.AreaInformation,
            this.Information,
            this.Coords});
            this.MainStatus.ShowPanels = true;
            this.MainStatus.Size = new System.Drawing.Size(888, 40);
            this.MainStatus.TabIndex = 1;
            // 
            // AreaInformation
            // 
            this.AreaInformation.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            this.AreaInformation.Name = "AreaInformation";
            this.AreaInformation.Width = 10;
            // 
            // Information
            // 
            this.Information.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
            this.Information.Name = "Information";
            this.Information.Text = "statusBarPanel1";
            this.Information.Width = 851;
            // 
            // Coords
            // 
            this.Coords.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
            this.Coords.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
            this.Coords.Name = "Coords";
            this.Coords.Width = 10;
            // 
            // Main
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
            this.ClientSize = new System.Drawing.Size(892, 784);
            this.Controls.Add(this.MainTabs);
            this.Controls.Add(this.MainMenu);
            this.Controls.Add(this.MainStatus);
            this.Name = "Main";
            this.Padding = new System.Windows.Forms.Padding(2);
            this.Text = "";
            this.Closing += new System.ComponentModel.CancelEventHandler(this.Main_Closing);
            this.Load += new System.EventHandler(this.Load_Form);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Main_KeyDown);
            this.GameTab.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.AreaInformation)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Information)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Coords)).EndInit();
            this.ResumeLayout(false);

		}
Beispiel #8
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this._tabControl = new Crownwood.Magic.Controls.TabControl();
     this._panelTop = new System.Windows.Forms.Panel();
     this._panelBottom = new System.Windows.Forms.Panel();
     this._buttonUpdate = new System.Windows.Forms.Button();
     this._buttonBack = new System.Windows.Forms.Button();
     this._buttonNext = new System.Windows.Forms.Button();
     this._buttonCancel = new System.Windows.Forms.Button();
     this._buttonFinish = new System.Windows.Forms.Button();
     this._buttonClose = new System.Windows.Forms.Button();
     this._buttonHelp = new System.Windows.Forms.Button();
     this._panelBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // _tabControl
     //
     this._tabControl.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right);
     this._tabControl.Appearance = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
     this._tabControl.IDEPixelBorder = false;
     this._tabControl.Location = new System.Drawing.Point(0, 80);
     this._tabControl.Multiline = true;
     this._tabControl.MultilineFullWidth = true;
     this._tabControl.Name = "_tabControl";
     this._tabControl.ShowArrows = false;
     this._tabControl.ShowClose = false;
     this._tabControl.Size = new System.Drawing.Size(424, 264);
     this._tabControl.TabIndex = 0;
     //
     // _panelTop
     //
     this._panelTop.BackColor = System.Drawing.SystemColors.Window;
     this._panelTop.Dock = System.Windows.Forms.DockStyle.Top;
     this._panelTop.Name = "_panelTop";
     this._panelTop.Size = new System.Drawing.Size(424, 80);
     this._panelTop.TabIndex = 1;
     //
     // _panelBottom
     //
     this._panelBottom.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                this._buttonUpdate,
                                                                                this._buttonBack,
                                                                                this._buttonNext,
                                                                                this._buttonCancel,
                                                                                this._buttonFinish,
                                                                                this._buttonClose,
                                                                                this._buttonHelp});
     this._panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this._panelBottom.Location = new System.Drawing.Point(0, 344);
     this._panelBottom.Name = "_panelBottom";
     this._panelBottom.Size = new System.Drawing.Size(424, 48);
     this._panelBottom.TabIndex = 2;
     //
     // _buttonUpdate
     //
     this._buttonUpdate.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonUpdate.FlatStyle = FlatStyle.System;
     this._buttonUpdate.Location = new System.Drawing.Point(8, 14);
     this._buttonUpdate.Name = "_buttonUpdate";
     this._buttonUpdate.TabIndex = 4;
     this._buttonUpdate.Text = "Update";
     this._buttonUpdate.Click += new System.EventHandler(this.OnButtonUpdate);
     //
     // _buttonBack
     //
     this._buttonBack.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonBack.FlatStyle = FlatStyle.System;
     this._buttonBack.Location = new System.Drawing.Point(56, 14);
     this._buttonBack.Name = "_buttonBack";
     this._buttonBack.TabIndex = 3;
     this._buttonBack.Text = "< Back";
     this._buttonBack.Click += new System.EventHandler(this.OnButtonBack);
     //
     // _buttonNext
     //
     this._buttonNext.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonNext.FlatStyle = FlatStyle.System;
     this._buttonNext.Location = new System.Drawing.Point(120, 14);
     this._buttonNext.Name = "_buttonNext";
     this._buttonNext.TabIndex = 2;
     this._buttonNext.Text = "Next >";
     this._buttonNext.Click += new System.EventHandler(this.OnButtonNext);
     //
     // _buttonCancel
     //
     this._buttonCancel.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonCancel.FlatStyle = FlatStyle.System;
     this._buttonCancel.Location = new System.Drawing.Point(184, 14);
     this._buttonCancel.Name = "_buttonCancel";
     this._buttonCancel.TabIndex = 1;
     this._buttonCancel.Text = "Cancel";
     this._buttonCancel.Click += new System.EventHandler(this.OnButtonCancel);
     //
     // _buttonFinish
     //
     this._buttonFinish.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonFinish.FlatStyle = FlatStyle.System;
     this._buttonFinish.Location = new System.Drawing.Point(248, 14);
     this._buttonFinish.Name = "_buttonFinish";
     this._buttonFinish.TabIndex = 0;
     this._buttonFinish.Text = "Finish";
     this._buttonFinish.Click += new System.EventHandler(this.OnButtonFinish);
     //
     // _buttonClose
     //
     this._buttonClose.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonClose.FlatStyle = FlatStyle.System;
     this._buttonClose.Location = new System.Drawing.Point(304, 14);
     this._buttonClose.Name = "_buttonClose";
     this._buttonClose.TabIndex = 0;
     this._buttonClose.Text = "Close";
     this._buttonClose.Click += new System.EventHandler(this.OnButtonClose);
     //
     // _buttonHelp
     //
     this._buttonHelp.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this._buttonHelp.FlatStyle = FlatStyle.System;
     this._buttonHelp.Location = new System.Drawing.Point(360, 14);
     this._buttonHelp.Name = "_buttonHelp";
     this._buttonHelp.TabIndex = 0;
     this._buttonHelp.Text = "Help";
     this._buttonHelp.Click += new System.EventHandler(this.OnButtonHelp);
     //
     // WizardControl
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this._tabControl,
                                                                   this._panelTop,
                                                                   this._panelBottom});
     this.Name = "WizardControl";
     this.Size = new System.Drawing.Size(424, 392);
     this._panelBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.selectedTextOnly   = new System.Windows.Forms.CheckBox();
     this.positionAtTop      = new System.Windows.Forms.CheckBox();
     this.radioMultiBox      = new System.Windows.Forms.RadioButton();
     this.removePage         = new System.Windows.Forms.Button();
     this.hotTrack           = new System.Windows.Forms.CheckBox();
     this.numericUpDown3     = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown1     = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown4     = new System.Windows.Forms.NumericUpDown();
     this.hoverSelect        = new System.Windows.Forms.CheckBox();
     this.numericUpDown2     = new System.Windows.Forms.NumericUpDown();
     this.radioMultiForm     = new System.Windows.Forms.RadioButton();
     this.showClose          = new System.Windows.Forms.CheckBox();
     this.shrinkPages        = new System.Windows.Forms.CheckBox();
     this.addPage            = new System.Windows.Forms.Button();
     this.clearAll           = new System.Windows.Forms.Button();
     this.StyleGroup         = new System.Windows.Forms.GroupBox();
     this.radioPlain         = new System.Windows.Forms.RadioButton();
     this.radioIDE           = new System.Windows.Forms.RadioButton();
     this.label4             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.insetPlain         = new System.Windows.Forms.CheckBox();
     this.insetPagesOnly     = new System.Windows.Forms.CheckBox();
     this.showArrows         = new System.Windows.Forms.CheckBox();
     this.radioMultiDocument = new System.Windows.Forms.RadioButton();
     this.AppearanceGroup    = new System.Windows.Forms.GroupBox();
     this.exampleColors      = new System.Windows.Forms.GroupBox();
     this.red                 = new System.Windows.Forms.RadioButton();
     this.blue                = new System.Windows.Forms.RadioButton();
     this.normal              = new System.Windows.Forms.RadioButton();
     this.idePixelBorder      = new System.Windows.Forms.CheckBox();
     this.idePixelArea        = new System.Windows.Forms.CheckBox();
     this.multiLine           = new System.Windows.Forms.CheckBox();
     this.tabControl          = new Crownwood.Magic.Controls.TabControl();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.tabHideWithoutMouse = new System.Windows.Forms.RadioButton();
     this.tabHideUsingLogic   = new System.Windows.Forms.RadioButton();
     this.tabHideAlways       = new System.Windows.Forms.RadioButton();
     this.tabShowAlways       = new System.Windows.Forms.RadioButton();
     this.multilineFullWidth  = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
     this.StyleGroup.SuspendLayout();
     this.AppearanceGroup.SuspendLayout();
     this.exampleColors.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // selectedTextOnly
     //
     this.selectedTextOnly.Location        = new System.Drawing.Point(176, 224);
     this.selectedTextOnly.Name            = "selectedTextOnly";
     this.selectedTextOnly.Size            = new System.Drawing.Size(120, 24);
     this.selectedTextOnly.TabIndex        = 1;
     this.selectedTextOnly.Text            = "Selected Text Only";
     this.selectedTextOnly.CheckedChanged += new System.EventHandler(this.selectedTextOnly_CheckedChanged);
     //
     // positionAtTop
     //
     this.positionAtTop.Location        = new System.Drawing.Point(176, 8);
     this.positionAtTop.Name            = "positionAtTop";
     this.positionAtTop.TabIndex        = 1;
     this.positionAtTop.Text            = "Position At Top";
     this.positionAtTop.CheckedChanged += new System.EventHandler(this.positionAtTop_CheckedChanged);
     //
     // radioMultiBox
     //
     this.radioMultiBox.Location = new System.Drawing.Point(16, 64);
     this.radioMultiBox.Name     = "radioMultiBox";
     this.radioMultiBox.Size     = new System.Drawing.Size(88, 24);
     this.radioMultiBox.TabIndex = 0;
     this.radioMultiBox.Text     = "MultiBox";
     this.radioMultiBox.Click   += new System.EventHandler(this.OnAppearanceMultiBox);
     //
     // removePage
     //
     this.removePage.Location = new System.Drawing.Point(424, 376);
     this.removePage.Name     = "removePage";
     this.removePage.Size     = new System.Drawing.Size(88, 24);
     this.removePage.TabIndex = 0;
     this.removePage.Text     = "RemovePage";
     this.removePage.Click   += new System.EventHandler(this.OnRemovePage);
     //
     // hotTrack
     //
     this.hotTrack.Location        = new System.Drawing.Point(176, 32);
     this.hotTrack.Name            = "hotTrack";
     this.hotTrack.TabIndex        = 1;
     this.hotTrack.Text            = "HotTrack";
     this.hotTrack.CheckedChanged += new System.EventHandler(this.Highlight_CheckedChanged);
     //
     // numericUpDown3
     //
     this.numericUpDown3.Location      = new System.Drawing.Point(384, 336);
     this.numericUpDown3.Name          = "numericUpDown3";
     this.numericUpDown3.Size          = new System.Drawing.Size(56, 20);
     this.numericUpDown3.TabIndex      = 2;
     this.numericUpDown3.ValueChanged += new System.EventHandler(this.numericUpDown3_ValueChanged);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location      = new System.Drawing.Point(384, 304);
     this.numericUpDown1.Name          = "numericUpDown1";
     this.numericUpDown1.Size          = new System.Drawing.Size(56, 20);
     this.numericUpDown1.TabIndex      = 2;
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // numericUpDown4
     //
     this.numericUpDown4.Location      = new System.Drawing.Point(544, 336);
     this.numericUpDown4.Name          = "numericUpDown4";
     this.numericUpDown4.Size          = new System.Drawing.Size(56, 20);
     this.numericUpDown4.TabIndex      = 2;
     this.numericUpDown4.ValueChanged += new System.EventHandler(this.numericUpDown4_ValueChanged);
     //
     // hoverSelect
     //
     this.hoverSelect.Location        = new System.Drawing.Point(176, 248);
     this.hoverSelect.Name            = "hoverSelect";
     this.hoverSelect.Size            = new System.Drawing.Size(112, 24);
     this.hoverSelect.TabIndex        = 1;
     this.hoverSelect.Text            = "Hover Select";
     this.hoverSelect.CheckedChanged += new System.EventHandler(this.hoverSelect_CheckedChanged);
     //
     // numericUpDown2
     //
     this.numericUpDown2.Location      = new System.Drawing.Point(544, 304);
     this.numericUpDown2.Name          = "numericUpDown2";
     this.numericUpDown2.Size          = new System.Drawing.Size(56, 20);
     this.numericUpDown2.TabIndex      = 2;
     this.numericUpDown2.ValueChanged += new System.EventHandler(this.numericUpDown2_ValueChanged);
     //
     // radioMultiForm
     //
     this.radioMultiForm.Location = new System.Drawing.Point(16, 40);
     this.radioMultiForm.Name     = "radioMultiForm";
     this.radioMultiForm.Size     = new System.Drawing.Size(88, 24);
     this.radioMultiForm.TabIndex = 0;
     this.radioMultiForm.Text     = "MultiForm";
     this.radioMultiForm.Click   += new System.EventHandler(this.OnAppearanceMultiForm);
     //
     // showClose
     //
     this.showClose.Location        = new System.Drawing.Point(176, 80);
     this.showClose.Name            = "showClose";
     this.showClose.TabIndex        = 1;
     this.showClose.Text            = "Show Close";
     this.showClose.CheckedChanged += new System.EventHandler(this.showClose_CheckedChanged);
     //
     // shrinkPages
     //
     this.shrinkPages.Location        = new System.Drawing.Point(176, 56);
     this.shrinkPages.Name            = "shrinkPages";
     this.shrinkPages.TabIndex        = 1;
     this.shrinkPages.Text            = "Shrink pages";
     this.shrinkPages.CheckedChanged += new System.EventHandler(this.shrinkPages_CheckedChanged);
     //
     // addPage
     //
     this.addPage.Location = new System.Drawing.Point(312, 376);
     this.addPage.Name     = "addPage";
     this.addPage.Size     = new System.Drawing.Size(87, 24);
     this.addPage.TabIndex = 0;
     this.addPage.Text     = "AddPage";
     this.addPage.Click   += new System.EventHandler(this.OnAddPage);
     //
     // clearAll
     //
     this.clearAll.Location = new System.Drawing.Point(536, 376);
     this.clearAll.Name     = "clearAll";
     this.clearAll.Size     = new System.Drawing.Size(88, 24);
     this.clearAll.TabIndex = 0;
     this.clearAll.Text     = "RemoveAll";
     this.clearAll.Click   += new System.EventHandler(this.OnClearAll);
     //
     // StyleGroup
     //
     this.StyleGroup.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.radioPlain,
         this.radioIDE
     });
     this.StyleGroup.Location = new System.Drawing.Point(8, 8);
     this.StyleGroup.Name     = "StyleGroup";
     this.StyleGroup.Size     = new System.Drawing.Size(144, 72);
     this.StyleGroup.TabIndex = 0;
     this.StyleGroup.TabStop  = false;
     this.StyleGroup.Text     = "Style";
     //
     // radioPlain
     //
     this.radioPlain.Location = new System.Drawing.Point(16, 40);
     this.radioPlain.Name     = "radioPlain";
     this.radioPlain.Size     = new System.Drawing.Size(56, 24);
     this.radioPlain.TabIndex = 0;
     this.radioPlain.Text     = "Plain";
     this.radioPlain.Click   += new System.EventHandler(this.OnStylePlain);
     //
     // radioIDE
     //
     this.radioIDE.Location = new System.Drawing.Point(16, 16);
     this.radioIDE.Name     = "radioIDE";
     this.radioIDE.Size     = new System.Drawing.Size(56, 24);
     this.radioIDE.TabIndex = 0;
     this.radioIDE.Text     = "IDE";
     this.radioIDE.Click   += new System.EventHandler(this.OnStyleIDE);
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(456, 336);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(80, 23);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "Bottom Offset";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(312, 304);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(64, 23);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Left Offset";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(472, 304);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 23);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Right Offset";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(312, 336);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 23);
     this.label3.TabIndex  = 3;
     this.label3.Text      = "Top Offset";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // insetPlain
     //
     this.insetPlain.Location        = new System.Drawing.Point(176, 152);
     this.insetPlain.Name            = "insetPlain";
     this.insetPlain.TabIndex        = 1;
     this.insetPlain.Text            = "Inset Plain";
     this.insetPlain.CheckedChanged += new System.EventHandler(this.insetPlain_CheckedChanged);
     //
     // insetPagesOnly
     //
     this.insetPagesOnly.Location        = new System.Drawing.Point(176, 128);
     this.insetPagesOnly.Name            = "insetPagesOnly";
     this.insetPagesOnly.Size            = new System.Drawing.Size(120, 24);
     this.insetPagesOnly.TabIndex        = 4;
     this.insetPagesOnly.Text            = "Inset Pages Only";
     this.insetPagesOnly.CheckedChanged += new System.EventHandler(this.insetPagesOnly_CheckedChanged);
     //
     // showArrows
     //
     this.showArrows.Location        = new System.Drawing.Point(176, 104);
     this.showArrows.Name            = "showArrows";
     this.showArrows.TabIndex        = 1;
     this.showArrows.Text            = "Show Arrows";
     this.showArrows.CheckedChanged += new System.EventHandler(this.showArrows_CheckedChanged);
     //
     // radioMultiDocument
     //
     this.radioMultiDocument.Location = new System.Drawing.Point(16, 16);
     this.radioMultiDocument.Name     = "radioMultiDocument";
     this.radioMultiDocument.TabIndex = 0;
     this.radioMultiDocument.Text     = "MultiDocument";
     this.radioMultiDocument.Click   += new System.EventHandler(this.OnAppearanceMultiDocument);
     //
     // AppearanceGroup
     //
     this.AppearanceGroup.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.radioMultiBox,
         this.radioMultiForm,
         this.radioMultiDocument
     });
     this.AppearanceGroup.Location = new System.Drawing.Point(8, 88);
     this.AppearanceGroup.Name     = "AppearanceGroup";
     this.AppearanceGroup.Size     = new System.Drawing.Size(144, 96);
     this.AppearanceGroup.TabIndex = 0;
     this.AppearanceGroup.TabStop  = false;
     this.AppearanceGroup.Text     = "Appearance";
     //
     // exampleColors
     //
     this.exampleColors.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.red,
         this.blue,
         this.normal
     });
     this.exampleColors.Location = new System.Drawing.Point(8, 336);
     this.exampleColors.Name     = "exampleColors";
     this.exampleColors.Size     = new System.Drawing.Size(232, 64);
     this.exampleColors.TabIndex = 1;
     this.exampleColors.TabStop  = false;
     this.exampleColors.Text     = "Example Colors";
     //
     // red
     //
     this.red.Location        = new System.Drawing.Point(136, 24);
     this.red.Name            = "red";
     this.red.Size            = new System.Drawing.Size(88, 24);
     this.red.TabIndex        = 0;
     this.red.Text            = "Red";
     this.red.CheckedChanged += new System.EventHandler(this.red_CheckedChanged);
     //
     // blue
     //
     this.blue.Location        = new System.Drawing.Point(80, 24);
     this.blue.Name            = "blue";
     this.blue.Size            = new System.Drawing.Size(88, 24);
     this.blue.TabIndex        = 0;
     this.blue.Text            = "Blue";
     this.blue.CheckedChanged += new System.EventHandler(this.blue_CheckedChanged);
     //
     // normal
     //
     this.normal.Location        = new System.Drawing.Point(16, 24);
     this.normal.Name            = "normal";
     this.normal.Size            = new System.Drawing.Size(88, 24);
     this.normal.TabIndex        = 0;
     this.normal.Text            = "Normal";
     this.normal.CheckedChanged += new System.EventHandler(this.normal_CheckedChanged);
     //
     // idePixelBorder
     //
     this.idePixelBorder.Location        = new System.Drawing.Point(176, 176);
     this.idePixelBorder.Name            = "idePixelBorder";
     this.idePixelBorder.Size            = new System.Drawing.Size(112, 24);
     this.idePixelBorder.TabIndex        = 5;
     this.idePixelBorder.Text            = "IDE Pixel Border";
     this.idePixelBorder.CheckedChanged += new System.EventHandler(this.idePixelBorder_CheckedChanged);
     //
     // idePixelArea
     //
     this.idePixelArea.Location        = new System.Drawing.Point(176, 200);
     this.idePixelArea.Name            = "idePixelArea";
     this.idePixelArea.Size            = new System.Drawing.Size(112, 24);
     this.idePixelArea.TabIndex        = 6;
     this.idePixelArea.Text            = "IDE Pixel Area";
     this.idePixelArea.CheckedChanged += new System.EventHandler(this.idePixelArea_CheckedChanged);
     //
     // multiLine
     //
     this.multiLine.Location        = new System.Drawing.Point(176, 272);
     this.multiLine.Name            = "multiLine";
     this.multiLine.TabIndex        = 7;
     this.multiLine.Text            = "MultiLine";
     this.multiLine.CheckedChanged += new System.EventHandler(this.multiLine_CheckedChanged);
     //
     // tabControl
     //
     this.tabControl.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControl.Location     = new System.Drawing.Point(304, 16);
     this.tabControl.Name         = "tabControl";
     this.tabControl.Size         = new System.Drawing.Size(320, 272);
     this.tabControl.TabIndex     = 8;
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabHideWithoutMouse,
         this.tabHideUsingLogic,
         this.tabHideAlways,
         this.tabShowAlways
     });
     this.groupBox1.Location = new System.Drawing.Point(8, 192);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(144, 120);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "HideTabsMode";
     //
     // tabHideWithoutMouse
     //
     this.tabHideWithoutMouse.Location        = new System.Drawing.Point(16, 88);
     this.tabHideWithoutMouse.Name            = "tabHideWithoutMouse";
     this.tabHideWithoutMouse.Size            = new System.Drawing.Size(120, 24);
     this.tabHideWithoutMouse.TabIndex        = 1;
     this.tabHideWithoutMouse.Text            = "HideWithoutMouse";
     this.tabHideWithoutMouse.CheckedChanged += new System.EventHandler(this.tabHideWithoutMouse_CheckedChanged);
     //
     // tabHideUsingLogic
     //
     this.tabHideUsingLogic.Location        = new System.Drawing.Point(16, 64);
     this.tabHideUsingLogic.Name            = "tabHideUsingLogic";
     this.tabHideUsingLogic.TabIndex        = 0;
     this.tabHideUsingLogic.Text            = "HideUsingLogic";
     this.tabHideUsingLogic.CheckedChanged += new System.EventHandler(this.tabHideUsingLogic_CheckedChanged);
     //
     // tabHideAlways
     //
     this.tabHideAlways.Location        = new System.Drawing.Point(16, 40);
     this.tabHideAlways.Name            = "tabHideAlways";
     this.tabHideAlways.Size            = new System.Drawing.Size(88, 24);
     this.tabHideAlways.TabIndex        = 0;
     this.tabHideAlways.Text            = "HideAlways";
     this.tabHideAlways.CheckedChanged += new System.EventHandler(this.tabHideAlways_CheckedChanged);
     //
     // tabShowAlways
     //
     this.tabShowAlways.Location = new System.Drawing.Point(16, 16);
     this.tabShowAlways.Name     = "tabShowAlways";
     this.tabShowAlways.TabIndex = 2;
     //
     // multilineFullWidth
     //
     this.multilineFullWidth.Location        = new System.Drawing.Point(176, 296);
     this.multilineFullWidth.Name            = "multilineFullWidth";
     this.multilineFullWidth.Size            = new System.Drawing.Size(136, 24);
     this.multilineFullWidth.TabIndex        = 9;
     this.multilineFullWidth.Text            = "MultiLine Full Width";
     this.multilineFullWidth.CheckedChanged += new System.EventHandler(this.multilineFullWidth_CheckedChanged);
     //
     // SampleTabControl
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(648, 413);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.multilineFullWidth,
         this.tabControl,
         this.multiLine,
         this.idePixelArea,
         this.idePixelBorder,
         this.insetPagesOnly,
         this.hoverSelect,
         this.selectedTextOnly,
         this.numericUpDown3,
         this.label3,
         this.numericUpDown4,
         this.label4,
         this.numericUpDown2,
         this.label2,
         this.label1,
         this.numericUpDown1,
         this.insetPlain,
         this.showArrows,
         this.showClose,
         this.shrinkPages,
         this.addPage,
         this.removePage,
         this.clearAll,
         this.hotTrack,
         this.positionAtTop,
         this.StyleGroup,
         this.AppearanceGroup,
         this.exampleColors,
         this.groupBox1
     });
     this.Name = "SampleTabControl";
     this.Text = "SampleTabControl";
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
     this.StyleGroup.ResumeLayout(false);
     this.AppearanceGroup.ResumeLayout(false);
     this.exampleColors.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormDownloads));
     this.panel5 = new System.Windows.Forms.Panel();
     this.paneleLink = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.buttonAdd = new System.Windows.Forms.Button();
     this.textBoxeLink = new System.Windows.Forms.TextBox();
     this.downloadList = new eLePhant.Client.downloadsListView();
     this.panel7 = new System.Windows.Forms.Panel();
     this.buttonPasteeLink = new System.Windows.Forms.Button();
     this.buttonAddeLink = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.tabControlFilter = new Crownwood.Magic.Controls.TabControl();
     this.contextMenuFilter = new System.Windows.Forms.ContextMenu();
     this.menuItemShowCount = new System.Windows.Forms.MenuItem();
     this.menuItemShowTotalSizes = new System.Windows.Forms.MenuItem();
     this.menuItem1 = new System.Windows.Forms.MenuItem();
     this.menuItemAutoSort = new System.Windows.Forms.MenuItem();
     this.tabPageAll = new Crownwood.Magic.Controls.TabPage();
     this.tabPageStarted = new Crownwood.Magic.Controls.TabPage();
     this.tabPageStopped = new Crownwood.Magic.Controls.TabPage();
     this.panel6 = new System.Windows.Forms.Panel();
     this.eLePhantButton1 = new eLePhant.Interface.eLePhantButton(this.components);
     this.imageListMaximize = new System.Windows.Forms.ImageList(this.components);
     this.panel9 = new System.Windows.Forms.Panel();
     this.tabControlDetails = new Crownwood.Magic.Controls.TabControl();
     this.tabPageDetails = new Crownwood.Magic.Controls.TabPage();
     this.buttonOpenFolder = new System.Windows.Forms.Button();
     this.tx_fileName = new System.Windows.Forms.TextBox();
     this.tx_completeName = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.panel_fileDetails = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.groupBoxMaxSources = new System.Windows.Forms.GroupBox();
     this.textBoxMaxSources = new System.Windows.Forms.TextBox();
     this.radioButtonSpecificMaxSources = new System.Windows.Forms.RadioButton();
     this.radioButtonUseGlobalMaxSources = new System.Windows.Forms.RadioButton();
     this.textBoxCompletedAt = new System.Windows.Forms.TextBox();
     this.labelCompletedAt = new System.Windows.Forms.Label();
     this.labelSessionFileRateDO = new System.Windows.Forms.Label();
     this.labelSessionFileRateUP = new System.Windows.Forms.Label();
     this.labelSessionFileDO = new System.Windows.Forms.Label();
     this.labelSessionFileUP = new System.Windows.Forms.Label();
     this.FileInspector = new eLePhant.Interface.eLePhantInspector();
     this.imageListIcons = new System.Windows.Forms.ImageList(this.components);
     this.tabPageLists = new Crownwood.Magic.Controls.TabPage();
     this.listViewNames = new eLePhant.Client.fileNamesListView(this.components);
     this.buttonSetCommet = new System.Windows.Forms.Button();
     this.textBoxComment = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.listViewComments = new eLePhant.Client.commentsListView(this.components);
     this.buttonRename = new System.Windows.Forms.Button();
     this.textBoxName = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPageSources = new Crownwood.Magic.Controls.TabPage();
     this.sourcesList = new eLePhant.Client.sourcesListView(this.components);
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.imageListMinimize = new System.Windows.Forms.ImageList(this.components);
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.panel5.SuspendLayout();
     this.paneleLink.SuspendLayout();
     this.panel7.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel9.SuspendLayout();
     this.tabPageDetails.SuspendLayout();
     this.panel1.SuspendLayout();
     this.groupBoxMaxSources.SuspendLayout();
     this.tabPageLists.SuspendLayout();
     this.tabPageSources.SuspendLayout();
     this.SuspendLayout();
     //
     // panel5
     //
     this.panel5.Controls.Add(this.paneleLink);
     this.panel5.Controls.Add(this.downloadList);
     this.panel5.Controls.Add(this.panel7);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel5.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(720, 184);
     this.panel5.TabIndex = 3;
     //
     // paneleLink
     //
     this.paneleLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.paneleLink.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.paneleLink.Controls.Add(this.label4);
     this.paneleLink.Controls.Add(this.buttonCancel);
     this.paneleLink.Controls.Add(this.buttonAdd);
     this.paneleLink.Controls.Add(this.textBoxeLink);
     this.paneleLink.Location = new System.Drawing.Point(200, 32);
     this.paneleLink.Name = "paneleLink";
     this.paneleLink.Size = new System.Drawing.Size(512, 26);
     this.paneleLink.TabIndex = 2;
     this.paneleLink.Visible = false;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 4);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(34, 16);
     this.label4.TabIndex = 5;
     this.label4.Text = "eLink:";
     //
     // buttonCancel
     //
     this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonCancel.Location = new System.Drawing.Point(443, 2);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(61, 21);
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
     //
     // buttonAdd
     //
     this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonAdd.Location = new System.Drawing.Point(379, 2);
     this.buttonAdd.Name = "buttonAdd";
     this.buttonAdd.Size = new System.Drawing.Size(61, 21);
     this.buttonAdd.TabIndex = 3;
     this.buttonAdd.Text = "Add";
     this.buttonAdd.Click += new System.EventHandler(this.button2_Click);
     //
     // textBoxeLink
     //
     this.textBoxeLink.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxeLink.Location = new System.Drawing.Point(48, 3);
     this.textBoxeLink.Name = "textBoxeLink";
     this.textBoxeLink.Size = new System.Drawing.Size(328, 20);
     this.textBoxeLink.TabIndex = 0;
     this.textBoxeLink.Text = "";
     //
     // downloadList
     //
     this.downloadList.AllowColumnReorder = true;
     this.downloadList.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.downloadList.AutoArrange = false;
     this.downloadList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.downloadList.DefaultCustomDraw = true;
     this.downloadList.FullRowSelect = true;
     this.downloadList.FullyCustomHeader = false;
     this.downloadList.HideSelection = false;
     this.downloadList.IncreaseHeaderHeight = 0;
     this.downloadList.Location = new System.Drawing.Point(8, 32);
     this.downloadList.Name = "downloadList";
     this.downloadList.Size = new System.Drawing.Size(704, 152);
     this.downloadList.sortColumn = -1;
     this.downloadList.TabIndex = 1;
     this.downloadList.View = System.Windows.Forms.View.Details;
     this.downloadList.DoubleClick += new System.EventHandler(this.downloadList_DoubleClick);
     this.downloadList.SelectedIndexChanged += new System.EventHandler(this.downloadList_SelectedIndexChanged);
     //
     // panel7
     //
     this.panel7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.panel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel7.Controls.Add(this.buttonPasteeLink);
     this.panel7.Controls.Add(this.buttonAddeLink);
     this.panel7.Controls.Add(this.label1);
     this.panel7.Controls.Add(this.tabControlFilter);
     this.panel7.Location = new System.Drawing.Point(8, 6);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(704, 27);
     this.panel7.TabIndex = 0;
     //
     // buttonPasteeLink
     //
     this.buttonPasteeLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonPasteeLink.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonPasteeLink.Location = new System.Drawing.Point(616, 2);
     this.buttonPasteeLink.Name = "buttonPasteeLink";
     this.buttonPasteeLink.Size = new System.Drawing.Size(80, 21);
     this.buttonPasteeLink.TabIndex = 3;
     this.buttonPasteeLink.Text = "Paste eLink";
     this.buttonPasteeLink.Click += new System.EventHandler(this.buttonPasteeLink_Click);
     //
     // buttonAddeLink
     //
     this.buttonAddeLink.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAddeLink.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonAddeLink.Location = new System.Drawing.Point(534, 2);
     this.buttonAddeLink.Name = "buttonAddeLink";
     this.buttonAddeLink.Size = new System.Drawing.Size(80, 21);
     this.buttonAddeLink.TabIndex = 2;
     this.buttonAddeLink.Text = "Add eLink";
     this.buttonAddeLink.Click += new System.EventHandler(this.buttonAddeLink_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 5);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 16);
     this.label1.TabIndex = 1;
     this.label1.Text = "Filter:";
     //
     // tabControlFilter
     //
     this.tabControlFilter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControlFilter.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tabControlFilter.ButtonActiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControlFilter.ButtonInactiveColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.tabControlFilter.ContextMenu = this.contextMenuFilter;
     this.tabControlFilter.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.tabControlFilter.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControlFilter.HotTextColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.tabControlFilter.Location = new System.Drawing.Point(56, 1);
     this.tabControlFilter.Name = "tabControlFilter";
     this.tabControlFilter.SelectedIndex = 0;
     this.tabControlFilter.SelectedTab = this.tabPageAll;
     this.tabControlFilter.Size = new System.Drawing.Size(472, 26);
     this.tabControlFilter.TabIndex = 0;
     this.tabControlFilter.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
                                                                                        this.tabPageAll,
                                                                                        this.tabPageStarted,
                                                                                        this.tabPageStopped});
     this.tabControlFilter.TextColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.tabControlFilter.SelectionChanged += new System.EventHandler(this.tabControlFilter_SelectionChanged);
     //
     // contextMenuFilter
     //
     this.contextMenuFilter.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                                       this.menuItemShowCount,
                                                                                       this.menuItemShowTotalSizes,
                                                                                       this.menuItem1,
                                                                                       this.menuItemAutoSort});
     //
     // menuItemShowCount
     //
     this.menuItemShowCount.Checked = true;
     this.menuItemShowCount.Index = 0;
     this.menuItemShowCount.Text = "Show count";
     //
     // menuItemShowTotalSizes
     //
     this.menuItemShowTotalSizes.Checked = true;
     this.menuItemShowTotalSizes.Index = 1;
     this.menuItemShowTotalSizes.Text = "Show total sizes";
     //
     // menuItem1
     //
     this.menuItem1.Index = 2;
     this.menuItem1.Text = "-";
     //
     // menuItemAutoSort
     //
     this.menuItemAutoSort.Index = 3;
     this.menuItemAutoSort.Text = "";
     //
     // tabPageAll
     //
     this.tabPageAll.Location = new System.Drawing.Point(0, 0);
     this.tabPageAll.Name = "tabPageAll";
     this.tabPageAll.Size = new System.Drawing.Size(472, 1);
     this.tabPageAll.TabIndex = 2;
     this.tabPageAll.Title = "All";
     //
     // tabPageStarted
     //
     this.tabPageStarted.Location = new System.Drawing.Point(0, 0);
     this.tabPageStarted.Name = "tabPageStarted";
     this.tabPageStarted.Selected = false;
     this.tabPageStarted.Size = new System.Drawing.Size(472, 1);
     this.tabPageStarted.TabIndex = 0;
     this.tabPageStarted.Title = "Started";
     //
     // tabPageStopped
     //
     this.tabPageStopped.Location = new System.Drawing.Point(0, 0);
     this.tabPageStopped.Name = "tabPageStopped";
     this.tabPageStopped.Selected = false;
     this.tabPageStopped.Size = new System.Drawing.Size(472, 1);
     this.tabPageStopped.TabIndex = 1;
     this.tabPageStopped.Title = "Stopped";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.eLePhantButton1);
     this.panel6.Controls.Add(this.panel9);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(0, 192);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(720, 248);
     this.panel6.TabIndex = 5;
     //
     // eLePhantButton1
     //
     this.eLePhantButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.eLePhantButton1.BackColor = System.Drawing.Color.Transparent;
     this.eLePhantButton1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.eLePhantButton1.ImageIndex = 0;
     this.eLePhantButton1.ImageList = this.imageListMaximize;
     this.eLePhantButton1.Location = new System.Drawing.Point(672, -5);
     this.eLePhantButton1.Name = "eLePhantButton1";
     this.eLePhantButton1.Size = new System.Drawing.Size(34, 13);
     this.eLePhantButton1.TabIndex = 7;
     this.eLePhantButton1.Click += new System.EventHandler(this.eLePhantButton1_Click);
     //
     // imageListMaximize
     //
     this.imageListMaximize.ImageSize = new System.Drawing.Size(34, 9);
     this.imageListMaximize.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListMaximize.ImageStream")));
     this.imageListMaximize.TransparentColor = System.Drawing.Color.Transparent;
     //
     // panel9
     //
     this.panel9.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.panel9.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel9.Controls.Add(this.tabControlDetails);
     this.panel9.Location = new System.Drawing.Point(8, 8);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(704, 232);
     this.panel9.TabIndex = 2;
     //
     // tabControlDetails
     //
     this.tabControlDetails.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tabControlDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlDetails.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControlDetails.Location = new System.Drawing.Point(0, 0);
     this.tabControlDetails.Name = "tabControlDetails";
     this.tabControlDetails.PositionTop = true;
     this.tabControlDetails.SelectedIndex = 0;
     this.tabControlDetails.SelectedTab = this.tabPageDetails;
     this.tabControlDetails.Size = new System.Drawing.Size(702, 230);
     this.tabControlDetails.TabIndex = 0;
     this.tabControlDetails.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
                                                                                         this.tabPageDetails,
                                                                                         this.tabPageLists,
                                                                                         this.tabPageSources});
     //
     // tabPageDetails
     //
     this.tabPageDetails.Controls.Add(this.buttonOpenFolder);
     this.tabPageDetails.Controls.Add(this.tx_fileName);
     this.tabPageDetails.Controls.Add(this.tx_completeName);
     this.tabPageDetails.Controls.Add(this.label6);
     this.tabPageDetails.Controls.Add(this.label5);
     this.tabPageDetails.Controls.Add(this.panel_fileDetails);
     this.tabPageDetails.Controls.Add(this.panel1);
     this.tabPageDetails.ImageIndex = 0;
     this.tabPageDetails.ImageList = this.imageListIcons;
     this.tabPageDetails.Location = new System.Drawing.Point(0, 0);
     this.tabPageDetails.Name = "tabPageDetails";
     this.tabPageDetails.Size = new System.Drawing.Size(702, 205);
     this.tabPageDetails.TabIndex = 2;
     this.tabPageDetails.Title = "Details";
     //
     // buttonOpenFolder
     //
     this.buttonOpenFolder.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonOpenFolder.Image = ((System.Drawing.Image)(resources.GetObject("buttonOpenFolder.Image")));
     this.buttonOpenFolder.Location = new System.Drawing.Point(356, 20);
     this.buttonOpenFolder.Name = "buttonOpenFolder";
     this.buttonOpenFolder.Size = new System.Drawing.Size(28, 19);
     this.buttonOpenFolder.TabIndex = 27;
     this.toolTip1.SetToolTip(this.buttonOpenFolder, "Open folder");
     this.buttonOpenFolder.Click += new System.EventHandler(this.buttonOpenFolder_Click);
     //
     // tx_fileName
     //
     this.tx_fileName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tx_fileName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tx_fileName.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tx_fileName.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.tx_fileName.Location = new System.Drawing.Point(85, 2);
     this.tx_fileName.Name = "tx_fileName";
     this.tx_fileName.ReadOnly = true;
     this.tx_fileName.Size = new System.Drawing.Size(299, 19);
     this.tx_fileName.TabIndex = 25;
     this.tx_fileName.Text = "";
     //
     // tx_completeName
     //
     this.tx_completeName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tx_completeName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tx_completeName.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tx_completeName.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.tx_completeName.Location = new System.Drawing.Point(85, 20);
     this.tx_completeName.Name = "tx_completeName";
     this.tx_completeName.ReadOnly = true;
     this.tx_completeName.Size = new System.Drawing.Size(273, 19);
     this.tx_completeName.TabIndex = 24;
     this.tx_completeName.Text = "";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label6.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(5, 20);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(81, 19);
     this.label6.TabIndex = 3;
     this.label6.Text = "File:";
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label5.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(5, 2);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(81, 19);
     this.label5.TabIndex = 2;
     this.label5.Text = "File Name:";
     //
     // panel_fileDetails
     //
     this.panel_fileDetails.AutoScroll = true;
     this.panel_fileDetails.Font = new System.Drawing.Font("Tahoma", 7F);
     this.panel_fileDetails.Location = new System.Drawing.Point(5, 38);
     this.panel_fileDetails.Name = "panel_fileDetails";
     this.panel_fileDetails.Size = new System.Drawing.Size(379, 161);
     this.panel_fileDetails.TabIndex = 23;
     //
     // panel1
     //
     this.panel1.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.panel1.AutoScroll = true;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.groupBoxMaxSources);
     this.panel1.Controls.Add(this.textBoxCompletedAt);
     this.panel1.Controls.Add(this.labelCompletedAt);
     this.panel1.Controls.Add(this.labelSessionFileRateDO);
     this.panel1.Controls.Add(this.labelSessionFileRateUP);
     this.panel1.Controls.Add(this.labelSessionFileDO);
     this.panel1.Controls.Add(this.labelSessionFileUP);
     this.panel1.Controls.Add(this.FileInspector);
     this.panel1.Location = new System.Drawing.Point(390, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(307, 197);
     this.panel1.TabIndex = 26;
     //
     // groupBoxMaxSources
     //
     this.groupBoxMaxSources.Controls.Add(this.textBoxMaxSources);
     this.groupBoxMaxSources.Controls.Add(this.radioButtonSpecificMaxSources);
     this.groupBoxMaxSources.Controls.Add(this.radioButtonUseGlobalMaxSources);
     this.groupBoxMaxSources.Location = new System.Drawing.Point(5, 106);
     this.groupBoxMaxSources.Name = "groupBoxMaxSources";
     this.groupBoxMaxSources.Size = new System.Drawing.Size(290, 69);
     this.groupBoxMaxSources.TabIndex = 28;
     this.groupBoxMaxSources.TabStop = false;
     this.groupBoxMaxSources.Text = "Maximum sources limit";
     //
     // textBoxMaxSources
     //
     this.textBoxMaxSources.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxMaxSources.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxSources.Location = new System.Drawing.Point(231, 39);
     this.textBoxMaxSources.Name = "textBoxMaxSources";
     this.textBoxMaxSources.Size = new System.Drawing.Size(54, 21);
     this.textBoxMaxSources.TabIndex = 7;
     this.textBoxMaxSources.Text = "";
     this.textBoxMaxSources.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSources_KeyPress);
     this.textBoxMaxSources.TextChanged += new System.EventHandler(this.textBoxMaxSources_TextChanged);
     //
     // radioButtonSpecificMaxSources
     //
     this.radioButtonSpecificMaxSources.Location = new System.Drawing.Point(12, 45);
     this.radioButtonSpecificMaxSources.Name = "radioButtonSpecificMaxSources";
     this.radioButtonSpecificMaxSources.Size = new System.Drawing.Size(206, 15);
     this.radioButtonSpecificMaxSources.TabIndex = 1;
     this.radioButtonSpecificMaxSources.Text = "Specific value for this file:";
     this.radioButtonSpecificMaxSources.CheckedChanged += new System.EventHandler(this.radioButtonSpecificMaxSources_CheckedChanged);
     //
     // radioButtonUseGlobalMaxSources
     //
     this.radioButtonUseGlobalMaxSources.Location = new System.Drawing.Point(11, 21);
     this.radioButtonUseGlobalMaxSources.Name = "radioButtonUseGlobalMaxSources";
     this.radioButtonUseGlobalMaxSources.Size = new System.Drawing.Size(257, 15);
     this.radioButtonUseGlobalMaxSources.TabIndex = 0;
     this.radioButtonUseGlobalMaxSources.Text = "Use global preferences value";
     this.radioButtonUseGlobalMaxSources.CheckedChanged += new System.EventHandler(this.radioButtonUseGlobalMaxSources_CheckedChanged);
     //
     // textBoxCompletedAt
     //
     this.textBoxCompletedAt.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.textBoxCompletedAt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxCompletedAt.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.textBoxCompletedAt.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.textBoxCompletedAt.Location = new System.Drawing.Point(139, 84);
     this.textBoxCompletedAt.Name = "textBoxCompletedAt";
     this.textBoxCompletedAt.ReadOnly = true;
     this.textBoxCompletedAt.Size = new System.Drawing.Size(154, 19);
     this.textBoxCompletedAt.TabIndex = 27;
     this.textBoxCompletedAt.Text = "";
     //
     // labelCompletedAt
     //
     this.labelCompletedAt.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelCompletedAt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelCompletedAt.Font = new System.Drawing.Font("Tahoma", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCompletedAt.ForeColor = System.Drawing.Color.Black;
     this.labelCompletedAt.Location = new System.Drawing.Point(6, 84);
     this.labelCompletedAt.Name = "labelCompletedAt";
     this.labelCompletedAt.Size = new System.Drawing.Size(134, 19);
     this.labelCompletedAt.TabIndex = 26;
     this.labelCompletedAt.Text = "Completed at:";
     //
     // labelSessionFileRateDO
     //
     this.labelSessionFileRateDO.AutoSize = true;
     this.labelSessionFileRateDO.BackColor = System.Drawing.Color.Transparent;
     this.labelSessionFileRateDO.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelSessionFileRateDO.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelSessionFileRateDO.ForeColor = System.Drawing.Color.Green;
     this.labelSessionFileRateDO.Location = new System.Drawing.Point(140, 48);
     this.labelSessionFileRateDO.Name = "labelSessionFileRateDO";
     this.labelSessionFileRateDO.Size = new System.Drawing.Size(98, 14);
     this.labelSessionFileRateDO.TabIndex = 12;
     this.labelSessionFileRateDO.Text = "Download rate: 00.0 B";
     //
     // labelSessionFileRateUP
     //
     this.labelSessionFileRateUP.AutoSize = true;
     this.labelSessionFileRateUP.BackColor = System.Drawing.Color.Transparent;
     this.labelSessionFileRateUP.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelSessionFileRateUP.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelSessionFileRateUP.ForeColor = System.Drawing.Color.Red;
     this.labelSessionFileRateUP.Location = new System.Drawing.Point(140, 66);
     this.labelSessionFileRateUP.Name = "labelSessionFileRateUP";
     this.labelSessionFileRateUP.Size = new System.Drawing.Size(86, 14);
     this.labelSessionFileRateUP.TabIndex = 11;
     this.labelSessionFileRateUP.Text = "Upload rate: 00.0 B";
     //
     // labelSessionFileDO
     //
     this.labelSessionFileDO.AutoSize = true;
     this.labelSessionFileDO.BackColor = System.Drawing.Color.Transparent;
     this.labelSessionFileDO.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelSessionFileDO.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelSessionFileDO.ForeColor = System.Drawing.Color.Green;
     this.labelSessionFileDO.Location = new System.Drawing.Point(5, 49);
     this.labelSessionFileDO.Name = "labelSessionFileDO";
     this.labelSessionFileDO.Size = new System.Drawing.Size(90, 14);
     this.labelSessionFileDO.TabIndex = 10;
     this.labelSessionFileDO.Text = "Downloaded: 00.0 B";
     //
     // labelSessionFileUP
     //
     this.labelSessionFileUP.AutoSize = true;
     this.labelSessionFileUP.BackColor = System.Drawing.Color.Transparent;
     this.labelSessionFileUP.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.labelSessionFileUP.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelSessionFileUP.ForeColor = System.Drawing.Color.Red;
     this.labelSessionFileUP.Location = new System.Drawing.Point(5, 65);
     this.labelSessionFileUP.Name = "labelSessionFileUP";
     this.labelSessionFileUP.Size = new System.Drawing.Size(78, 14);
     this.labelSessionFileUP.TabIndex = 9;
     this.labelSessionFileUP.Text = "Uploaded: 00.0 B";
     //
     // FileInspector
     //
     this.FileInspector.BackColor = System.Drawing.Color.Gray;
     // TODO: Code generation for 'this.FileInspector.BarHeight' failed because of Exception 'Invalid Primitive Type: System.UInt16. Only CLS compliant primitive types can be used. Consider using CodeObjectCreateExpression.'.
     // TODO: Code generation for 'this.FileInspector.BarSpacing' failed because of Exception 'Invalid Primitive Type: System.UInt16. Only CLS compliant primitive types can be used. Consider using CodeObjectCreateExpression.'.
     this.FileInspector.File = null;
     this.FileInspector.ForeColor = System.Drawing.Color.Black;
     this.FileInspector.Location = new System.Drawing.Point(3, 3);
     this.FileInspector.Name = "FileInspector";
     this.FileInspector.Size = new System.Drawing.Size(286, 39);
     this.FileInspector.TabIndex = 0;
     //
     // imageListIcons
     //
     this.imageListIcons.ImageSize = new System.Drawing.Size(16, 16);
     this.imageListIcons.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListIcons.ImageStream")));
     this.imageListIcons.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tabPageLists
     //
     this.tabPageLists.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.tabPageLists.Controls.Add(this.listViewNames);
     this.tabPageLists.Controls.Add(this.buttonSetCommet);
     this.tabPageLists.Controls.Add(this.textBoxComment);
     this.tabPageLists.Controls.Add(this.label3);
     this.tabPageLists.Controls.Add(this.listViewComments);
     this.tabPageLists.Controls.Add(this.buttonRename);
     this.tabPageLists.Controls.Add(this.textBoxName);
     this.tabPageLists.Controls.Add(this.label2);
     this.tabPageLists.ImageIndex = 1;
     this.tabPageLists.ImageList = this.imageListIcons;
     this.tabPageLists.Location = new System.Drawing.Point(0, 0);
     this.tabPageLists.Name = "tabPageLists";
     this.tabPageLists.Selected = false;
     this.tabPageLists.Size = new System.Drawing.Size(702, 205);
     this.tabPageLists.TabIndex = 0;
     this.tabPageLists.Title = "Comments";
     //
     // listViewNames
     //
     this.listViewNames.AllowColumnReorder = true;
     this.listViewNames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.listViewNames.AutoArrange = false;
     this.listViewNames.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.listViewNames.DefaultCustomDraw = true;
     this.listViewNames.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.listViewNames.FullRowSelect = true;
     this.listViewNames.FullyCustomHeader = false;
     this.listViewNames.HideSelection = false;
     this.listViewNames.IncreaseHeaderHeight = 0;
     this.listViewNames.Location = new System.Drawing.Point(341, 20);
     this.listViewNames.Name = "listViewNames";
     this.listViewNames.Size = new System.Drawing.Size(353, 151);
     this.listViewNames.sortColumn = -1;
     this.listViewNames.TabIndex = 11;
     this.listViewNames.View = System.Windows.Forms.View.Details;
     this.listViewNames.SelectedIndexChanged += new System.EventHandler(this.listViewNames_SelectedIndexChanged);
     //
     // buttonSetCommet
     //
     this.buttonSetCommet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSetCommet.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonSetCommet.Location = new System.Drawing.Point(203, 176);
     this.buttonSetCommet.Name = "buttonSetCommet";
     this.buttonSetCommet.Size = new System.Drawing.Size(135, 22);
     this.buttonSetCommet.TabIndex = 7;
     this.buttonSetCommet.Text = "Set my comment";
     this.buttonSetCommet.Click += new System.EventHandler(this.buttonSetCommet_Click);
     //
     // textBoxComment
     //
     this.textBoxComment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxComment.Location = new System.Drawing.Point(7, 176);
     this.textBoxComment.Name = "textBoxComment";
     this.textBoxComment.Size = new System.Drawing.Size(194, 21);
     this.textBoxComment.TabIndex = 6;
     this.textBoxComment.Text = "";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 3);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(235, 15);
     this.label3.TabIndex = 5;
     this.label3.Text = "File comments:";
     //
     // listViewComments
     //
     this.listViewComments.AllowColumnReorder = true;
     this.listViewComments.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.listViewComments.AutoArrange = false;
     this.listViewComments.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.listViewComments.DefaultCustomDraw = true;
     this.listViewComments.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.listViewComments.FullRowSelect = true;
     this.listViewComments.FullyCustomHeader = false;
     this.listViewComments.HideSelection = false;
     this.listViewComments.IncreaseHeaderHeight = 0;
     this.listViewComments.Location = new System.Drawing.Point(6, 20);
     this.listViewComments.Name = "listViewComments";
     this.listViewComments.Size = new System.Drawing.Size(333, 150);
     this.listViewComments.sortColumn = -1;
     this.listViewComments.TabIndex = 4;
     this.listViewComments.View = System.Windows.Forms.View.Details;
     //
     // buttonRename
     //
     this.buttonRename.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRename.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonRename.Location = new System.Drawing.Point(610, 174);
     this.buttonRename.Name = "buttonRename";
     this.buttonRename.Size = new System.Drawing.Size(84, 23);
     this.buttonRename.TabIndex = 3;
     this.buttonRename.Text = "Rename";
     this.buttonRename.Click += new System.EventHandler(this.buttonRename_Click);
     //
     // textBoxName
     //
     this.textBoxName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxName.Location = new System.Drawing.Point(341, 175);
     this.textBoxName.Name = "textBoxName";
     this.textBoxName.Size = new System.Drawing.Size(267, 21);
     this.textBoxName.TabIndex = 2;
     this.textBoxName.Text = "";
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location = new System.Drawing.Point(342, 3);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(234, 15);
     this.label2.TabIndex = 1;
     this.label2.Text = "File names:";
     //
     // tabPageSources
     //
     this.tabPageSources.Controls.Add(this.sourcesList);
     this.tabPageSources.ImageIndex = 2;
     this.tabPageSources.ImageList = this.imageListIcons;
     this.tabPageSources.Location = new System.Drawing.Point(0, 0);
     this.tabPageSources.Name = "tabPageSources";
     this.tabPageSources.Selected = false;
     this.tabPageSources.Size = new System.Drawing.Size(702, 205);
     this.tabPageSources.TabIndex = 1;
     this.tabPageSources.Title = "Sources";
     //
     // sourcesList
     //
     this.sourcesList.AllowColumnReorder = true;
     this.sourcesList.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.sourcesList.AutoArrange = false;
     this.sourcesList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.sourcesList.DefaultCustomDraw = true;
     this.sourcesList.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.sourcesList.FullRowSelect = true;
     this.sourcesList.FullyCustomHeader = false;
     this.sourcesList.HideSelection = false;
     this.sourcesList.IncreaseHeaderHeight = 0;
     this.sourcesList.Location = new System.Drawing.Point(6, 7);
     this.sourcesList.Name = "sourcesList";
     this.sourcesList.Size = new System.Drawing.Size(691, 191);
     this.sourcesList.sortColumn = -1;
     this.sourcesList.TabIndex = 5;
     this.sourcesList.View = System.Windows.Forms.View.Details;
     //
     // splitter1
     //
     this.splitter1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location = new System.Drawing.Point(0, 184);
     this.splitter1.MinExtra = 10;
     this.splitter1.MinSize = 10;
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(720, 8);
     this.splitter1.TabIndex = 4;
     this.splitter1.TabStop = false;
     this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved);
     //
     // imageListMinimize
     //
     this.imageListMinimize.ImageSize = new System.Drawing.Size(34, 9);
     this.imageListMinimize.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListMinimize.ImageStream")));
     this.imageListMinimize.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormDownloads
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.ClientSize = new System.Drawing.Size(720, 440);
     this.Controls.Add(this.panel6);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "FormDownloads";
     this.Text = "FormDownloads";
     this.SizeChanged += new System.EventHandler(this.FormDownloads_SizeChanged);
     this.panel5.ResumeLayout(false);
     this.paneleLink.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     this.tabPageDetails.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.groupBoxMaxSources.ResumeLayout(false);
     this.tabPageLists.ResumeLayout(false);
     this.tabPageSources.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.DS2                     = new expense_wizardcreamovcompetenza.vistaForm();
     this.lblTitolo               = new System.Windows.Forms.Label();
     this.label2                  = new System.Windows.Forms.Label();
     this.label1                  = new System.Windows.Forms.Label();
     this.grpBilancio             = new System.Windows.Forms.GroupBox();
     this.txtDenominazioneBil     = new System.Windows.Forms.TextBox();
     this.txtBilancio             = new System.Windows.Forms.TextBox();
     this.btnBilancio             = new System.Windows.Forms.Button();
     this.btnCrea                 = new System.Windows.Forms.Button();
     this.label4                  = new System.Windows.Forms.Label();
     this.txtMovimentiSelezionati = new System.Windows.Forms.TextBox();
     this.label3                  = new System.Windows.Forms.Label();
     this.dgMovSpesa              = new System.Windows.Forms.DataGrid();
     this.btnIndietro             = new System.Windows.Forms.Button();
     this.btnAvanti               = new System.Windows.Forms.Button();
     this.btnAnnulla              = new System.Windows.Forms.Button();
     this.DS = new expense_wizardcreamovcompetenza.vistaFin();
     this.tabControllerMagic = new Crownwood.Magic.Controls.TabControl();
     this.tabCreaMov         = new Crownwood.Magic.Controls.TabPage();
     this.gboxUPB            = new System.Windows.Forms.GroupBox();
     this.txtUPB             = new System.Windows.Forms.TextBox();
     this.txtDescrUPB        = new System.Windows.Forms.TextBox();
     this.btnUPBCode         = new System.Windows.Forms.Button();
     this.tabPresentazione   = new Crownwood.Magic.Controls.TabPage();
     this.panel1             = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.DS2)).BeginInit();
     this.grpBilancio.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgMovSpesa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.tabControllerMagic.SuspendLayout();
     this.tabCreaMov.SuspendLayout();
     this.gboxUPB.SuspendLayout();
     this.tabPresentazione.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // DS2
     //
     this.DS2.DataSetName        = "VistaWizardSpesaCreaMovCompetenza";
     this.DS2.EnforceConstraints = false;
     this.DS2.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // lblTitolo
     //
     this.lblTitolo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTitolo.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitolo.Location  = new System.Drawing.Point(8, 64);
     this.lblTitolo.Name      = "lblTitolo";
     this.lblTitolo.Size      = new System.Drawing.Size(844, 23);
     this.lblTitolo.TabIndex  = 2;
     this.lblTitolo.Text      = "CREAZIONE DEI MOVIMENTI DI SPESA DELLA FASE:";
     this.lblTitolo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location  = new System.Drawing.Point(8, 40);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(844, 16);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "DI";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(8, 8);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(844, 23);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "PROCEDURA";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // grpBilancio
     //
     this.grpBilancio.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.grpBilancio.Controls.Add(this.txtDenominazioneBil);
     this.grpBilancio.Controls.Add(this.txtBilancio);
     this.grpBilancio.Controls.Add(this.btnBilancio);
     this.grpBilancio.Location = new System.Drawing.Point(384, 388);
     this.grpBilancio.Name     = "grpBilancio";
     this.grpBilancio.Size     = new System.Drawing.Size(359, 106);
     this.grpBilancio.TabIndex = 7;
     this.grpBilancio.TabStop  = false;
     this.grpBilancio.Tag      = "AutoManage.txtBilancio.treesupb.(idupb=\'0001\')";
     this.grpBilancio.Text     = "Bilancio";
     //
     // txtDenominazioneBil
     //
     this.txtDenominazioneBil.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.txtDenominazioneBil.Location   = new System.Drawing.Point(128, 12);
     this.txtDenominazioneBil.Multiline  = true;
     this.txtDenominazioneBil.Name       = "txtDenominazioneBil";
     this.txtDenominazioneBil.ReadOnly   = true;
     this.txtDenominazioneBil.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDenominazioneBil.Size       = new System.Drawing.Size(223, 57);
     this.txtDenominazioneBil.TabIndex   = 7;
     this.txtDenominazioneBil.Tag        = "finview.title";
     //
     // txtBilancio
     //
     this.txtBilancio.Location = new System.Drawing.Point(6, 78);
     this.txtBilancio.Name     = "txtBilancio";
     this.txtBilancio.Size     = new System.Drawing.Size(347, 23);
     this.txtBilancio.TabIndex = 5;
     this.txtBilancio.Tag      = "finview.codefin";
     //
     // btnBilancio
     //
     this.btnBilancio.Location = new System.Drawing.Point(6, 49);
     this.btnBilancio.Name     = "btnBilancio";
     this.btnBilancio.Size     = new System.Drawing.Size(104, 23);
     this.btnBilancio.TabIndex = 6;
     this.btnBilancio.Tag      = "manage.finview.treesupb.(idupb=\'0001\')";
     this.btnBilancio.Text     = "Codice";
     //
     // btnCrea
     //
     this.btnCrea.Location = new System.Drawing.Point(751, 427);
     this.btnCrea.Name     = "btnCrea";
     this.btnCrea.Size     = new System.Drawing.Size(75, 23);
     this.btnCrea.TabIndex = 4;
     this.btnCrea.Text     = "Crea";
     this.btnCrea.Click   += new System.EventHandler(this.btnCrea_Click);
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(836, 21);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Tenere premuto il tasto CTRL o MAIUSC e contemporaneamente cliccare con il mouse " +
                            "per selezionare più movimenti di spesa";
     //
     // txtMovimentiSelezionati
     //
     this.txtMovimentiSelezionati.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtMovimentiSelezionati.Location = new System.Drawing.Point(130, 361);
     this.txtMovimentiSelezionati.Name     = "txtMovimentiSelezionati";
     this.txtMovimentiSelezionati.ReadOnly = true;
     this.txtMovimentiSelezionati.Size     = new System.Drawing.Size(716, 23);
     this.txtMovimentiSelezionati.TabIndex = 2;
     //
     // label3
     //
     this.label3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.Location  = new System.Drawing.Point(2, 361);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(120, 23);
     this.label3.TabIndex  = 1;
     this.label3.Text      = "Movimenti Selezionati:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dgMovSpesa
     //
     this.dgMovSpesa.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.dgMovSpesa.DataMember      = "";
     this.dgMovSpesa.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgMovSpesa.Location        = new System.Drawing.Point(8, 32);
     this.dgMovSpesa.Name            = "dgMovSpesa";
     this.dgMovSpesa.Size            = new System.Drawing.Size(844, 323);
     this.dgMovSpesa.TabIndex        = 0;
     this.dgMovSpesa.Paint          += new System.Windows.Forms.PaintEventHandler(this.dgMovSpesa_Paint);
     //
     // btnIndietro
     //
     this.btnIndietro.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnIndietro.Location = new System.Drawing.Point(184, 546);
     this.btnIndietro.Name     = "btnIndietro";
     this.btnIndietro.Size     = new System.Drawing.Size(75, 23);
     this.btnIndietro.TabIndex = 1;
     this.btnIndietro.Text     = "< Indietro";
     this.btnIndietro.Click   += new System.EventHandler(this.btnIndietro_Click);
     //
     // btnAvanti
     //
     this.btnAvanti.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAvanti.Location = new System.Drawing.Point(288, 546);
     this.btnAvanti.Name     = "btnAvanti";
     this.btnAvanti.Size     = new System.Drawing.Size(75, 23);
     this.btnAvanti.TabIndex = 2;
     this.btnAvanti.Text     = "Avanti >";
     this.btnAvanti.Click   += new System.EventHandler(this.btnAvanti_Click);
     //
     // btnAnnulla
     //
     this.btnAnnulla.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAnnulla.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnAnnulla.Location     = new System.Drawing.Point(716, 546);
     this.btnAnnulla.Name         = "btnAnnulla";
     this.btnAnnulla.Size         = new System.Drawing.Size(75, 23);
     this.btnAnnulla.TabIndex     = 3;
     this.btnAnnulla.Text         = "Annulla";
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // tabControllerMagic
     //
     this.tabControllerMagic.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabControllerMagic.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControllerMagic.IDEPixelArea  = true;
     this.tabControllerMagic.Location      = new System.Drawing.Point(0, 0);
     this.tabControllerMagic.Name          = "tabControllerMagic";
     this.tabControllerMagic.SelectedIndex = 1;
     this.tabControllerMagic.SelectedTab   = this.tabCreaMov;
     this.tabControllerMagic.Size          = new System.Drawing.Size(860, 530);
     this.tabControllerMagic.TabIndex      = 4;
     this.tabControllerMagic.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPresentazione,
         this.tabCreaMov
     });
     //
     // tabCreaMov
     //
     this.tabCreaMov.Controls.Add(this.gboxUPB);
     this.tabCreaMov.Controls.Add(this.btnCrea);
     this.tabCreaMov.Controls.Add(this.grpBilancio);
     this.tabCreaMov.Controls.Add(this.txtMovimentiSelezionati);
     this.tabCreaMov.Controls.Add(this.label3);
     this.tabCreaMov.Controls.Add(this.dgMovSpesa);
     this.tabCreaMov.Controls.Add(this.label4);
     this.tabCreaMov.Location = new System.Drawing.Point(0, 0);
     this.tabCreaMov.Name     = "tabCreaMov";
     this.tabCreaMov.Size     = new System.Drawing.Size(860, 505);
     this.tabCreaMov.TabIndex = 4;
     this.tabCreaMov.Title    = "Pagina 2 di 2";
     //
     // gboxUPB
     //
     this.gboxUPB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.gboxUPB.Controls.Add(this.txtUPB);
     this.gboxUPB.Controls.Add(this.txtDescrUPB);
     this.gboxUPB.Controls.Add(this.btnUPBCode);
     this.gboxUPB.Location = new System.Drawing.Point(4, 388);
     this.gboxUPB.Name     = "gboxUPB";
     this.gboxUPB.Size     = new System.Drawing.Size(376, 104);
     this.gboxUPB.TabIndex = 8;
     this.gboxUPB.TabStop  = false;
     this.gboxUPB.Tag      = "AutoChoose.txtUPB.default.(active=\'S\')";
     //
     // txtUPB
     //
     this.txtUPB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUPB.Location = new System.Drawing.Point(8, 77);
     this.txtUPB.Name     = "txtUPB";
     this.txtUPB.Size     = new System.Drawing.Size(359, 23);
     this.txtUPB.TabIndex = 5;
     this.txtUPB.Tag      = "upb.codeupb?x";
     //
     // txtDescrUPB
     //
     this.txtDescrUPB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDescrUPB.Location  = new System.Drawing.Point(152, 9);
     this.txtDescrUPB.Multiline = true;
     this.txtDescrUPB.Name      = "txtDescrUPB";
     this.txtDescrUPB.ReadOnly  = true;
     this.txtDescrUPB.Size      = new System.Drawing.Size(215, 62);
     this.txtDescrUPB.TabIndex  = 4;
     this.txtDescrUPB.TabStop   = false;
     this.txtDescrUPB.Tag       = "upb.title";
     //
     // btnUPBCode
     //
     this.btnUPBCode.BackColor = System.Drawing.SystemColors.Control;
     this.btnUPBCode.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUPBCode.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnUPBCode.Location  = new System.Drawing.Point(8, 51);
     this.btnUPBCode.Name      = "btnUPBCode";
     this.btnUPBCode.Size      = new System.Drawing.Size(112, 20);
     this.btnUPBCode.TabIndex  = 2;
     this.btnUPBCode.TabStop   = false;
     this.btnUPBCode.Tag       = "manage.upb.tree";
     this.btnUPBCode.Text      = "UPB";
     this.btnUPBCode.UseVisualStyleBackColor = false;
     //
     // tabPresentazione
     //
     this.tabPresentazione.Controls.Add(this.label1);
     this.tabPresentazione.Controls.Add(this.label2);
     this.tabPresentazione.Controls.Add(this.lblTitolo);
     this.tabPresentazione.Location = new System.Drawing.Point(0, 0);
     this.tabPresentazione.Name     = "tabPresentazione";
     this.tabPresentazione.Selected = false;
     this.tabPresentazione.Size     = new System.Drawing.Size(860, 505);
     this.tabPresentazione.TabIndex = 3;
     this.tabPresentazione.Title    = "Pagina 1 di 2";
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.tabControllerMagic);
     this.panel1.Location = new System.Drawing.Point(8, 8);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(860, 530);
     this.panel1.TabIndex = 5;
     //
     // Frm_expense_wizardcreamovcompetenza
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(876, 576);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.btnAvanti);
     this.Controls.Add(this.btnIndietro);
     this.Controls.Add(this.btnAnnulla);
     this.Name = "Frm_expense_wizardcreamovcompetenza";
     this.Text = "frmWizardSpesaCreaMovCompetenza";
     ((System.ComponentModel.ISupportInitialize)(this.DS2)).EndInit();
     this.grpBilancio.ResumeLayout(false);
     this.grpBilancio.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgMovSpesa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.tabControllerMagic.ResumeLayout(false);
     this.tabCreaMov.ResumeLayout(false);
     this.tabCreaMov.PerformLayout();
     this.gboxUPB.ResumeLayout(false);
     this.gboxUPB.PerformLayout();
     this.tabPresentazione.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.MainTabs        = new Crownwood.Magic.Controls.TabControl();
     this.GameTab         = new Crownwood.Magic.Controls.TabPage();
     this.RenderTarget    = new System.Windows.Forms.Panel();
     this.MainMenu        = new Crownwood.Magic.Menus.MenuControl();
     this.FileMenu        = new Crownwood.Magic.Menus.MenuCommand();
     this.FileSave        = new Crownwood.Magic.Menus.MenuCommand();
     this.FileQuit        = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewMenu        = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewLog         = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewConnect     = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewWhoList     = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewSkillList   = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewChat        = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewCommand     = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewFirstPerson = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewChaseCam    = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewMiniMap     = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewOptions     = new Crownwood.Magic.Menus.MenuCommand();
     this.ViewAdmin       = new Crownwood.Magic.Menus.MenuCommand();
     this.MainStatus      = new System.Windows.Forms.StatusBar();
     this.AreaInformation = new System.Windows.Forms.StatusBarPanel();
     this.Information     = new System.Windows.Forms.StatusBarPanel();
     this.Coords          = new System.Windows.Forms.StatusBarPanel();
     this.GameTab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AreaInformation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Information)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Coords)).BeginInit();
     this.SuspendLayout();
     //
     // MainTabs
     //
     this.MainTabs.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.MainTabs.Location      = new System.Drawing.Point(2, 27);
     this.MainTabs.Name          = "MainTabs";
     this.MainTabs.SelectedIndex = 0;
     this.MainTabs.SelectedTab   = this.GameTab;
     this.MainTabs.Size          = new System.Drawing.Size(888, 715);
     this.MainTabs.TabIndex      = 0;
     this.MainTabs.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.GameTab
     });
     //
     // GameTab
     //
     this.GameTab.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.GameTab.Controls.Add(this.RenderTarget);
     this.GameTab.Location = new System.Drawing.Point(0, 0);
     this.GameTab.Name     = "GameTab";
     this.GameTab.Size     = new System.Drawing.Size(888, 690);
     this.GameTab.TabIndex = 0;
     this.GameTab.Title    = "Game";
     //
     // RenderTarget
     //
     this.RenderTarget.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.RenderTarget.Location = new System.Drawing.Point(0, 0);
     this.RenderTarget.Name     = "RenderTarget";
     this.RenderTarget.Size     = new System.Drawing.Size(782, 427);
     this.RenderTarget.TabIndex = 1;
     //
     // MainMenu
     //
     this.MainMenu.AnimateStyle       = Crownwood.Magic.Menus.Animation.System;
     this.MainMenu.AnimateTime        = 100;
     this.MainMenu.Cursor             = System.Windows.Forms.Cursors.Arrow;
     this.MainMenu.Direction          = Crownwood.Magic.Common.Direction.Horizontal;
     this.MainMenu.Dock               = System.Windows.Forms.DockStyle.Top;
     this.MainMenu.Font               = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.MainMenu.HighlightTextColor = System.Drawing.SystemColors.MenuText;
     this.MainMenu.Location           = new System.Drawing.Point(2, 2);
     this.MainMenu.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this.FileMenu,
         this.ViewMenu
     });
     this.MainMenu.Name     = "MainMenu";
     this.MainMenu.Size     = new System.Drawing.Size(888, 25);
     this.MainMenu.Style    = Crownwood.Magic.Common.VisualStyle.IDE;
     this.MainMenu.TabIndex = 0;
     this.MainMenu.TabStop  = false;
     //
     // FileMenu
     //
     this.FileMenu.Description = "The File menu";
     this.FileMenu.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this.FileSave,
         this.FileQuit
     });
     this.FileMenu.Text = "&File";
     //
     // FileSave
     //
     this.FileSave.Description = "MenuItem";
     this.FileSave.Text        = "Save";
     this.FileSave.Click      += new System.EventHandler(this.FileSave_Click);
     //
     // FileQuit
     //
     this.FileQuit.Description = "MenuItem";
     this.FileQuit.Text        = "Quit";
     this.FileQuit.Click      += new System.EventHandler(this.FileQuit_Click);
     //
     // ViewMenu
     //
     this.ViewMenu.Description = "MenuItem";
     this.ViewMenu.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this.ViewLog,
         this.ViewConnect,
         this.ViewWhoList,
         this.ViewSkillList,
         this.ViewChat,
         this.ViewCommand,
         this.ViewFirstPerson,
         this.ViewChaseCam,
         this.ViewMiniMap,
         this.ViewOptions,
         this.ViewAdmin
     });
     this.ViewMenu.Text = "&View";
     //
     // ViewLog
     //
     this.ViewLog.Description = "MenuItem";
     this.ViewLog.Text        = "Log";
     this.ViewLog.Click      += new System.EventHandler(this.ViewLog_Click);
     //
     // ViewConnect
     //
     this.ViewConnect.Description = "MenuItem";
     this.ViewConnect.Text        = "Connect";
     this.ViewConnect.Click      += new System.EventHandler(this.ViewConnect_Click);
     //
     // ViewWhoList
     //
     this.ViewWhoList.Description = "MenuItem";
     this.ViewWhoList.Text        = "Who";
     this.ViewWhoList.Click      += new System.EventHandler(this.ViewWhoList_Click);
     //
     // ViewSkillList
     //
     this.ViewSkillList.Description = "MenuItem";
     this.ViewSkillList.Text        = "Skills";
     this.ViewSkillList.Click      += new System.EventHandler(this.ViewSkillList_Click);
     //
     // ViewChat
     //
     this.ViewChat.Description = "View Chat";
     this.ViewChat.Text        = "Chat";
     this.ViewChat.Click      += new System.EventHandler(this.ViewChat_Click);
     //
     // ViewCommand
     //
     this.ViewCommand.Description = "View Command";
     this.ViewCommand.Text        = "Command";
     this.ViewCommand.Click      += new System.EventHandler(this.ViewCommand_Click);
     //
     // ViewFirstPerson
     //
     this.ViewFirstPerson.Description = "First Person Mode";
     this.ViewFirstPerson.Text        = "First Person Mode";
     this.ViewFirstPerson.Click      += new System.EventHandler(this.ViewFirstPerson_Click);
     //
     // ViewChaseCam
     //
     this.ViewChaseCam.Description = "Chase Camera";
     this.ViewChaseCam.Text        = "Chase Camera";
     this.ViewChaseCam.Click      += new System.EventHandler(this.ViewChaseCam_Click);
     //
     // ViewMiniMap
     //
     this.ViewMiniMap.Description = "MenuItem";
     this.ViewMiniMap.Text        = "Mini Map";
     this.ViewMiniMap.Click      += new System.EventHandler(this.ViewMiniMap_Click);
     //
     // ViewOptions
     //
     this.ViewOptions.Description = "Options";
     this.ViewOptions.Text        = "Options";
     this.ViewOptions.Click      += new System.EventHandler(this.ViewOptions_Click);
     //
     // ViewAdmin
     //
     this.ViewAdmin.Description = "ViewAdmin";
     this.ViewAdmin.Text        = "ViewAdmin";
     this.ViewAdmin.Click      += new System.EventHandler(this.ViewAdmin_Click);
     //
     // MainStatus
     //
     this.MainStatus.Location = new System.Drawing.Point(2, 742);
     this.MainStatus.Name     = "MainStatus";
     this.MainStatus.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.AreaInformation,
         this.Information,
         this.Coords
     });
     this.MainStatus.ShowPanels = true;
     this.MainStatus.Size       = new System.Drawing.Size(888, 40);
     this.MainStatus.TabIndex   = 1;
     //
     // AreaInformation
     //
     this.AreaInformation.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.AreaInformation.Name     = "AreaInformation";
     this.AreaInformation.Width    = 10;
     //
     // Information
     //
     this.Information.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.Information.Name     = "Information";
     this.Information.Text     = "statusBarPanel1";
     this.Information.Width    = 851;
     //
     // Coords
     //
     this.Coords.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     this.Coords.AutoSize  = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.Coords.Name      = "Coords";
     this.Coords.Width     = 10;
     //
     // Main
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.ClientSize        = new System.Drawing.Size(892, 784);
     this.Controls.Add(this.MainTabs);
     this.Controls.Add(this.MainMenu);
     this.Controls.Add(this.MainStatus);
     this.Name     = "Main";
     this.Padding  = new System.Windows.Forms.Padding(2);
     this.Text     = "";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.Main_Closing);
     this.Load    += new System.EventHandler(this.Load_Form);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Main_KeyDown);
     this.GameTab.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.AreaInformation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Information)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Coords)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #13
0
    public SampleDocking()
    {
        // Discover which docking manager to use
        if (DialogResult.Yes == MessageBox.Show("Press 'Yes' to select IDE appearance\n\n" +
                                                "Press 'No' to select Plain appearance\n",
                                                "Select Visual Style", MessageBoxButtons.YesNo))
        {
            _style = VisualStyle.IDE;
        }
        else
        {
            _style = VisualStyle.Plain;
        }

        InitializeComponent();

        // Create a strip of images by loading an embedded bitmap resource
        _internalImages = ResourceHelper.LoadBitmapStrip(this.GetType(),
                                                         "SampleDocking.SampleImages.bmp",
                                                         new Size(16, 16),
                                                         new Point(0, 0));

        BorderStyle bs = (_style == VisualStyle.Plain) ? BorderStyle.None : BorderStyle.FixedSingle;

        RichTextBox rtb1 = new RichTextBox();
        RichTextBox rtb2 = new RichTextBox();
        RichTextBox rtb3 = new RichTextBox();

        rtb1.BorderStyle = bs;
        rtb2.BorderStyle = bs;
        rtb3.BorderStyle = bs;

        _filler = new Crownwood.Magic.Controls.TabControl();
        _filler.TabPages.Add(new Crownwood.Magic.Controls.TabPage("First", rtb1));
        _filler.TabPages.Add(new Crownwood.Magic.Controls.TabPage("Second", rtb2));
        _filler.TabPages.Add(new Crownwood.Magic.Controls.TabPage("Third", rtb3));
        _filler.Appearance     = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
        _filler.Dock           = DockStyle.Fill;
        _filler.Style          = _style;
        _filler.IDEPixelBorder = true;
        Controls.Add(_filler);

        // Reduce the amount of flicker that occurs when windows are redocked within
        // the container. As this prevents unsightly backcolors being drawn in the
        // WM_ERASEBACKGROUND that seems to occur.
        SetStyle(ControlStyles.DoubleBuffer, true);
        SetStyle(ControlStyles.AllPaintingInWmPaint, true);

        // Create the object that manages the docking state
        _manager = new DockingManager(this, _style);

        // Notifications
        _manager.ContextMenu       += new DockingManager.ContextMenuHandler(OnContextMenu);
        _manager.ContentHiding     += new DockingManager.ContentHidingHandler(OnContentHiding);
        _manager.TabControlCreated += new DockingManager.TabControlCreatedHandler(OnTabControlCreated);

        // Ensure that the RichTextBox is always the innermost control
        _manager.InnerControl = _filler;

        // Create and setup the StatusBar object
        _statusBar            = new StatusBar();
        _statusBar.Dock       = DockStyle.Bottom;
        _statusBar.ShowPanels = true;

        // Create and setup a single panel for the StatusBar
        StatusBarPanel statusBarPanel = new StatusBarPanel();

        statusBarPanel.AutoSize = StatusBarPanelAutoSize.Spring;
        _statusBar.Panels.Add(statusBarPanel);
        Controls.Add(_statusBar);

        _topMenu = CreateMenus();

        // Ensure that docking occurs after the menu control and status bar controls
        _manager.OuterControl = _statusBar;

        // Setup custom config handling
        _manager.SaveCustomConfig += new DockingManager.SaveCustomConfigHandler(OnSaveConfig);
        _manager.LoadCustomConfig += new DockingManager.LoadCustomConfigHandler(OnLoadConfig);
    }
Beispiel #14
0
 protected void OnTabControlCreated(Crownwood.Magic.Controls.TabControl tabControl)
 {
     tabControl.PositionTop = !_tabsBottom;
     tabControl.Appearance  = _tabAppearance;
 }
Beispiel #15
0
 private void TabControlCreated(Crownwood.Magic.Controls.TabbedGroups tg, Crownwood.Magic.Controls.TabControl tc)
 {
     // This is where you change the tab control defaults when a new tab control is created
 }
Beispiel #16
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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(SampleForm));
     this.menuControl1  = new Crownwood.Magic.Menus.MenuControl();
     this.statusBar1    = new System.Windows.Forms.StatusBar();
     this.tabControl1   = new Crownwood.Magic.Controls.TabControl();
     this.mainTabs      = new System.Windows.Forms.ImageList(this.components);
     this.tabPage2      = new Crownwood.Magic.Controls.TabPage();
     this.tabbedGroups2 = new Crownwood.Magic.Controls.TabbedGroups();
     this.groupTabs     = new System.Windows.Forms.ImageList(this.components);
     this.tabPage1      = new Crownwood.Magic.Controls.TabPage();
     this.tabbedGroups1 = new Crownwood.Magic.Controls.TabbedGroups();
     this.tabPage3      = new Crownwood.Magic.Controls.TabPage();
     this.tabbedGroups3 = new Crownwood.Magic.Controls.TabbedGroups();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedGroups2)).BeginInit();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedGroups1)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedGroups3)).BeginInit();
     this.SuspendLayout();
     //
     // menuControl1
     //
     this.menuControl1.AnimateStyle       = Crownwood.Magic.Menus.Animation.System;
     this.menuControl1.AnimateTime        = 100;
     this.menuControl1.Cursor             = System.Windows.Forms.Cursors.Arrow;
     this.menuControl1.Direction          = Crownwood.Magic.Common.Direction.Horizontal;
     this.menuControl1.Dock               = System.Windows.Forms.DockStyle.Top;
     this.menuControl1.Font               = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.menuControl1.HighlightTextColor = System.Drawing.SystemColors.MenuText;
     this.menuControl1.Name               = "menuControl1";
     this.menuControl1.Size               = new System.Drawing.Size(512, 25);
     this.menuControl1.Style              = Crownwood.Magic.Common.VisualStyle.IDE;
     this.menuControl1.TabIndex           = 0;
     this.menuControl1.TabStop            = false;
     this.menuControl1.Text               = "menuControl1";
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 455);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(512, 22);
     this.statusBar1.TabIndex = 1;
     this.statusBar1.Text     = "statusBar1";
     //
     // tabControl1
     //
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HideTabsMode  = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControl1.ImageList     = this.mainTabs;
     this.tabControl1.Location      = new System.Drawing.Point(0, 25);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.SelectedTab   = this.tabPage1;
     this.tabControl1.Size          = new System.Drawing.Size(512, 430);
     this.tabControl1.TabIndex      = 2;
     this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPage1,
         this.tabPage2,
         this.tabPage3
     });
     //
     // mainTabs
     //
     this.mainTabs.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.mainTabs.ImageSize        = new System.Drawing.Size(16, 16);
     this.mainTabs.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("mainTabs.ImageStream")));
     this.mainTabs.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tabPage2
     //
     this.tabPage2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabbedGroups2
     });
     this.tabPage2.ImageIndex = 1;
     this.tabPage2.Name       = "tabPage2";
     this.tabPage2.Selected   = false;
     this.tabPage2.TabIndex   = 1;
     this.tabPage2.Title      = "Group2";
     //
     // tabbedGroups2
     //
     this.tabbedGroups2.ActiveLeaf         = null;
     this.tabbedGroups2.AllowDrop          = true;
     this.tabbedGroups2.AtLeastOneLeaf     = true;
     this.tabbedGroups2.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tabbedGroups2.ImageList          = this.groupTabs;
     this.tabbedGroups2.Name               = "tabbedGroups2";
     this.tabbedGroups2.ProminentLeaf      = null;
     this.tabbedGroups2.ResizeBarColor     = System.Drawing.SystemColors.Control;
     this.tabbedGroups2.Size               = new System.Drawing.Size(384, 301);
     this.tabbedGroups2.TabIndex           = 0;
     this.tabbedGroups2.TabControlCreated += new Crownwood.Magic.Controls.TabbedGroups.TabControlCreatedHandler(this.TabControlCreated);
     this.tabbedGroups2.PageSaving        += new Crownwood.Magic.Controls.TabbedGroups.PageSavingHandler(this.PageSaving);
     this.tabbedGroups2.ExternalDrop      += new Crownwood.Magic.Controls.TabbedGroups.ExternalDropHandler(this.ExternalDrop);
     this.tabbedGroups2.PageLoading       += new Crownwood.Magic.Controls.TabbedGroups.PageLoadingHandler(this.PageLoading);
     this.tabbedGroups2.GlobalLoading     += new Crownwood.Magic.Controls.TabbedGroups.GlobalLoadingHandler(this.GlobalLoading);
     this.tabbedGroups2.GlobalSaving      += new Crownwood.Magic.Controls.TabbedGroups.GlobalSavingHandler(this.GlobalSaving);
     //
     // groupTabs
     //
     this.groupTabs.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.groupTabs.ImageSize        = new System.Drawing.Size(16, 16);
     this.groupTabs.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("groupTabs.ImageStream")));
     this.groupTabs.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tabPage1
     //
     this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabbedGroups1
     });
     this.tabPage1.ImageIndex = 0;
     this.tabPage1.Name       = "tabPage1";
     this.tabPage1.TabIndex   = 0;
     this.tabPage1.Title      = "Group1";
     //
     // tabbedGroups1
     //
     this.tabbedGroups1.ActiveLeaf         = null;
     this.tabbedGroups1.AllowDrop          = true;
     this.tabbedGroups1.AtLeastOneLeaf     = true;
     this.tabbedGroups1.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tabbedGroups1.ImageList          = this.groupTabs;
     this.tabbedGroups1.Name               = "tabbedGroups1";
     this.tabbedGroups1.ProminentLeaf      = null;
     this.tabbedGroups1.ResizeBarColor     = System.Drawing.SystemColors.Control;
     this.tabbedGroups1.Size               = new System.Drawing.Size(512, 405);
     this.tabbedGroups1.TabIndex           = 0;
     this.tabbedGroups1.TabControlCreated += new Crownwood.Magic.Controls.TabbedGroups.TabControlCreatedHandler(this.TabControlCreated);
     this.tabbedGroups1.PageSaving        += new Crownwood.Magic.Controls.TabbedGroups.PageSavingHandler(this.PageSaving);
     this.tabbedGroups1.ExternalDrop      += new Crownwood.Magic.Controls.TabbedGroups.ExternalDropHandler(this.ExternalDrop);
     this.tabbedGroups1.PageLoading       += new Crownwood.Magic.Controls.TabbedGroups.PageLoadingHandler(this.PageLoading);
     this.tabbedGroups1.GlobalLoading     += new Crownwood.Magic.Controls.TabbedGroups.GlobalLoadingHandler(this.GlobalLoading);
     this.tabbedGroups1.GlobalSaving      += new Crownwood.Magic.Controls.TabbedGroups.GlobalSavingHandler(this.GlobalSaving);
     //
     // tabPage3
     //
     this.tabPage3.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabbedGroups3
     });
     this.tabPage3.ImageIndex = 2;
     this.tabPage3.Name       = "tabPage3";
     this.tabPage3.Selected   = false;
     this.tabPage3.TabIndex   = 2;
     this.tabPage3.Title      = "Group3";
     //
     // tabbedGroups3
     //
     this.tabbedGroups3.ActiveLeaf     = null;
     this.tabbedGroups3.AllowDrop      = true;
     this.tabbedGroups3.AtLeastOneLeaf = true;
     this.tabbedGroups3.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.tabbedGroups3.ImageList      = this.groupTabs;
     this.tabbedGroups3.Name           = "tabbedGroups3";
     this.tabbedGroups3.ProminentLeaf  = null;
     this.tabbedGroups3.ResizeBarColor = System.Drawing.SystemColors.Control;
     this.tabbedGroups3.Size           = new System.Drawing.Size(384, 301);
     this.tabbedGroups3.TabIndex       = 0;
     this.tabbedGroups3.PageSaving    += new Crownwood.Magic.Controls.TabbedGroups.PageSavingHandler(this.PageSaving);
     this.tabbedGroups3.ExternalDrop  += new Crownwood.Magic.Controls.TabbedGroups.ExternalDropHandler(this.ExternalDrop);
     this.tabbedGroups3.PageLoading   += new Crownwood.Magic.Controls.TabbedGroups.PageLoadingHandler(this.PageLoading);
     this.tabbedGroups3.GlobalLoading += new Crownwood.Magic.Controls.TabbedGroups.GlobalLoadingHandler(this.GlobalLoading);
     this.tabbedGroups3.GlobalSaving  += new Crownwood.Magic.Controls.TabbedGroups.GlobalSavingHandler(this.GlobalSaving);
     //
     // SampleForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(512, 477);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabControl1,
         this.menuControl1,
         this.statusBar1
     });
     this.Name = "SampleForm";
     this.Text = "Form1";
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabbedGroups2)).EndInit();
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabbedGroups1)).EndInit();
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabbedGroups3)).EndInit();
     this.ResumeLayout(false);
 }