private void InitializeComponent()
 {
     this.tabControl1 = new Crownwood.Magic.Controls.TabControl();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Appearance        = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
     this.tabControl1.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.HideTabsMode      = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControl1.IDEPixelBorder    = false;
     this.tabControl1.Location          = new System.Drawing.Point(0, 0);
     this.tabControl1.Name              = "tabControl1";
     this.tabControl1.ShowArrows        = false;
     this.tabControl1.ShowClose         = false;
     this.tabControl1.Size              = new System.Drawing.Size(1540, 680);
     this.tabControl1.TabIndex          = 1;
     this.tabControl1.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // KidsThreeToSixVisitForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(1540, 680);
     this.Controls.Add(this.tabControl1);
     this.Font  = new System.Drawing.Font("宋体", 15F);
     this.Name  = "KidsThreeToSixVisitForm";
     this.Text  = "KitsThreeToSix";
     this.Load += new System.EventHandler(this.FrmChild3_6_Load);
     this.ResumeLayout(false);
 }
Ejemplo n.º 2
0
        //---------------------------------------------------------------------------------------------------------------------
        public static void ApplyTabsControlsStates(Control controleRacine, IEnumerable <CTabControlState> states)
        {
            List <Crownwood.Magic.Controls.TabControl> lstTabs = new List <Crownwood.Magic.Controls.TabControl>();

            FillListeTabControls(controleRacine, lstTabs);

            foreach (CTabControlState state in states)
            {
                Crownwood.Magic.Controls.TabControl ctrl = lstTabs.FirstOrDefault(c => c.Name == state.NomTabControl);
                if (ctrl != null)
                {
                    int nIndex = 0;
                    foreach (Crownwood.Magic.Controls.TabPage page in new System.Collections.ArrayList(ctrl.TabPages))
                    {
                        if (page.Name == state.NomActivePage)
                        {
                            try
                            {
                                ctrl.SelectedIndex = nIndex;
                                //ctrl.SelectedTab = page;
                                //ctrl.Update();
                                ApplyTabsControlsStates(page, state.ChildTabStates);
                            }
                            catch
                            {}
                        }
                        nIndex++;
                    }
                }
            }
        }
Ejemplo n.º 3
0
 //----------------------------------------------------------------------
 public void Apply(Control racine, bool bDesignMode)
 {
     foreach (string strKey in m_setControlesMasques)
     {
         Control ctrl = FindControl(racine, strKey);
         if (ctrl != null)
         {
             Crownwood.Magic.Controls.TabPage page = ctrl as Crownwood.Magic.Controls.TabPage;
             if (page != null)
             {
                 if (!bDesignMode)
                 {
                     Crownwood.Magic.Controls.TabControl parent = ctrl.Parent as Crownwood.Magic.Controls.TabControl;
                     if (parent != null && parent.TabPages.Contains(page))
                     {
                         parent.TabPages.Remove(page);
                     }
                 }
                 else
                 {
                     page.Icon = Properties.Resources.Delete;
                 }
             }
             else
             {
                 ctrl.Visible = false;
             }
         }
     }
 }
Ejemplo n.º 4
0
 private void TabController_DoubleClickTab(TabControl sender, TabPage page)
 {
     _firstClickTicks = 0;
     if (Settings.Default.DoubleClickOnTabClosesIt)
     {
         CloseConnectionTab();
     }
 }
Ejemplo n.º 5
0
        public MediaPortalEditor()
        {
            InitializeComponent();
            Text = "MediaPortalEditor";

            // Initialize style options
            style = VisualStyle.IDE;
            SetStyle(ControlStyles.DoubleBuffer, true);
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);

            // Create the docking and tab manager
            tabManager                   = new TabControl();
            tabManager.Appearance        = TabControl.VisualAppearance.MultiDocument;
            tabManager.ClosePressed     += new EventHandler(OnDesignerClosed);
            tabManager.SelectionChanged += new EventHandler(OnDesignerIndexChanged);
            tabManager.Dock              = DockStyle.Fill;
            tabManager.Style             = style;
            tabManager.IDEPixelBorder    = true;
            tabManager.ShowClose         = false;
            tabManager.ImageList         = tabImageList;
            Controls.Add(tabManager);

            dockManager = new DockingManager(this, style);
            dockManager.InnerControl       = tabManager;
            dockManager.TabControlCreated += new DockingManager.TabControlCreatedHandler(OnTabControlCreated);
            dockManager.ContentHidden     += new DockingManager.ContentHandler(OnContentHidden);
            dockManager.ContentShown      += new DockingManager.ContentHandler(OnContentShown);

            // Create Status Bar
            statusBar = CreateStatusBar();
            dockManager.OuterControl = statusBar;

            // Create Menu and Toolbar
            topMenu = CreateTopMenu();

            // Create Skin Tree
            skinExplorer = new MpeExplorer(this);
            Content c = dockManager.Contents.Add(skinExplorer, "Explorer", serviceImageList, 0);

            dockManager.AddContentWithState(c, State.DockLeft);

            // Create Properties
            propertyManager = new MpePropertyManager(this);
            c = dockManager.Contents.Add(propertyManager, "Properties", serviceImageList, 1);
            dockManager.AddContentWithState(c, State.DockRight);

            // Create Help Manager and Browser
            helpManager = new MpeHelpManager(this);
            c           = dockManager.Contents.Add(helpManager, "Help", serviceImageList, 2);
            dockManager.AddContentWithState(c, State.DockBottom);
            helpBrowser = new MpeHelpBrowser(this);

            // Setup Tab Designers
            selectedDesignerIndex = -1;

            // Static Self Reference
            self = this;
        }
        public void DisplayMenu(Crownwood.Magic.Controls.TabControl tabControl, MenuCommand topItem, MenuEntity menu)
        {
            MenuCommand childItem = new MenuCommand(menu.Text);

            if (menu.Children.Count == 0)
            {
                childItem.Tag    = menu;
                childItem.Click += delegate(object sender, EventArgs e)
                {
                    MenuCommand menuItem   = sender as MenuCommand;
                    MenuEntity  menuEntity = menuItem.Tag as MenuEntity;

                    Assembly assembly;
                    Type     type;
                    object   obj;
                    string   dir = System.AppDomain.CurrentDomain.BaseDirectory;
                    //Create assembly
                    assembly = Assembly.LoadFile(dir + menuEntity.DllName);
                    //Get type
                    type = assembly.GetType(menuEntity.ClassName);
                    //Create instance
                    obj = assembly.CreateInstance(menuEntity.ClassName);
                    //Get method info
                    MethodInfo method = type.GetMethod(menuEntity.Method);
                    //Invoke method.
                    try
                    {
                        if (menu.TabContained)
                        {
                            Form subForm = method.Invoke(obj, new Form[] { new Form() }) as Form;
                            if (subForm != null)
                            {
                                if (tabControl.TabPages[menu.TabText] == null)
                                {
                                    tabControl.TabPages.Add(new Crownwood.Magic.Controls.TabPage(menu.TabText, subForm));
                                }
                                tabControl.TabPages[menu.TabText].Selected = true;
                            }
                        }
                        else
                        {
                            method.Invoke(obj, new Form[] { new Form() });
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.Message);
                    }
                };
            }
            topItem.MenuCommands.Add(childItem);

            foreach (MenuEntity nextMenu in menu.Children)
            {
                DisplayMenu(tabControl, childItem, nextMenu);
            }
        }
Ejemplo n.º 7
0
        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);
        }
Ejemplo n.º 8
0
        private void InitDockingWindows()
        {
            dockingManager = new DockingManager(this, VisualStyle.IDE);

            //Add the tab control first.
            tabControl = new Crownwood.Magic.Controls.TabControl();
            Panel welcomePanel  = new Panel();
            Panel welcomePanel2 = new Panel();

            welcomePanel.Dock = DockStyle.Fill;

            Crownwood.Magic.Controls.TabPage welcomePage = new Crownwood.Magic.Controls.TabPage("Welcome", welcomePanel);
            tabControl.TabPages.Add(welcomePage);
            tabControl.Appearance    = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
            tabControl.Dock          = DockStyle.Fill;
            tabControl.ClosePressed += new EventHandler(DoTabControlClosePressed);
            Controls.Add(tabControl);

            //Add Message form
            messageForm = new MessagesForm();
            Content       messageContent       = dockingManager.Contents.Add(messageForm, "System Messages");
            WindowContent messageWindowContent = dockingManager.AddContentWithState(messageContent, State.DockBottom) as WindowContent;

            //Add Menus
            topMenu = CreateMenus();
            Controls.Add(topMenu);

            //Add status bar
            statusBar            = new StatusBar();
            statusBar.Dock       = DockStyle.Bottom;
            statusBar.ShowPanels = true;

            StatusBarPanel statusBarPanel = new StatusBarPanel();

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

            dockingManager.InnerControl = tabControl;
            dockingManager.OuterControl = statusBar;
        }
Ejemplo n.º 9
0
        public PhoenixTabControl()
        {
            tabList = new List<TabPageInfo>();
            hiddenTabList = new List<string>();

            Config.Profile.InternalSettings.Loaded += new EventHandler(Settings_Loaded);
            Config.Profile.InternalSettings.Saving += new EventHandler(Settings_Saving);

            tabControl = new Crownwood.Magic.Controls.TabControl();
            tabControl.Style = Crownwood.Magic.Common.VisualStyle.IDE;
            tabControl.Appearance = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
            tabControl.IDEPixelArea = false;
            tabControl.IDEPixelBorder = false;
            tabControl.Dock = DockStyle.Fill;
            tabControl.ClosePressed += new EventHandler(tabControl_ClosePressed);

            popupMenu = new PopupMenu();
            popupMenu.Animate = Animate.System;
            popupMenu.AnimateStyle = Animation.Blend;
            popupMenu.Style = Crownwood.Magic.Common.VisualStyle.IDE;

            shrinkMenuCommand = new MenuCommand("Shrink Labels");
            shrinkMenuCommand.Click += new EventHandler(shrinkMenuCommand_Click);

            multilineMenuCommand = new MenuCommand("Multiline");
            multilineMenuCommand.Click += new EventHandler(multilineMenuCommand_Click);

            hideTextMenuCommand = new MenuCommand("Hide Text");
            hideTextMenuCommand.Click += new EventHandler(hideTextMenuCommand_Click);

            tabControl.ContextPopupMenu = popupMenu;

            Controls.Add(tabControl);

            UpdateTabs();
        }
        private void InitDockingWindows()
        {
            dockingManager = new DockingManager(this, VisualStyle.IDE);

            dockingManager.InnerControl = firstControl;

            //Add message windows
            MessagesForm  messageForm          = new MessagesForm();
            Content       messageContent       = dockingManager.Contents.Add(messageForm, "System Messages");
            WindowContent messageWindowContent = dockingManager.AddContentWithState(messageContent, State.DockBottom) as WindowContent;


            //Set main windows

            Panel welcomePanel = new Panel();

            tabControl = new Crownwood.Magic.Controls.TabControl();
            tabControl.TabPages.Add(new Crownwood.Magic.Controls.TabPage("First", welcomePanel));
            tabControl.TabPages.Add(new Crownwood.Magic.Controls.TabPage("Third", new MessagesForm()));
            tabControl.Appearance     = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
            tabControl.Dock           = DockStyle.Fill;
            tabControl.IDEPixelBorder = true;

            //tabControl. SuspendLayout();
            Controls.Add(tabControl);

            //Set the region for docking.
            //RichTextBox filler = new RichTextBox();
            //filler. Dock = DockStyle. Fill;

            StatusBar status = new StatusBar();

            status.Dock = DockStyle.Bottom;

            dockingManager.OuterControl = status;
        }
Ejemplo n.º 11
0
        public PhoenixTabControl()
        {
            tabList       = new List <TabPageInfo>();
            hiddenTabList = new List <string>();

            Config.Profile.InternalSettings.Loaded += new EventHandler(Settings_Loaded);
            Config.Profile.InternalSettings.Saving += new EventHandler(Settings_Saving);

            tabControl                = new Crownwood.Magic.Controls.TabControl();
            tabControl.Style          = Crownwood.Magic.Common.VisualStyle.IDE;
            tabControl.Appearance     = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
            tabControl.IDEPixelArea   = false;
            tabControl.IDEPixelBorder = false;
            tabControl.Dock           = DockStyle.Fill;
            tabControl.ClosePressed  += new EventHandler(tabControl_ClosePressed);

            popupMenu              = new PopupMenu();
            popupMenu.Animate      = Animate.System;
            popupMenu.AnimateStyle = Animation.Blend;
            popupMenu.Style        = Crownwood.Magic.Common.VisualStyle.IDE;

            shrinkMenuCommand        = new MenuCommand("Shrink Labels");
            shrinkMenuCommand.Click += new EventHandler(shrinkMenuCommand_Click);

            multilineMenuCommand        = new MenuCommand("Multiline");
            multilineMenuCommand.Click += new EventHandler(multilineMenuCommand_Click);

            hideTextMenuCommand        = new MenuCommand("Hide Text");
            hideTextMenuCommand.Click += new EventHandler(hideTextMenuCommand_Click);

            tabControl.ContextPopupMenu = popupMenu;

            Controls.Add(tabControl);

            UpdateTabs();
        }
        //----------------------------------------------------------------------
        private void m_btnFullScreen_Click(object sender, EventArgs e)
        {
            if (m_pageZoom == null)
            {
                Crownwood.Magic.Controls.TabPage page = m_tabControl.SelectedTab;
                if (page != null)
                {
                    Crownwood.Magic.Controls.TabControl otherTab = null;
                    //Vérifie s'il y a un seul control qui est un tab control
                    //(mais il y a aussi le bouton FullScreen c'est pourquoi
                    //il faut balayer)
                    foreach (Control child in page.Controls)
                    {
                        if (child is Crownwood.Magic.Controls.TabControl)
                        {
                            otherTab = child as Crownwood.Magic.Controls.TabControl;
                        }
                        else if (child == m_btnFullScreen)
                        {
                            continue;
                        }
                        else if (otherTab != null)
                        {
                            otherTab = null;
                            break;
                        }
                    }
                    if (otherTab != null && otherTab.SelectedTab != null)
                    {
                        page = otherTab.SelectedTab;
                    }
                }

                ShowFullScreen(page);
            }
        }
Ejemplo n.º 13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.menuItem1 = new System.Windows.Forms.MenuItem();
     this._menuMain = new Crownwood.Magic.Menus.MenuControl();
     this._menuFile = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdNew = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdOpen = new Crownwood.Magic.Menus.MenuCommand();
     this._sep1 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdSave = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdSaveAll = new Crownwood.Magic.Menus.MenuCommand();
     this._sep2 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdExit = new Crownwood.Magic.Menus.MenuCommand();
     this._menuEdit = new Crownwood.Magic.Menus.MenuCommand();
     this._menuProject = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRun = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectStop = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectOptions = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommand5 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRunViewMessages = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRunCopy = new Crownwood.Magic.Menus.MenuCommand();
     this._menuView = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectView = new Crownwood.Magic.Menus.MenuCommand();
     this._menuHelp = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdHelpAbout = new Crownwood.Magic.Menus.MenuCommand();
     this._tcProfilers = new Crownwood.Magic.Controls.TabControl();
     this._sbStatusBar = new System.Windows.Forms.StatusBar();
     this._sbpMessage = new System.Windows.Forms.StatusBarPanel();
     this.menuCommand1 = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommand2 = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommand3 = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommand4 = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommand6 = new Crownwood.Magic.Menus.MenuCommand();
     ((System.ComponentModel.ISupportInitialize)(this._sbpMessage)).BeginInit();
     this.SuspendLayout();
     //
     // menuItem1
     //
     this.menuItem1.Index = -1;
     this.menuItem1.Text = "Close Tab";
     //
     // _menuMain
     //
     this._menuMain.AnimateStyle = Crownwood.Magic.Menus.Animation.System;
     this._menuMain.AnimateTime = 100;
     this._menuMain.Cursor = System.Windows.Forms.Cursors.Arrow;
     this._menuMain.Direction = Crownwood.Magic.Common.Direction.Horizontal;
     this._menuMain.Dock = System.Windows.Forms.DockStyle.Top;
     this._menuMain.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((System.Byte)(0)));
     this._menuMain.HighlightTextColor = System.Drawing.SystemColors.MenuText;
     this._menuMain.Location = new System.Drawing.Point(0, 0);
     this._menuMain.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._menuFile,
                                                                                      this._menuEdit,
                                                                                      this._menuProject,
                                                                                      this._menuView,
                                                                                      this._menuHelp});
     this._menuMain.Name = "_menuMain";
     this._menuMain.Size = new System.Drawing.Size(920, 25);
     this._menuMain.Style = Crownwood.Magic.Common.VisualStyle.IDE;
     this._menuMain.TabIndex = 0;
     this._menuMain.TabStop = false;
     this._menuMain.Text = "menuControl1";
     //
     // _menuFile
     //
     this._menuFile.Description = "File";
     this._menuFile.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._cmdNew,
                                                                                      this._cmdOpen,
                                                                                      this._sep1,
                                                                                      this._cmdSave,
                                                                                      this._cmdSaveAll,
                                                                                      this._sep2,
                                                                                      this._cmdExit});
     this._menuFile.Text = "&File";
     //
     // _cmdNew
     //
     this._cmdNew.Description = "New Profiler Project";
     this._cmdNew.Text = "New...";
     this._cmdNew.Click += new System.EventHandler(this._cmdNew_Click);
     //
     // _cmdOpen
     //
     this._cmdOpen.Description = "Open a profile project";
     this._cmdOpen.Enabled = false;
     this._cmdOpen.Text = "Open";
     //
     // _sep1
     //
     this._sep1.Description = "MenuItem";
     this._sep1.Text = "-";
     //
     // _cmdSave
     //
     this._cmdSave.Description = "Save the active profiler project";
     this._cmdSave.Enabled = false;
     this._cmdSave.Text = "Save";
     //
     // _cmdSaveAll
     //
     this._cmdSaveAll.Description = "Save all open profiler projects";
     this._cmdSaveAll.Enabled = false;
     this._cmdSaveAll.Text = "Save All";
     //
     // _sep2
     //
     this._sep2.Description = "MenuItem";
     this._sep2.Text = "-";
     //
     // _cmdExit
     //
     this._cmdExit.Description = "Exit the application";
     this._cmdExit.Text = "E&xit";
     this._cmdExit.Click += new System.EventHandler(this._cmdExit_Click);
     //
     // _menuEdit
     //
     this._menuEdit.Description = "Edit";
     this._menuEdit.Enabled = false;
     this._menuEdit.Text = "&Edit";
     //
     // _menuProject
     //
     this._menuProject.Description = "Project commands";
     this._menuProject.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                         this._cmdProjectRun,
                                                                                         this._cmdProjectStop,
                                                                                         this._cmdProjectOptions,
                                                                                         this.menuCommand5,
                                                                                         this._cmdProjectRunViewMessages,
                                                                                         this._cmdProjectRunCopy});
     this._menuProject.Text = "&Project";
     //
     // _cmdProjectRun
     //
     this._cmdProjectRun.Description = "Run the current project";
     this._cmdProjectRun.Text = "Start project run";
     this._cmdProjectRun.Click += new System.EventHandler(this._cmdProjectRun_Click);
     this._cmdProjectRun.Update += new System.EventHandler(this.UpdateProjectItems);
     //
     // _cmdProjectStop
     //
     this._cmdProjectStop.Description = "Stop the running project";
     this._cmdProjectStop.Text = "Stop project run";
     //
     // _cmdProjectOptions
     //
     this._cmdProjectOptions.Description = "Modify the options for this project";
     this._cmdProjectOptions.Text = "Options...";
     this._cmdProjectOptions.Click += new System.EventHandler(this._cmdProjectOptions_Click);
     this._cmdProjectOptions.Update += new System.EventHandler(this.UpdateProjectItems);
     //
     // menuCommand5
     //
     this.menuCommand5.Description = "-";
     this.menuCommand5.Text = "-";
     //
     // _cmdProjectRunViewMessages
     //
     this._cmdProjectRunViewMessages.Description = "View the Messages from the current profiler run...";
     this._cmdProjectRunViewMessages.Text = "View Run Messages...";
     this._cmdProjectRunViewMessages.Click += new System.EventHandler(this._cmdProjectRunViewMessages_Click);
     //
     // _cmdProjectRunCopy
     //
     this._cmdProjectRunCopy.Description = "Copy the project run data to the clipboard";
     this._cmdProjectRunCopy.Text = "Copy Project Run Data";
     //
     // _menuView
     //
     this._menuView.Description = "View";
     this._menuView.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._cmdProjectView});
     this._menuView.Text = "&View";
     //
     // _cmdProjectView
     //
     this._cmdProjectView.Description = "Show/hide the project tab";
     this._cmdProjectView.Text = "Project tab";
     this._cmdProjectView.Click += new System.EventHandler(this._cmdProjectView_Click);
     this._cmdProjectView.Update += new System.EventHandler(this._cmdProjectView_Update);
     //
     // _menuHelp
     //
     this._menuHelp.Description = "Help";
     this._menuHelp.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._cmdHelpAbout});
     this._menuHelp.Text = "&Help";
     //
     // _cmdHelpAbout
     //
     this._cmdHelpAbout.Description = "About nprof";
     this._cmdHelpAbout.Text = "About nprof...";
     this._cmdHelpAbout.Click += new System.EventHandler(this._cmdHelpAbout_Click);
     //
     // _tcProfilers
     //
     this._tcProfilers.Dock = System.Windows.Forms.DockStyle.Fill;
     this._tcProfilers.IDEPixelArea = true;
     this._tcProfilers.Location = new System.Drawing.Point(0, 25);
     this._tcProfilers.Name = "_tcProfilers";
     this._tcProfilers.Size = new System.Drawing.Size(920, 630);
     this._tcProfilers.TabIndex = 2;
     this._tcProfilers.SelectionChanged += new System.EventHandler(this._tcProfilers_SelectionChanged);
     this._tcProfilers.ClosePressed += new System.EventHandler(this._tcProfilers_ClosePressed);
     //
     // _sbStatusBar
     //
     this._sbStatusBar.Location = new System.Drawing.Point(0, 655);
     this._sbStatusBar.Name = "_sbStatusBar";
     this._sbStatusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
                                                                                     this._sbpMessage});
     this._sbStatusBar.ShowPanels = true;
     this._sbStatusBar.Size = new System.Drawing.Size(920, 22);
     this._sbStatusBar.TabIndex = 3;
     //
     // _sbpMessage
     //
     this._sbpMessage.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this._sbpMessage.Text = "Ready.";
     this._sbpMessage.Width = 904;
     //
     // menuCommand1
     //
     this.menuCommand1.Description = "MenuItem";
     //
     // menuCommand2
     //
     this.menuCommand2.Break = true;
     this.menuCommand2.Description = "MenuItem";
     //
     // menuCommand3
     //
     this.menuCommand3.Break = true;
     this.menuCommand3.Description = "MenuItem";
     //
     // menuCommand4
     //
     this.menuCommand4.Description = "MenuItem";
     //
     // menuCommand6
     //
     this.menuCommand6.Description = "MenuItem";
     //
     // ProfilerForm
     //
     this.AllowDrop = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(920, 677);
     this.Controls.Add(this._tcProfilers);
     this.Controls.Add(this._menuMain);
     this.Controls.Add(this._sbStatusBar);
     this.Name = "ProfilerForm";
     this.Text = "nprof Profiling Application - Alpha v0.6";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.ProfilerForm_Closing);
     this.Load += new System.EventHandler(this.ProfilerForm_Load);
     this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ProfilerForm_Layout);
     this.Leave += new System.EventHandler(this.ProfilerForm_Leave);
     this.Deactivate += new System.EventHandler(this.ProfilerForm_Deactivate);
     ((System.ComponentModel.ISupportInitialize)(this._sbpMessage)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_division_default));
     this.textBox10       = new System.Windows.Forms.TextBox();
     this.textBox9        = new System.Windows.Forms.TextBox();
     this.label10         = new System.Windows.Forms.Label();
     this.textBox8        = new System.Windows.Forms.TextBox();
     this.textBox7        = new System.Windows.Forms.TextBox();
     this.label9          = new System.Windows.Forms.Label();
     this.label7          = new System.Windows.Forms.Label();
     this.txtcodice       = new System.Windows.Forms.TextBox();
     this.textBox5        = new System.Windows.Forms.TextBox();
     this.textBox4        = new System.Windows.Forms.TextBox();
     this.textBox3        = new System.Windows.Forms.TextBox();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.label1          = new System.Windows.Forms.Label();
     this.MagicTab        = new Crownwood.Magic.Controls.TabControl();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.ClassSup        = new Crownwood.Magic.Controls.TabPage();
     this.groupBox3       = new System.Windows.Forms.GroupBox();
     this.btnIndInserisci = new System.Windows.Forms.Button();
     this.btnIndModifica  = new System.Windows.Forms.Button();
     this.btnIndElimina   = new System.Windows.Forms.Button();
     this.dgrIndirizzo    = new System.Windows.Forms.DataGrid();
     this.Generalita      = new Crownwood.Magic.Controls.TabPage();
     this.pictureBox2     = new System.Windows.Forms.PictureBox();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.DS = new division_default.vistaForm();
     this.MagicTab.SuspendLayout();
     this.ClassSup.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgrIndirizzo)).BeginInit();
     this.Generalita.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.SuspendLayout();
     //
     // textBox10
     //
     this.textBox10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox10.Location = new System.Drawing.Point(104, 104);
     this.textBox10.Name     = "textBox10";
     this.textBox10.Size     = new System.Drawing.Size(416, 21);
     this.textBox10.TabIndex = 30;
     this.textBox10.Tag      = "division.address";
     //
     // textBox9
     //
     this.textBox9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox9.Location = new System.Drawing.Point(104, 136);
     this.textBox9.Name     = "textBox9";
     this.textBox9.Size     = new System.Drawing.Size(288, 21);
     this.textBox9.TabIndex = 40;
     this.textBox9.Tag      = "division.city";
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(48, 136);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(48, 16);
     this.label10.TabIndex  = 17;
     this.label10.Text      = "Comune";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(112, 264);
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new System.Drawing.Size(168, 21);
     this.textBox8.TabIndex = 100;
     this.textBox8.Tag      = "division.faxnumber";
     //
     // textBox7
     //
     this.textBox7.Location  = new System.Drawing.Point(104, 168);
     this.textBox7.MaxLength = 2;
     this.textBox7.Name      = "textBox7";
     this.textBox7.Size      = new System.Drawing.Size(56, 21);
     this.textBox7.TabIndex  = 50;
     this.textBox7.Tag       = "division.country";
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(24, 168);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(72, 16);
     this.label9.TabIndex  = 14;
     this.label9.Text      = "Provincia";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(16, 264);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(24, 16);
     this.label7.TabIndex  = 12;
     this.label7.Text      = "Fax";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtcodice
     //
     this.txtcodice.Location    = new System.Drawing.Point(72, 24);
     this.txtcodice.Name        = "txtcodice";
     this.txtcodice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtcodice.Size        = new System.Drawing.Size(72, 21);
     this.txtcodice.TabIndex    = 10;
     this.txtcodice.Tag         = "division.codedivision";
     //
     // textBox5
     //
     this.textBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox5.Location = new System.Drawing.Point(72, 56);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(464, 21);
     this.textBox5.TabIndex = 20;
     this.textBox5.Tag      = "division.description";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(48, 264);
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new System.Drawing.Size(56, 21);
     this.textBox4.TabIndex = 90;
     this.textBox4.Tag      = "division.faxprefix";
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(48, 232);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(56, 21);
     this.textBox3.TabIndex = 70;
     this.textBox3.Tag      = "division.phoneprefix";
     //
     // textBox2
     //
     this.textBox2.Location  = new System.Drawing.Point(224, 168);
     this.textBox2.MaxLength = 5;
     this.textBox2.Name      = "textBox2";
     this.textBox2.Size      = new System.Drawing.Size(56, 21);
     this.textBox2.TabIndex  = 60;
     this.textBox2.Tag       = "division.cap";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(112, 232);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(168, 21);
     this.textBox1.TabIndex = 80;
     this.textBox1.Tag      = "division.phonenumber";
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(16, 232);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(24, 16);
     this.label5.TabIndex  = 4;
     this.label5.Text      = "Tel.";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(16, 24);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(40, 16);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "Cod.";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(32, 104);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 16);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Via";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(168, 168);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(40, 16);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Cap";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(48, 16);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Nome";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // MagicTab
     //
     this.MagicTab.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.MagicTab.IDEPixelArea  = true;
     this.MagicTab.ImageList     = this.imageList1;
     this.MagicTab.Location      = new System.Drawing.Point(16, 8);
     this.MagicTab.Multiline     = true;
     this.MagicTab.Name          = "MagicTab";
     this.MagicTab.SelectedIndex = 0;
     this.MagicTab.SelectedTab   = this.Generalita;
     this.MagicTab.Size          = new System.Drawing.Size(544, 353);
     this.MagicTab.TabIndex      = 1;
     this.MagicTab.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.Generalita,
         this.ClassSup
     });
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     //
     // ClassSup
     //
     this.ClassSup.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.ClassSup.Controls.Add(this.groupBox3);
     this.ClassSup.ImageIndex = 0;
     this.ClassSup.Location   = new System.Drawing.Point(0, 0);
     this.ClassSup.Name       = "ClassSup";
     this.ClassSup.Selected   = false;
     this.ClassSup.Size       = new System.Drawing.Size(544, 328);
     this.ClassSup.TabIndex   = 1;
     this.ClassSup.Title      = "Classificazioni";
     //
     // groupBox3
     //
     this.groupBox3.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.groupBox3.Controls.Add(this.btnIndInserisci);
     this.groupBox3.Controls.Add(this.btnIndModifica);
     this.groupBox3.Controls.Add(this.btnIndElimina);
     this.groupBox3.Controls.Add(this.dgrIndirizzo);
     this.groupBox3.Location = new System.Drawing.Point(8, 8);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(528, 312);
     this.groupBox3.TabIndex = 12;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Classificazioni supplementari";
     //
     // btnIndInserisci
     //
     this.btnIndInserisci.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnIndInserisci.Location = new System.Drawing.Point(256, 25);
     this.btnIndInserisci.Name     = "btnIndInserisci";
     this.btnIndInserisci.Size     = new System.Drawing.Size(68, 22);
     this.btnIndInserisci.TabIndex = 8;
     this.btnIndInserisci.Tag      = "insert.default";
     this.btnIndInserisci.Text     = "Inserisci...";
     //
     // btnIndModifica
     //
     this.btnIndModifica.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnIndModifica.Location = new System.Drawing.Point(336, 25);
     this.btnIndModifica.Name     = "btnIndModifica";
     this.btnIndModifica.Size     = new System.Drawing.Size(69, 22);
     this.btnIndModifica.TabIndex = 9;
     this.btnIndModifica.Tag      = "edit.default";
     this.btnIndModifica.Text     = "Modifica...";
     //
     // btnIndElimina
     //
     this.btnIndElimina.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnIndElimina.Location = new System.Drawing.Point(416, 25);
     this.btnIndElimina.Name     = "btnIndElimina";
     this.btnIndElimina.Size     = new System.Drawing.Size(68, 22);
     this.btnIndElimina.TabIndex = 10;
     this.btnIndElimina.Tag      = "delete";
     this.btnIndElimina.Text     = "Elimina";
     //
     // dgrIndirizzo
     //
     this.dgrIndirizzo.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.dgrIndirizzo.DataMember      = "";
     this.dgrIndirizzo.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgrIndirizzo.Location        = new System.Drawing.Point(8, 49);
     this.dgrIndirizzo.Name            = "dgrIndirizzo";
     this.dgrIndirizzo.ReadOnly        = true;
     this.dgrIndirizzo.Size            = new System.Drawing.Size(512, 255);
     this.dgrIndirizzo.TabIndex        = 11;
     this.dgrIndirizzo.Tag             = "divisionsorting.default.default";
     //
     // Generalita
     //
     this.Generalita.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.Generalita.Controls.Add(this.pictureBox2);
     this.Generalita.Controls.Add(this.textBox10);
     this.Generalita.Controls.Add(this.label3);
     this.Generalita.Controls.Add(this.textBox4);
     this.Generalita.Controls.Add(this.txtcodice);
     this.Generalita.Controls.Add(this.textBox9);
     this.Generalita.Controls.Add(this.textBox5);
     this.Generalita.Controls.Add(this.textBox3);
     this.Generalita.Controls.Add(this.textBox2);
     this.Generalita.Controls.Add(this.textBox1);
     this.Generalita.Controls.Add(this.label5);
     this.Generalita.Controls.Add(this.label4);
     this.Generalita.Controls.Add(this.label2);
     this.Generalita.Controls.Add(this.label1);
     this.Generalita.Controls.Add(this.label10);
     this.Generalita.Controls.Add(this.textBox8);
     this.Generalita.Controls.Add(this.textBox7);
     this.Generalita.Controls.Add(this.label7);
     this.Generalita.Controls.Add(this.label9);
     this.Generalita.Controls.Add(this.groupBox1);
     this.Generalita.Controls.Add(this.groupBox2);
     this.Generalita.Location = new System.Drawing.Point(0, 0);
     this.Generalita.Name     = "Generalita";
     this.Generalita.Size     = new System.Drawing.Size(544, 328);
     this.Generalita.TabIndex = 0;
     this.Generalita.Title    = "Principale";
     //
     // pictureBox2
     //
     this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox2.Image       = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location    = new System.Drawing.Point(320, 208);
     this.pictureBox2.Name        = "pictureBox2";
     this.pictureBox2.Size        = new System.Drawing.Size(128, 104);
     this.pictureBox2.TabIndex    = 101;
     this.pictureBox2.TabStop     = false;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(8, 208);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(288, 88);
     this.groupBox1.TabIndex = 20;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Recapiti telefonici";
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.pictureBox1);
     this.groupBox2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.groupBox2.Location  = new System.Drawing.Point(8, 88);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(528, 112);
     this.groupBox2.TabIndex  = 21;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Indirizzo";
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox1.Image       = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location    = new System.Drawing.Point(408, 48);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(56, 32);
     this.pictureBox1.TabIndex    = 0;
     this.pictureBox1.TabStop     = false;
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // Frm_division_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(570, 376);
     this.Controls.Add(this.MagicTab);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MinimizeBox     = false;
     this.Name            = "Frm_division_default";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Sezione";
     this.MagicTab.ResumeLayout(false);
     this.ClassSup.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgrIndirizzo)).EndInit();
     this.Generalita.ResumeLayout(false);
     this.Generalita.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.menuItem1                  = new System.Windows.Forms.MenuItem();
     this._menuMain                  = new Crownwood.Magic.Menus.MenuControl();
     this._menuFile                  = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileNew                = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileOpen               = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileClose              = new Crownwood.Magic.Menus.MenuCommand();
     this._sep1                      = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileSave               = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileSaveAs             = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileSaveAll            = new Crownwood.Magic.Menus.MenuCommand();
     this._sep2                      = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileRecentProjects     = new Crownwood.Magic.Menus.MenuCommand();
     this._sep3                      = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileExit               = new Crownwood.Magic.Menus.MenuCommand();
     this._menuEdit                  = new Crownwood.Magic.Menus.MenuCommand();
     this._menuProject               = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRun             = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectStop            = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectOptions         = new Crownwood.Magic.Menus.MenuCommand();
     this._sep4                      = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRunViewMessages = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRunCopy         = new Crownwood.Magic.Menus.MenuCommand();
     this._menuView                  = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdViewProjectView        = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdViewNavBack            = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdViewNavForward         = new Crownwood.Magic.Menus.MenuCommand();
     this._menuHelp                  = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdHelpAbout              = new Crownwood.Magic.Menus.MenuCommand();
     this._tcProfilers               = new Crownwood.Magic.Controls.TabControl();
     this._sbStatusBar               = new System.Windows.Forms.StatusBar();
     this._sbpMessage                = new System.Windows.Forms.StatusBarPanel();
     this.commandBarManager1         = new Reflector.UserInterface.CommandBarManager();
     this.commandBar1                = new Reflector.UserInterface.CommandBar();
     ((System.ComponentModel.ISupportInitialize)(this._sbpMessage)).BeginInit();
     this.SuspendLayout();
     //
     // menuItem1
     //
     this.menuItem1.Index = -1;
     this.menuItem1.Text  = "Close Tab";
     //
     // _menuMain
     //
     this._menuMain.AnimateStyle       = Crownwood.Magic.Menus.Animation.System;
     this._menuMain.AnimateTime        = 100;
     this._menuMain.Cursor             = System.Windows.Forms.Cursors.Arrow;
     this._menuMain.Direction          = Crownwood.Magic.Common.Direction.Horizontal;
     this._menuMain.Dock               = System.Windows.Forms.DockStyle.Top;
     this._menuMain.Font               = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((System.Byte)(0)));
     this._menuMain.HighlightTextColor = System.Drawing.SystemColors.MenuText;
     this._menuMain.Location           = new System.Drawing.Point(0, 0);
     this._menuMain.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this._menuFile,
         this._menuEdit,
         this._menuProject,
         this._menuView,
         this._menuHelp
     });
     this._menuMain.Name     = "_menuMain";
     this._menuMain.Size     = new System.Drawing.Size(920, 25);
     this._menuMain.Style    = Crownwood.Magic.Common.VisualStyle.IDE;
     this._menuMain.TabIndex = 0;
     this._menuMain.TabStop  = false;
     this._menuMain.Text     = "menuControl1";
     //
     // _menuFile
     //
     this._menuFile.Description = "File";
     this._menuFile.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this._cmdFileNew,
         this._cmdFileOpen,
         this._cmdFileClose,
         this._sep1,
         this._cmdFileSave,
         this._cmdFileSaveAs,
         this._cmdFileSaveAll,
         this._sep2,
         this._cmdFileRecentProjects,
         this._sep3,
         this._cmdFileExit
     });
     this._menuFile.Text = "&File";
     //
     // _cmdFileNew
     //
     this._cmdFileNew.Description = "New Profiler Project";
     this._cmdFileNew.Shortcut    = System.Windows.Forms.Shortcut.CtrlN;
     this._cmdFileNew.Text        = "&New...";
     this._cmdFileNew.Click      += new System.EventHandler(this._cmdFileNew_Click);
     this._cmdFileNew.Update     += new System.EventHandler(this.UpdateMenuItems);
     //
     // _cmdFileOpen
     //
     this._cmdFileOpen.Description = "Open a profile project";
     this._cmdFileOpen.Text        = "&Open...";
     this._cmdFileOpen.Click      += new System.EventHandler(this._cmdFileOpen_Click);
     //
     // _cmdFileClose
     //
     this._cmdFileClose.Description = "Close the project";
     this._cmdFileClose.Text        = "&Close";
     this._cmdFileClose.Click      += new System.EventHandler(this._cmdFileClose_Click);
     //
     // _sep1
     //
     this._sep1.Description = "MenuItem";
     this._sep1.Text        = "-";
     //
     // _cmdFileSave
     //
     this._cmdFileSave.Description = "Save the active profiler project";
     this._cmdFileSave.Shortcut    = System.Windows.Forms.Shortcut.CtrlS;
     this._cmdFileSave.Text        = "&Save";
     this._cmdFileSave.Click      += new System.EventHandler(this._cmdFileSave_Click);
     //
     // _cmdFileSaveAs
     //
     this._cmdFileSaveAs.Description = "Save the active profiler project as a specified file name";
     this._cmdFileSaveAs.Text        = "Save &As...";
     this._cmdFileSaveAs.Click      += new System.EventHandler(this._cmdFileSaveAs_Click);
     //
     // _cmdFileSaveAll
     //
     this._cmdFileSaveAll.Description = "Save all open profiler projects";
     this._cmdFileSaveAll.Shortcut    = System.Windows.Forms.Shortcut.CtrlShiftS;
     this._cmdFileSaveAll.Text        = "Save A&ll";
     this._cmdFileSaveAll.Click      += new System.EventHandler(this._cmdFileSaveAll_Click);
     //
     // _sep2
     //
     this._sep2.Description = "MenuItem";
     this._sep2.Text        = "-";
     //
     // _cmdFileRecentProjects
     //
     this._cmdFileRecentProjects.Description = "Provides a list of the 10 most recently opened projects for easy access";
     this._cmdFileRecentProjects.Text        = "Recent Projects";
     //
     // _sep3
     //
     this._sep3.Description = "-";
     this._sep3.Text        = "-";
     //
     // _cmdFileExit
     //
     this._cmdFileExit.Description = "Exit the application";
     this._cmdFileExit.Shortcut    = System.Windows.Forms.Shortcut.AltF4;
     this._cmdFileExit.Text        = "E&xit";
     this._cmdFileExit.Click      += new System.EventHandler(this._cmdFileExit_Click);
     //
     // _menuEdit
     //
     this._menuEdit.Description = "Edit";
     this._menuEdit.Enabled     = false;
     this._menuEdit.Text        = "&Edit";
     //
     // _menuProject
     //
     this._menuProject.Description = "Project commands";
     this._menuProject.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this._cmdProjectRun,
         this._cmdProjectStop,
         this._cmdProjectOptions,
         this._sep4,
         this._cmdProjectRunViewMessages,
         this._cmdProjectRunCopy
     });
     this._menuProject.Text = "&Project";
     //
     // _cmdProjectRun
     //
     this._cmdProjectRun.Description = "Run the current project";
     this._cmdProjectRun.Shortcut    = System.Windows.Forms.Shortcut.F5;
     this._cmdProjectRun.Text        = "Start project run";
     this._cmdProjectRun.Click      += new System.EventHandler(this._cmdProjectRun_Click);
     this._cmdProjectRun.Update     += new System.EventHandler(this.UpdateMenuItems);
     //
     // _cmdProjectStop
     //
     this._cmdProjectStop.Description = "Stop the running project";
     this._cmdProjectStop.Text        = "Stop project run";
     //
     // _cmdProjectOptions
     //
     this._cmdProjectOptions.Description = "Modify the options for this project";
     this._cmdProjectOptions.Shortcut    = System.Windows.Forms.Shortcut.F2;
     this._cmdProjectOptions.Text        = "Options...";
     this._cmdProjectOptions.Click      += new System.EventHandler(this._cmdProjectOptions_Click);
     this._cmdProjectOptions.Update     += new System.EventHandler(this.UpdateMenuItems);
     //
     // _sep4
     //
     this._sep4.Description = "-";
     this._sep4.Text        = "-";
     //
     // _cmdProjectRunViewMessages
     //
     this._cmdProjectRunViewMessages.Description = "View the Messages from the current profiler run...";
     this._cmdProjectRunViewMessages.Text        = "View Run Messages...";
     this._cmdProjectRunViewMessages.Click      += new System.EventHandler(this._cmdProjectRunViewMessages_Click);
     //
     // _cmdProjectRunCopy
     //
     this._cmdProjectRunCopy.Description = "Copy the project run data to the clipboard";
     this._cmdProjectRunCopy.Text        = "Copy Project Run Data";
     //
     // _menuView
     //
     this._menuView.Description = "View";
     this._menuView.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this._cmdViewProjectView,
         this._cmdViewNavBack,
         this._cmdViewNavForward
     });
     this._menuView.Text = "&View";
     //
     // _cmdViewProjectView
     //
     this._cmdViewProjectView.Description = "Show/hide the project tab";
     this._cmdViewProjectView.Text        = "Project tab";
     this._cmdViewProjectView.Click      += new System.EventHandler(this._cmdViewProjectView_Click);
     this._cmdViewProjectView.Update     += new System.EventHandler(this._cmdViewProjectView_Update);
     //
     // _cmdViewNavBack
     //
     this._cmdViewNavBack.Description = "Navigate Back";
     this._cmdViewNavBack.Text        = "Back";
     this._cmdViewNavBack.Click      += new System.EventHandler(this._cmdViewNavBack_Click);
     //
     // _cmdViewNavForward
     //
     this._cmdViewNavForward.Description = "Navigate Forward";
     this._cmdViewNavForward.Text        = "Forward";
     this._cmdViewNavForward.Click      += new System.EventHandler(this._cmdViewNavForward_Click);
     //
     // _menuHelp
     //
     this._menuHelp.Description = "Help";
     this._menuHelp.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
         this._cmdHelpAbout
     });
     this._menuHelp.Text = "&Help";
     //
     // _cmdHelpAbout
     //
     this._cmdHelpAbout.Description = "About nprof";
     this._cmdHelpAbout.Text        = "About nprof...";
     this._cmdHelpAbout.Click      += new System.EventHandler(this._cmdHelpAbout_Click);
     //
     // _tcProfilers
     //
     this._tcProfilers.Dock          = System.Windows.Forms.DockStyle.Fill;
     this._tcProfilers.IDEPixelArea  = true;
     this._tcProfilers.Location      = new System.Drawing.Point(0, 26);
     this._tcProfilers.Name          = "_tcProfilers";
     this._tcProfilers.Size          = new System.Drawing.Size(920, 629);
     this._tcProfilers.TabIndex      = 2;
     this._tcProfilers.ClosePressed += new System.EventHandler(this._tcProfilers_ClosePressed);
     //
     // _sbStatusBar
     //
     this._sbStatusBar.Location = new System.Drawing.Point(0, 655);
     this._sbStatusBar.Name     = "_sbStatusBar";
     this._sbStatusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this._sbpMessage
     });
     this._sbStatusBar.ShowPanels = true;
     this._sbStatusBar.Size       = new System.Drawing.Size(920, 22);
     this._sbStatusBar.TabIndex   = 3;
     //
     // _sbpMessage
     //
     this._sbpMessage.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this._sbpMessage.Text     = "Ready.";
     this._sbpMessage.Width    = 904;
     //
     // commandBarManager1
     //
     this.commandBarManager1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.commandBarManager1.Location = new System.Drawing.Point(0, 25);
     this.commandBarManager1.Name     = "commandBarManager1";
     this.commandBarManager1.Size     = new System.Drawing.Size(920, 1);
     this.commandBarManager1.TabIndex = 3;
     this.commandBarManager1.TabStop  = false;
     this.commandBarManager1.Text     = "commandBarManager1";
     //
     // commandBar1
     //
     this.commandBar1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.commandBar1.Font     = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((System.Byte)(0)));
     this.commandBar1.Location = new System.Drawing.Point(0, 64);
     this.commandBar1.Name     = "commandBar1";
     this.commandBar1.Size     = new System.Drawing.Size(920, 64);
     this.commandBar1.Style    = Reflector.UserInterface.CommandBarStyle.ToolBar;
     this.commandBar1.TabIndex = 4;
     this.commandBar1.TabStop  = false;
     this.commandBar1.Text     = "commandBar1";
     //
     // ProfilerForm
     //
     this.AllowDrop         = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(920, 677);
     this.Controls.Add(this._tcProfilers);
     this.Controls.Add(this.commandBarManager1);
     this.Controls.Add(this._menuMain);
     this.Controls.Add(this._sbStatusBar);
     this.Name     = "ProfilerForm";
     this.Text     = "nprof Profiling Application - Alpha v0.6";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.ProfilerForm_Closing);
     this.Load    += new System.EventHandler(this.ProfilerForm_Load);
     this.Layout  += new System.Windows.Forms.LayoutEventHandler(this.ProfilerForm_Layout);
     ((System.ComponentModel.ISupportInitialize)(this._sbpMessage)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 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.label1            = new System.Windows.Forms.Label();
     this.chkIncludiAsset   = new System.Windows.Forms.CheckBox();
     this.chkIncludiAumenti = new System.Windows.Forms.CheckBox();
     this.tabController     = new Crownwood.Magic.Controls.TabControl();
     this.tabIntro          = new Crownwood.Magic.Controls.TabPage();
     this.chkReady          = new System.Windows.Forms.CheckBox();
     this.label15           = new System.Windows.Forms.Label();
     this.txtDescrizione    = new System.Windows.Forms.TextBox();
     this.label12           = new System.Windows.Forms.Label();
     this.label11           = new System.Windows.Forms.Label();
     this.label10           = new System.Windows.Forms.Label();
     this.label9            = new System.Windows.Forms.Label();
     this.label13           = new System.Windows.Forms.Label();
     this.cmbInventario     = new System.Windows.Forms.ComboBox();
     this.txt_numinv_a      = new System.Windows.Forms.TextBox();
     this.txt_numinv_da     = new System.Windows.Forms.TextBox();
     this.label5            = new System.Windows.Forms.Label();
     this.label6            = new System.Windows.Forms.Label();
     this.txt_numcarico_a   = new System.Windows.Forms.TextBox();
     this.txt_numcarico_da  = new System.Windows.Forms.TextBox();
     this.label3            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.txt_idbene_a      = new System.Windows.Forms.TextBox();
     this.txt_idbene_da     = new System.Windows.Forms.TextBox();
     this.label7            = new System.Windows.Forms.Label();
     this.label8            = new System.Windows.Forms.Label();
     this.grpUbicazione     = new System.Windows.Forms.GroupBox();
     this.txtIDUbicazione   = new System.Windows.Forms.TextBox();
     this.btnUbicazione     = new System.Windows.Forms.Button();
     this.txtDescUbicazione = new System.Windows.Forms.TextBox();
     this.txtUbicazione     = new System.Windows.Forms.TextBox();
     this.cboResponsabile   = new System.Windows.Forms.ComboBox();
     this.label2            = new System.Windows.Forms.Label();
     this.tabGrid           = new Crownwood.Magic.Controls.TabPage();
     this.btnSelezionaTutto = new System.Windows.Forms.Button();
     this.label16           = new System.Windows.Forms.Label();
     this.label14           = new System.Windows.Forms.Label();
     this.gridBeni          = new System.Windows.Forms.DataGrid();
     this.btnCancel         = new System.Windows.Forms.Button();
     this.btnNext           = new System.Windows.Forms.Button();
     this.btnBack           = new System.Windows.Forms.Button();
     this.tabController.SuspendLayout();
     this.tabIntro.SuspendLayout();
     this.grpUbicazione.SuspendLayout();
     this.tabGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridBeni)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(720, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Selezionare le condizioni per identificare i beni e/o gli aumenti valore da scari" +
                            "care (non è necessario selezionarle tutte)";
     //
     // chkIncludiAsset
     //
     this.chkIncludiAsset.Checked    = true;
     this.chkIncludiAsset.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkIncludiAsset.Location   = new System.Drawing.Point(16, 32);
     this.chkIncludiAsset.Name       = "chkIncludiAsset";
     this.chkIncludiAsset.Size       = new System.Drawing.Size(104, 16);
     this.chkIncludiAsset.TabIndex   = 1;
     this.chkIncludiAsset.Text       = "Includi cespiti";
     //
     // chkIncludiAumenti
     //
     this.chkIncludiAumenti.Checked    = true;
     this.chkIncludiAumenti.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkIncludiAumenti.Location   = new System.Drawing.Point(128, 32);
     this.chkIncludiAumenti.Name       = "chkIncludiAumenti";
     this.chkIncludiAumenti.Size       = new System.Drawing.Size(104, 16);
     this.chkIncludiAumenti.TabIndex   = 2;
     this.chkIncludiAumenti.Text       = "Includi aumenti di valore";
     //
     // tabController
     //
     this.tabController.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.tabController.IDEPixelArea  = true;
     this.tabController.Location      = new System.Drawing.Point(8, 8);
     this.tabController.Name          = "tabController";
     this.tabController.SelectedIndex = 0;
     this.tabController.SelectedTab   = this.tabIntro;
     this.tabController.Size          = new System.Drawing.Size(600, 432);
     this.tabController.TabIndex      = 3;
     this.tabController.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabIntro,
         this.tabGrid
     });
     //
     // tabIntro
     //
     this.tabIntro.Controls.Add(this.chkReady);
     this.tabIntro.Controls.Add(this.label15);
     this.tabIntro.Controls.Add(this.txtDescrizione);
     this.tabIntro.Controls.Add(this.label12);
     this.tabIntro.Controls.Add(this.label11);
     this.tabIntro.Controls.Add(this.label10);
     this.tabIntro.Controls.Add(this.label9);
     this.tabIntro.Controls.Add(this.label13);
     this.tabIntro.Controls.Add(this.cmbInventario);
     this.tabIntro.Controls.Add(this.txt_numinv_a);
     this.tabIntro.Controls.Add(this.txt_numinv_da);
     this.tabIntro.Controls.Add(this.label5);
     this.tabIntro.Controls.Add(this.label6);
     this.tabIntro.Controls.Add(this.txt_numcarico_a);
     this.tabIntro.Controls.Add(this.txt_numcarico_da);
     this.tabIntro.Controls.Add(this.label3);
     this.tabIntro.Controls.Add(this.label4);
     this.tabIntro.Controls.Add(this.txt_idbene_a);
     this.tabIntro.Controls.Add(this.txt_idbene_da);
     this.tabIntro.Controls.Add(this.label7);
     this.tabIntro.Controls.Add(this.label8);
     this.tabIntro.Controls.Add(this.grpUbicazione);
     this.tabIntro.Controls.Add(this.cboResponsabile);
     this.tabIntro.Controls.Add(this.label2);
     this.tabIntro.Controls.Add(this.chkIncludiAumenti);
     this.tabIntro.Controls.Add(this.chkIncludiAsset);
     this.tabIntro.Controls.Add(this.label1);
     this.tabIntro.Location         = new System.Drawing.Point(0, 0);
     this.tabIntro.Name             = "tabIntro";
     this.tabIntro.Size             = new System.Drawing.Size(600, 407);
     this.tabIntro.TabIndex         = 3;
     this.tabIntro.PropertyChanged += new Crownwood.Magic.Controls.TabPage.PropChangeHandler(this.tabIntro_PropertyChanged);
     //
     // chkReady
     //
     this.chkReady.AutoSize = true;
     this.chkReady.Location = new System.Drawing.Point(11, 329);
     this.chkReady.Name     = "chkReady";
     this.chkReady.Size     = new System.Drawing.Size(435, 19);
     this.chkReady.TabIndex = 47;
     this.chkReady.Text     = "Seleziona solo cespiti e aumenti di valore marcati come \"Pronti per lo scarico\"";
     this.chkReady.UseVisualStyleBackColor = true;
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(8, 366);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(576, 16);
     this.label15.TabIndex = 45;
     this.label15.Text     = "Nota: per ogni cespite saranno automaticamente scaricati tutti gli eventuali aume" +
                             "nti di valore associati.";
     //
     // txtDescrizione
     //
     this.txtDescrizione.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDescrizione.Location = new System.Drawing.Point(96, 288);
     this.txtDescrizione.Name     = "txtDescrizione";
     this.txtDescrizione.Size     = new System.Drawing.Size(488, 23);
     this.txtDescrizione.TabIndex = 44;
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(24, 231);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(176, 23);
     this.label12.TabIndex  = 43;
     this.label12.Text      = "Inventario";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label11
     //
     this.label11.Location  = new System.Drawing.Point(16, 200);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(192, 16);
     this.label11.TabIndex  = 42;
     this.label11.Text      = "Per numero carico cespite";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(16, 165);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(192, 23);
     this.label10.TabIndex  = 41;
     this.label10.Text      = "Identificativo cespite principale";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(16, 288);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(72, 16);
     this.label9.TabIndex  = 40;
     this.label9.Text      = "Descrizione";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(208, 234);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(40, 16);
     this.label13.TabIndex = 39;
     this.label13.Text     = "Tipo";
     //
     // cmbInventario
     //
     this.cmbInventario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbInventario.DisplayMember = "description";
     this.cmbInventario.Location      = new System.Drawing.Point(256, 232);
     this.cmbInventario.Name          = "cmbInventario";
     this.cmbInventario.Size          = new System.Drawing.Size(328, 23);
     this.cmbInventario.TabIndex      = 34;
     this.cmbInventario.ValueMember   = "idinventory";
     //
     // txt_numinv_a
     //
     this.txt_numinv_a.Location  = new System.Drawing.Point(368, 264);
     this.txt_numinv_a.Name      = "txt_numinv_a";
     this.txt_numinv_a.Size      = new System.Drawing.Size(56, 23);
     this.txt_numinv_a.TabIndex  = 37;
     this.txt_numinv_a.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_numinv_da
     //
     this.txt_numinv_da.Location  = new System.Drawing.Point(256, 264);
     this.txt_numinv_da.Name      = "txt_numinv_da";
     this.txt_numinv_da.Size      = new System.Drawing.Size(56, 23);
     this.txt_numinv_da.TabIndex  = 35;
     this.txt_numinv_da.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(344, 264);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(20, 16);
     this.label5.TabIndex = 38;
     this.label5.Text     = "a";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(216, 264);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(32, 16);
     this.label6.TabIndex = 36;
     this.label6.Text     = "Da";
     //
     // txt_numcarico_a
     //
     this.txt_numcarico_a.Location  = new System.Drawing.Point(368, 200);
     this.txt_numcarico_a.Name      = "txt_numcarico_a";
     this.txt_numcarico_a.Size      = new System.Drawing.Size(56, 23);
     this.txt_numcarico_a.TabIndex  = 31;
     this.txt_numcarico_a.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_numcarico_da
     //
     this.txt_numcarico_da.Location  = new System.Drawing.Point(256, 200);
     this.txt_numcarico_da.Name      = "txt_numcarico_da";
     this.txt_numcarico_da.Size      = new System.Drawing.Size(56, 23);
     this.txt_numcarico_da.TabIndex  = 29;
     this.txt_numcarico_da.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(344, 200);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(20, 16);
     this.label3.TabIndex = 33;
     this.label3.Text     = "a";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(216, 200);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(32, 16);
     this.label4.TabIndex = 30;
     this.label4.Text     = "Da";
     //
     // txt_idbene_a
     //
     this.txt_idbene_a.Location  = new System.Drawing.Point(368, 166);
     this.txt_idbene_a.Name      = "txt_idbene_a";
     this.txt_idbene_a.Size      = new System.Drawing.Size(56, 23);
     this.txt_idbene_a.TabIndex  = 26;
     this.txt_idbene_a.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_idbene_da
     //
     this.txt_idbene_da.Location  = new System.Drawing.Point(256, 166);
     this.txt_idbene_da.Name      = "txt_idbene_da";
     this.txt_idbene_da.Size      = new System.Drawing.Size(56, 23);
     this.txt_idbene_da.TabIndex  = 24;
     this.txt_idbene_da.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(344, 168);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(20, 16);
     this.label7.TabIndex = 27;
     this.label7.Text     = "a";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(216, 168);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(32, 16);
     this.label8.TabIndex = 25;
     this.label8.Text     = "Da";
     //
     // grpUbicazione
     //
     this.grpUbicazione.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.grpUbicazione.Controls.Add(this.txtIDUbicazione);
     this.grpUbicazione.Controls.Add(this.btnUbicazione);
     this.grpUbicazione.Controls.Add(this.txtDescUbicazione);
     this.grpUbicazione.Controls.Add(this.txtUbicazione);
     this.grpUbicazione.Location = new System.Drawing.Point(8, 88);
     this.grpUbicazione.Name     = "grpUbicazione";
     this.grpUbicazione.Size     = new System.Drawing.Size(576, 72);
     this.grpUbicazione.TabIndex = 12;
     this.grpUbicazione.TabStop  = false;
     this.grpUbicazione.Tag      = "AutoManage.txtUbicazione.tree";
     this.grpUbicazione.Text     = "Ubicazione";
     //
     // txtIDUbicazione
     //
     this.txtIDUbicazione.Location = new System.Drawing.Point(296, 24);
     this.txtIDUbicazione.Name     = "txtIDUbicazione";
     this.txtIDUbicazione.Size     = new System.Drawing.Size(100, 23);
     this.txtIDUbicazione.TabIndex = 9;
     this.txtIDUbicazione.Visible  = false;
     //
     // btnUbicazione
     //
     this.btnUbicazione.Location = new System.Drawing.Point(8, 16);
     this.btnUbicazione.Name     = "btnUbicazione";
     this.btnUbicazione.Size     = new System.Drawing.Size(128, 23);
     this.btnUbicazione.TabIndex = 6;
     this.btnUbicazione.TabStop  = false;
     this.btnUbicazione.Tag      = "manage.locationview.tree";
     this.btnUbicazione.Text     = "Ubicazione";
     this.btnUbicazione.Click   += new System.EventHandler(this.btnUbicazione_Click);
     //
     // txtDescUbicazione
     //
     this.txtDescUbicazione.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.txtDescUbicazione.Location  = new System.Drawing.Point(144, 21);
     this.txtDescUbicazione.Multiline = true;
     this.txtDescUbicazione.Name      = "txtDescUbicazione";
     this.txtDescUbicazione.ReadOnly  = true;
     this.txtDescUbicazione.Size      = new System.Drawing.Size(424, 48);
     this.txtDescUbicazione.TabIndex  = 8;
     this.txtDescUbicazione.TabStop   = false;
     this.txtDescUbicazione.Tag       = "locationview.description";
     //
     // txtUbicazione
     //
     this.txtUbicazione.Location = new System.Drawing.Point(8, 40);
     this.txtUbicazione.Name     = "txtUbicazione";
     this.txtUbicazione.Size     = new System.Drawing.Size(128, 23);
     this.txtUbicazione.TabIndex = 1;
     this.txtUbicazione.Tag      = "locationview.locationcode?assetview.locationcode";
     this.txtUbicazione.Leave   += new System.EventHandler(this.txtUbicazione_Leave);
     //
     // cboResponsabile
     //
     this.cboResponsabile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.cboResponsabile.Location = new System.Drawing.Point(128, 56);
     this.cboResponsabile.Name     = "cboResponsabile";
     this.cboResponsabile.Size     = new System.Drawing.Size(456, 23);
     this.cboResponsabile.TabIndex = 4;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(16, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 23);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Responsabile";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabGrid
     //
     this.tabGrid.Controls.Add(this.btnSelezionaTutto);
     this.tabGrid.Controls.Add(this.label16);
     this.tabGrid.Controls.Add(this.label14);
     this.tabGrid.Controls.Add(this.gridBeni);
     this.tabGrid.Location = new System.Drawing.Point(0, 0);
     this.tabGrid.Name     = "tabGrid";
     this.tabGrid.Selected = false;
     this.tabGrid.Size     = new System.Drawing.Size(600, 407);
     this.tabGrid.TabIndex = 4;
     //
     // btnSelezionaTutto
     //
     this.btnSelezionaTutto.Location = new System.Drawing.Point(8, 16);
     this.btnSelezionaTutto.Name     = "btnSelezionaTutto";
     this.btnSelezionaTutto.Size     = new System.Drawing.Size(88, 23);
     this.btnSelezionaTutto.TabIndex = 26;
     this.btnSelezionaTutto.Text     = "Seleziona tutto";
     this.btnSelezionaTutto.Click   += new System.EventHandler(this.btnSelezionaTutto_Click);
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(112, 16);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(456, 32);
     this.label16.TabIndex = 25;
     this.label16.Text     = "Tenere premuto il tasto CTRL o MAIUSC e contemporaneamente cliccare con il mouse " +
                             "per selezionare più cespiti da scaricare";
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(8, 48);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(192, 16);
     this.label14.TabIndex = 1;
     this.label14.Text     = "Cespiti e aumenti da da scaricare:";
     //
     // gridBeni
     //
     this.gridBeni.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.gridBeni.DataMember      = "";
     this.gridBeni.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridBeni.Location        = new System.Drawing.Point(8, 64);
     this.gridBeni.Name            = "gridBeni";
     this.gridBeni.Size            = new System.Drawing.Size(584, 336);
     this.gridBeni.TabIndex        = 0;
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(528, 456);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex     = 10;
     this.btnCancel.Text         = "Cancel";
     //
     // btnNext
     //
     this.btnNext.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.Location = new System.Drawing.Point(424, 456);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(72, 23);
     this.btnNext.TabIndex = 9;
     this.btnNext.Text     = "Avanti >";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnBack
     //
     this.btnBack.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBack.Location = new System.Drawing.Point(344, 456);
     this.btnBack.Name     = "btnBack";
     this.btnBack.Size     = new System.Drawing.Size(72, 23);
     this.btnBack.TabIndex = 8;
     this.btnBack.Text     = "< Indietro";
     this.btnBack.Click   += new System.EventHandler(this.btnBack_Click);
     //
     // FrmWizardScarico
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 485);
     this.Controls.Add(this.tabController);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.btnCancel);
     this.Name          = "FrmWizardScarico";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "FrmWizardScarico";
     this.tabController.ResumeLayout(false);
     this.tabIntro.ResumeLayout(false);
     this.tabIntro.PerformLayout();
     this.grpUbicazione.ResumeLayout(false);
     this.grpUbicazione.PerformLayout();
     this.tabGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridBeni)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 17
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(FormOptions));
     this.tabControl1 = new Crownwood.Magic.Controls.TabControl();
     this.tabPageInterface = new Crownwood.Magic.Controls.TabPage();
     this.checkBoxStartPaused = new System.Windows.Forms.CheckBox();
     this.checkBoxeLinkFromBrowserStopped = new System.Windows.Forms.CheckBox();
     this.pictureBoxPreview = new System.Windows.Forms.PictureBox();
     this.checkBoxOSig = new System.Windows.Forms.CheckBox();
     this.comboBoxLanguage = new System.Windows.Forms.ComboBox();
     this.labelLanguage = new System.Windows.Forms.Label();
     this.comboBoxSkin = new System.Windows.Forms.ComboBox();
     this.labelskin = new System.Windows.Forms.Label();
     this.buttonExplorePlayer = new System.Windows.Forms.Button();
     this.textBoxPreview = new System.Windows.Forms.TextBox();
     this.labelVideoPLayer = new System.Windows.Forms.Label();
     this.checkBoxNotifications = new System.Windows.Forms.CheckBox();
     this.checkBoxMinTray = new System.Windows.Forms.CheckBox();
     this.tabPageKernel = new Crownwood.Magic.Controls.TabPage();
     this.buttonExIncomingFolder = new System.Windows.Forms.Button();
     this.labelSharedFolder = new System.Windows.Forms.Label();
     this.textBoxIncomingFolder = new System.Windows.Forms.TextBox();
     this.groupBoxDownloadServerList = new System.Windows.Forms.GroupBox();
     this.textBoxServerMetUri = new System.Windows.Forms.TextBox();
     this.checkBoxDownloadServerMet = new System.Windows.Forms.CheckBox();
     this.groupBoxViewShared = new System.Windows.Forms.GroupBox();
     this.radioSharedNobody = new System.Windows.Forms.RadioButton();
     this.radioSharedFriends = new System.Windows.Forms.RadioButton();
     this.radioSharedAll = new System.Windows.Forms.RadioButton();
     this.buttonRemoveDown = new System.Windows.Forms.Button();
     this.listBoxDownloadsFolder = new System.Windows.Forms.ListBox();
     this.buttonRemoveTmp = new System.Windows.Forms.Button();
     this.listBoxTmpFolder = new System.Windows.Forms.ListBox();
     this.buttonExpDown = new System.Windows.Forms.Button();
     this.buttonExpTemp = new System.Windows.Forms.Button();
     this.groupBoxConnection = new System.Windows.Forms.GroupBox();
     this.checkBoxIPFilter = new System.Windows.Forms.CheckBox();
     this.checkBoxAutoConnect = new System.Windows.Forms.CheckBox();
     this.checkBoxEnableICH = new System.Windows.Forms.CheckBox();
     this.textBoxUDPPort = new System.Windows.Forms.TextBox();
     this.labelUDPPort = new System.Windows.Forms.Label();
     this.textBoxTCPPort = new System.Windows.Forms.TextBox();
     this.labelTCPPort = new System.Windows.Forms.Label();
     this.textBoxMaxSourcesPerFile = new System.Windows.Forms.TextBox();
     this.textBoxMaxConnections = new System.Windows.Forms.TextBox();
     this.textBoxMaxUpSpeed = new System.Windows.Forms.TextBox();
     this.textBoxMaxDownSpeed = new System.Windows.Forms.TextBox();
     this.labelMaxSourcesPerFile = new System.Windows.Forms.Label();
     this.labelMaxConnection = new System.Windows.Forms.Label();
     this.labelMaxUpSpeed = new System.Windows.Forms.Label();
     this.labelMaxDownSpeed = new System.Windows.Forms.Label();
     this.labelDownloadFolder = new System.Windows.Forms.Label();
     this.labelTempFolder = new System.Windows.Forms.Label();
     this.textBoxNick = new System.Windows.Forms.TextBox();
     this.labelNick = new System.Windows.Forms.Label();
     this.tabPageRemote = new Crownwood.Magic.Controls.TabPage();
     this.groupBoxRemoteClient = new System.Windows.Forms.GroupBox();
     this.textBoxRemotePassword = new System.Windows.Forms.TextBox();
     this.labelRemoteHostPassword = new System.Windows.Forms.Label();
     this.labelRemoteHostPort = new System.Windows.Forms.Label();
     this.labelRemoteHostIP = new System.Windows.Forms.Label();
     this.textBoxRemotePort = new System.Windows.Forms.TextBox();
     this.textBoxRemoteIP = new System.Windows.Forms.TextBox();
     this.radioButtonStartSelect = new System.Windows.Forms.RadioButton();
     this.radioButtonStartRemote = new System.Windows.Forms.RadioButton();
     this.radioButtonStartLocal = new System.Windows.Forms.RadioButton();
     this.groupBoxRemoteServer = new System.Windows.Forms.GroupBox();
     this.textBoxAddNewIP = new System.Windows.Forms.TextBox();
     this.buttonRemoveIP = new System.Windows.Forms.Button();
     this.buttonAddIP = new System.Windows.Forms.Button();
     this.listBoxAllowedIP = new System.Windows.Forms.ListBox();
     this.labelIPAllowed = new System.Windows.Forms.Label();
     this.labelCompressionMethod = new System.Windows.Forms.Label();
     this.comboBoxCompressionMethod = new System.Windows.Forms.ComboBox();
     this.textBoxRemoteControlPassword = new System.Windows.Forms.TextBox();
     this.labelRemoteControlPass = new System.Windows.Forms.Label();
     this.textBoxRemoteControlPort = new System.Windows.Forms.TextBox();
     this.labelRemoteControlPort = new System.Windows.Forms.Label();
     this.checkBoxRemoteControl = new System.Windows.Forms.CheckBox();
     this.buttonTakeLinks = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.buttonAccept = new System.Windows.Forms.Button();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.toolTipOptions = new System.Windows.Forms.ToolTip(this.components);
     this.tabPageInterface.SuspendLayout();
     this.tabPageKernel.SuspendLayout();
     this.groupBoxDownloadServerList.SuspendLayout();
     this.groupBoxViewShared.SuspendLayout();
     this.groupBoxConnection.SuspendLayout();
     this.tabPageRemote.SuspendLayout();
     this.groupBoxRemoteClient.SuspendLayout();
     this.groupBoxRemoteServer.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.tabControl1.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControl1.Location = new System.Drawing.Point(1, 4);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.PositionTop = true;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.SelectedTab = this.tabPageKernel;
     this.tabControl1.Size = new System.Drawing.Size(422, 394);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
                                                                                   this.tabPageKernel,
                                                                                   this.tabPageInterface,
                                                                                   this.tabPageRemote});
     this.tabControl1.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabPageInterface
     //
     this.tabPageInterface.Controls.Add(this.checkBoxStartPaused);
     this.tabPageInterface.Controls.Add(this.checkBoxeLinkFromBrowserStopped);
     this.tabPageInterface.Controls.Add(this.pictureBoxPreview);
     this.tabPageInterface.Controls.Add(this.checkBoxOSig);
     this.tabPageInterface.Controls.Add(this.comboBoxLanguage);
     this.tabPageInterface.Controls.Add(this.labelLanguage);
     this.tabPageInterface.Controls.Add(this.comboBoxSkin);
     this.tabPageInterface.Controls.Add(this.labelskin);
     this.tabPageInterface.Controls.Add(this.buttonExplorePlayer);
     this.tabPageInterface.Controls.Add(this.textBoxPreview);
     this.tabPageInterface.Controls.Add(this.labelVideoPLayer);
     this.tabPageInterface.Controls.Add(this.checkBoxNotifications);
     this.tabPageInterface.Controls.Add(this.checkBoxMinTray);
     this.tabPageInterface.Location = new System.Drawing.Point(0, 0);
     this.tabPageInterface.Name = "tabPageInterface";
     this.tabPageInterface.Selected = false;
     this.tabPageInterface.Size = new System.Drawing.Size(422, 369);
     this.tabPageInterface.TabIndex = 1;
     this.tabPageInterface.Title = "Interface";
     //
     // checkBoxStartPaused
     //
     this.checkBoxStartPaused.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxStartPaused.Location = new System.Drawing.Point(13, 162);
     this.checkBoxStartPaused.Name = "checkBoxStartPaused";
     this.checkBoxStartPaused.Size = new System.Drawing.Size(401, 20);
     this.checkBoxStartPaused.TabIndex = 31;
     this.checkBoxStartPaused.Text = "Start next stopped file when a download completes";
     //
     // checkBoxeLinkFromBrowserStopped
     //
     this.checkBoxeLinkFromBrowserStopped.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxeLinkFromBrowserStopped.Location = new System.Drawing.Point(13, 140);
     this.checkBoxeLinkFromBrowserStopped.Name = "checkBoxeLinkFromBrowserStopped";
     this.checkBoxeLinkFromBrowserStopped.Size = new System.Drawing.Size(401, 18);
     this.checkBoxeLinkFromBrowserStopped.TabIndex = 30;
     this.checkBoxeLinkFromBrowserStopped.Text = "eLinks from browser are stopped";
     //
     // pictureBoxPreview
     //
     this.pictureBoxPreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBoxPreview.Location = new System.Drawing.Point(193, 194);
     this.pictureBoxPreview.Name = "pictureBoxPreview";
     this.pictureBoxPreview.Size = new System.Drawing.Size(178, 100);
     this.pictureBoxPreview.TabIndex = 29;
     this.pictureBoxPreview.TabStop = false;
     //
     // checkBoxOSig
     //
     this.checkBoxOSig.Checked = true;
     this.checkBoxOSig.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxOSig.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxOSig.Location = new System.Drawing.Point(13, 117);
     this.checkBoxOSig.Name = "checkBoxOSig";
     this.checkBoxOSig.Size = new System.Drawing.Size(297, 18);
     this.checkBoxOSig.TabIndex = 28;
     this.checkBoxOSig.Text = "Enable Online signature";
     //
     // comboBoxLanguage
     //
     this.comboBoxLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxLanguage.Location = new System.Drawing.Point(154, 89);
     this.comboBoxLanguage.Name = "comboBoxLanguage";
     this.comboBoxLanguage.Size = new System.Drawing.Size(168, 22);
     this.comboBoxLanguage.TabIndex = 27;
     //
     // labelLanguage
     //
     this.labelLanguage.Location = new System.Drawing.Point(6, 88);
     this.labelLanguage.Name = "labelLanguage";
     this.labelLanguage.Size = new System.Drawing.Size(142, 17);
     this.labelLanguage.TabIndex = 26;
     this.labelLanguage.Text = "Language:";
     this.labelLanguage.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboBoxSkin
     //
     this.comboBoxSkin.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSkin.Items.AddRange(new object[] {
                                                       "default"});
     this.comboBoxSkin.Location = new System.Drawing.Point(61, 192);
     this.comboBoxSkin.Name = "comboBoxSkin";
     this.comboBoxSkin.Size = new System.Drawing.Size(124, 22);
     this.comboBoxSkin.TabIndex = 25;
     this.comboBoxSkin.SelectedIndexChanged += new System.EventHandler(this.comboBoxSkin_SelectedIndexChanged);
     //
     // labelskin
     //
     this.labelskin.Location = new System.Drawing.Point(3, 196);
     this.labelskin.Name = "labelskin";
     this.labelskin.Size = new System.Drawing.Size(51, 14);
     this.labelskin.TabIndex = 24;
     this.labelskin.Text = "Skin:";
     this.labelskin.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // buttonExplorePlayer
     //
     this.buttonExplorePlayer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonExplorePlayer.Location = new System.Drawing.Point(327, 60);
     this.buttonExplorePlayer.Name = "buttonExplorePlayer";
     this.buttonExplorePlayer.Size = new System.Drawing.Size(84, 24);
     this.buttonExplorePlayer.TabIndex = 23;
     this.buttonExplorePlayer.Text = "Explore...";
     this.buttonExplorePlayer.Click += new System.EventHandler(this.buttonExplorePlayer_Click);
     //
     // textBoxPreview
     //
     this.textBoxPreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxPreview.Location = new System.Drawing.Point(153, 62);
     this.textBoxPreview.Name = "textBoxPreview";
     this.textBoxPreview.Size = new System.Drawing.Size(170, 22);
     this.textBoxPreview.TabIndex = 22;
     this.textBoxPreview.Text = "";
     //
     // labelVideoPLayer
     //
     this.labelVideoPLayer.Location = new System.Drawing.Point(5, 64);
     this.labelVideoPLayer.Name = "labelVideoPLayer";
     this.labelVideoPLayer.Size = new System.Drawing.Size(144, 14);
     this.labelVideoPLayer.TabIndex = 21;
     this.labelVideoPLayer.Text = "Video player:";
     this.labelVideoPLayer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkBoxNotifications
     //
     this.checkBoxNotifications.Checked = true;
     this.checkBoxNotifications.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxNotifications.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxNotifications.Location = new System.Drawing.Point(13, 37);
     this.checkBoxNotifications.Name = "checkBoxNotifications";
     this.checkBoxNotifications.Size = new System.Drawing.Size(312, 18);
     this.checkBoxNotifications.TabIndex = 1;
     this.checkBoxNotifications.Text = "Enable notifications";
     //
     // checkBoxMinTray
     //
     this.checkBoxMinTray.Checked = true;
     this.checkBoxMinTray.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxMinTray.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxMinTray.Location = new System.Drawing.Point(13, 9);
     this.checkBoxMinTray.Name = "checkBoxMinTray";
     this.checkBoxMinTray.Size = new System.Drawing.Size(310, 18);
     this.checkBoxMinTray.TabIndex = 0;
     this.checkBoxMinTray.Text = "Minimize to tray";
     //
     // tabPageKernel
     //
     this.tabPageKernel.Controls.Add(this.buttonExIncomingFolder);
     this.tabPageKernel.Controls.Add(this.labelSharedFolder);
     this.tabPageKernel.Controls.Add(this.textBoxIncomingFolder);
     this.tabPageKernel.Controls.Add(this.groupBoxDownloadServerList);
     this.tabPageKernel.Controls.Add(this.groupBoxViewShared);
     this.tabPageKernel.Controls.Add(this.buttonRemoveDown);
     this.tabPageKernel.Controls.Add(this.listBoxDownloadsFolder);
     this.tabPageKernel.Controls.Add(this.buttonRemoveTmp);
     this.tabPageKernel.Controls.Add(this.listBoxTmpFolder);
     this.tabPageKernel.Controls.Add(this.buttonExpDown);
     this.tabPageKernel.Controls.Add(this.buttonExpTemp);
     this.tabPageKernel.Controls.Add(this.groupBoxConnection);
     this.tabPageKernel.Controls.Add(this.labelDownloadFolder);
     this.tabPageKernel.Controls.Add(this.labelTempFolder);
     this.tabPageKernel.Controls.Add(this.textBoxNick);
     this.tabPageKernel.Controls.Add(this.labelNick);
     this.tabPageKernel.Location = new System.Drawing.Point(0, 0);
     this.tabPageKernel.Name = "tabPageKernel";
     this.tabPageKernel.Size = new System.Drawing.Size(422, 369);
     this.tabPageKernel.TabIndex = 0;
     this.tabPageKernel.Title = "Kernel";
     //
     // buttonExIncomingFolder
     //
     this.buttonExIncomingFolder.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonExIncomingFolder.Location = new System.Drawing.Point(338, 220);
     this.buttonExIncomingFolder.Name = "buttonExIncomingFolder";
     this.buttonExIncomingFolder.Size = new System.Drawing.Size(74, 22);
     this.buttonExIncomingFolder.TabIndex = 30;
     this.buttonExIncomingFolder.Text = "Browse";
     this.buttonExIncomingFolder.Click += new System.EventHandler(this.buttonExIncomingFolder_Click);
     //
     // labelSharedFolder
     //
     this.labelSharedFolder.Location = new System.Drawing.Point(2, 267);
     this.labelSharedFolder.Name = "labelSharedFolder";
     this.labelSharedFolder.Size = new System.Drawing.Size(129, 14);
     this.labelSharedFolder.TabIndex = 29;
     this.labelSharedFolder.Text = "Shared folders:";
     this.labelSharedFolder.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBoxIncomingFolder
     //
     this.textBoxIncomingFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxIncomingFolder.Location = new System.Drawing.Point(134, 222);
     this.textBoxIncomingFolder.Name = "textBoxIncomingFolder";
     this.textBoxIncomingFolder.ReadOnly = true;
     this.textBoxIncomingFolder.Size = new System.Drawing.Size(200, 22);
     this.textBoxIncomingFolder.TabIndex = 28;
     this.textBoxIncomingFolder.Text = "";
     //
     // groupBoxDownloadServerList
     //
     this.groupBoxDownloadServerList.Controls.Add(this.textBoxServerMetUri);
     this.groupBoxDownloadServerList.Controls.Add(this.checkBoxDownloadServerMet);
     this.groupBoxDownloadServerList.Location = new System.Drawing.Point(232, 307);
     this.groupBoxDownloadServerList.Name = "groupBoxDownloadServerList";
     this.groupBoxDownloadServerList.Size = new System.Drawing.Size(180, 58);
     this.groupBoxDownloadServerList.TabIndex = 27;
     this.groupBoxDownloadServerList.TabStop = false;
     this.groupBoxDownloadServerList.Text = "Download server list";
     //
     // textBoxServerMetUri
     //
     this.textBoxServerMetUri.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxServerMetUri.Location = new System.Drawing.Point(35, 26);
     this.textBoxServerMetUri.Name = "textBoxServerMetUri";
     this.textBoxServerMetUri.Size = new System.Drawing.Size(136, 22);
     this.textBoxServerMetUri.TabIndex = 1;
     this.textBoxServerMetUri.Text = "";
     //
     // checkBoxDownloadServerMet
     //
     this.checkBoxDownloadServerMet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxDownloadServerMet.Location = new System.Drawing.Point(13, 30);
     this.checkBoxDownloadServerMet.Name = "checkBoxDownloadServerMet";
     this.checkBoxDownloadServerMet.Size = new System.Drawing.Size(15, 15);
     this.checkBoxDownloadServerMet.TabIndex = 0;
     //
     // groupBoxViewShared
     //
     this.groupBoxViewShared.Controls.Add(this.radioSharedNobody);
     this.groupBoxViewShared.Controls.Add(this.radioSharedFriends);
     this.groupBoxViewShared.Controls.Add(this.radioSharedAll);
     this.groupBoxViewShared.Location = new System.Drawing.Point(8, 307);
     this.groupBoxViewShared.Name = "groupBoxViewShared";
     this.groupBoxViewShared.Size = new System.Drawing.Size(216, 56);
     this.groupBoxViewShared.TabIndex = 26;
     this.groupBoxViewShared.TabStop = false;
     this.groupBoxViewShared.Text = "Allow view shared files to:";
     //
     // radioSharedNobody
     //
     this.radioSharedNobody.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.radioSharedNobody.Location = new System.Drawing.Point(140, 28);
     this.radioSharedNobody.Name = "radioSharedNobody";
     this.radioSharedNobody.Size = new System.Drawing.Size(69, 16);
     this.radioSharedNobody.TabIndex = 2;
     this.radioSharedNobody.Text = "None";
     //
     // radioSharedFriends
     //
     this.radioSharedFriends.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.radioSharedFriends.Location = new System.Drawing.Point(71, 28);
     this.radioSharedFriends.Name = "radioSharedFriends";
     this.radioSharedFriends.Size = new System.Drawing.Size(64, 17);
     this.radioSharedFriends.TabIndex = 1;
     this.radioSharedFriends.Text = "Friends";
     //
     // radioSharedAll
     //
     this.radioSharedAll.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.radioSharedAll.Location = new System.Drawing.Point(12, 27);
     this.radioSharedAll.Name = "radioSharedAll";
     this.radioSharedAll.Size = new System.Drawing.Size(56, 17);
     this.radioSharedAll.TabIndex = 0;
     this.radioSharedAll.Text = "All";
     //
     // buttonRemoveDown
     //
     this.buttonRemoveDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonRemoveDown.Location = new System.Drawing.Point(338, 278);
     this.buttonRemoveDown.Name = "buttonRemoveDown";
     this.buttonRemoveDown.Size = new System.Drawing.Size(76, 24);
     this.buttonRemoveDown.TabIndex = 25;
     this.buttonRemoveDown.Text = "Remove";
     this.buttonRemoveDown.Click += new System.EventHandler(this.buttonRemoveShared_Click);
     //
     // listBoxDownloadsFolder
     //
     this.listBoxDownloadsFolder.ItemHeight = 14;
     this.listBoxDownloadsFolder.Location = new System.Drawing.Point(134, 252);
     this.listBoxDownloadsFolder.Name = "listBoxDownloadsFolder";
     this.listBoxDownloadsFolder.Size = new System.Drawing.Size(200, 46);
     this.listBoxDownloadsFolder.TabIndex = 24;
     //
     // buttonRemoveTmp
     //
     this.buttonRemoveTmp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonRemoveTmp.Location = new System.Drawing.Point(338, 188);
     this.buttonRemoveTmp.Name = "buttonRemoveTmp";
     this.buttonRemoveTmp.Size = new System.Drawing.Size(75, 24);
     this.buttonRemoveTmp.TabIndex = 23;
     this.buttonRemoveTmp.Text = "Remove";
     this.buttonRemoveTmp.Click += new System.EventHandler(this.buttonRemoveTmp_Click);
     //
     // listBoxTmpFolder
     //
     this.listBoxTmpFolder.ItemHeight = 14;
     this.listBoxTmpFolder.Location = new System.Drawing.Point(134, 164);
     this.listBoxTmpFolder.Name = "listBoxTmpFolder";
     this.listBoxTmpFolder.Size = new System.Drawing.Size(201, 46);
     this.listBoxTmpFolder.TabIndex = 22;
     //
     // buttonExpDown
     //
     this.buttonExpDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonExpDown.Location = new System.Drawing.Point(338, 250);
     this.buttonExpDown.Name = "buttonExpDown";
     this.buttonExpDown.Size = new System.Drawing.Size(75, 24);
     this.buttonExpDown.TabIndex = 21;
     this.buttonExpDown.Text = "Add...";
     this.buttonExpDown.Click += new System.EventHandler(this.buttonExpDown_Click);
     //
     // buttonExpTemp
     //
     this.buttonExpTemp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonExpTemp.Location = new System.Drawing.Point(339, 161);
     this.buttonExpTemp.Name = "buttonExpTemp";
     this.buttonExpTemp.Size = new System.Drawing.Size(73, 24);
     this.buttonExpTemp.TabIndex = 20;
     this.buttonExpTemp.Text = "Add...";
     this.buttonExpTemp.Click += new System.EventHandler(this.buttonExpTemp_Click);
     //
     // groupBoxConnection
     //
     this.groupBoxConnection.Controls.Add(this.checkBoxIPFilter);
     this.groupBoxConnection.Controls.Add(this.checkBoxAutoConnect);
     this.groupBoxConnection.Controls.Add(this.checkBoxEnableICH);
     this.groupBoxConnection.Controls.Add(this.textBoxUDPPort);
     this.groupBoxConnection.Controls.Add(this.labelUDPPort);
     this.groupBoxConnection.Controls.Add(this.textBoxTCPPort);
     this.groupBoxConnection.Controls.Add(this.labelTCPPort);
     this.groupBoxConnection.Controls.Add(this.textBoxMaxSourcesPerFile);
     this.groupBoxConnection.Controls.Add(this.textBoxMaxConnections);
     this.groupBoxConnection.Controls.Add(this.textBoxMaxUpSpeed);
     this.groupBoxConnection.Controls.Add(this.textBoxMaxDownSpeed);
     this.groupBoxConnection.Controls.Add(this.labelMaxSourcesPerFile);
     this.groupBoxConnection.Controls.Add(this.labelMaxConnection);
     this.groupBoxConnection.Controls.Add(this.labelMaxUpSpeed);
     this.groupBoxConnection.Controls.Add(this.labelMaxDownSpeed);
     this.groupBoxConnection.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBoxConnection.Location = new System.Drawing.Point(16, 30);
     this.groupBoxConnection.Name = "groupBoxConnection";
     this.groupBoxConnection.Size = new System.Drawing.Size(397, 128);
     this.groupBoxConnection.TabIndex = 19;
     this.groupBoxConnection.TabStop = false;
     this.groupBoxConnection.Text = "Connection";
     //
     // checkBoxIPFilter
     //
     this.checkBoxIPFilter.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxIPFilter.Location = new System.Drawing.Point(226, 108);
     this.checkBoxIPFilter.Name = "checkBoxIPFilter";
     this.checkBoxIPFilter.Size = new System.Drawing.Size(156, 16);
     this.checkBoxIPFilter.TabIndex = 29;
     this.checkBoxIPFilter.Text = "Enable IP Filter";
     //
     // checkBoxAutoConnect
     //
     this.checkBoxAutoConnect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxAutoConnect.Location = new System.Drawing.Point(226, 88);
     this.checkBoxAutoConnect.Name = "checkBoxAutoConnect";
     this.checkBoxAutoConnect.Size = new System.Drawing.Size(156, 16);
     this.checkBoxAutoConnect.TabIndex = 28;
     this.checkBoxAutoConnect.Text = "Auto connect";
     //
     // checkBoxEnableICH
     //
     this.checkBoxEnableICH.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxEnableICH.Location = new System.Drawing.Point(226, 68);
     this.checkBoxEnableICH.Name = "checkBoxEnableICH";
     this.checkBoxEnableICH.Size = new System.Drawing.Size(154, 16);
     this.checkBoxEnableICH.TabIndex = 27;
     this.checkBoxEnableICH.Text = "Enable ICH";
     //
     // textBoxUDPPort
     //
     this.textBoxUDPPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxUDPPort.Location = new System.Drawing.Point(314, 45);
     this.textBoxUDPPort.MaxLength = 5;
     this.textBoxUDPPort.Name = "textBoxUDPPort";
     this.textBoxUDPPort.Size = new System.Drawing.Size(46, 22);
     this.textBoxUDPPort.TabIndex = 26;
     this.textBoxUDPPort.Text = "";
     this.textBoxUDPPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_UDPport);
     this.textBoxUDPPort.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUpCheck);
     //
     // labelUDPPort
     //
     this.labelUDPPort.Location = new System.Drawing.Point(228, 48);
     this.labelUDPPort.Name = "labelUDPPort";
     this.labelUDPPort.Size = new System.Drawing.Size(83, 14);
     this.labelUDPPort.TabIndex = 25;
     this.labelUDPPort.Text = "UDP Port:";
     this.labelUDPPort.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBoxTCPPort
     //
     this.textBoxTCPPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxTCPPort.Location = new System.Drawing.Point(314, 20);
     this.textBoxTCPPort.MaxLength = 5;
     this.textBoxTCPPort.Name = "textBoxTCPPort";
     this.textBoxTCPPort.Size = new System.Drawing.Size(46, 22);
     this.textBoxTCPPort.TabIndex = 24;
     this.textBoxTCPPort.Text = "";
     this.textBoxTCPPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_TCPport);
     this.textBoxTCPPort.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUpCheck);
     //
     // labelTCPPort
     //
     this.labelTCPPort.Location = new System.Drawing.Point(230, 22);
     this.labelTCPPort.Name = "labelTCPPort";
     this.labelTCPPort.Size = new System.Drawing.Size(81, 14);
     this.labelTCPPort.TabIndex = 23;
     this.labelTCPPort.Text = "TCP Port:";
     this.labelTCPPort.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBoxMaxSourcesPerFile
     //
     this.textBoxMaxSourcesPerFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxSourcesPerFile.Location = new System.Drawing.Point(153, 95);
     this.textBoxMaxSourcesPerFile.MaxLength = 5;
     this.textBoxMaxSourcesPerFile.Name = "textBoxMaxSourcesPerFile";
     this.textBoxMaxSourcesPerFile.Size = new System.Drawing.Size(46, 22);
     this.textBoxMaxSourcesPerFile.TabIndex = 22;
     this.textBoxMaxSourcesPerFile.Text = "";
     this.textBoxMaxSourcesPerFile.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_MaxSourcesPerFile);
     //
     // textBoxMaxConnections
     //
     this.textBoxMaxConnections.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxConnections.Location = new System.Drawing.Point(152, 69);
     this.textBoxMaxConnections.MaxLength = 5;
     this.textBoxMaxConnections.Name = "textBoxMaxConnections";
     this.textBoxMaxConnections.Size = new System.Drawing.Size(46, 22);
     this.textBoxMaxConnections.TabIndex = 21;
     this.textBoxMaxConnections.Text = "";
     this.textBoxMaxConnections.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_MaxConnections);
     //
     // textBoxMaxUpSpeed
     //
     this.textBoxMaxUpSpeed.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxUpSpeed.Location = new System.Drawing.Point(152, 45);
     this.textBoxMaxUpSpeed.MaxLength = 5;
     this.textBoxMaxUpSpeed.Name = "textBoxMaxUpSpeed";
     this.textBoxMaxUpSpeed.Size = new System.Drawing.Size(46, 22);
     this.textBoxMaxUpSpeed.TabIndex = 20;
     this.textBoxMaxUpSpeed.Text = "";
     this.textBoxMaxUpSpeed.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_MaxUpSpeed);
     //
     // textBoxMaxDownSpeed
     //
     this.textBoxMaxDownSpeed.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxDownSpeed.Location = new System.Drawing.Point(152, 19);
     this.textBoxMaxDownSpeed.MaxLength = 5;
     this.textBoxMaxDownSpeed.Name = "textBoxMaxDownSpeed";
     this.textBoxMaxDownSpeed.Size = new System.Drawing.Size(46, 22);
     this.textBoxMaxDownSpeed.TabIndex = 19;
     this.textBoxMaxDownSpeed.Text = "";
     this.textBoxMaxDownSpeed.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_MaxDownSpeed);
     //
     // labelMaxSourcesPerFile
     //
     this.labelMaxSourcesPerFile.Location = new System.Drawing.Point(8, 96);
     this.labelMaxSourcesPerFile.Name = "labelMaxSourcesPerFile";
     this.labelMaxSourcesPerFile.Size = new System.Drawing.Size(141, 14);
     this.labelMaxSourcesPerFile.TabIndex = 18;
     this.labelMaxSourcesPerFile.Text = "Max sources per file:";
     this.labelMaxSourcesPerFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelMaxConnection
     //
     this.labelMaxConnection.Location = new System.Drawing.Point(8, 72);
     this.labelMaxConnection.Name = "labelMaxConnection";
     this.labelMaxConnection.Size = new System.Drawing.Size(141, 14);
     this.labelMaxConnection.TabIndex = 17;
     this.labelMaxConnection.Text = "Max connections:";
     this.labelMaxConnection.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelMaxUpSpeed
     //
     this.labelMaxUpSpeed.Location = new System.Drawing.Point(9, 46);
     this.labelMaxUpSpeed.Name = "labelMaxUpSpeed";
     this.labelMaxUpSpeed.Size = new System.Drawing.Size(139, 14);
     this.labelMaxUpSpeed.TabIndex = 16;
     this.labelMaxUpSpeed.Text = "Max up speed:";
     this.labelMaxUpSpeed.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelMaxDownSpeed
     //
     this.labelMaxDownSpeed.Location = new System.Drawing.Point(9, 22);
     this.labelMaxDownSpeed.Name = "labelMaxDownSpeed";
     this.labelMaxDownSpeed.Size = new System.Drawing.Size(139, 14);
     this.labelMaxDownSpeed.TabIndex = 15;
     this.labelMaxDownSpeed.Text = "Max down speed:";
     this.labelMaxDownSpeed.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelDownloadFolder
     //
     this.labelDownloadFolder.Location = new System.Drawing.Point(2, 223);
     this.labelDownloadFolder.Name = "labelDownloadFolder";
     this.labelDownloadFolder.Size = new System.Drawing.Size(130, 14);
     this.labelDownloadFolder.TabIndex = 17;
     this.labelDownloadFolder.Text = "Downloads folder:";
     this.labelDownloadFolder.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelTempFolder
     //
     this.labelTempFolder.Location = new System.Drawing.Point(2, 178);
     this.labelTempFolder.Name = "labelTempFolder";
     this.labelTempFolder.Size = new System.Drawing.Size(129, 14);
     this.labelTempFolder.TabIndex = 15;
     this.labelTempFolder.Text = "Temp. folder:";
     this.labelTempFolder.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBoxNick
     //
     this.textBoxNick.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxNick.Location = new System.Drawing.Point(79, 4);
     this.textBoxNick.Name = "textBoxNick";
     this.textBoxNick.Size = new System.Drawing.Size(159, 22);
     this.textBoxNick.TabIndex = 9;
     this.textBoxNick.Text = "";
     //
     // labelNick
     //
     this.labelNick.Location = new System.Drawing.Point(14, 7);
     this.labelNick.Name = "labelNick";
     this.labelNick.Size = new System.Drawing.Size(59, 14);
     this.labelNick.TabIndex = 8;
     this.labelNick.Text = "Nick:";
     this.labelNick.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabPageRemote
     //
     this.tabPageRemote.Controls.Add(this.groupBoxRemoteClient);
     this.tabPageRemote.Controls.Add(this.groupBoxRemoteServer);
     this.tabPageRemote.Location = new System.Drawing.Point(0, 0);
     this.tabPageRemote.Name = "tabPageRemote";
     this.tabPageRemote.Selected = false;
     this.tabPageRemote.Size = new System.Drawing.Size(422, 369);
     this.tabPageRemote.TabIndex = 2;
     this.tabPageRemote.Title = "Remote control";
     //
     // groupBoxRemoteClient
     //
     this.groupBoxRemoteClient.Controls.Add(this.textBoxRemotePassword);
     this.groupBoxRemoteClient.Controls.Add(this.labelRemoteHostPassword);
     this.groupBoxRemoteClient.Controls.Add(this.labelRemoteHostPort);
     this.groupBoxRemoteClient.Controls.Add(this.labelRemoteHostIP);
     this.groupBoxRemoteClient.Controls.Add(this.textBoxRemotePort);
     this.groupBoxRemoteClient.Controls.Add(this.textBoxRemoteIP);
     this.groupBoxRemoteClient.Controls.Add(this.radioButtonStartSelect);
     this.groupBoxRemoteClient.Controls.Add(this.radioButtonStartRemote);
     this.groupBoxRemoteClient.Controls.Add(this.radioButtonStartLocal);
     this.groupBoxRemoteClient.Location = new System.Drawing.Point(13, 192);
     this.groupBoxRemoteClient.Name = "groupBoxRemoteClient";
     this.groupBoxRemoteClient.Size = new System.Drawing.Size(405, 166);
     this.groupBoxRemoteClient.TabIndex = 36;
     this.groupBoxRemoteClient.TabStop = false;
     this.groupBoxRemoteClient.Text = "Remote Control Client";
     //
     // textBoxRemotePassword
     //
     this.textBoxRemotePassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxRemotePassword.Location = new System.Drawing.Point(215, 131);
     this.textBoxRemotePassword.Name = "textBoxRemotePassword";
     this.textBoxRemotePassword.PasswordChar = '*';
     this.textBoxRemotePassword.Size = new System.Drawing.Size(103, 22);
     this.textBoxRemotePassword.TabIndex = 45;
     this.textBoxRemotePassword.Text = "";
     //
     // labelRemoteHostPassword
     //
     this.labelRemoteHostPassword.Location = new System.Drawing.Point(14, 135);
     this.labelRemoteHostPassword.Name = "labelRemoteHostPassword";
     this.labelRemoteHostPassword.Size = new System.Drawing.Size(195, 14);
     this.labelRemoteHostPassword.TabIndex = 44;
     this.labelRemoteHostPassword.Text = "Remote host password:"******"labelRemoteHostPort";
     this.labelRemoteHostPort.Size = new System.Drawing.Size(58, 14);
     this.labelRemoteHostPort.TabIndex = 43;
     this.labelRemoteHostPort.Text = "Port:";
     //
     // labelRemoteHostIP
     //
     this.labelRemoteHostIP.Location = new System.Drawing.Point(14, 108);
     this.labelRemoteHostIP.Name = "labelRemoteHostIP";
     this.labelRemoteHostIP.Size = new System.Drawing.Size(131, 14);
     this.labelRemoteHostIP.TabIndex = 42;
     this.labelRemoteHostIP.Text = "Remote host IP:";
     //
     // textBoxRemotePort
     //
     this.textBoxRemotePort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxRemotePort.Location = new System.Drawing.Point(324, 102);
     this.textBoxRemotePort.MaxLength = 5;
     this.textBoxRemotePort.Name = "textBoxRemotePort";
     this.textBoxRemotePort.Size = new System.Drawing.Size(46, 22);
     this.textBoxRemotePort.TabIndex = 41;
     this.textBoxRemotePort.Text = "";
     this.textBoxRemotePort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_RemotePort);
     this.textBoxRemotePort.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUpCheck);
     //
     // textBoxRemoteIP
     //
     this.textBoxRemoteIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxRemoteIP.Location = new System.Drawing.Point(151, 102);
     this.textBoxRemoteIP.Name = "textBoxRemoteIP";
     this.textBoxRemoteIP.Size = new System.Drawing.Size(103, 22);
     this.textBoxRemoteIP.TabIndex = 40;
     this.textBoxRemoteIP.Text = "";
     //
     // radioButtonStartSelect
     //
     this.radioButtonStartSelect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.radioButtonStartSelect.Location = new System.Drawing.Point(14, 49);
     this.radioButtonStartSelect.Name = "radioButtonStartSelect";
     this.radioButtonStartSelect.Size = new System.Drawing.Size(386, 20);
     this.radioButtonStartSelect.TabIndex = 28;
     this.radioButtonStartSelect.Text = "Select connection type or remote  host when lphant starts";
     //
     // radioButtonStartRemote
     //
     this.radioButtonStartRemote.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.radioButtonStartRemote.Location = new System.Drawing.Point(14, 74);
     this.radioButtonStartRemote.Name = "radioButtonStartRemote";
     this.radioButtonStartRemote.Size = new System.Drawing.Size(385, 20);
     this.radioButtonStartRemote.TabIndex = 27;
     this.radioButtonStartRemote.Text = "Connect to this remote lphant host:";
     //
     // radioButtonStartLocal
     //
     this.radioButtonStartLocal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.radioButtonStartLocal.Location = new System.Drawing.Point(14, 25);
     this.radioButtonStartLocal.Name = "radioButtonStartLocal";
     this.radioButtonStartLocal.Size = new System.Drawing.Size(385, 18);
     this.radioButtonStartLocal.TabIndex = 26;
     this.radioButtonStartLocal.Text = "Start lphant locally (not remote control)";
     //
     // groupBoxRemoteServer
     //
     this.groupBoxRemoteServer.Controls.Add(this.textBoxAddNewIP);
     this.groupBoxRemoteServer.Controls.Add(this.buttonRemoveIP);
     this.groupBoxRemoteServer.Controls.Add(this.buttonAddIP);
     this.groupBoxRemoteServer.Controls.Add(this.listBoxAllowedIP);
     this.groupBoxRemoteServer.Controls.Add(this.labelIPAllowed);
     this.groupBoxRemoteServer.Controls.Add(this.labelCompressionMethod);
     this.groupBoxRemoteServer.Controls.Add(this.comboBoxCompressionMethod);
     this.groupBoxRemoteServer.Controls.Add(this.textBoxRemoteControlPassword);
     this.groupBoxRemoteServer.Controls.Add(this.labelRemoteControlPass);
     this.groupBoxRemoteServer.Controls.Add(this.textBoxRemoteControlPort);
     this.groupBoxRemoteServer.Controls.Add(this.labelRemoteControlPort);
     this.groupBoxRemoteServer.Controls.Add(this.checkBoxRemoteControl);
     this.groupBoxRemoteServer.Location = new System.Drawing.Point(12, 8);
     this.groupBoxRemoteServer.Name = "groupBoxRemoteServer";
     this.groupBoxRemoteServer.Size = new System.Drawing.Size(406, 176);
     this.groupBoxRemoteServer.TabIndex = 35;
     this.groupBoxRemoteServer.TabStop = false;
     this.groupBoxRemoteServer.Text = "Remote Control Server";
     //
     // textBoxAddNewIP
     //
     this.textBoxAddNewIP.Location = new System.Drawing.Point(93, 146);
     this.textBoxAddNewIP.Name = "textBoxAddNewIP";
     this.textBoxAddNewIP.Size = new System.Drawing.Size(112, 22);
     this.textBoxAddNewIP.TabIndex = 48;
     this.textBoxAddNewIP.Text = "";
     //
     // buttonRemoveIP
     //
     this.buttonRemoveIP.Location = new System.Drawing.Point(217, 124);
     this.buttonRemoveIP.Name = "buttonRemoveIP";
     this.buttonRemoveIP.Size = new System.Drawing.Size(24, 21);
     this.buttonRemoveIP.TabIndex = 47;
     this.buttonRemoveIP.Text = "-";
     this.buttonRemoveIP.Click += new System.EventHandler(this.buttonRemoveIP_Click);
     //
     // buttonAddIP
     //
     this.buttonAddIP.Location = new System.Drawing.Point(217, 148);
     this.buttonAddIP.Name = "buttonAddIP";
     this.buttonAddIP.Size = new System.Drawing.Size(24, 21);
     this.buttonAddIP.TabIndex = 46;
     this.buttonAddIP.Text = "+";
     this.buttonAddIP.Click += new System.EventHandler(this.buttonAddIP_Click);
     //
     // listBoxAllowedIP
     //
     this.listBoxAllowedIP.ItemHeight = 14;
     this.listBoxAllowedIP.Location = new System.Drawing.Point(250, 124);
     this.listBoxAllowedIP.Name = "listBoxAllowedIP";
     this.listBoxAllowedIP.Size = new System.Drawing.Size(132, 46);
     this.listBoxAllowedIP.TabIndex = 45;
     //
     // labelIPAllowed
     //
     this.labelIPAllowed.Location = new System.Drawing.Point(10, 124);
     this.labelIPAllowed.Name = "labelIPAllowed";
     this.labelIPAllowed.Size = new System.Drawing.Size(196, 17);
     this.labelIPAllowed.TabIndex = 44;
     this.labelIPAllowed.Text = "IP Allowed:";
     //
     // labelCompressionMethod
     //
     this.labelCompressionMethod.Location = new System.Drawing.Point(10, 98);
     this.labelCompressionMethod.Name = "labelCompressionMethod";
     this.labelCompressionMethod.Size = new System.Drawing.Size(196, 17);
     this.labelCompressionMethod.TabIndex = 41;
     this.labelCompressionMethod.Text = "Method of compression:";
     //
     // comboBoxCompressionMethod
     //
     this.comboBoxCompressionMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxCompressionMethod.Location = new System.Drawing.Point(216, 94);
     this.comboBoxCompressionMethod.Name = "comboBoxCompressionMethod";
     this.comboBoxCompressionMethod.Size = new System.Drawing.Size(101, 22);
     this.comboBoxCompressionMethod.TabIndex = 40;
     //
     // textBoxRemoteControlPassword
     //
     this.textBoxRemoteControlPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxRemoteControlPassword.Location = new System.Drawing.Point(216, 68);
     this.textBoxRemoteControlPassword.Name = "textBoxRemoteControlPassword";
     this.textBoxRemoteControlPassword.PasswordChar = '*';
     this.textBoxRemoteControlPassword.Size = new System.Drawing.Size(103, 22);
     this.textBoxRemoteControlPassword.TabIndex = 39;
     this.textBoxRemoteControlPassword.Text = "";
     //
     // labelRemoteControlPass
     //
     this.labelRemoteControlPass.Location = new System.Drawing.Point(10, 72);
     this.labelRemoteControlPass.Name = "labelRemoteControlPass";
     this.labelRemoteControlPass.Size = new System.Drawing.Size(196, 17);
     this.labelRemoteControlPass.TabIndex = 38;
     this.labelRemoteControlPass.Text = "Remote control password:"******"textBoxRemoteControlPort";
     this.textBoxRemoteControlPort.Size = new System.Drawing.Size(46, 22);
     this.textBoxRemoteControlPort.TabIndex = 37;
     this.textBoxRemoteControlPort.Text = "";
     this.textBoxRemoteControlPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress_RemoteControlPort);
     this.textBoxRemoteControlPort.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUpCheck);
     //
     // labelRemoteControlPort
     //
     this.labelRemoteControlPort.Location = new System.Drawing.Point(10, 48);
     this.labelRemoteControlPort.Name = "labelRemoteControlPort";
     this.labelRemoteControlPort.Size = new System.Drawing.Size(196, 17);
     this.labelRemoteControlPort.TabIndex = 36;
     this.labelRemoteControlPort.Text = "Remote control port (TCP):";
     //
     // checkBoxRemoteControl
     //
     this.checkBoxRemoteControl.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxRemoteControl.Location = new System.Drawing.Point(10, 25);
     this.checkBoxRemoteControl.Name = "checkBoxRemoteControl";
     this.checkBoxRemoteControl.Size = new System.Drawing.Size(156, 16);
     this.checkBoxRemoteControl.TabIndex = 35;
     this.checkBoxRemoteControl.Text = "Enable remote control";
     //
     // buttonTakeLinks
     //
     this.buttonTakeLinks.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonTakeLinks.Location = new System.Drawing.Point(23, 405);
     this.buttonTakeLinks.Name = "buttonTakeLinks";
     this.buttonTakeLinks.Size = new System.Drawing.Size(144, 24);
     this.buttonTakeLinks.TabIndex = 27;
     this.buttonTakeLinks.Text = "Take ed2k links";
     this.buttonTakeLinks.Click += new System.EventHandler(this.buttonTake_Click);
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonCancel.Location = new System.Drawing.Point(316, 404);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(98, 24);
     this.buttonCancel.TabIndex = 1;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
     //
     // buttonAccept
     //
     this.buttonAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAccept.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAccept.Location = new System.Drawing.Point(214, 404);
     this.buttonAccept.Name = "buttonAccept";
     this.buttonAccept.Size = new System.Drawing.Size(98, 24);
     this.buttonAccept.TabIndex = 2;
     this.buttonAccept.Text = "Accept";
     this.buttonAccept.Click += new System.EventHandler(this.buttonAccept_Click);
     //
     // FormOptions
     //
     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(422, 435);
     this.Controls.Add(this.buttonAccept);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.buttonTakeLinks);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormOptions";
     this.Text = "Options";
     this.tabPageInterface.ResumeLayout(false);
     this.tabPageKernel.ResumeLayout(false);
     this.groupBoxDownloadServerList.ResumeLayout(false);
     this.groupBoxViewShared.ResumeLayout(false);
     this.groupBoxConnection.ResumeLayout(false);
     this.tabPageRemote.ResumeLayout(false);
     this.groupBoxRemoteClient.ResumeLayout(false);
     this.groupBoxRemoteServer.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 18
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(MainForm));
     this.tabControl            = new Crownwood.Magic.Controls.TabControl();
     this.imageList             = new System.Windows.Forms.ImageList(this.components);
     this.checkTabPage          = new Crownwood.Magic.Controls.TabPage();
     this.checkButton           = new System.Windows.Forms.Button();
     this.licenseInfoBox        = new System.Windows.Forms.TextBox();
     this.label9                = new System.Windows.Forms.Label();
     this.browselicenseButton   = new System.Windows.Forms.Button();
     this.label8                = new System.Windows.Forms.Label();
     this.licenseFileNameBox    = new System.Windows.Forms.TextBox();
     this.issueTabPage          = new Crownwood.Magic.Controls.TabPage();
     this.issueButton           = new System.Windows.Forms.Button();
     this.serialNumberBox       = new System.Windows.Forms.TextBox();
     this.label7                = new System.Windows.Forms.Label();
     this.issuedDatePicker      = new System.Windows.Forms.DateTimePicker();
     this.label6                = new System.Windows.Forms.Label();
     this.expiredDatePicker     = new System.Windows.Forms.DateTimePicker();
     this.label5                = new System.Windows.Forms.Label();
     this.licenseTypeCombo      = new System.Windows.Forms.ComboBox();
     this.label4                = new System.Windows.Forms.Label();
     this.userNameBox           = new System.Windows.Forms.TextBox();
     this.label3                = new System.Windows.Forms.Label();
     this.keyTabPage            = new Crownwood.Magic.Controls.TabPage();
     this.label2                = new System.Windows.Forms.Label();
     this.keyInfoBox            = new System.Windows.Forms.TextBox();
     this.exportButton          = new System.Windows.Forms.Button();
     this.generateButton        = new System.Windows.Forms.Button();
     this.browseKeyButton       = new System.Windows.Forms.Button();
     this.label1                = new System.Windows.Forms.Label();
     this.keyFileNameBox        = new System.Windows.Forms.TextBox();
     this.saveKeyPairDialog     = new System.Windows.Forms.SaveFileDialog();
     this.openKeyDialog         = new System.Windows.Forms.OpenFileDialog();
     this.exportPublicKeyDialog = new System.Windows.Forms.SaveFileDialog();
     this.openLicenseDialog     = new System.Windows.Forms.OpenFileDialog();
     this.saveLicenseDialog     = new System.Windows.Forms.SaveFileDialog();
     this.tabControl.SuspendLayout();
     this.checkTabPage.SuspendLayout();
     this.issueTabPage.SuspendLayout();
     this.keyTabPage.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.BoldSelectedPage = true;
     this.tabControl.HotTrack         = true;
     this.tabControl.IDEPixelArea     = false;
     this.tabControl.ImageList        = this.imageList;
     this.tabControl.Location         = new System.Drawing.Point(0, 0);
     this.tabControl.Name             = "tabControl";
     this.tabControl.SelectedIndex    = 0;
     this.tabControl.SelectedTab      = this.issueTabPage;
     this.tabControl.Size             = new System.Drawing.Size(496, 160);
     this.tabControl.TabIndex         = 3;
     this.tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[]
     {
         this.issueTabPage,
         this.checkTabPage,
         this.keyTabPage
     });
     this.tabControl.SelectionChanged += new System.EventHandler(this.tabControl_SelectionChanged);
     //
     // imageList
     //
     this.imageList.ColorDepth  = System.Windows.Forms.ColorDepth.Depth24Bit;
     this.imageList.ImageSize   = new System.Drawing.Size(16, 16);
     this.imageList.ImageStream =
         ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Fuchsia;
     //
     // checkTabPage
     //
     this.checkTabPage.Controls.Add(this.checkButton);
     this.checkTabPage.Controls.Add(this.licenseInfoBox);
     this.checkTabPage.Controls.Add(this.label9);
     this.checkTabPage.Controls.Add(this.browselicenseButton);
     this.checkTabPage.Controls.Add(this.label8);
     this.checkTabPage.Controls.Add(this.licenseFileNameBox);
     this.checkTabPage.ImageIndex = 1;
     this.checkTabPage.ImageList  = this.imageList;
     this.checkTabPage.Location   = new System.Drawing.Point(0, 0);
     this.checkTabPage.Name       = "checkTabPage";
     this.checkTabPage.Selected   = false;
     this.checkTabPage.Size       = new System.Drawing.Size(496, 135);
     this.checkTabPage.TabIndex   = 4;
     this.checkTabPage.Title      = "Check License";
     //
     // checkButton
     //
     this.checkButton.Enabled   = false;
     this.checkButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkButton.Location  = new System.Drawing.Point(384, 42);
     this.checkButton.Name      = "checkButton";
     this.checkButton.Size      = new System.Drawing.Size(104, 23);
     this.checkButton.TabIndex  = 10;
     this.checkButton.Text      = "&Check";
     this.checkButton.Click    += new System.EventHandler(this.checkButton_Click);
     //
     // licenseInfoBox
     //
     this.licenseInfoBox.AcceptsReturn = true;
     this.licenseInfoBox.AcceptsTab    = true;
     this.licenseInfoBox.Location      = new System.Drawing.Point(72, 40);
     this.licenseInfoBox.Multiline     = true;
     this.licenseInfoBox.Name          = "licenseInfoBox";
     this.licenseInfoBox.ReadOnly      = true;
     this.licenseInfoBox.Size          = new System.Drawing.Size(304, 88);
     this.licenseInfoBox.TabIndex      = 9;
     this.licenseInfoBox.Text          = "";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(8, 42);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(56, 16);
     this.label9.TabIndex = 8;
     this.label9.Text     = "Info";
     //
     // browselicenseButton
     //
     this.browselicenseButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.browselicenseButton.Location  = new System.Drawing.Point(384, 8);
     this.browselicenseButton.Name      = "browselicenseButton";
     this.browselicenseButton.Size      = new System.Drawing.Size(104, 23);
     this.browselicenseButton.TabIndex  = 7;
     this.browselicenseButton.Text      = "&Browse...";
     this.browselicenseButton.Click    += new System.EventHandler(this.browselicenseButton_Click);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(8, 10);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(56, 16);
     this.label8.TabIndex = 5;
     this.label8.Text     = "License";
     //
     // licenseFileNameBox
     //
     this.licenseFileNameBox.Location = new System.Drawing.Point(72, 8);
     this.licenseFileNameBox.Name     = "licenseFileNameBox";
     this.licenseFileNameBox.ReadOnly = true;
     this.licenseFileNameBox.Size     = new System.Drawing.Size(304, 21);
     this.licenseFileNameBox.TabIndex = 6;
     this.licenseFileNameBox.Text     = "";
     //
     // issueTabPage
     //
     this.issueTabPage.Controls.Add(this.issueButton);
     this.issueTabPage.Controls.Add(this.serialNumberBox);
     this.issueTabPage.Controls.Add(this.label7);
     this.issueTabPage.Controls.Add(this.issuedDatePicker);
     this.issueTabPage.Controls.Add(this.label6);
     this.issueTabPage.Controls.Add(this.expiredDatePicker);
     this.issueTabPage.Controls.Add(this.label5);
     this.issueTabPage.Controls.Add(this.licenseTypeCombo);
     this.issueTabPage.Controls.Add(this.label4);
     this.issueTabPage.Controls.Add(this.userNameBox);
     this.issueTabPage.Controls.Add(this.label3);
     this.issueTabPage.ImageIndex = 0;
     this.issueTabPage.ImageList  = this.imageList;
     this.issueTabPage.Location   = new System.Drawing.Point(0, 0);
     this.issueTabPage.Name       = "issueTabPage";
     this.issueTabPage.Size       = new System.Drawing.Size(496, 135);
     this.issueTabPage.TabIndex   = 3;
     this.issueTabPage.Title      = "Issue License";
     //
     // issueButton
     //
     this.issueButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.issueButton.Location  = new System.Drawing.Point(384, 104);
     this.issueButton.Name      = "issueButton";
     this.issueButton.Size      = new System.Drawing.Size(104, 23);
     this.issueButton.TabIndex  = 21;
     this.issueButton.Text      = "&Issue";
     this.issueButton.Click    += new System.EventHandler(this.issueButton_Click);
     //
     // serialNumberBox
     //
     this.serialNumberBox.Location = new System.Drawing.Point(88, 72);
     this.serialNumberBox.Name     = "serialNumberBox";
     this.serialNumberBox.Size     = new System.Drawing.Size(400, 21);
     this.serialNumberBox.TabIndex = 18;
     this.serialNumberBox.Text     = "";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 76);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(80, 16);
     this.label7.TabIndex = 17;
     this.label7.Text     = "Serial number";
     //
     // issuedDatePicker
     //
     this.issuedDatePicker.Location = new System.Drawing.Point(88, 105);
     this.issuedDatePicker.Name     = "issuedDatePicker";
     this.issuedDatePicker.Size     = new System.Drawing.Size(192, 21);
     this.issuedDatePicker.TabIndex = 20;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 109);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(80, 16);
     this.label6.TabIndex = 19;
     this.label6.Text     = "Issued";
     //
     // expiredDatePicker
     //
     this.expiredDatePicker.Location = new System.Drawing.Point(296, 39);
     this.expiredDatePicker.Name     = "expiredDatePicker";
     this.expiredDatePicker.Size     = new System.Drawing.Size(192, 21);
     this.expiredDatePicker.TabIndex = 16;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(212, 43);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(80, 16);
     this.label5.TabIndex = 15;
     this.label5.Text     = "Expiration date";
     //
     // licenseTypeCombo
     //
     this.licenseTypeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.licenseTypeCombo.Items.AddRange(new object[]
     {
         "Trial",
         "Permanent",
         "Custom"
     });
     this.licenseTypeCombo.Location              = new System.Drawing.Point(88, 39);
     this.licenseTypeCombo.Name                  = "licenseTypeCombo";
     this.licenseTypeCombo.TabIndex              = 14;
     this.licenseTypeCombo.SelectedIndexChanged +=
         new System.EventHandler(this.licenseTypeCombo_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 43);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(72, 16);
     this.label4.TabIndex = 13;
     this.label4.Text     = "License Type";
     //
     // userNameBox
     //
     this.userNameBox.Location = new System.Drawing.Point(88, 6);
     this.userNameBox.Name     = "userNameBox";
     this.userNameBox.Size     = new System.Drawing.Size(400, 21);
     this.userNameBox.TabIndex = 12;
     this.userNameBox.Text     = "";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 10);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(64, 16);
     this.label3.TabIndex = 11;
     this.label3.Text     = "User Name";
     //
     // keyTabPage
     //
     this.keyTabPage.Controls.Add(this.label2);
     this.keyTabPage.Controls.Add(this.keyInfoBox);
     this.keyTabPage.Controls.Add(this.exportButton);
     this.keyTabPage.Controls.Add(this.generateButton);
     this.keyTabPage.Controls.Add(this.browseKeyButton);
     this.keyTabPage.Controls.Add(this.label1);
     this.keyTabPage.Controls.Add(this.keyFileNameBox);
     this.keyTabPage.ImageIndex = 2;
     this.keyTabPage.ImageList  = this.imageList;
     this.keyTabPage.Location   = new System.Drawing.Point(0, 0);
     this.keyTabPage.Name       = "keyTabPage";
     this.keyTabPage.Selected   = false;
     this.keyTabPage.Size       = new System.Drawing.Size(496, 135);
     this.keyTabPage.TabIndex   = 5;
     this.keyTabPage.Title      = "Key";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 42);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(56, 16);
     this.label2.TabIndex = 9;
     this.label2.Text     = "Info";
     //
     // keyInfoBox
     //
     this.keyInfoBox.AcceptsReturn = true;
     this.keyInfoBox.AcceptsTab    = true;
     this.keyInfoBox.Location      = new System.Drawing.Point(72, 40);
     this.keyInfoBox.Multiline     = true;
     this.keyInfoBox.Name          = "keyInfoBox";
     this.keyInfoBox.ReadOnly      = true;
     this.keyInfoBox.Size          = new System.Drawing.Size(304, 88);
     this.keyInfoBox.TabIndex      = 10;
     this.keyInfoBox.Text          = "";
     //
     // exportButton
     //
     this.exportButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.exportButton.Location  = new System.Drawing.Point(384, 40);
     this.exportButton.Name      = "exportButton";
     this.exportButton.Size      = new System.Drawing.Size(104, 23);
     this.exportButton.TabIndex  = 12;
     this.exportButton.Text      = "&Export public key";
     this.exportButton.Click    += new System.EventHandler(this.exportButton_Click);
     //
     // generateButton
     //
     this.generateButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.generateButton.Location  = new System.Drawing.Point(384, 72);
     this.generateButton.Name      = "generateButton";
     this.generateButton.Size      = new System.Drawing.Size(104, 23);
     this.generateButton.TabIndex  = 13;
     this.generateButton.Text      = "&Generate new key";
     this.generateButton.Click    += new System.EventHandler(this.generateButton_Click);
     //
     // browseKeyButton
     //
     this.browseKeyButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.browseKeyButton.Location  = new System.Drawing.Point(384, 8);
     this.browseKeyButton.Name      = "browseKeyButton";
     this.browseKeyButton.Size      = new System.Drawing.Size(104, 23);
     this.browseKeyButton.TabIndex  = 11;
     this.browseKeyButton.Text      = "&Browse...";
     this.browseKeyButton.Click    += new System.EventHandler(this.browseKeyButton_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 10);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(56, 16);
     this.label1.TabIndex = 7;
     this.label1.Text     = "DSA pair";
     //
     // keyFileNameBox
     //
     this.keyFileNameBox.Location = new System.Drawing.Point(72, 8);
     this.keyFileNameBox.Name     = "keyFileNameBox";
     this.keyFileNameBox.ReadOnly = true;
     this.keyFileNameBox.Size     = new System.Drawing.Size(304, 21);
     this.keyFileNameBox.TabIndex = 8;
     this.keyFileNameBox.Text     = "";
     //
     // saveKeyPairDialog
     //
     this.saveKeyPairDialog.DefaultExt = "gck";
     this.saveKeyPairDialog.FileName   = "NewGmatClubKeyPair";
     this.saveKeyPairDialog.Filter     = "GMAT Club Key files|*.gck";
     this.saveKeyPairDialog.Title      = "Save public and private keys";
     //
     // openKeyDialog
     //
     this.openKeyDialog.DefaultExt   = "gck";
     this.openKeyDialog.Filter       = "GMAT Club Key files|*.gck";
     this.openKeyDialog.ShowReadOnly = true;
     this.openKeyDialog.Title        = "Open key";
     //
     // exportPublicKeyDialog
     //
     this.exportPublicKeyDialog.DefaultExt = "gck";
     this.exportPublicKeyDialog.FileName   = "NewGmatClubPublicKey";
     this.exportPublicKeyDialog.Filter     = "GMAT Club Key files|*.gck";
     this.exportPublicKeyDialog.Title      = "Export public key";
     //
     // openLicenseDialog
     //
     this.openLicenseDialog.DefaultExt   = "gcl";
     this.openLicenseDialog.Filter       = "GMAT Club License files|*.gcl";
     this.openLicenseDialog.ShowReadOnly = true;
     this.openLicenseDialog.Title        = "Open licence";
     //
     // saveLicenseDialog
     //
     this.saveLicenseDialog.DefaultExt = "gcl";
     this.saveLicenseDialog.FileName   = "NewGmatClubLicense";
     this.saveLicenseDialog.Filter     = "GMAT Club License files|*.gcl";
     this.saveLicenseDialog.Title      = "Save license";
     //
     // MainForm
     //
     this.AcceptButton      = this.issueButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(496, 160);
     this.Controls.Add(this.tabControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "GMAT Club Test -  Manual License Issuer";
     this.Closed         += new System.EventHandler(this.MainForm_Closed);
     this.tabControl.ResumeLayout(false);
     this.checkTabPage.ResumeLayout(false);
     this.issueTabPage.ResumeLayout(false);
     this.keyTabPage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 19
0
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConnectionWindow));
     TabController                    = new TabControl();
     cmenTab                          = new ContextMenuStrip(components);
     cmenTabFullscreen                = new ToolStripMenuItem();
     cmenTabSmartSize                 = new ToolStripMenuItem();
     cmenTabViewOnly                  = new ToolStripMenuItem();
     ToolStripSeparator1              = new ToolStripSeparator();
     cmenTabScreenshot                = new ToolStripMenuItem();
     cmenTabStartChat                 = new ToolStripMenuItem();
     cmenTabTransferFile              = new ToolStripMenuItem();
     cmenTabRefreshScreen             = new ToolStripMenuItem();
     cmenTabSendSpecialKeys           = new ToolStripMenuItem();
     cmenTabSendSpecialKeysCtrlAltDel = new ToolStripMenuItem();
     cmenTabSendSpecialKeysCtrlEsc    = new ToolStripMenuItem();
     cmenTabExternalApps              = new ToolStripMenuItem();
     cmenTabSep1                      = new ToolStripSeparator();
     cmenTabRenameTab                 = new ToolStripMenuItem();
     cmenTabDuplicateTab              = new ToolStripMenuItem();
     cmenTabReconnect                 = new ToolStripMenuItem();
     cmenTabDisconnect                = new ToolStripMenuItem();
     cmenTabPuttySettings             = new ToolStripMenuItem();
     cmenTab.SuspendLayout();
     SuspendLayout();
     //
     //TabController
     //
     TabController.Anchor = ((AnchorStyles.Top | AnchorStyles.Bottom)
                             | AnchorStyles.Left)
                            | AnchorStyles.Right;
     TabController.Appearance      = TabControl.VisualAppearance.MultiDocument;
     TabController.Cursor          = Cursors.Hand;
     TabController.DragFromControl = false;
     TabController.IDEPixelArea    = true;
     TabController.IDEPixelBorder  = false;
     TabController.Location        = new Point(0, -1);
     TabController.Name            = "TabController";
     TabController.Size            = new Size(632, 454);
     TabController.TabIndex        = 0;
     //
     //cmenTab
     //
     cmenTab.Items.AddRange(new ToolStripItem[]
     {
         cmenTabFullscreen,
         cmenTabSmartSize,
         cmenTabViewOnly,
         ToolStripSeparator1,
         cmenTabScreenshot,
         cmenTabStartChat,
         cmenTabTransferFile,
         cmenTabRefreshScreen,
         cmenTabSendSpecialKeys,
         cmenTabPuttySettings,
         cmenTabExternalApps,
         cmenTabSep1,
         cmenTabRenameTab,
         cmenTabDuplicateTab,
         cmenTabReconnect,
         cmenTabDisconnect
     });
     cmenTab.Name       = "cmenTab";
     cmenTab.RenderMode = ToolStripRenderMode.Professional;
     cmenTab.Size       = new Size(202, 346);
     //
     //cmenTabFullscreen
     //
     cmenTabFullscreen.Image = Resources.arrow_out;
     cmenTabFullscreen.Name  = "cmenTabFullscreen";
     cmenTabFullscreen.Size  = new Size(201, 22);
     cmenTabFullscreen.Text  = @"Fullscreen (RDP)";
     //
     //cmenTabSmartSize
     //
     cmenTabSmartSize.Image = Resources.SmartSize;
     cmenTabSmartSize.Name  = "cmenTabSmartSize";
     cmenTabSmartSize.Size  = new Size(201, 22);
     cmenTabSmartSize.Text  = @"SmartSize (RDP/VNC)";
     //
     //cmenTabViewOnly
     //
     cmenTabViewOnly.Name = "cmenTabViewOnly";
     cmenTabViewOnly.Size = new Size(201, 22);
     cmenTabViewOnly.Text = @"View Only (VNC)";
     //
     //ToolStripSeparator1
     //
     ToolStripSeparator1.Name = "ToolStripSeparator1";
     ToolStripSeparator1.Size = new Size(198, 6);
     //
     //cmenTabScreenshot
     //
     cmenTabScreenshot.Image = Resources.Screenshot_Add;
     cmenTabScreenshot.Name  = "cmenTabScreenshot";
     cmenTabScreenshot.Size  = new Size(201, 22);
     cmenTabScreenshot.Text  = @"Screenshot";
     //
     //cmenTabStartChat
     //
     cmenTabStartChat.Image   = Resources.Chat;
     cmenTabStartChat.Name    = "cmenTabStartChat";
     cmenTabStartChat.Size    = new Size(201, 22);
     cmenTabStartChat.Text    = @"Start Chat (VNC)";
     cmenTabStartChat.Visible = false;
     //
     //cmenTabTransferFile
     //
     cmenTabTransferFile.Image = Resources.SSHTransfer;
     cmenTabTransferFile.Name  = "cmenTabTransferFile";
     cmenTabTransferFile.Size  = new Size(201, 22);
     cmenTabTransferFile.Text  = @"Transfer File (SSH)";
     //
     //cmenTabRefreshScreen
     //
     cmenTabRefreshScreen.Image = Resources.Refresh;
     cmenTabRefreshScreen.Name  = "cmenTabRefreshScreen";
     cmenTabRefreshScreen.Size  = new Size(201, 22);
     cmenTabRefreshScreen.Text  = @"Refresh Screen (VNC)";
     //
     //cmenTabSendSpecialKeys
     //
     cmenTabSendSpecialKeys.DropDownItems.AddRange(new ToolStripItem[]
     {
         cmenTabSendSpecialKeysCtrlAltDel,
         cmenTabSendSpecialKeysCtrlEsc
     });
     cmenTabSendSpecialKeys.Image = Resources.Keyboard;
     cmenTabSendSpecialKeys.Name  = "cmenTabSendSpecialKeys";
     cmenTabSendSpecialKeys.Size  = new Size(201, 22);
     cmenTabSendSpecialKeys.Text  = @"Send special Keys (VNC)";
     //
     //cmenTabSendSpecialKeysCtrlAltDel
     //
     cmenTabSendSpecialKeysCtrlAltDel.Name = "cmenTabSendSpecialKeysCtrlAltDel";
     cmenTabSendSpecialKeysCtrlAltDel.Size = new Size(141, 22);
     cmenTabSendSpecialKeysCtrlAltDel.Text = @"Ctrl+Alt+Del";
     //
     //cmenTabSendSpecialKeysCtrlEsc
     //
     cmenTabSendSpecialKeysCtrlEsc.Name = "cmenTabSendSpecialKeysCtrlEsc";
     cmenTabSendSpecialKeysCtrlEsc.Size = new Size(141, 22);
     cmenTabSendSpecialKeysCtrlEsc.Text = @"Ctrl+Esc";
     //
     //cmenTabExternalApps
     //
     cmenTabExternalApps.Image = (Image)(resources.GetObject("cmenTabExternalApps.Image"));
     cmenTabExternalApps.Name  = "cmenTabExternalApps";
     cmenTabExternalApps.Size  = new Size(201, 22);
     cmenTabExternalApps.Text  = @"External Applications";
     //
     //cmenTabSep1
     //
     cmenTabSep1.Name = "cmenTabSep1";
     cmenTabSep1.Size = new Size(198, 6);
     //
     //cmenTabRenameTab
     //
     cmenTabRenameTab.Image = Resources.Rename;
     cmenTabRenameTab.Name  = "cmenTabRenameTab";
     cmenTabRenameTab.Size  = new Size(201, 22);
     cmenTabRenameTab.Text  = @"Rename Tab";
     //
     //cmenTabDuplicateTab
     //
     cmenTabDuplicateTab.Name = "cmenTabDuplicateTab";
     cmenTabDuplicateTab.Size = new Size(201, 22);
     cmenTabDuplicateTab.Text = @"Duplicate Tab";
     //
     //cmenTabReconnect
     //
     cmenTabReconnect.Image = (Image)(resources.GetObject("cmenTabReconnect.Image"));
     cmenTabReconnect.Name  = "cmenTabReconnect";
     cmenTabReconnect.Size  = new Size(201, 22);
     cmenTabReconnect.Text  = @"Reconnect";
     //
     //cmenTabDisconnect
     //
     cmenTabDisconnect.Image = Resources.Pause;
     cmenTabDisconnect.Name  = "cmenTabDisconnect";
     cmenTabDisconnect.Size  = new Size(201, 22);
     cmenTabDisconnect.Text  = @"Disconnect";
     //
     //cmenTabPuttySettings
     //
     cmenTabPuttySettings.Name = "cmenTabPuttySettings";
     cmenTabPuttySettings.Size = new Size(201, 22);
     cmenTabPuttySettings.Text = @"PuTTY Settings";
     //
     //Connection
     //
     ClientSize = new Size(632, 453);
     Controls.Add(TabController);
     Font    = new Font("Segoe UI", 8.25F, FontStyle.Regular, GraphicsUnit.Point, Convert.ToByte(0));
     Icon    = Resources.mRemote_Icon;
     Name    = "Connection";
     TabText = @"UI.Window.Connection";
     Text    = @"UI.Window.Connection";
     cmenTab.ResumeLayout(false);
     ResumeLayout(false);
 }
Ejemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabController      = new Crownwood.Magic.Controls.TabControl();
     this.tabPage1           = new Crownwood.Magic.Controls.TabPage();
     this.label1             = new System.Windows.Forms.Label();
     this.lblselezautomatica = new System.Windows.Forms.Label();
     this.btnSelezionaTutto  = new System.Windows.Forms.Button();
     this.label16            = new System.Windows.Forms.Label();
     this.label14            = new System.Windows.Forms.Label();
     this.gridDettagli       = new System.Windows.Forms.DataGrid();
     this.tabPage2           = new Crownwood.Magic.Controls.TabPage();
     this.labelMsg           = new System.Windows.Forms.Label();
     this.btnNext            = new System.Windows.Forms.Button();
     this.btnBack            = new System.Windows.Forms.Button();
     this.btnCancel          = new System.Windows.Forms.Button();
     this.lblValuta          = new System.Windows.Forms.Label();
     this.tabController.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabController
     //
     this.tabController.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.tabController.IDEPixelArea  = true;
     this.tabController.Location      = new System.Drawing.Point(8, 8);
     this.tabController.Name          = "tabController";
     this.tabController.SelectedIndex = 0;
     this.tabController.SelectedTab   = this.tabPage1;
     this.tabController.Size          = new System.Drawing.Size(600, 408);
     this.tabController.TabIndex      = 14;
     this.tabController.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPage1,
         this.tabPage2
     });
     this.tabController.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.lblValuta);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.lblselezautomatica);
     this.tabPage1.Controls.Add(this.btnSelezionaTutto);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.gridDettagli);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(600, 383);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Title    = "Pagina 1 di 2";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(5, 76);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(315, 16);
     this.label1.TabIndex = 35;
     this.label1.Text     = "Attenzione: i dettagli si riferiscono a contratti attivi in valuta:";
     //
     // lblselezautomatica
     //
     this.lblselezautomatica.Location = new System.Drawing.Point(8, 40);
     this.lblselezautomatica.Name     = "lblselezautomatica";
     this.lblselezautomatica.Size     = new System.Drawing.Size(576, 16);
     this.lblselezautomatica.TabIndex = 31;
     this.lblselezautomatica.Text     = "NB: Saranno selezionati automaticamente tutti i detttagli dello stesso gruppo del" +
                                        "la riga del contratto scelta.";
     //
     // btnSelezionaTutto
     //
     this.btnSelezionaTutto.Location = new System.Drawing.Point(8, 8);
     this.btnSelezionaTutto.Name     = "btnSelezionaTutto";
     this.btnSelezionaTutto.Size     = new System.Drawing.Size(88, 23);
     this.btnSelezionaTutto.TabIndex = 30;
     this.btnSelezionaTutto.Text     = "Seleziona tutto";
     this.btnSelezionaTutto.Click   += new System.EventHandler(this.btnSelezionaTutto_Click);
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(112, 8);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(464, 32);
     this.label16.TabIndex = 29;
     this.label16.Text     = "Tenere premuto il tasto CTRL o MAIUSC e contemporaneamente cliccare con il mouse " +
                             "per selezionare più dettagli da inserire in fattura";
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(8, 56);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(240, 16);
     this.label14.TabIndex = 28;
     this.label14.Text     = "Dettagli contratto attivo da inserire in fattura";
     //
     // gridDettagli
     //
     this.gridDettagli.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.gridDettagli.CaptionVisible      = false;
     this.gridDettagli.DataMember          = "";
     this.gridDettagli.HeaderForeColor     = System.Drawing.SystemColors.ControlText;
     this.gridDettagli.Location            = new System.Drawing.Point(8, 98);
     this.gridDettagli.Name                = "gridDettagli";
     this.gridDettagli.Size                = new System.Drawing.Size(584, 270);
     this.gridDettagli.TabIndex            = 27;
     this.gridDettagli.Paint              += new System.Windows.Forms.PaintEventHandler(this.gridDettagli_Paint);
     this.gridDettagli.CurrentCellChanged += new System.EventHandler(this.gridDettagli_CurrentCellChanged);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.labelMsg);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Selected = false;
     this.tabPage2.Size     = new System.Drawing.Size(600, 383);
     this.tabPage2.TabIndex = 0;
     this.tabPage2.Title    = "Pagina 2 di 2";
     //
     // labelMsg
     //
     this.labelMsg.Location = new System.Drawing.Point(8, 8);
     this.labelMsg.Name     = "labelMsg";
     this.labelMsg.Size     = new System.Drawing.Size(576, 23);
     this.labelMsg.TabIndex = 0;
     this.labelMsg.Text     = "label1";
     //
     // btnNext
     //
     this.btnNext.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.Location = new System.Drawing.Point(432, 424);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(72, 23);
     this.btnNext.TabIndex = 12;
     this.btnNext.Text     = "Avanti >";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnBack
     //
     this.btnBack.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBack.Location = new System.Drawing.Point(352, 424);
     this.btnBack.Name     = "btnBack";
     this.btnBack.Size     = new System.Drawing.Size(72, 23);
     this.btnBack.TabIndex = 11;
     this.btnBack.Text     = "< Indietro";
     this.btnBack.Click   += new System.EventHandler(this.btnBack_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(536, 424);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex     = 13;
     this.btnCancel.Text         = "Cancel";
     //
     // lblValuta
     //
     this.lblValuta.AutoSize = true;
     this.lblValuta.Location = new System.Drawing.Point(326, 76);
     this.lblValuta.Name     = "lblValuta";
     this.lblValuta.Size     = new System.Drawing.Size(181, 13);
     this.lblValuta.TabIndex = 36;
     this.lblValuta.Text     = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
     //
     // FrmWizardScegliDettagliContratto
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 461);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabController);
     this.Name          = "FrmWizardScegliDettagliContratto";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Selezione dettagli contratto attivo";
     this.tabController.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1    = new Crownwood.Magic.Controls.TabControl();
     this.tabVarEntrata  = new Crownwood.Magic.Controls.TabPage();
     this.gridVarEntrata = new System.Windows.Forms.DataGrid();
     this.tabEntrata     = new Crownwood.Magic.Controls.TabPage();
     this.gridEntrata    = new System.Windows.Forms.DataGrid();
     this.tabSpesa       = new Crownwood.Magic.Controls.TabPage();
     this.gridSpesa      = new System.Windows.Forms.DataGrid();
     this.tabVarSpesa    = new Crownwood.Magic.Controls.TabPage();
     this.gridVarSpesa   = new System.Windows.Forms.DataGrid();
     this.btnCancel      = new System.Windows.Forms.Button();
     this.btnOk          = new System.Windows.Forms.Button();
     this.DS             = new expense_automatismi.vistaForm();
     this.tabControl1.SuspendLayout();
     this.tabVarEntrata.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridVarEntrata)).BeginInit();
     this.tabEntrata.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEntrata)).BeginInit();
     this.tabSpesa.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpesa)).BeginInit();
     this.tabVarSpesa.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridVarSpesa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.IDEPixelArea  = true;
     this.tabControl1.Location      = new System.Drawing.Point(8, 8);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.SelectedTab   = this.tabEntrata;
     this.tabControl1.Size          = new System.Drawing.Size(624, 384);
     this.tabControl1.TabIndex      = 0;
     this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabEntrata,
         this.tabSpesa,
         this.tabVarSpesa,
         this.tabVarEntrata
     });
     this.tabControl1.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabVarEntrata
     //
     this.tabVarEntrata.Controls.Add(this.gridVarEntrata);
     this.tabVarEntrata.Location = new System.Drawing.Point(0, 0);
     this.tabVarEntrata.Name     = "tabVarEntrata";
     this.tabVarEntrata.Selected = false;
     this.tabVarEntrata.Size     = new System.Drawing.Size(624, 359);
     this.tabVarEntrata.TabIndex = 3;
     this.tabVarEntrata.Title    = "Variazioni Entrata";
     //
     // gridVarEntrata
     //
     this.gridVarEntrata.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.gridVarEntrata.DataMember      = "";
     this.gridVarEntrata.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridVarEntrata.Location        = new System.Drawing.Point(8, 7);
     this.gridVarEntrata.Name            = "gridVarEntrata";
     this.gridVarEntrata.Size            = new System.Drawing.Size(608, 344);
     this.gridVarEntrata.TabIndex        = 2;
     this.gridVarEntrata.Tag             = "incomevarview.autospesa";
     this.gridVarEntrata.DoubleClick    += new System.EventHandler(this.gridVarEntrata_DoubleClick);
     //
     // tabEntrata
     //
     this.tabEntrata.Controls.Add(this.gridEntrata);
     this.tabEntrata.Location = new System.Drawing.Point(0, 0);
     this.tabEntrata.Name     = "tabEntrata";
     this.tabEntrata.Size     = new System.Drawing.Size(624, 359);
     this.tabEntrata.TabIndex = 0;
     this.tabEntrata.Title    = "Movimenti Entrata";
     //
     // gridEntrata
     //
     this.gridEntrata.AllowNavigation = false;
     this.gridEntrata.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.gridEntrata.DataMember      = "";
     this.gridEntrata.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridEntrata.Location        = new System.Drawing.Point(8, 8);
     this.gridEntrata.Name            = "gridEntrata";
     this.gridEntrata.ReadOnly        = true;
     this.gridEntrata.Size            = new System.Drawing.Size(600, 344);
     this.gridEntrata.TabIndex        = 0;
     this.gridEntrata.Tag             = "incomeview.autospesa";
     this.gridEntrata.DoubleClick    += new System.EventHandler(this.gridEntrata_DoubleClick);
     //
     // tabSpesa
     //
     this.tabSpesa.Controls.Add(this.gridSpesa);
     this.tabSpesa.Location = new System.Drawing.Point(0, 0);
     this.tabSpesa.Name     = "tabSpesa";
     this.tabSpesa.Selected = false;
     this.tabSpesa.Size     = new System.Drawing.Size(624, 359);
     this.tabSpesa.TabIndex = 1;
     this.tabSpesa.Title    = "Movimenti Spesa";
     //
     // gridSpesa
     //
     this.gridSpesa.AllowNavigation = false;
     this.gridSpesa.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.gridSpesa.DataMember      = "";
     this.gridSpesa.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridSpesa.Location        = new System.Drawing.Point(8, 8);
     this.gridSpesa.Name            = "gridSpesa";
     this.gridSpesa.ReadOnly        = true;
     this.gridSpesa.Size            = new System.Drawing.Size(608, 344);
     this.gridSpesa.TabIndex        = 1;
     this.gridSpesa.Tag             = "expenseview.autospesa";
     this.gridSpesa.DoubleClick    += new System.EventHandler(this.gridSpesa_DoubleClick);
     //
     // tabVarSpesa
     //
     this.tabVarSpesa.Controls.Add(this.gridVarSpesa);
     this.tabVarSpesa.Location = new System.Drawing.Point(0, 0);
     this.tabVarSpesa.Name     = "tabVarSpesa";
     this.tabVarSpesa.Selected = false;
     this.tabVarSpesa.Size     = new System.Drawing.Size(624, 359);
     this.tabVarSpesa.TabIndex = 2;
     this.tabVarSpesa.Title    = "Variazioni Spesa";
     //
     // gridVarSpesa
     //
     this.gridVarSpesa.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.gridVarSpesa.DataMember      = "";
     this.gridVarSpesa.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridVarSpesa.Location        = new System.Drawing.Point(8, 8);
     this.gridVarSpesa.Name            = "gridVarSpesa";
     this.gridVarSpesa.Size            = new System.Drawing.Size(608, 344);
     this.gridVarSpesa.TabIndex        = 1;
     this.gridVarSpesa.Tag             = "expensevarview.autospesa";
     this.gridVarSpesa.DoubleClick    += new System.EventHandler(this.gridVarSpesa_DoubleClick);
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(464, 408);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.TabIndex     = 1;
     this.btnCancel.Text         = "Cancel";
     this.btnCancel.Visible      = false;
     this.btnCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOk
     //
     this.btnOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOk.Location     = new System.Drawing.Point(552, 408);
     this.btnOk.Name         = "btnOk";
     this.btnOk.TabIndex     = 2;
     this.btnOk.Tag          = "mainsave";
     this.btnOk.Text         = "Ok";
     this.btnOk.Click       += new System.EventHandler(this.btnOk_Click);
     //
     // DS
     //
     this.DS.DataSetName = "vistaForm";
     this.DS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // Frm_expense_automatismi
     //
     this.AcceptButton      = this.btnOk;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(632, 437);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.btnCancel);
     this.Name          = "Frm_expense_automatismi";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Elenco Movimenti Automatici";
     this.tabControl1.ResumeLayout(false);
     this.tabVarEntrata.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridVarEntrata)).EndInit();
     this.tabEntrata.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEntrata)).EndInit();
     this.tabSpesa.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSpesa)).EndInit();
     this.tabVarSpesa.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridVarSpesa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtDescrizione       = new System.Windows.Forms.TextBox();
     this.dataGrid1            = new System.Windows.Forms.DataGrid();
     this.chkAttivi            = new System.Windows.Forms.CheckBox();
     this.chkPassivi           = new System.Windows.Forms.CheckBox();
     this.chkOverwrite         = new System.Windows.Forms.CheckBox();
     this.btnDoTrasf           = new System.Windows.Forms.Button();
     this.btnRibaltaPrevisioni = new System.Windows.Forms.Button();
     this.DS              = new accountingyear_trasfclass.vistaForm();
     this.tabControl1     = new Crownwood.Magic.Controls.TabControl();
     this.tabGenerale     = new Crownwood.Magic.Controls.TabPage();
     this.tabRibaltamento = new Crownwood.Magic.Controls.TabPage();
     this.btnResidui      = new System.Windows.Forms.Button();
     this.cmbTipo         = new System.Windows.Forms.ComboBox();
     this.label1          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabGenerale.SuspendLayout();
     this.tabRibaltamento.SuspendLayout();
     this.SuspendLayout();
     //
     // txtDescrizione
     //
     this.txtDescrizione.AcceptsReturn = true;
     this.txtDescrizione.AcceptsTab    = true;
     this.txtDescrizione.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.txtDescrizione.Location  = new System.Drawing.Point(3, 6);
     this.txtDescrizione.Multiline = true;
     this.txtDescrizione.Name      = "txtDescrizione";
     this.txtDescrizione.ReadOnly  = true;
     this.txtDescrizione.Size      = new System.Drawing.Size(514, 147);
     this.txtDescrizione.TabIndex  = 0;
     this.txtDescrizione.TabStop   = false;
     this.txtDescrizione.Text      = "textBox1";
     //
     // dataGrid1
     //
     this.dataGrid1.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(8, 270);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(56, 32);
     this.dataGrid1.TabIndex        = 1;
     this.dataGrid1.Tag             = "accountingyear.default";
     this.dataGrid1.Visible         = false;
     //
     // chkAttivi
     //
     this.chkAttivi.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkAttivi.Location = new System.Drawing.Point(3, 159);
     this.chkAttivi.Name     = "chkAttivi";
     this.chkAttivi.Size     = new System.Drawing.Size(315, 24);
     this.chkAttivi.TabIndex = 2;
     this.chkAttivi.Text     = "Trasferisci classificazioni su residui attivi";
     //
     // chkPassivi
     //
     this.chkPassivi.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkPassivi.Location = new System.Drawing.Point(3, 179);
     this.chkPassivi.Name     = "chkPassivi";
     this.chkPassivi.Size     = new System.Drawing.Size(315, 24);
     this.chkPassivi.TabIndex = 3;
     this.chkPassivi.Text     = "Trasferisci classificazioni su residui passivi";
     //
     // chkOverwrite
     //
     this.chkOverwrite.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkOverwrite.Location = new System.Drawing.Point(3, 200);
     this.chkOverwrite.Name     = "chkOverwrite";
     this.chkOverwrite.Size     = new System.Drawing.Size(324, 24);
     this.chkOverwrite.TabIndex = 4;
     this.chkOverwrite.Text     = "Sovrascrivi classificazioni esistenti dei residui (ove presenti)";
     //
     // btnDoTrasf
     //
     this.btnDoTrasf.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnDoTrasf.Location = new System.Drawing.Point(349, 200);
     this.btnDoTrasf.Name     = "btnDoTrasf";
     this.btnDoTrasf.Size     = new System.Drawing.Size(168, 23);
     this.btnDoTrasf.TabIndex = 5;
     this.btnDoTrasf.Text     = "Effettua trasferimento";
     this.btnDoTrasf.Click   += new System.EventHandler(this.btnDoTrasf_Click);
     //
     // btnRibaltaPrevisioni
     //
     this.btnRibaltaPrevisioni.Location = new System.Drawing.Point(8, 70);
     this.btnRibaltaPrevisioni.Name     = "btnRibaltaPrevisioni";
     this.btnRibaltaPrevisioni.Size     = new System.Drawing.Size(176, 23);
     this.btnRibaltaPrevisioni.TabIndex = 6;
     this.btnRibaltaPrevisioni.Text     = "Ribalta previsioni disponibili";
     this.btnRibaltaPrevisioni.UseVisualStyleBackColor = true;
     this.btnRibaltaPrevisioni.Click += new System.EventHandler(this.btnRibaltaPrevisioni_Click);
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // tabControl1
     //
     this.tabControl1.IDEPixelArea  = true;
     this.tabControl1.Location      = new System.Drawing.Point(4, 6);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.SelectedTab   = this.tabGenerale;
     this.tabControl1.Size          = new System.Drawing.Size(520, 258);
     this.tabControl1.TabIndex      = 7;
     this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabGenerale,
         this.tabRibaltamento
     });
     //
     // tabGenerale
     //
     this.tabGenerale.Controls.Add(this.txtDescrizione);
     this.tabGenerale.Controls.Add(this.btnDoTrasf);
     this.tabGenerale.Controls.Add(this.chkAttivi);
     this.tabGenerale.Controls.Add(this.chkPassivi);
     this.tabGenerale.Controls.Add(this.chkOverwrite);
     this.tabGenerale.Location = new System.Drawing.Point(0, 0);
     this.tabGenerale.Name     = "tabGenerale";
     this.tabGenerale.Size     = new System.Drawing.Size(520, 233);
     this.tabGenerale.TabIndex = 3;
     this.tabGenerale.Title    = "Generale";
     //
     // tabRibaltamento
     //
     this.tabRibaltamento.Controls.Add(this.btnResidui);
     this.tabRibaltamento.Controls.Add(this.cmbTipo);
     this.tabRibaltamento.Controls.Add(this.label1);
     this.tabRibaltamento.Controls.Add(this.btnRibaltaPrevisioni);
     this.tabRibaltamento.Location = new System.Drawing.Point(0, 0);
     this.tabRibaltamento.Name     = "tabRibaltamento";
     this.tabRibaltamento.Selected = false;
     this.tabRibaltamento.Size     = new System.Drawing.Size(520, 233);
     this.tabRibaltamento.TabIndex = 4;
     this.tabRibaltamento.Title    = "Ribaltamento";
     //
     // btnResidui
     //
     this.btnResidui.Location = new System.Drawing.Point(8, 99);
     this.btnResidui.Name     = "btnResidui";
     this.btnResidui.Size     = new System.Drawing.Size(176, 23);
     this.btnResidui.TabIndex = 21;
     this.btnResidui.Text     = "Variazioni di previsione sui residui";
     this.btnResidui.UseVisualStyleBackColor = true;
     this.btnResidui.Click += new System.EventHandler(this.btnResidui_Click);
     //
     // cmbTipo
     //
     this.cmbTipo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbTipo.DataSource    = this.DS.sortingkind;
     this.cmbTipo.DisplayMember = "description";
     this.cmbTipo.Location      = new System.Drawing.Point(104, 18);
     this.cmbTipo.Name          = "cmbTipo";
     this.cmbTipo.Size          = new System.Drawing.Size(384, 23);
     this.cmbTipo.TabIndex      = 19;
     this.cmbTipo.Tag           = "";
     this.cmbTipo.ValueMember   = "idsorkind";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 18);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 16);
     this.label1.TabIndex  = 20;
     this.label1.Text      = "Classificazione:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // FrmTrasfClassResidui
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(536, 317);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.dataGrid1);
     this.Name = "FrmTrasfClassResidui";
     this.Text = "FrmTrasfClassResidui";
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabGenerale.ResumeLayout(false);
     this.tabGenerale.PerformLayout();
     this.tabRibaltamento.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabController          = new Crownwood.Magic.Controls.TabControl();
     this.tabPage3               = new Crownwood.Magic.Controls.TabPage();
     this.labelMsg               = new System.Windows.Forms.Label();
     this.tabPage1               = new Crownwood.Magic.Controls.TabPage();
     this.label5                 = new System.Windows.Forms.Label();
     this.txtAnagrafica          = new System.Windows.Forms.TextBox();
     this.groupBox2              = new System.Windows.Forms.GroupBox();
     this.label2                 = new System.Windows.Forms.Label();
     this.txtDataStop            = new System.Windows.Forms.TextBox();
     this.label3                 = new System.Windows.Forms.Label();
     this.txtDataStart           = new System.Windows.Forms.TextBox();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.cmbTipocontrattoattivo = new System.Windows.Forms.ComboBox();
     this.tabPage2               = new Crownwood.Magic.Controls.TabPage();
     this.btnSelezionaTutto      = new System.Windows.Forms.Button();
     this.label16                = new System.Windows.Forms.Label();
     this.gridDettagli           = new System.Windows.Forms.DataGrid();
     this.btnNext                = new System.Windows.Forms.Button();
     this.btnBack                = new System.Windows.Forms.Button();
     this.btnCancel              = new System.Windows.Forms.Button();
     this.tabController.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).BeginInit();
     this.SuspendLayout();
     //
     // tabController
     //
     this.tabController.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.tabController.IDEPixelArea  = true;
     this.tabController.Location      = new System.Drawing.Point(8, 8);
     this.tabController.Name          = "tabController";
     this.tabController.SelectedIndex = 0;
     this.tabController.SelectedTab   = this.tabPage1;
     this.tabController.Size          = new System.Drawing.Size(600, 408);
     this.tabController.TabIndex      = 14;
     this.tabController.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPage1,
         this.tabPage2,
         this.tabPage3
     });
     this.tabController.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.labelMsg);
     this.tabPage3.Location = new System.Drawing.Point(0, 0);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Selected = false;
     this.tabPage3.Size     = new System.Drawing.Size(600, 383);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Title    = "Pagina 3 di 3";
     //
     // labelMsg
     //
     this.labelMsg.Location = new System.Drawing.Point(8, 8);
     this.labelMsg.Name     = "labelMsg";
     this.labelMsg.Size     = new System.Drawing.Size(576, 23);
     this.labelMsg.TabIndex = 0;
     this.labelMsg.Text     = "label1";
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.label5);
     this.tabPage1.Controls.Add(this.txtAnagrafica);
     this.tabPage1.Controls.Add(this.groupBox2);
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(600, 383);
     this.tabPage1.TabIndex = 3;
     this.tabPage1.Title    = "Pagina 1 di 3";
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(14, 193);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(79, 22);
     this.label5.TabIndex  = 21;
     this.label5.Text      = "Anagrafica:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtAnagrafica
     //
     this.txtAnagrafica.Location = new System.Drawing.Point(100, 193);
     this.txtAnagrafica.Name     = "txtAnagrafica";
     this.txtAnagrafica.Size     = new System.Drawing.Size(485, 23);
     this.txtAnagrafica.TabIndex = 20;
     this.txtAnagrafica.Tag      = "";
     this.txtAnagrafica.Leave   += new System.EventHandler(this.txtAnagrafica_Leave);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.txtDataStop);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.txtDataStart);
     this.groupBox2.Location = new System.Drawing.Point(4, 111);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(581, 58);
     this.groupBox2.TabIndex = 19;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Data Registrazione";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(299, 22);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(35, 22);
     this.label2.TabIndex  = 11;
     this.label2.Text      = "al:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtDataStop
     //
     this.txtDataStop.Location = new System.Drawing.Point(340, 21);
     this.txtDataStop.Name     = "txtDataStop";
     this.txtDataStop.Size     = new System.Drawing.Size(133, 23);
     this.txtDataStop.TabIndex = 10;
     this.txtDataStop.Tag      = "";
     this.txtDataStop.Leave   += new System.EventHandler(this.txtDataStop_Leave);
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(81, 22);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(57, 22);
     this.label3.TabIndex  = 9;
     this.label3.Text      = "dal:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtDataStart
     //
     this.txtDataStart.Location = new System.Drawing.Point(144, 21);
     this.txtDataStart.Name     = "txtDataStart";
     this.txtDataStart.Size     = new System.Drawing.Size(133, 23);
     this.txtDataStart.TabIndex = 8;
     this.txtDataStart.Tag      = "";
     this.txtDataStart.Leave   += new System.EventHandler(this.txtDataStart_Leave);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.cmbTipocontrattoattivo);
     this.groupBox1.Location = new System.Drawing.Point(4, 20);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(581, 60);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Seleziona";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(7, 26);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(134, 23);
     this.label4.TabIndex  = 17;
     this.label4.Text      = "Tipo contratto attivo:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmbTipocontrattoattivo
     //
     this.cmbTipocontrattoattivo.DisplayMember = "description";
     this.cmbTipocontrattoattivo.Location      = new System.Drawing.Point(147, 27);
     this.cmbTipocontrattoattivo.Name          = "cmbTipocontrattoattivo";
     this.cmbTipocontrattoattivo.Size          = new System.Drawing.Size(426, 23);
     this.cmbTipocontrattoattivo.TabIndex      = 16;
     this.cmbTipocontrattoattivo.Tag           = "";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.btnSelezionaTutto);
     this.tabPage2.Controls.Add(this.label16);
     this.tabPage2.Controls.Add(this.gridDettagli);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Selected = false;
     this.tabPage2.Size     = new System.Drawing.Size(600, 383);
     this.tabPage2.TabIndex = 0;
     this.tabPage2.Title    = "Pagina 2 di 3";
     //
     // btnSelezionaTutto
     //
     this.btnSelezionaTutto.Location = new System.Drawing.Point(8, 8);
     this.btnSelezionaTutto.Name     = "btnSelezionaTutto";
     this.btnSelezionaTutto.Size     = new System.Drawing.Size(88, 23);
     this.btnSelezionaTutto.TabIndex = 30;
     this.btnSelezionaTutto.Text     = "Seleziona tutto";
     this.btnSelezionaTutto.Click   += new System.EventHandler(this.btnSelezionaTutto_Click);
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(112, 8);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(464, 32);
     this.label16.TabIndex = 29;
     this.label16.Text     = "Tenere premuto il tasto CTRL o MAIUSC e contemporaneamente cliccare con il mouse " +
                             "per selezionare più dettagli da inserire";
     //
     // gridDettagli
     //
     this.gridDettagli.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.gridDettagli.CaptionVisible      = false;
     this.gridDettagli.DataMember          = "";
     this.gridDettagli.HeaderForeColor     = System.Drawing.SystemColors.ControlText;
     this.gridDettagli.Location            = new System.Drawing.Point(8, 43);
     this.gridDettagli.Name                = "gridDettagli";
     this.gridDettagli.Size                = new System.Drawing.Size(584, 325);
     this.gridDettagli.TabIndex            = 27;
     this.gridDettagli.CurrentCellChanged += new System.EventHandler(this.gridDettagli_CurrentCellChanged);
     this.gridDettagli.Paint              += new System.Windows.Forms.PaintEventHandler(this.gridDettagli_Paint);
     //
     // btnNext
     //
     this.btnNext.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.Location = new System.Drawing.Point(432, 424);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(72, 23);
     this.btnNext.TabIndex = 12;
     this.btnNext.Text     = "Avanti >";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnBack
     //
     this.btnBack.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBack.Location = new System.Drawing.Point(352, 424);
     this.btnBack.Name     = "btnBack";
     this.btnBack.Size     = new System.Drawing.Size(72, 23);
     this.btnBack.TabIndex = 11;
     this.btnBack.Text     = "< Indietro";
     this.btnBack.Click   += new System.EventHandler(this.btnBack_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor =
         ((System.Windows.Forms.AnchorStyles)
              ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(536, 424);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex     = 13;
     this.btnCancel.Text         = "Cancel";
     //
     // FrmWizardScegliDettagliContratto
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 461);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabController);
     this.Name          = "FrmWizardScegliDettagliContratto";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Selezione dettagli contratto attivo";
     this.tabController.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 24
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.TipAppearance tipAppearance1         = new FarPoint.Win.Spread.TipAppearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQuery));
     this.panel1           = new System.Windows.Forms.Panel();
     this.ucConditions1    = new Neusoft.HISFC.Components.EPR.Query.ucConditions();
     this.splitter1        = new System.Windows.Forms.Splitter();
     this.panel2           = new System.Windows.Forms.Panel();
     this.tabControl1      = new Crownwood.Magic.Controls.TabControl();
     this.tabPage1         = new Crownwood.Magic.Controls.TabPage();
     this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
     this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.tabPage2         = new Crownwood.Magic.Controls.TabPage();
     this.toolBar1         = new System.Windows.Forms.ToolBar();
     this.toolBarButton1   = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2   = new System.Windows.Forms.ToolBarButton();
     this.tbQuery          = new System.Windows.Forms.ToolBarButton();
     this.tbShowEMR        = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton5   = new System.Windows.Forms.ToolBarButton();
     this.tbExit           = new System.Windows.Forms.ToolBarButton();
     this.imageList16      = new System.Windows.Forms.ImageList(this.components);
     this.label1           = new System.Windows.Forms.Label();
     this.checkBox1        = new System.Windows.Forms.CheckBox();
     this.label2           = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ucConditions1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 41);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(846, 86);
     this.panel1.TabIndex = 0;
     //
     // ucConditions1
     //
     this.ucConditions1.BackColor              = System.Drawing.Color.Honeydew;
     this.ucConditions1.Dock                   = System.Windows.Forms.DockStyle.Fill;
     this.ucConditions1.Location               = new System.Drawing.Point(0, 0);
     this.ucConditions1.MaxConditionCount      = 4;
     this.ucConditions1.Name                   = "ucConditions1";
     this.ucConditions1.Size                   = new System.Drawing.Size(846, 86);
     this.ucConditions1.TabIndex               = 0;
     this.ucConditions1.Query                 += new Neusoft.HISFC.Components.EPR.Query.QueryHandler(this.ucquery1_Query);
     this.ucConditions1.ConditionCountChanged += new System.EventHandler(this.ucquery1_ConditionCountChanged);
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location = new System.Drawing.Point(0, 127);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(846, 3);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 130);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(846, 371);
     this.panel2.TabIndex = 2;
     //
     // tabControl1
     //
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.IDEPixelArea  = true;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.PositionTop   = true;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.SelectedTab   = this.tabPage1;
     this.tabControl1.Size          = new System.Drawing.Size(846, 371);
     this.tabControl1.TabIndex      = 1;
     this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPage1,
         this.tabPage2
     });
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.fpSpread1);
     this.tabPage1.Location = new System.Drawing.Point(0, 25);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(846, 346);
     this.tabPage1.TabIndex = 3;
     this.tabPage1.Title    = "结果";
     //
     // fpSpread1
     //
     this.fpSpread1.About = "2.5.2007.2005";
     this.fpSpread1.AccessibleDescription = "fpSpread1";
     this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.fpSpread1.Location = new System.Drawing.Point(0, 0);
     this.fpSpread1.Name     = "fpSpread1";
     this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.fpSpread1_Sheet1
     });
     this.fpSpread1.Size              = new System.Drawing.Size(846, 346);
     this.fpSpread1.TabIndex          = 0;
     tipAppearance1.BackColor         = System.Drawing.SystemColors.Info;
     tipAppearance1.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     tipAppearance1.ForeColor         = System.Drawing.SystemColors.InfoText;
     this.fpSpread1.TextTipAppearance = tipAppearance1;
     this.fpSpread1.CellClick        += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread1_CellClick);
     //
     // fpSpread1_Sheet1
     //
     this.fpSpread1_Sheet1.Reset();
     this.fpSpread1_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.fpSpread1_Sheet1.ColumnCount    = 8;
     this.fpSpread1_Sheet1.RowCount       = 1;
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "文件编码";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "住院流水号";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "患者姓名";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "节点路径";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "节点名称";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "数值";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "文件类型";
     this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "文件名称";
     this.fpSpread1_Sheet1.Columns.Get(0).Label  = "文件编码";
     this.fpSpread1_Sheet1.Columns.Get(0).Width  = 76F;
     this.fpSpread1_Sheet1.Columns.Get(1).Label  = "住院流水号";
     this.fpSpread1_Sheet1.Columns.Get(1).Width  = 103F;
     this.fpSpread1_Sheet1.Columns.Get(2).Label  = "患者姓名";
     this.fpSpread1_Sheet1.Columns.Get(2).Width  = 88F;
     this.fpSpread1_Sheet1.Columns.Get(3).Label  = "节点路径";
     this.fpSpread1_Sheet1.Columns.Get(3).Width  = 111F;
     this.fpSpread1_Sheet1.Columns.Get(4).Label  = "节点名称";
     this.fpSpread1_Sheet1.Columns.Get(4).Width  = 104F;
     this.fpSpread1_Sheet1.Columns.Get(5).Label  = "数值";
     this.fpSpread1_Sheet1.Columns.Get(5).Locked = false;
     this.fpSpread1_Sheet1.Columns.Get(5).Width  = 101F;
     this.fpSpread1_Sheet1.Columns.Get(6).Label  = "文件类型";
     this.fpSpread1_Sheet1.Columns.Get(6).Width  = 121F;
     this.fpSpread1_Sheet1.Columns.Get(7).Label  = "文件名称";
     this.fpSpread1_Sheet1.Columns.Get(7).Width  = 111F;
     this.fpSpread1_Sheet1.GrayAreaBackColor     = System.Drawing.Color.White;
     this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.Color.White;
     this.tabPage2.Location  = new System.Drawing.Point(0, 25);
     this.tabPage2.Name      = "tabPage2";
     this.tabPage2.Selected  = false;
     this.tabPage2.Size      = new System.Drawing.Size(846, 346);
     this.tabPage2.TabIndex  = 4;
     this.tabPage2.Title     = "病历";
     //
     // toolBar1
     //
     this.toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton1,
         this.toolBarButton2,
         this.tbQuery,
         this.tbShowEMR,
         this.toolBarButton5,
         this.tbExit
     });
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.ImageList      = this.imageList16;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(846, 41);
     this.toolBar1.TabIndex       = 3;
     this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
     //
     // toolBarButton1
     //
     this.toolBarButton1.Name  = "toolBarButton1";
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButton2
     //
     this.toolBarButton2.Name  = "toolBarButton2";
     this.toolBarButton2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbQuery
     //
     this.tbQuery.ImageIndex  = 4;
     this.tbQuery.Name        = "tbQuery";
     this.tbQuery.Text        = "查询";
     this.tbQuery.ToolTipText = "查询";
     //
     // tbShowEMR
     //
     this.tbShowEMR.ImageIndex = 33;
     this.tbShowEMR.Name       = "tbShowEMR";
     this.tbShowEMR.Text       = "显示病历";
     //
     // toolBarButton5
     //
     this.toolBarButton5.Name  = "toolBarButton5";
     this.toolBarButton5.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbExit
     //
     this.tbExit.ImageIndex = 14;
     this.tbExit.Name       = "tbExit";
     this.tbExit.Text       = "退出";
     //
     // imageList16
     //
     this.imageList16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList16.ImageStream")));
     this.imageList16.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList16.Images.SetKeyName(0, "");
     this.imageList16.Images.SetKeyName(1, "");
     this.imageList16.Images.SetKeyName(2, "");
     this.imageList16.Images.SetKeyName(3, "");
     this.imageList16.Images.SetKeyName(4, "");
     this.imageList16.Images.SetKeyName(5, "");
     this.imageList16.Images.SetKeyName(6, "");
     this.imageList16.Images.SetKeyName(7, "");
     this.imageList16.Images.SetKeyName(8, "");
     this.imageList16.Images.SetKeyName(9, "");
     this.imageList16.Images.SetKeyName(10, "");
     this.imageList16.Images.SetKeyName(11, "");
     this.imageList16.Images.SetKeyName(12, "");
     this.imageList16.Images.SetKeyName(13, "");
     this.imageList16.Images.SetKeyName(14, "");
     this.imageList16.Images.SetKeyName(15, "");
     this.imageList16.Images.SetKeyName(16, "");
     this.imageList16.Images.SetKeyName(17, "");
     this.imageList16.Images.SetKeyName(18, "");
     this.imageList16.Images.SetKeyName(19, "");
     this.imageList16.Images.SetKeyName(20, "");
     this.imageList16.Images.SetKeyName(21, "");
     this.imageList16.Images.SetKeyName(22, "");
     this.imageList16.Images.SetKeyName(23, "");
     this.imageList16.Images.SetKeyName(24, "");
     this.imageList16.Images.SetKeyName(25, "");
     this.imageList16.Images.SetKeyName(26, "");
     this.imageList16.Images.SetKeyName(27, "");
     this.imageList16.Images.SetKeyName(28, "");
     this.imageList16.Images.SetKeyName(29, "");
     this.imageList16.Images.SetKeyName(30, "");
     this.imageList16.Images.SetKeyName(31, "");
     this.imageList16.Images.SetKeyName(32, "");
     this.imageList16.Images.SetKeyName(33, "");
     this.imageList16.Images.SetKeyName(34, "");
     this.imageList16.Images.SetKeyName(35, "");
     this.imageList16.Images.SetKeyName(36, "");
     this.imageList16.Images.SetKeyName(37, "");
     this.imageList16.Images.SetKeyName(38, "");
     this.imageList16.Images.SetKeyName(39, "");
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.Color.Blue;
     this.label1.Location  = new System.Drawing.Point(256, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(216, 16);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "灰色代表只满足部分查询条件的患者";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(464, 15);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(114, 16);
     this.checkBox1.TabIndex = 5;
     this.checkBox1.Text     = "全符合/部分符合";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(608, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 6;
     this.label2.Text     = "结果";
     //
     // frmQuery
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(846, 501);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.toolBar1);
     this.Name  = "frmQuery";
     this.Text  = "病历查询";
     this.Load += new System.EventHandler(this.frmQuery_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     this.btnSend = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cmbInput = new System.Windows.Forms.ComboBox();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.mnuMain = new System.Windows.Forms.MainMenu(this.components);
     this.mnuFile = new System.Windows.Forms.MenuItem();
     this.mnuConnectionManager = new System.Windows.Forms.MenuItem();
     this.mnuConnect = new System.Windows.Forms.MenuItem();
     this.mnuDisconnect = new System.Windows.Forms.MenuItem();
     this.mnuSaveCurrentSession = new System.Windows.Forms.MenuItem();
     this.mnuOpenLog = new System.Windows.Forms.MenuItem();
     this.mnuSep1 = new System.Windows.Forms.MenuItem();
     this.mnuExit = new System.Windows.Forms.MenuItem();
     this.mnuSettings = new System.Windows.Forms.MenuItem();
     this.mnuPreferences = new System.Windows.Forms.MenuItem();
     this.mnuMacroEditor = new System.Windows.Forms.MenuItem();
     this.mnuAliasEditor = new System.Windows.Forms.MenuItem();
     this.mnuHelp = new System.Windows.Forms.MenuItem();
     this.mnuAbout = new System.Windows.Forms.MenuItem();
     this.staMain = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.tcMUD = new Crownwood.Magic.Controls.TabControl();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     this.SuspendLayout();
     //
     // btnSend
     //
     this.btnSend.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnSend.Location = new System.Drawing.Point(656, 4);
     this.btnSend.Name = "btnSend";
     this.btnSend.Size = new System.Drawing.Size(75, 23);
     this.btnSend.TabIndex = 1;
     this.btnSend.Text = "Send";
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.cmbInput);
     this.panel1.Controls.Add(this.btnSend);
     this.panel1.Location = new System.Drawing.Point(0, 381);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(744, 28);
     this.panel1.TabIndex = 3;
     //
     // cmbInput
     //
     this.cmbInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbInput.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbInput.Location = new System.Drawing.Point(3, 1);
     this.cmbInput.Name = "cmbInput";
     this.cmbInput.Size = new System.Drawing.Size(640, 24);
     this.cmbInput.TabIndex = 0;
     this.cmbInput.Resize += new System.EventHandler(this.cmbInput_Resize);
     this.cmbInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cmbInput_KeyPress);
     this.cmbInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cmbInput_KeyDown);
     //
     // splitter1
     //
     this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.splitter1.Location = new System.Drawing.Point(0, 439);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(744, 3);
     this.splitter1.TabIndex = 4;
     this.splitter1.TabStop = false;
     //
     // mnuMain
     //
     this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuFile,
     this.mnuSettings,
     this.mnuHelp});
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuConnectionManager,
     this.mnuConnect,
     this.mnuDisconnect,
     this.mnuSaveCurrentSession,
     this.mnuOpenLog,
     this.mnuSep1,
     this.mnuExit});
     this.mnuFile.Text = "&File";
     //
     // mnuConnectionManager
     //
     this.mnuConnectionManager.Index = 0;
     this.mnuConnectionManager.Shortcut = System.Windows.Forms.Shortcut.CtrlM;
     this.mnuConnectionManager.Text = "&Connection Manager..";
     this.mnuConnectionManager.Click += new System.EventHandler(this.mnuConnectionManager_Click);
     //
     // mnuConnect
     //
     this.mnuConnect.Index = 1;
     this.mnuConnect.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.mnuConnect.Text = "&Quick Connect...";
     this.mnuConnect.Click += new System.EventHandler(this.mnuConnect_Click);
     //
     // mnuDisconnect
     //
     this.mnuDisconnect.Index = 2;
     this.mnuDisconnect.Shortcut = System.Windows.Forms.Shortcut.CtrlD;
     this.mnuDisconnect.Text = "&Disconnect";
     this.mnuDisconnect.Click += new System.EventHandler(this.mnuDisconnect_Click);
     //
     // mnuSaveCurrentSession
     //
     this.mnuSaveCurrentSession.Index = 3;
     this.mnuSaveCurrentSession.Text = "&Save Current Session...";
     this.mnuSaveCurrentSession.Click += new System.EventHandler(this.mnuSaveCurrentSession_Click);
     //
     // mnuOpenLog
     //
     this.mnuOpenLog.Index = 4;
     this.mnuOpenLog.Text = "&Open Log...";
     this.mnuOpenLog.Click += new System.EventHandler(this.mnuOpenLog_Click);
     //
     // mnuSep1
     //
     this.mnuSep1.Index = 5;
     this.mnuSep1.Text = "-";
     //
     // mnuExit
     //
     this.mnuExit.Index = 6;
     this.mnuExit.Text = "E&xit";
     this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuSettings
     //
     this.mnuSettings.Index = 1;
     this.mnuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuPreferences,
     this.mnuMacroEditor,
     this.mnuAliasEditor});
     this.mnuSettings.Text = "&Settings";
     //
     // mnuPreferences
     //
     this.mnuPreferences.Index = 0;
     this.mnuPreferences.Text = "&Preferences...";
     this.mnuPreferences.Click += new System.EventHandler(this.mnuPreferences_Click);
     //
     // mnuMacroEditor
     //
     this.mnuMacroEditor.Index = 1;
     this.mnuMacroEditor.Text = "&Macro Editor...";
     this.mnuMacroEditor.Click += new System.EventHandler(this.mnuMacroEditor_Click);
     //
     // mnuAliasEditor
     //
     this.mnuAliasEditor.Index = 2;
     this.mnuAliasEditor.Text = "&Alias Editor...";
     this.mnuAliasEditor.Click += new System.EventHandler(this.mnuAliasEditor_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.mnuAbout});
     this.mnuHelp.Text = "&Help";
     //
     // mnuAbout
     //
     this.mnuAbout.Index = 0;
     this.mnuAbout.Text = "&About";
     this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
     //
     // staMain
     //
     this.staMain.Location = new System.Drawing.Point(0, 417);
     this.staMain.Name = "staMain";
     this.staMain.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
     this.statusBarPanel1});
     this.staMain.ShowPanels = true;
     this.staMain.Size = new System.Drawing.Size(744, 22);
     this.staMain.TabIndex = 5;
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel1.Name = "statusBarPanel1";
     this.statusBarPanel1.Text = "Use File -> Connect to Connect to a MUD";
     this.statusBarPanel1.Width = 727;
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tcMUD
     //
     this.tcMUD.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.tcMUD.IDEPixelArea = true;
     this.tcMUD.ImageList = this.imageList1;
     this.tcMUD.Location = new System.Drawing.Point(0, 0);
     this.tcMUD.Name = "tcMUD";
     this.tcMUD.ShowArrows = true;
     this.tcMUD.ShowClose = true;
     this.tcMUD.Size = new System.Drawing.Size(744, 375);
     this.tcMUD.TabIndex = 6;
     this.tcMUD.SelectionChanged += new System.EventHandler(this.tcMUD_SelectionChanged);
     this.tcMUD.ClosePressed += new System.EventHandler(this.tcMUD_ClosePressed);
     this.tcMUD.Click += new System.EventHandler(this.tcMUD_Click);
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.DefaultExt = "rtf";
     this.saveFileDialog1.Filter = "Rich Text Files (*.rtf)|*.rtf|All files (*.*)|*.*";
     //
     // FrmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(744, 442);
     this.Controls.Add(this.tcMUD);
     this.Controls.Add(this.staMain);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.splitter1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.mnuMain;
     this.MinimumSize = new System.Drawing.Size(300, 300);
     this.Name = "FrmMain";
     this.Text = "Dragonsong";
     this.Deactivate += new System.EventHandler(this.FrmMain_Deactivate);
     this.Resize += new System.EventHandler(this.FrmMain_Resize);
     this.Activated += new System.EventHandler(this.FrmMain_Activated);
     this.Load += new System.EventHandler(this.FrmMain_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 26
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(FrmMain));
     this.btnSend               = new System.Windows.Forms.Button();
     this.panel1                = new System.Windows.Forms.Panel();
     this.cmbInput              = new System.Windows.Forms.ComboBox();
     this.splitter1             = new System.Windows.Forms.Splitter();
     this.mnuMain               = new System.Windows.Forms.MainMenu();
     this.mnuFile               = new System.Windows.Forms.MenuItem();
     this.mnuConnectionManager  = new System.Windows.Forms.MenuItem();
     this.mnuConnect            = new System.Windows.Forms.MenuItem();
     this.mnuDisconnect         = new System.Windows.Forms.MenuItem();
     this.mnuSaveCurrentSession = new System.Windows.Forms.MenuItem();
     this.mnuOpenLog            = new System.Windows.Forms.MenuItem();
     this.mnuSep1               = new System.Windows.Forms.MenuItem();
     this.mnuExit               = new System.Windows.Forms.MenuItem();
     this.mnuSettings           = new System.Windows.Forms.MenuItem();
     this.mnuPreferences        = new System.Windows.Forms.MenuItem();
     this.mnuMacroEditor        = new System.Windows.Forms.MenuItem();
     this.mnuAliasEditor        = new System.Windows.Forms.MenuItem();
     this.mnuHelp               = new System.Windows.Forms.MenuItem();
     this.mnuAbout              = new System.Windows.Forms.MenuItem();
     this.staMain               = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1       = new System.Windows.Forms.StatusBarPanel();
     this.imageList1            = new System.Windows.Forms.ImageList(this.components);
     this.tcMUD           = new Crownwood.Magic.Controls.TabControl();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     this.SuspendLayout();
     //
     // btnSend
     //
     this.btnSend.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.btnSend.Location = new System.Drawing.Point(656, 8);
     this.btnSend.Name     = "btnSend";
     this.btnSend.TabIndex = 1;
     this.btnSend.Text     = "Send";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cmbInput);
     this.panel1.Controls.Add(this.btnSend);
     this.panel1.Location = new System.Drawing.Point(0, 368);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(744, 40);
     this.panel1.TabIndex = 3;
     //
     // cmbInput
     //
     this.cmbInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbInput.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.cmbInput.Location  = new System.Drawing.Point(8, 8);
     this.cmbInput.Name      = "cmbInput";
     this.cmbInput.Size      = new System.Drawing.Size(640, 24);
     this.cmbInput.TabIndex  = 0;
     this.cmbInput.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.cmbInput_KeyDown);
     this.cmbInput.Resize   += new System.EventHandler(this.cmbInput_Resize);
     this.cmbInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cmbInput_KeyPress);
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.splitter1.Location = new System.Drawing.Point(0, 438);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(744, 3);
     this.splitter1.TabIndex = 4;
     this.splitter1.TabStop  = false;
     //
     // mnuMain
     //
     this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
     {
         this.mnuFile,
         this.mnuSettings,
         this.mnuHelp
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
     {
         this.mnuConnectionManager,
         this.mnuConnect,
         this.mnuDisconnect,
         this.mnuSaveCurrentSession,
         this.mnuOpenLog,
         this.mnuSep1,
         this.mnuExit
     });
     this.mnuFile.Text = "&File";
     //
     // mnuConnectionManager
     //
     this.mnuConnectionManager.Index    = 0;
     this.mnuConnectionManager.Shortcut = System.Windows.Forms.Shortcut.CtrlM;
     this.mnuConnectionManager.Text     = "&Connection Manager..";
     this.mnuConnectionManager.Click   += new System.EventHandler(this.mnuConnectionManager_Click);
     //
     // mnuConnect
     //
     this.mnuConnect.Index    = 1;
     this.mnuConnect.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.mnuConnect.Text     = "&Quick Connect...";
     this.mnuConnect.Click   += new System.EventHandler(this.mnuConnect_Click);
     //
     // mnuDisconnect
     //
     this.mnuDisconnect.Index    = 2;
     this.mnuDisconnect.Shortcut = System.Windows.Forms.Shortcut.CtrlD;
     this.mnuDisconnect.Text     = "&Disconnect";
     this.mnuDisconnect.Click   += new System.EventHandler(this.mnuDisconnect_Click);
     //
     // mnuSaveCurrentSession
     //
     this.mnuSaveCurrentSession.Index  = 3;
     this.mnuSaveCurrentSession.Text   = "&Save Current Session...";
     this.mnuSaveCurrentSession.Click += new System.EventHandler(this.mnuSaveCurrentSession_Click);
     //
     // mnuOpenLog
     //
     this.mnuOpenLog.Index  = 4;
     this.mnuOpenLog.Text   = "&Open Log...";
     this.mnuOpenLog.Click += new System.EventHandler(this.mnuOpenLog_Click);
     //
     // mnuSep1
     //
     this.mnuSep1.Index = 5;
     this.mnuSep1.Text  = "-";
     //
     // mnuExit
     //
     this.mnuExit.Index  = 6;
     this.mnuExit.Text   = "E&xit";
     this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
     //
     // mnuSettings
     //
     this.mnuSettings.Index = 1;
     this.mnuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
     {
         this.mnuPreferences,
         this.mnuMacroEditor,
         this.mnuAliasEditor
     });
     this.mnuSettings.Text = "&Settings";
     //
     // mnuPreferences
     //
     this.mnuPreferences.Index  = 0;
     this.mnuPreferences.Text   = "&Preferences...";
     this.mnuPreferences.Click += new System.EventHandler(this.mnuPreferences_Click);
     //
     // mnuMacroEditor
     //
     this.mnuMacroEditor.Index  = 1;
     this.mnuMacroEditor.Text   = "&Macro Editor...";
     this.mnuMacroEditor.Click += new System.EventHandler(this.mnuMacroEditor_Click);
     //
     // mnuAliasEditor
     //
     this.mnuAliasEditor.Index  = 2;
     this.mnuAliasEditor.Text   = "&Alias Editor...";
     this.mnuAliasEditor.Click += new System.EventHandler(this.mnuAliasEditor_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
     {
         this.mnuAbout
     });
     this.mnuHelp.Text = "&Help";
     //
     // mnuAbout
     //
     this.mnuAbout.Index  = 0;
     this.mnuAbout.Text   = "&About";
     this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
     //
     // staMain
     //
     this.staMain.Location = new System.Drawing.Point(0, 416);
     this.staMain.Name     = "staMain";
     this.staMain.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[]
     {
         this.statusBarPanel1
     });
     this.staMain.ShowPanels = true;
     this.staMain.Size       = new System.Drawing.Size(744, 22);
     this.staMain.TabIndex   = 5;
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel1.Text     = "Use File -> Connect to Connect to a MUD";
     this.statusBarPanel1.Width    = 728;
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tcMUD
     //
     this.tcMUD.IDEPixelArea      = true;
     this.tcMUD.ImageList         = this.imageList1;
     this.tcMUD.Location          = new System.Drawing.Point(0, 0);
     this.tcMUD.Name              = "tcMUD";
     this.tcMUD.ShowArrows        = true;
     this.tcMUD.ShowClose         = true;
     this.tcMUD.TabIndex          = 6;
     this.tcMUD.Click            += new System.EventHandler(this.tcMUD_Click);
     this.tcMUD.SelectionChanged += new System.EventHandler(this.tcMUD_SelectionChanged);
     this.tcMUD.ClosePressed     += new System.EventHandler(this.tcMUD_ClosePressed);
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.DefaultExt = "rtf";
     this.saveFileDialog1.Filter     = "Rich Text Files (*.rtf)|*.rtf|All files (*.*)|*.*";
     //
     // FrmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(744, 441);
     this.Controls.Add(this.tcMUD);
     this.Controls.Add(this.staMain);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.splitter1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu        = this.mnuMain;
     this.Name        = "FrmMain";
     this.Text        = "Dragonsong";
     this.Resize     += new System.EventHandler(this.FrmMain_Resize);
     this.Load       += new System.EventHandler(this.FrmMain_Load);
     this.Activated  += new System.EventHandler(this.FrmMain_Activated);
     this.Deactivate += new System.EventHandler(this.FrmMain_Deactivate);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConnectionWindow));
     TabController = new TabControl();
     cmenTab = new ContextMenuStrip(components);
     cmenTabFullscreen = new ToolStripMenuItem();
     cmenTabSmartSize = new ToolStripMenuItem();
     cmenTabViewOnly = new ToolStripMenuItem();
     ToolStripSeparator1 = new ToolStripSeparator();
     cmenTabScreenshot = new ToolStripMenuItem();
     cmenTabStartChat = new ToolStripMenuItem();
     cmenTabTransferFile = new ToolStripMenuItem();
     cmenTabRefreshScreen = new ToolStripMenuItem();
     cmenTabSendSpecialKeys = new ToolStripMenuItem();
     cmenTabSendSpecialKeysCtrlAltDel = new ToolStripMenuItem();
     cmenTabSendSpecialKeysCtrlEsc = new ToolStripMenuItem();
     cmenTabExternalApps = new ToolStripMenuItem();
     cmenTabSep1 = new ToolStripSeparator();
     cmenTabRenameTab = new ToolStripMenuItem();
     cmenTabDuplicateTab = new ToolStripMenuItem();
     cmenTabReconnect = new ToolStripMenuItem();
     cmenTabDisconnect = new ToolStripMenuItem();
     cmenTabPuttySettings = new ToolStripMenuItem();
     cmenTab.SuspendLayout();
     SuspendLayout();
     //
     //TabController
     //
     TabController.Anchor = ((AnchorStyles.Top | AnchorStyles.Bottom)
         | AnchorStyles.Left)
         | AnchorStyles.Right;
     TabController.Appearance = TabControl.VisualAppearance.MultiDocument;
     TabController.Cursor = Cursors.Hand;
     TabController.DragFromControl = false;
     TabController.IDEPixelArea = true;
     TabController.IDEPixelBorder = false;
     TabController.Location = new Point(0, -1);
     TabController.Name = "TabController";
     TabController.Size = new Size(632, 454);
     TabController.TabIndex = 0;
     //
     //cmenTab
     //
     cmenTab.Items.AddRange(new ToolStripItem[]
     {
         cmenTabFullscreen,
         cmenTabSmartSize,
         cmenTabViewOnly,
         ToolStripSeparator1,
         cmenTabScreenshot,
         cmenTabStartChat,
         cmenTabTransferFile,
         cmenTabRefreshScreen,
         cmenTabSendSpecialKeys,
         cmenTabPuttySettings,
         cmenTabExternalApps,
         cmenTabSep1,
         cmenTabRenameTab,
         cmenTabDuplicateTab,
         cmenTabReconnect,
         cmenTabDisconnect
     });
     cmenTab.Name = "cmenTab";
     cmenTab.RenderMode = ToolStripRenderMode.Professional;
     cmenTab.Size = new Size(202, 346);
     //
     //cmenTabFullscreen
     //
     cmenTabFullscreen.Image = Resources.arrow_out;
     cmenTabFullscreen.Name = "cmenTabFullscreen";
     cmenTabFullscreen.Size = new Size(201, 22);
     cmenTabFullscreen.Text = @"Fullscreen (RDP)";
     //
     //cmenTabSmartSize
     //
     cmenTabSmartSize.Image = Resources.SmartSize;
     cmenTabSmartSize.Name = "cmenTabSmartSize";
     cmenTabSmartSize.Size = new Size(201, 22);
     cmenTabSmartSize.Text = @"SmartSize (RDP/VNC)";
     //
     //cmenTabViewOnly
     //
     cmenTabViewOnly.Name = "cmenTabViewOnly";
     cmenTabViewOnly.Size = new Size(201, 22);
     cmenTabViewOnly.Text = @"View Only (VNC)";
     //
     //ToolStripSeparator1
     //
     ToolStripSeparator1.Name = "ToolStripSeparator1";
     ToolStripSeparator1.Size = new Size(198, 6);
     //
     //cmenTabScreenshot
     //
     cmenTabScreenshot.Image = Resources.Screenshot_Add;
     cmenTabScreenshot.Name = "cmenTabScreenshot";
     cmenTabScreenshot.Size = new Size(201, 22);
     cmenTabScreenshot.Text = @"Screenshot";
     //
     //cmenTabStartChat
     //
     cmenTabStartChat.Image = Resources.Chat;
     cmenTabStartChat.Name = "cmenTabStartChat";
     cmenTabStartChat.Size = new Size(201, 22);
     cmenTabStartChat.Text = @"Start Chat (VNC)";
     cmenTabStartChat.Visible = false;
     //
     //cmenTabTransferFile
     //
     cmenTabTransferFile.Image = Resources.SSHTransfer;
     cmenTabTransferFile.Name = "cmenTabTransferFile";
     cmenTabTransferFile.Size = new Size(201, 22);
     cmenTabTransferFile.Text = @"Transfer File (SSH)";
     //
     //cmenTabRefreshScreen
     //
     cmenTabRefreshScreen.Image = Resources.Refresh;
     cmenTabRefreshScreen.Name = "cmenTabRefreshScreen";
     cmenTabRefreshScreen.Size = new Size(201, 22);
     cmenTabRefreshScreen.Text = @"Refresh Screen (VNC)";
     //
     //cmenTabSendSpecialKeys
     //
     cmenTabSendSpecialKeys.DropDownItems.AddRange(new ToolStripItem[]
     {
         cmenTabSendSpecialKeysCtrlAltDel,
         cmenTabSendSpecialKeysCtrlEsc
     });
     cmenTabSendSpecialKeys.Image = Resources.Keyboard;
     cmenTabSendSpecialKeys.Name = "cmenTabSendSpecialKeys";
     cmenTabSendSpecialKeys.Size = new Size(201, 22);
     cmenTabSendSpecialKeys.Text = @"Send special Keys (VNC)";
     //
     //cmenTabSendSpecialKeysCtrlAltDel
     //
     cmenTabSendSpecialKeysCtrlAltDel.Name = "cmenTabSendSpecialKeysCtrlAltDel";
     cmenTabSendSpecialKeysCtrlAltDel.Size = new Size(141, 22);
     cmenTabSendSpecialKeysCtrlAltDel.Text = @"Ctrl+Alt+Del";
     //
     //cmenTabSendSpecialKeysCtrlEsc
     //
     cmenTabSendSpecialKeysCtrlEsc.Name = "cmenTabSendSpecialKeysCtrlEsc";
     cmenTabSendSpecialKeysCtrlEsc.Size = new Size(141, 22);
     cmenTabSendSpecialKeysCtrlEsc.Text = @"Ctrl+Esc";
     //
     //cmenTabExternalApps
     //
     cmenTabExternalApps.Image = (Image)(resources.GetObject("cmenTabExternalApps.Image"));
     cmenTabExternalApps.Name = "cmenTabExternalApps";
     cmenTabExternalApps.Size = new Size(201, 22);
     cmenTabExternalApps.Text = @"External Applications";
     //
     //cmenTabSep1
     //
     cmenTabSep1.Name = "cmenTabSep1";
     cmenTabSep1.Size = new Size(198, 6);
     //
     //cmenTabRenameTab
     //
     cmenTabRenameTab.Image = Resources.Rename;
     cmenTabRenameTab.Name = "cmenTabRenameTab";
     cmenTabRenameTab.Size = new Size(201, 22);
     cmenTabRenameTab.Text = @"Rename Tab";
     //
     //cmenTabDuplicateTab
     //
     cmenTabDuplicateTab.Name = "cmenTabDuplicateTab";
     cmenTabDuplicateTab.Size = new Size(201, 22);
     cmenTabDuplicateTab.Text = @"Duplicate Tab";
     //
     //cmenTabReconnect
     //
     cmenTabReconnect.Image = (Image)(resources.GetObject("cmenTabReconnect.Image"));
     cmenTabReconnect.Name = "cmenTabReconnect";
     cmenTabReconnect.Size = new Size(201, 22);
     cmenTabReconnect.Text = @"Reconnect";
     //
     //cmenTabDisconnect
     //
     cmenTabDisconnect.Image = Resources.Pause;
     cmenTabDisconnect.Name = "cmenTabDisconnect";
     cmenTabDisconnect.Size = new Size(201, 22);
     cmenTabDisconnect.Text = @"Disconnect";
     //
     //cmenTabPuttySettings
     //
     cmenTabPuttySettings.Name = "cmenTabPuttySettings";
     cmenTabPuttySettings.Size = new Size(201, 22);
     cmenTabPuttySettings.Text = @"PuTTY Settings";
     //
     //Connection
     //
     ClientSize = new Size(632, 453);
     Controls.Add(TabController);
     Font = new Font("Segoe UI", 8.25F, FontStyle.Regular, GraphicsUnit.Point, Convert.ToByte(0));
     Icon = Resources.mRemote_Icon;
     Name = "Connection";
     TabText = @"UI.Window.Connection";
     Text = @"UI.Window.Connection";
     cmenTab.ResumeLayout(false);
     ResumeLayout(false);
 }
Ejemplo n.º 28
0
                private void InitializeComponent()
                {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Connection));
            this.TabController = new Crownwood.Magic.Controls.TabControl();
            this.cmenTab = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.cmenTabFullscreen = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabSmartSize = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabViewOnly = new System.Windows.Forms.ToolStripMenuItem();
            this.ToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmenTabScreenshot = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabStartChat = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabTransferFile = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabRefreshScreen = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabSendSpecialKeys = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabSendSpecialKeysCtrlAltDel = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabSendSpecialKeysCtrlEsc = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenShowPuTTYMenu = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabPuttySettings = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabExternalApps = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabSep1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmenTabRenameTab = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabDuplicateTab = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabReconnect = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTabDisconnect = new System.Windows.Forms.ToolStripMenuItem();
            this.cmenTab.SuspendLayout();
            this.SuspendLayout();
            // 
            // TabController
            // 
            this.TabController.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.TabController.Appearance = Crownwood.Magic.Controls.TabControl.VisualAppearance.MultiDocument;
            this.TabController.Cursor = System.Windows.Forms.Cursors.Hand;
            this.TabController.DragFromControl = false;
            this.TabController.IDEPixelArea = true;
            this.TabController.IDEPixelBorder = false;
            this.TabController.Location = new System.Drawing.Point(0, -1);
            this.TabController.Name = "TabController";
            this.TabController.Size = new System.Drawing.Size(632, 454);
            this.TabController.TabIndex = 0;
            this.TabController.ClosePressed += new System.EventHandler(this.TabController_ClosePressed);
            this.TabController.SelectionChanged += new System.EventHandler(this.TabController_SelectionChanged);
            this.TabController.PageDragStart += new System.Windows.Forms.MouseEventHandler(this.TabController_PageDragStart);
            this.TabController.PageDragMove += new System.Windows.Forms.MouseEventHandler(this.TabController_PageDragMove);
            this.TabController.PageDragEnd += new System.Windows.Forms.MouseEventHandler(this.TabController_PageDragEnd);
            this.TabController.PageDragQuit += new System.Windows.Forms.MouseEventHandler(this.TabController_PageDragEnd);
            this.TabController.DoubleClickTab += new Crownwood.Magic.Controls.TabControl.DoubleClickTabHandler(this.TabController_DoubleClickTab);
            this.TabController.DragDrop += new System.Windows.Forms.DragEventHandler(this.TabController_DragDrop);
            this.TabController.DragEnter += new System.Windows.Forms.DragEventHandler(this.TabController_DragEnter);
            this.TabController.DragOver += new System.Windows.Forms.DragEventHandler(this.TabController_DragOver);
            this.TabController.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TabController_MouseUp);
            this.TabController.Resize += new System.EventHandler(this.TabController_Resize);
            // 
            // cmenTab
            // 
            this.cmenTab.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmenTabFullscreen,
            this.cmenTabSmartSize,
            this.cmenTabViewOnly,
            this.ToolStripSeparator1,
            this.cmenTabScreenshot,
            this.cmenTabStartChat,
            this.cmenTabTransferFile,
            this.cmenTabRefreshScreen,
            this.cmenTabSendSpecialKeys,
            this.cmenShowPuTTYMenu,
            this.cmenTabPuttySettings,
            this.cmenTabExternalApps,
            this.cmenTabSep1,
            this.cmenTabRenameTab,
            this.cmenTabDuplicateTab,
            this.cmenTabReconnect,
            this.cmenTabDisconnect});
            this.cmenTab.Name = "cmenTab";
            this.cmenTab.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.cmenTab.Size = new System.Drawing.Size(202, 346);
            // 
            // cmenTabFullscreen
            // 
            this.cmenTabFullscreen.Image = global::My.Resources.Resources.Fullscreen;
            this.cmenTabFullscreen.Name = "cmenTabFullscreen";
            this.cmenTabFullscreen.Size = new System.Drawing.Size(201, 22);
            this.cmenTabFullscreen.Text = "Fullscreen (RDP)";
            this.cmenTabFullscreen.Click += new System.EventHandler(this.cmenTabFullscreen_Click);
            // 
            // cmenTabSmartSize
            // 
            this.cmenTabSmartSize.Image = global::My.Resources.Resources.SmartSize;
            this.cmenTabSmartSize.Name = "cmenTabSmartSize";
            this.cmenTabSmartSize.Size = new System.Drawing.Size(201, 22);
            this.cmenTabSmartSize.Text = "SmartSize (RDP/VNC)";
            this.cmenTabSmartSize.Click += new System.EventHandler(this.cmenTabSmartSize_Click);
            // 
            // cmenTabViewOnly
            // 
            this.cmenTabViewOnly.Name = "cmenTabViewOnly";
            this.cmenTabViewOnly.Size = new System.Drawing.Size(201, 22);
            this.cmenTabViewOnly.Text = "View Only (VNC)";
            this.cmenTabViewOnly.Click += new System.EventHandler(this.cmenTabViewOnly_Click);
            // 
            // ToolStripSeparator1
            // 
            this.ToolStripSeparator1.Name = "ToolStripSeparator1";
            this.ToolStripSeparator1.Size = new System.Drawing.Size(198, 6);
            // 
            // cmenTabScreenshot
            // 
            this.cmenTabScreenshot.Image = global::My.Resources.Resources.Screenshot_Add;
            this.cmenTabScreenshot.Name = "cmenTabScreenshot";
            this.cmenTabScreenshot.Size = new System.Drawing.Size(201, 22);
            this.cmenTabScreenshot.Text = "Screenshot";
            this.cmenTabScreenshot.Click += new System.EventHandler(this.cmenTabScreenshot_Click);
            // 
            // cmenTabStartChat
            // 
            this.cmenTabStartChat.Image = global::My.Resources.Resources.Chat;
            this.cmenTabStartChat.Name = "cmenTabStartChat";
            this.cmenTabStartChat.Size = new System.Drawing.Size(201, 22);
            this.cmenTabStartChat.Text = "Start Chat (VNC)";
            this.cmenTabStartChat.Visible = false;
            this.cmenTabStartChat.Click += new System.EventHandler(this.cmenTabStartChat_Click);
            // 
            // cmenTabTransferFile
            // 
            this.cmenTabTransferFile.Image = global::My.Resources.Resources.SSHTransfer;
            this.cmenTabTransferFile.Name = "cmenTabTransferFile";
            this.cmenTabTransferFile.Size = new System.Drawing.Size(201, 22);
            this.cmenTabTransferFile.Text = "Transfer File (SSH)";
            this.cmenTabTransferFile.Click += new System.EventHandler(this.cmenTabTransferFile_Click);
            // 
            // cmenTabRefreshScreen
            // 
            this.cmenTabRefreshScreen.Image = global::My.Resources.Resources.Refresh;
            this.cmenTabRefreshScreen.Name = "cmenTabRefreshScreen";
            this.cmenTabRefreshScreen.Size = new System.Drawing.Size(201, 22);
            this.cmenTabRefreshScreen.Text = "Refresh Screen (VNC)";
            this.cmenTabRefreshScreen.Click += new System.EventHandler(this.cmenTabRefreshScreen_Click);
            // 
            // cmenTabSendSpecialKeys
            // 
            this.cmenTabSendSpecialKeys.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmenTabSendSpecialKeysCtrlAltDel,
            this.cmenTabSendSpecialKeysCtrlEsc});
            this.cmenTabSendSpecialKeys.Image = global::My.Resources.Resources.Keyboard;
            this.cmenTabSendSpecialKeys.Name = "cmenTabSendSpecialKeys";
            this.cmenTabSendSpecialKeys.Size = new System.Drawing.Size(201, 22);
            this.cmenTabSendSpecialKeys.Text = "Send special Keys (VNC)";
            // 
            // cmenTabSendSpecialKeysCtrlAltDel
            // 
            this.cmenTabSendSpecialKeysCtrlAltDel.Name = "cmenTabSendSpecialKeysCtrlAltDel";
            this.cmenTabSendSpecialKeysCtrlAltDel.Size = new System.Drawing.Size(141, 22);
            this.cmenTabSendSpecialKeysCtrlAltDel.Text = "Ctrl+Alt+Del";
            this.cmenTabSendSpecialKeysCtrlAltDel.Click += new System.EventHandler(this.cmenTabSendSpecialKeysCtrlAltDel_Click);
            // 
            // cmenTabSendSpecialKeysCtrlEsc
            // 
            this.cmenTabSendSpecialKeysCtrlEsc.Name = "cmenTabSendSpecialKeysCtrlEsc";
            this.cmenTabSendSpecialKeysCtrlEsc.Size = new System.Drawing.Size(141, 22);
            this.cmenTabSendSpecialKeysCtrlEsc.Text = "Ctrl+Esc";
            this.cmenTabSendSpecialKeysCtrlEsc.Click += new System.EventHandler(this.cmenTabSendSpecialKeysCtrlEsc_Click);
            // 
            // cmenShowPuTTYMenu
            // 
            this.cmenShowPuTTYMenu.Name = "cmenShowPuTTYMenu";
            this.cmenShowPuTTYMenu.Size = new System.Drawing.Size(201, 22);
            this.cmenShowPuTTYMenu.Text = "Show PuTTY Menu";
            this.cmenShowPuTTYMenu.Click += new System.EventHandler(this.cmenShowPuTTYMenu_Click);
            // 
            // cmenTabPuttySettings
            // 
            this.cmenTabPuttySettings.Name = "cmenTabPuttySettings";
            this.cmenTabPuttySettings.Size = new System.Drawing.Size(201, 22);
            this.cmenTabPuttySettings.Text = "PuTTY Settings";
            this.cmenTabPuttySettings.Click += new System.EventHandler(this.cmenTabPuttySettings_Click);
            // 
            // cmenTabExternalApps
            // 
            this.cmenTabExternalApps.Image = ((System.Drawing.Image)(resources.GetObject("cmenTabExternalApps.Image")));
            this.cmenTabExternalApps.Name = "cmenTabExternalApps";
            this.cmenTabExternalApps.Size = new System.Drawing.Size(201, 22);
            this.cmenTabExternalApps.Text = "External Applications";
            // 
            // cmenTabSep1
            // 
            this.cmenTabSep1.Name = "cmenTabSep1";
            this.cmenTabSep1.Size = new System.Drawing.Size(198, 6);
            // 
            // cmenTabRenameTab
            // 
            this.cmenTabRenameTab.Image = global::My.Resources.Resources.Rename;
            this.cmenTabRenameTab.Name = "cmenTabRenameTab";
            this.cmenTabRenameTab.Size = new System.Drawing.Size(201, 22);
            this.cmenTabRenameTab.Text = "Rename Tab";
            this.cmenTabRenameTab.Click += new System.EventHandler(this.cmenTabRenameTab_Click);
            // 
            // cmenTabDuplicateTab
            // 
            this.cmenTabDuplicateTab.Name = "cmenTabDuplicateTab";
            this.cmenTabDuplicateTab.Size = new System.Drawing.Size(201, 22);
            this.cmenTabDuplicateTab.Text = "Duplicate Tab";
            this.cmenTabDuplicateTab.Click += new System.EventHandler(this.cmenTabDuplicateTab_Click);
            // 
            // cmenTabReconnect
            // 
            this.cmenTabReconnect.Image = ((System.Drawing.Image)(resources.GetObject("cmenTabReconnect.Image")));
            this.cmenTabReconnect.Name = "cmenTabReconnect";
            this.cmenTabReconnect.Size = new System.Drawing.Size(201, 22);
            this.cmenTabReconnect.Text = "Reconnect";
            this.cmenTabReconnect.Click += new System.EventHandler(this.cmenTabReconnect_Click);
            // 
            // cmenTabDisconnect
            // 
            this.cmenTabDisconnect.Image = global::My.Resources.Resources.Pause;
            this.cmenTabDisconnect.Name = "cmenTabDisconnect";
            this.cmenTabDisconnect.Size = new System.Drawing.Size(201, 22);
            this.cmenTabDisconnect.Text = "Disconnect";
            this.cmenTabDisconnect.Click += new System.EventHandler(this.cmenTabDisconnect_Click);
            // 
            // Connection
            // 
            this.ClientSize = new System.Drawing.Size(632, 453);
            this.Controls.Add(this.TabController);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Connection";
            this.TabText = "UI.Window.Connection";
            this.Text = "UI.Window.Connection";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Connection_FormClosing);
            this.Load += new System.EventHandler(this.Connection_Load);
            this.DockStateChanged += new System.EventHandler(this.Connection_DockStateChanged);
            this.cmenTab.ResumeLayout(false);
            this.ResumeLayout(false);

                }
Ejemplo n.º 29
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(FormSearch));
     this.panel1 = new System.Windows.Forms.Panel();
     this.textBoxExclude = new System.Windows.Forms.TextBox();
     this.labelExclude = new System.Windows.Forms.Label();
     this.progressBarSearch = new System.Windows.Forms.ProgressBar();
     this.checkBoxSearchAny = new System.Windows.Forms.CheckBox();
     this.textBoxAvaibility = new System.Windows.Forms.TextBox();
     this.labelAvailability = new System.Windows.Forms.Label();
     this.comboBoxSearchType = new System.Windows.Forms.ComboBox();
     this.textBoxMinSize = new System.Windows.Forms.TextBox();
     this.labelSizeUpper = new System.Windows.Forms.Label();
     this.textBoxMaxSize = new System.Windows.Forms.TextBox();
     this.labelSizeLower = new System.Windows.Forms.Label();
     this.buttonExtend = new System.Windows.Forms.Button();
     this.buttonSearch = new System.Windows.Forms.Button();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.textBoxSearch = new System.Windows.Forms.TextBox();
     this.tabSearchs = new Crownwood.Magic.Controls.TabControl();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.textBoxExclude);
     this.panel1.Controls.Add(this.labelExclude);
     this.panel1.Controls.Add(this.progressBarSearch);
     this.panel1.Controls.Add(this.checkBoxSearchAny);
     this.panel1.Controls.Add(this.textBoxAvaibility);
     this.panel1.Controls.Add(this.labelAvailability);
     this.panel1.Controls.Add(this.comboBoxSearchType);
     this.panel1.Controls.Add(this.textBoxMinSize);
     this.panel1.Controls.Add(this.labelSizeUpper);
     this.panel1.Controls.Add(this.textBoxMaxSize);
     this.panel1.Controls.Add(this.labelSizeLower);
     this.panel1.Controls.Add(this.buttonExtend);
     this.panel1.Controls.Add(this.buttonSearch);
     this.panel1.Controls.Add(this.textBoxSearch);
     this.panel1.Location = new System.Drawing.Point(6, 9);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(158, 355);
     this.panel1.TabIndex = 0;
     //
     // textBoxExclude
     //
     this.textBoxExclude.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxExclude.Location = new System.Drawing.Point(7, 202);
     this.textBoxExclude.Name = "textBoxExclude";
     this.textBoxExclude.Size = new System.Drawing.Size(143, 20);
     this.textBoxExclude.TabIndex = 24;
     this.textBoxExclude.Text = "";
     this.textBoxExclude.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelExclude
     //
     this.labelExclude.Location = new System.Drawing.Point(4, 169);
     this.labelExclude.Name = "labelExclude";
     this.labelExclude.Size = new System.Drawing.Size(147, 28);
     this.labelExclude.TabIndex = 23;
     this.labelExclude.Text = "Exclude results containing:";
     this.labelExclude.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // progressBarSearch
     //
     this.progressBarSearch.Location = new System.Drawing.Point(7, 300);
     this.progressBarSearch.Name = "progressBarSearch";
     this.progressBarSearch.Size = new System.Drawing.Size(147, 24);
     this.progressBarSearch.TabIndex = 22;
     this.progressBarSearch.Visible = false;
     //
     // checkBoxSearchAny
     //
     this.checkBoxSearchAny.Location = new System.Drawing.Point(8, 35);
     this.checkBoxSearchAny.Name = "checkBoxSearchAny";
     this.checkBoxSearchAny.Size = new System.Drawing.Size(145, 16);
     this.checkBoxSearchAny.TabIndex = 21;
     this.checkBoxSearchAny.Text = "Match any words";
     //
     // textBoxAvaibility
     //
     this.textBoxAvaibility.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxAvaibility.Location = new System.Drawing.Point(98, 140);
     this.textBoxAvaibility.Name = "textBoxAvaibility";
     this.textBoxAvaibility.Size = new System.Drawing.Size(40, 20);
     this.textBoxAvaibility.TabIndex = 20;
     this.textBoxAvaibility.Text = "";
     this.textBoxAvaibility.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSize_KeyPress);
     this.textBoxAvaibility.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelAvailability
     //
     this.labelAvailability.Location = new System.Drawing.Point(8, 142);
     this.labelAvailability.Name = "labelAvailability";
     this.labelAvailability.Size = new System.Drawing.Size(89, 16);
     this.labelAvailability.TabIndex = 19;
     this.labelAvailability.Text = "Availability >";
     this.labelAvailability.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboBoxSearchType
     //
     this.comboBoxSearchType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSearchType.Location = new System.Drawing.Point(8, 59);
     this.comboBoxSearchType.Name = "comboBoxSearchType";
     this.comboBoxSearchType.Size = new System.Drawing.Size(143, 21);
     this.comboBoxSearchType.TabIndex = 18;
     //
     // textBoxMinSize
     //
     this.textBoxMinSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMinSize.Location = new System.Drawing.Point(98, 114);
     this.textBoxMinSize.Name = "textBoxMinSize";
     this.textBoxMinSize.Size = new System.Drawing.Size(40, 20);
     this.textBoxMinSize.TabIndex = 17;
     this.textBoxMinSize.Text = "";
     this.textBoxMinSize.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSize_KeyPress);
     this.textBoxMinSize.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelSizeUpper
     //
     this.labelSizeUpper.Location = new System.Drawing.Point(8, 115);
     this.labelSizeUpper.Name = "labelSizeUpper";
     this.labelSizeUpper.Size = new System.Drawing.Size(93, 16);
     this.labelSizeUpper.TabIndex = 16;
     this.labelSizeUpper.Text = "Size (MB) >";
     this.labelSizeUpper.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textBoxMaxSize
     //
     this.textBoxMaxSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxSize.Location = new System.Drawing.Point(98, 91);
     this.textBoxMaxSize.Name = "textBoxMaxSize";
     this.textBoxMaxSize.Size = new System.Drawing.Size(40, 20);
     this.textBoxMaxSize.TabIndex = 15;
     this.textBoxMaxSize.Text = "";
     this.textBoxMaxSize.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSize_KeyPress);
     this.textBoxMaxSize.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelSizeLower
     //
     this.labelSizeLower.Location = new System.Drawing.Point(8, 91);
     this.labelSizeLower.Name = "labelSizeLower";
     this.labelSizeLower.Size = new System.Drawing.Size(92, 16);
     this.labelSizeLower.TabIndex = 14;
     this.labelSizeLower.Text = "Size (MB) <";
     this.labelSizeLower.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // buttonExtend
     //
     this.buttonExtend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonExtend.Location = new System.Drawing.Point(5, 263);
     this.buttonExtend.Name = "buttonExtend";
     this.buttonExtend.Size = new System.Drawing.Size(147, 24);
     this.buttonExtend.TabIndex = 13;
     this.buttonExtend.Text = "Search more";
     this.buttonExtend.Click += new System.EventHandler(this.buttonExtend_Click);
     //
     // buttonSearch
     //
     this.buttonSearch.BackColor = System.Drawing.SystemColors.Control;
     this.buttonSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonSearch.Image = ((System.Drawing.Image)(resources.GetObject("buttonSearch.Image")));
     this.buttonSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonSearch.Location = new System.Drawing.Point(6, 231);
     this.buttonSearch.Name = "buttonSearch";
     this.buttonSearch.Size = new System.Drawing.Size(146, 24);
     this.buttonSearch.TabIndex = 12;
     this.buttonSearch.Text = "Search";
     this.buttonSearch.Click += new System.EventHandler(this.buttonSearch_Click);
     //
     // imageList1
     //
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Red;
     //
     // textBoxSearch
     //
     this.textBoxSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxSearch.Location = new System.Drawing.Point(8, 11);
     this.textBoxSearch.Name = "textBoxSearch";
     this.textBoxSearch.Size = new System.Drawing.Size(142, 20);
     this.textBoxSearch.TabIndex = 11;
     this.textBoxSearch.Text = "";
     this.textBoxSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // tabSearchs
     //
     this.tabSearchs.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.tabSearchs.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tabSearchs.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabSearchs.Location = new System.Drawing.Point(7, 7);
     this.tabSearchs.Name = "tabSearchs";
     this.tabSearchs.PositionTop = true;
     this.tabSearchs.ShowArrows = true;
     this.tabSearchs.ShowClose = true;
     this.tabSearchs.ShrinkPagesToFit = false;
     this.tabSearchs.Size = new System.Drawing.Size(498, 340);
     this.tabSearchs.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.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.panel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.tabSearchs);
     this.panel2.Location = new System.Drawing.Point(171, 9);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(515, 356);
     this.panel2.TabIndex = 2;
     //
     // FormSearch
     //
     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(693, 372);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "FormSearch";
     this.Text = "FormSearch";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 30
0
 private void TabController_DoubleClickTab(TabControl sender, TabPage page)
 {
     _firstClickTicks = 0;
     if (Settings.Default.DoubleClickOnTabClosesIt)
     {
         CloseConnectionTab();
     }
 }
Ejemplo n.º 31
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(FormUploads));
     this.panel1                    = new System.Windows.Forms.Panel();
     this.panelUpDetails            = new System.Windows.Forms.Panel();
     this.uploadsList               = new eLePhant.Client.uploadsListView(this.components);
     this.splitter1                 = new System.Windows.Forms.Splitter();
     this.panel2                    = new System.Windows.Forms.Panel();
     this.splitter2                 = new System.Windows.Forms.Splitter();
     this.panel3                    = new System.Windows.Forms.Panel();
     this.panel4                    = new System.Windows.Forms.Panel();
     this.tabControlDetails         = new Crownwood.Magic.Controls.TabControl();
     this.tabPageDetails            = new Crownwood.Magic.Controls.TabPage();
     this.buttonRename              = new System.Windows.Forms.Button();
     this.buttonOpenFolder          = new System.Windows.Forms.Button();
     this.buttonSetCommet           = new System.Windows.Forms.Button();
     this.textBoxComment            = new System.Windows.Forms.TextBox();
     this.labelComment              = new System.Windows.Forms.Label();
     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.imageList1                = new System.Windows.Forms.ImageList(this.components);
     this.tabPagStats               = new Crownwood.Magic.Controls.TabPage();
     this.labelSessionUploadedRes   = new System.Windows.Forms.Label();
     this.labelSessionDownloadedRes = new System.Windows.Forms.Label();
     this.labelSessionRequestsRes   = new System.Windows.Forms.Label();
     this.labelSessionUploaded      = new System.Windows.Forms.Label();
     this.labelSessionDownloaded    = new System.Windows.Forms.Label();
     this.labelSessionRequests      = new System.Windows.Forms.Label();
     this.panelLeft                 = new System.Windows.Forms.Panel();
     this.panelLeftDetails          = new System.Windows.Forms.Panel();
     this.buttonReload              = new System.Windows.Forms.Button();
     this.labelSharedFiles          = new System.Windows.Forms.Label();
     this.sharedListView            = new eLePhant.Client.sharedListView(this.components);
     this.toolTip1                  = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.panelUpDetails.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.tabPageDetails.SuspendLayout();
     this.tabPagStats.SuspendLayout();
     this.panelLeft.SuspendLayout();
     this.panelLeftDetails.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panelUpDetails);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(776, 128);
     this.panel1.TabIndex = 0;
     //
     // panelUpDetails
     //
     this.panelUpDetails.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.panelUpDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelUpDetails.Controls.Add(this.uploadsList);
     this.panelUpDetails.Location = new System.Drawing.Point(8, 8);
     this.panelUpDetails.Name     = "panelUpDetails";
     this.panelUpDetails.Size     = new System.Drawing.Size(760, 118);
     this.panelUpDetails.TabIndex = 2;
     //
     // uploadsList
     //
     this.uploadsList.AllowColumnReorder = true;
     this.uploadsList.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.uploadsList.AutoArrange          = false;
     this.uploadsList.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.uploadsList.DefaultCustomDraw    = true;
     this.uploadsList.ForeColor            = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.uploadsList.FullRowSelect        = true;
     this.uploadsList.FullyCustomHeader    = false;
     this.uploadsList.HideSelection        = false;
     this.uploadsList.IncreaseHeaderHeight = 0;
     this.uploadsList.Location             = new System.Drawing.Point(8, 8);
     this.uploadsList.Name       = "uploadsList";
     this.uploadsList.Size       = new System.Drawing.Size(744, 104);
     this.uploadsList.sortColumn = -1;
     this.uploadsList.TabIndex   = 2;
     this.uploadsList.View       = System.Windows.Forms.View.Details;
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location = new System.Drawing.Point(0, 128);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(776, 7);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.splitter2);
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Controls.Add(this.panelLeft);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 135);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(776, 265);
     this.panel2.TabIndex = 2;
     //
     // splitter2
     //
     this.splitter2.Location = new System.Drawing.Point(392, 0);
     this.splitter2.Name     = "splitter2";
     this.splitter2.Size     = new System.Drawing.Size(8, 265);
     this.splitter2.TabIndex = 5;
     this.splitter2.TabStop  = false;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(392, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(384, 265);
     this.panel3.TabIndex = 3;
     //
     // panel4
     //
     this.panel4.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.panel4.BackColor   = System.Drawing.Color.White;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.tabControlDetails);
     this.panel4.Location = new System.Drawing.Point(8, 3);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(370, 254);
     this.panel4.TabIndex = 15;
     //
     // 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(368, 252);
     this.tabControlDetails.TabIndex      = 0;
     this.tabControlDetails.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPageDetails,
         this.tabPagStats
     });
     this.tabControlDetails.SelectionChanged += new System.EventHandler(this.tabControlDetails_SelectionChanged);
     //
     // tabPageDetails
     //
     this.tabPageDetails.Controls.Add(this.buttonRename);
     this.tabPageDetails.Controls.Add(this.buttonOpenFolder);
     this.tabPageDetails.Controls.Add(this.buttonSetCommet);
     this.tabPageDetails.Controls.Add(this.textBoxComment);
     this.tabPageDetails.Controls.Add(this.labelComment);
     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.ImageIndex = 0;
     this.tabPageDetails.ImageList  = this.imageList1;
     this.tabPageDetails.Location   = new System.Drawing.Point(0, 0);
     this.tabPageDetails.Name       = "tabPageDetails";
     this.tabPageDetails.Size       = new System.Drawing.Size(368, 227);
     this.tabPageDetails.TabIndex   = 0;
     this.tabPageDetails.Title      = "Details";
     //
     // buttonRename
     //
     this.buttonRename.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRename.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonRename.Location  = new System.Drawing.Point(232, 2);
     this.buttonRename.Name      = "buttonRename";
     this.buttonRename.Size      = new System.Drawing.Size(137, 19);
     this.buttonRename.TabIndex  = 37;
     this.buttonRename.Text      = "Rename";
     this.buttonRename.Click    += new System.EventHandler(this.buttonRename_Click);
     //
     // buttonOpenFolder
     //
     this.buttonOpenFolder.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     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(340, 20);
     this.buttonOpenFolder.Name      = "buttonOpenFolder";
     this.buttonOpenFolder.Size      = new System.Drawing.Size(29, 19);
     this.buttonOpenFolder.TabIndex  = 36;
     this.toolTip1.SetToolTip(this.buttonOpenFolder, "Open folder");
     this.buttonOpenFolder.Click += new System.EventHandler(this.buttonOpenFolder_Click);
     //
     // buttonSetCommet
     //
     this.buttonSetCommet.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSetCommet.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonSetCommet.Location  = new System.Drawing.Point(232, 38);
     this.buttonSetCommet.Name      = "buttonSetCommet";
     this.buttonSetCommet.Size      = new System.Drawing.Size(137, 19);
     this.buttonSetCommet.TabIndex  = 34;
     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.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxComment.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.textBoxComment.Location    = new System.Drawing.Point(84, 38);
     this.textBoxComment.Name        = "textBoxComment";
     this.textBoxComment.Size        = new System.Drawing.Size(149, 19);
     this.textBoxComment.TabIndex    = 33;
     this.textBoxComment.Text        = "";
     //
     // labelComment
     //
     this.labelComment.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelComment.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelComment.Location    = new System.Drawing.Point(4, 38);
     this.labelComment.Name        = "labelComment";
     this.labelComment.Size        = new System.Drawing.Size(81, 19);
     this.labelComment.TabIndex    = 32;
     this.labelComment.Text        = "Comment:";
     //
     // tx_fileName
     //
     this.tx_fileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     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(84, 2);
     this.tx_fileName.Name        = "tx_fileName";
     this.tx_fileName.Size        = new System.Drawing.Size(149, 19);
     this.tx_fileName.TabIndex    = 30;
     this.tx_fileName.Text        = "";
     //
     // tx_completeName
     //
     this.tx_completeName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     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(84, 20);
     this.tx_completeName.Name        = "tx_completeName";
     this.tx_completeName.ReadOnly    = true;
     this.tx_completeName.Size        = new System.Drawing.Size(258, 19);
     this.tx_completeName.TabIndex    = 29;
     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(4, 20);
     this.label6.Name        = "label6";
     this.label6.Size        = new System.Drawing.Size(81, 19);
     this.label6.TabIndex    = 28;
     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(4, 2);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(81, 19);
     this.label5.TabIndex    = 27;
     this.label5.Text        = "File Name:";
     //
     // panel_fileDetails
     //
     this.panel_fileDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.panel_fileDetails.AutoScroll = true;
     this.panel_fileDetails.Font       = new System.Drawing.Font("Tahoma", 7F);
     this.panel_fileDetails.Location   = new System.Drawing.Point(4, 58);
     this.panel_fileDetails.Name       = "panel_fileDetails";
     this.panel_fileDetails.Size       = new System.Drawing.Size(405, 171);
     this.panel_fileDetails.TabIndex   = 31;
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tabPagStats
     //
     this.tabPagStats.Controls.Add(this.labelSessionUploadedRes);
     this.tabPagStats.Controls.Add(this.labelSessionDownloadedRes);
     this.tabPagStats.Controls.Add(this.labelSessionRequestsRes);
     this.tabPagStats.Controls.Add(this.labelSessionUploaded);
     this.tabPagStats.Controls.Add(this.labelSessionDownloaded);
     this.tabPagStats.Controls.Add(this.labelSessionRequests);
     this.tabPagStats.ImageIndex = 1;
     this.tabPagStats.ImageList  = this.imageList1;
     this.tabPagStats.Location   = new System.Drawing.Point(0, 0);
     this.tabPagStats.Name       = "tabPagStats";
     this.tabPagStats.Selected   = false;
     this.tabPagStats.Size       = new System.Drawing.Size(368, 227);
     this.tabPagStats.TabIndex   = 2;
     this.tabPagStats.Title      = "Stats";
     //
     // labelSessionUploadedRes
     //
     this.labelSessionUploadedRes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionUploadedRes.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionUploadedRes.Location    = new System.Drawing.Point(194, 44);
     this.labelSessionUploadedRes.Name        = "labelSessionUploadedRes";
     this.labelSessionUploadedRes.Size        = new System.Drawing.Size(123, 19);
     this.labelSessionUploadedRes.TabIndex    = 16;
     this.labelSessionUploadedRes.Text        = "0";
     //
     // labelSessionDownloadedRes
     //
     this.labelSessionDownloadedRes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionDownloadedRes.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionDownloadedRes.Location    = new System.Drawing.Point(194, 26);
     this.labelSessionDownloadedRes.Name        = "labelSessionDownloadedRes";
     this.labelSessionDownloadedRes.Size        = new System.Drawing.Size(123, 19);
     this.labelSessionDownloadedRes.TabIndex    = 15;
     this.labelSessionDownloadedRes.Text        = "0";
     //
     // labelSessionRequestsRes
     //
     this.labelSessionRequestsRes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionRequestsRes.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionRequestsRes.Location    = new System.Drawing.Point(194, 8);
     this.labelSessionRequestsRes.Name        = "labelSessionRequestsRes";
     this.labelSessionRequestsRes.Size        = new System.Drawing.Size(123, 19);
     this.labelSessionRequestsRes.TabIndex    = 14;
     this.labelSessionRequestsRes.Text        = "0";
     //
     // labelSessionUploaded
     //
     this.labelSessionUploaded.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelSessionUploaded.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionUploaded.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionUploaded.Location    = new System.Drawing.Point(10, 44);
     this.labelSessionUploaded.Name        = "labelSessionUploaded";
     this.labelSessionUploaded.Size        = new System.Drawing.Size(185, 19);
     this.labelSessionUploaded.TabIndex    = 13;
     this.labelSessionUploaded.Text        = "Session Uploaded:";
     //
     // labelSessionDownloaded
     //
     this.labelSessionDownloaded.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelSessionDownloaded.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionDownloaded.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionDownloaded.Location    = new System.Drawing.Point(10, 26);
     this.labelSessionDownloaded.Name        = "labelSessionDownloaded";
     this.labelSessionDownloaded.Size        = new System.Drawing.Size(185, 19);
     this.labelSessionDownloaded.TabIndex    = 12;
     this.labelSessionDownloaded.Text        = "Session Downloaded:";
     //
     // labelSessionRequests
     //
     this.labelSessionRequests.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelSessionRequests.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionRequests.Font        = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionRequests.Location    = new System.Drawing.Point(10, 8);
     this.labelSessionRequests.Name        = "labelSessionRequests";
     this.labelSessionRequests.Size        = new System.Drawing.Size(185, 19);
     this.labelSessionRequests.TabIndex    = 11;
     this.labelSessionRequests.Text        = "Session Requests:";
     //
     // panelLeft
     //
     this.panelLeft.Controls.Add(this.panelLeftDetails);
     this.panelLeft.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panelLeft.Location = new System.Drawing.Point(0, 0);
     this.panelLeft.Name     = "panelLeft";
     this.panelLeft.Size     = new System.Drawing.Size(392, 265);
     this.panelLeft.TabIndex = 4;
     //
     // panelLeftDetails
     //
     this.panelLeftDetails.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.panelLeftDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelLeftDetails.Controls.Add(this.buttonReload);
     this.panelLeftDetails.Controls.Add(this.labelSharedFiles);
     this.panelLeftDetails.Controls.Add(this.sharedListView);
     this.panelLeftDetails.Location = new System.Drawing.Point(8, 3);
     this.panelLeftDetails.Name     = "panelLeftDetails";
     this.panelLeftDetails.Size     = new System.Drawing.Size(382, 255);
     this.panelLeftDetails.TabIndex = 0;
     //
     // buttonReload
     //
     this.buttonReload.BackColor  = System.Drawing.SystemColors.Control;
     this.buttonReload.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.buttonReload.Image      = ((System.Drawing.Image)(resources.GetObject("buttonReload.Image")));
     this.buttonReload.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonReload.Location   = new System.Drawing.Point(152, 8);
     this.buttonReload.Name       = "buttonReload";
     this.buttonReload.Size       = new System.Drawing.Size(208, 24);
     this.buttonReload.TabIndex   = 17;
     this.buttonReload.Text       = "Reload shared list";
     this.buttonReload.Click     += new System.EventHandler(this.buttonReload_Click);
     //
     // labelSharedFiles
     //
     this.labelSharedFiles.Location  = new System.Drawing.Point(8, 8);
     this.labelSharedFiles.Name      = "labelSharedFiles";
     this.labelSharedFiles.Size      = new System.Drawing.Size(140, 20);
     this.labelSharedFiles.TabIndex  = 15;
     this.labelSharedFiles.Text      = "Shared Files";
     this.labelSharedFiles.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // sharedListView
     //
     this.sharedListView.Alignment          = System.Windows.Forms.ListViewAlignment.Default;
     this.sharedListView.AllowColumnReorder = true;
     this.sharedListView.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.sharedListView.AutoArrange          = false;
     this.sharedListView.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.sharedListView.DefaultCustomDraw    = true;
     this.sharedListView.ForeColor            = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.sharedListView.FullRowSelect        = true;
     this.sharedListView.FullyCustomHeader    = false;
     this.sharedListView.HideSelection        = false;
     this.sharedListView.IncreaseHeaderHeight = 0;
     this.sharedListView.Location             = new System.Drawing.Point(8, 40);
     this.sharedListView.Name                  = "sharedListView";
     this.sharedListView.Size                  = new System.Drawing.Size(364, 207);
     this.sharedListView.sortColumn            = -1;
     this.sharedListView.TabIndex              = 16;
     this.sharedListView.View                  = System.Windows.Forms.View.Details;
     this.sharedListView.SelectedIndexChanged += new System.EventHandler(this.sharedListView_SelectedIndexChanged);
     //
     // FormUploads
     //
     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(776, 400);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "FormUploads";
     this.Text            = "FormUploads";
     this.panel1.ResumeLayout(false);
     this.panelUpDetails.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.tabPageDetails.ResumeLayout(false);
     this.tabPagStats.ResumeLayout(false);
     this.panelLeft.ResumeLayout(false);
     this.panelLeftDetails.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1       = new Crownwood.Magic.Controls.TabControl();
     this.tabSpesa          = new Crownwood.Magic.Controls.TabPage();
     this.gridSpesa         = new System.Windows.Forms.DataGrid();
     this.tabEntrata        = new Crownwood.Magic.Controls.TabPage();
     this.gridEntrata       = new System.Windows.Forms.DataGrid();
     this.tabVarSpesa       = new Crownwood.Magic.Controls.TabPage();
     this.gridVarSpesa      = new System.Windows.Forms.DataGrid();
     this.btnCancel         = new System.Windows.Forms.Button();
     this.btnOk             = new System.Windows.Forms.Button();
     this.label1            = new System.Windows.Forms.Label();
     this.txtEsercMovimento = new System.Windows.Forms.TextBox();
     this.label2            = new System.Windows.Forms.Label();
     this.txtNumMovimento   = new System.Windows.Forms.TextBox();
     this.DS = new /*Rana:spesa_automatismi.*/ vistaForm();
     this.tabControl1.SuspendLayout();
     this.tabSpesa.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpesa)).BeginInit();
     this.tabEntrata.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridEntrata)).BeginInit();
     this.tabVarSpesa.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridVarSpesa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.IDEPixelArea  = true;
     this.tabControl1.Location      = new System.Drawing.Point(16, 48);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.SelectedTab   = this.tabEntrata;
     this.tabControl1.Size          = new System.Drawing.Size(616, 344);
     this.tabControl1.TabIndex      = 0;
     this.tabControl1.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabEntrata,
         this.tabSpesa,
         this.tabVarSpesa
     });
     this.tabControl1.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabSpesa
     //
     this.tabSpesa.Controls.Add(this.gridSpesa);
     this.tabSpesa.Location = new System.Drawing.Point(0, 0);
     this.tabSpesa.Name     = "tabSpesa";
     this.tabSpesa.Selected = false;
     this.tabSpesa.Size     = new System.Drawing.Size(616, 319);
     this.tabSpesa.TabIndex = 1;
     this.tabSpesa.Title    = "Movimenti Spesa";
     //
     // gridSpesa
     //
     this.gridSpesa.AllowNavigation = false;
     this.gridSpesa.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.gridSpesa.DataMember      = "";
     this.gridSpesa.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridSpesa.Location        = new System.Drawing.Point(8, 8);
     this.gridSpesa.Name            = "gridSpesa";
     this.gridSpesa.ReadOnly        = true;
     this.gridSpesa.Size            = new System.Drawing.Size(600, 304);
     this.gridSpesa.TabIndex        = 1;
     this.gridSpesa.Tag             = "expenseview.autospesa";
     this.gridSpesa.DoubleClick    += new System.EventHandler(this.gridSpesa_DoubleClick);
     //
     // tabEntrata
     //
     this.tabEntrata.Controls.Add(this.gridEntrata);
     this.tabEntrata.Location = new System.Drawing.Point(0, 0);
     this.tabEntrata.Name     = "tabEntrata";
     this.tabEntrata.Size     = new System.Drawing.Size(616, 319);
     this.tabEntrata.TabIndex = 0;
     this.tabEntrata.Title    = "Movimenti Entrata";
     //
     // gridEntrata
     //
     this.gridEntrata.AllowNavigation = false;
     this.gridEntrata.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.gridEntrata.DataMember      = "";
     this.gridEntrata.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridEntrata.Location        = new System.Drawing.Point(8, 8);
     this.gridEntrata.Name            = "gridEntrata";
     this.gridEntrata.ReadOnly        = true;
     this.gridEntrata.Size            = new System.Drawing.Size(600, 304);
     this.gridEntrata.TabIndex        = 0;
     this.gridEntrata.Tag             = "incomeview.autospesa";
     this.gridEntrata.DoubleClick    += new System.EventHandler(this.gridEntrata_DoubleClick);
     //
     // tabVarSpesa
     //
     this.tabVarSpesa.Controls.Add(this.gridVarSpesa);
     this.tabVarSpesa.Location = new System.Drawing.Point(0, 0);
     this.tabVarSpesa.Name     = "tabVarSpesa";
     this.tabVarSpesa.Selected = false;
     this.tabVarSpesa.Size     = new System.Drawing.Size(616, 319);
     this.tabVarSpesa.TabIndex = 2;
     this.tabVarSpesa.Title    = "Variazioni Spesa";
     //
     // gridVarSpesa
     //
     this.gridVarSpesa.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.gridVarSpesa.DataMember      = "";
     this.gridVarSpesa.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridVarSpesa.Location        = new System.Drawing.Point(8, 8);
     this.gridVarSpesa.Name            = "gridVarSpesa";
     this.gridVarSpesa.Size            = new System.Drawing.Size(600, 304);
     this.gridVarSpesa.TabIndex        = 1;
     this.gridVarSpesa.Tag             = "expensevarview.autospesa";
     this.gridVarSpesa.DoubleClick    += new System.EventHandler(this.gridVarSpesa_DoubleClick);
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(464, 408);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.TabIndex     = 1;
     this.btnCancel.Text         = "Cancel";
     this.btnCancel.Visible      = false;
     this.btnCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOk
     //
     this.btnOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOk.Location     = new System.Drawing.Point(552, 408);
     this.btnOk.Name         = "btnOk";
     this.btnOk.TabIndex     = 2;
     this.btnOk.Tag          = "mainsave";
     this.btnOk.Text         = "Ok";
     this.btnOk.Click       += new System.EventHandler(this.btnOk_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(32, 8);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(72, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Esercizio";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtEsercMovimento
     //
     this.txtEsercMovimento.Location  = new System.Drawing.Point(104, 8);
     this.txtEsercMovimento.Name      = "txtEsercMovimento";
     this.txtEsercMovimento.ReadOnly  = true;
     this.txtEsercMovimento.Size      = new System.Drawing.Size(96, 20);
     this.txtEsercMovimento.TabIndex  = 4;
     this.txtEsercMovimento.Tag       = "expense.ymov";
     this.txtEsercMovimento.Text      = "";
     this.txtEsercMovimento.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(232, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(56, 16);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "Numero";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtNumMovimento
     //
     this.txtNumMovimento.Location  = new System.Drawing.Point(288, 8);
     this.txtNumMovimento.Name      = "txtNumMovimento";
     this.txtNumMovimento.ReadOnly  = true;
     this.txtNumMovimento.Size      = new System.Drawing.Size(88, 20);
     this.txtNumMovimento.TabIndex  = 6;
     this.txtNumMovimento.Tag       = "expense.nmov";
     this.txtNumMovimento.Text      = "";
     this.txtNumMovimento.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // DS
     //
     this.DS.DataSetName = "vistaForm";
     this.DS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // frmSpesaAutomatismi
     //
     this.AcceptButton      = this.btnOk;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(632, 437);
     this.Controls.Add(this.txtNumMovimento);
     this.Controls.Add(this.txtEsercMovimento);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.btnCancel);
     this.Name          = "frmSpesaAutomatismi";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Elenco Movimenti Automatici";
     this.tabControl1.ResumeLayout(false);
     this.tabSpesa.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSpesa)).EndInit();
     this.tabEntrata.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridEntrata)).EndInit();
     this.tabVarSpesa.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridVarSpesa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources =
         new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.menuControl              = new Crownwood.Magic.Menus.MenuControl();
     this.menuCommandFile          = new Crownwood.Magic.Menus.MenuCommand();
     this.addConnectionMenuCommand = new Crownwood.Magic.Menus.MenuCommand();
     this.imageList16              = new System.Windows.Forms.ImageList(this.components);
     this.menuCommandSep1          = new Crownwood.Magic.Menus.MenuCommand();
     this.exitMenuCommand          = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommandEdit          = new Crownwood.Magic.Menus.MenuCommand();
     this.addTestMenuCommand       = new Crownwood.Magic.Menus.MenuCommand();
     this.addSetMenuCommand        = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommandEditSep1      = new Crownwood.Magic.Menus.MenuCommand();
     this.importTestmenuCommand    = new Crownwood.Magic.Menus.MenuCommand();
     this.exportTestmenuCommand    = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommandWindow        = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommandHelp          = new Crownwood.Magic.Menus.MenuCommand();
     this.helpMenuCommand          = new Crownwood.Magic.Menus.MenuCommand();
     this.menuCommandHelpSep1      = new Crownwood.Magic.Menus.MenuCommand();
     this.aboutMenuCommand         = new Crownwood.Magic.Menus.MenuCommand();
     this.imageList24              = new System.Windows.Forms.ImageList(this.components);
     this.toolBar = new System.Windows.Forms.ToolBar();
     this.toolBarButtonAddConnection  = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonSep1           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonAddTest        = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonAddSet         = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonSep2           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonCut            = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonCopy           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonPaste          = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonSep3           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonImportToDb     = new System.Windows.Forms.ToolBarButton();
     this.toolBarButtonExportToAccess = new System.Windows.Forms.ToolBarButton();
     this.tabControl = new Crownwood.Magic.Controls.TabControl();
     this.SuspendLayout();
     //
     // menuControl
     //
     this.menuControl.AnimateStyle = Crownwood.Magic.Menus.Animation.System;
     this.menuControl.AnimateTime  = 100;
     this.menuControl.Cursor       = System.Windows.Forms.Cursors.Arrow;
     this.menuControl.Direction    = Crownwood.Magic.Common.Direction.Horizontal;
     this.menuControl.Dock         = System.Windows.Forms.DockStyle.Top;
     this.menuControl.Font         =
         new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular,
                                 System.Drawing.GraphicsUnit.World);
     this.menuControl.HighlightTextColor = System.Drawing.SystemColors.MenuText;
     this.menuControl.Location           = new System.Drawing.Point(0, 0);
     this.menuControl.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[]
     {
         this.menuCommandFile,
         this.menuCommandEdit,
         this.menuCommandWindow,
         this.menuCommandHelp
     });
     this.menuControl.Name     = "menuControl";
     this.menuControl.Size     = new System.Drawing.Size(1018, 25);
     this.menuControl.Style    = Crownwood.Magic.Common.VisualStyle.IDE;
     this.menuControl.TabIndex = 0;
     this.menuControl.TabStop  = false;
     this.menuControl.Text     = "menuControl1";
     //
     // menuCommandFile
     //
     this.menuCommandFile.Description = "MenuItem";
     this.menuCommandFile.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[]
     {
         this.addConnectionMenuCommand,
         this.menuCommandSep1,
         this.exitMenuCommand
     });
     this.menuCommandFile.Text = "&File";
     //
     // addConnectionMenuCommand
     //
     this.addConnectionMenuCommand.Description = "Add connection";
     this.addConnectionMenuCommand.ImageIndex  = 13;
     this.addConnectionMenuCommand.ImageList   = this.imageList16;
     this.addConnectionMenuCommand.Text        = "Add &Connection";
     this.addConnectionMenuCommand.Click      += new System.EventHandler(this.addConnectionMenuCommand_Click);
     //
     // imageList16
     //
     this.imageList16.ImageStream =
         ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList16.ImageStream")));
     this.imageList16.TransparentColor = System.Drawing.Color.Fuchsia;
     this.imageList16.Images.SetKeyName(0, "");
     this.imageList16.Images.SetKeyName(1, "Database-Disabled.bmp");
     this.imageList16.Images.SetKeyName(2, "Doc-Access.bmp");
     this.imageList16.Images.SetKeyName(3, "Doc-Access-Disabled.bmp");
     this.imageList16.Images.SetKeyName(4, "tests.bmp");
     this.imageList16.Images.SetKeyName(5, "sets.bmp");
     this.imageList16.Images.SetKeyName(6, "quantitative.bmp");
     this.imageList16.Images.SetKeyName(7, "verbal.bmp");
     this.imageList16.Images.SetKeyName(8, "mixed.bmp");
     this.imageList16.Images.SetKeyName(9, "test.bmp");
     this.imageList16.Images.SetKeyName(10, "set.bmp");
     this.imageList16.Images.SetKeyName(11, "adaptiveTest.bmp");
     this.imageList16.Images.SetKeyName(12, "practice2.bmp");
     this.imageList16.Images.SetKeyName(13, "Database-Add.bmp");
     this.imageList16.Images.SetKeyName(14, "AddTest.bmp");
     this.imageList16.Images.SetKeyName(15, "AddSet.bmp");
     this.imageList16.Images.SetKeyName(16, "Exit2.bmp");
     this.imageList16.Images.SetKeyName(17, "Import Database.bmp");
     this.imageList16.Images.SetKeyName(18, "Export Database.bmp");
     this.imageList16.Images.SetKeyName(19, "Help.bmp");
     //
     // menuCommandSep1
     //
     this.menuCommandSep1.Description = "MenuItem";
     this.menuCommandSep1.Text        = "-";
     //
     // exitMenuCommand
     //
     this.exitMenuCommand.Description = "Exit";
     this.exitMenuCommand.ImageIndex  = 16;
     this.exitMenuCommand.ImageList   = this.imageList16;
     this.exitMenuCommand.Text        = "&Exit";
     this.exitMenuCommand.Click      += new System.EventHandler(this.exitMenuCommand_Click);
     //
     // menuCommandEdit
     //
     this.menuCommandEdit.Description = "MenuItem";
     this.menuCommandEdit.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[]
     {
         this.addTestMenuCommand,
         this.addSetMenuCommand,
         this.menuCommandEditSep1,
         this.importTestmenuCommand,
         this.exportTestmenuCommand
     });
     this.menuCommandEdit.Text = "&Edit";
     //
     // addTestMenuCommand
     //
     this.addTestMenuCommand.Description = "Add test";
     this.addTestMenuCommand.ImageIndex  = 14;
     this.addTestMenuCommand.ImageList   = this.imageList16;
     this.addTestMenuCommand.Text        = "Add &Test";
     this.addTestMenuCommand.Click      += new System.EventHandler(this.addTestMenuCommand_Click_1);
     //
     // addSetMenuCommand
     //
     this.addSetMenuCommand.Description = "Add set";
     this.addSetMenuCommand.ImageIndex  = 15;
     this.addSetMenuCommand.ImageList   = this.imageList16;
     this.addSetMenuCommand.Text        = "Add &Set";
     this.addSetMenuCommand.Click      += new System.EventHandler(this.addSetMenuCommand_Click_1);
     //
     // menuCommandEditSep1
     //
     this.menuCommandEditSep1.Description = "MenuItem";
     this.menuCommandEditSep1.Text        = "-";
     //
     // importTestmenuCommand
     //
     this.importTestmenuCommand.Description = "Import test";
     this.importTestmenuCommand.ImageIndex  = 17;
     this.importTestmenuCommand.ImageList   = this.imageList16;
     this.importTestmenuCommand.Text        = "&Import Test";
     this.importTestmenuCommand.Click      += new System.EventHandler(this.importTestmenuCommand_Click);
     //
     // exportTestmenuCommand
     //
     this.exportTestmenuCommand.Description = "Export test";
     this.exportTestmenuCommand.ImageIndex  = 18;
     this.exportTestmenuCommand.ImageList   = this.imageList16;
     this.exportTestmenuCommand.Text        = "&Export Test";
     this.exportTestmenuCommand.Click      += new System.EventHandler(this.exportTestmenuCommand_Click);
     //
     // menuCommandWindow
     //
     this.menuCommandWindow.Description = "MenuItem";
     this.menuCommandWindow.Text        = "&Window";
     this.menuCommandWindow.Visible     = false;
     //
     // menuCommandHelp
     //
     this.menuCommandHelp.Description = "MenuItem";
     this.menuCommandHelp.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[]
     {
         this.helpMenuCommand,
         this.menuCommandHelpSep1,
         this.aboutMenuCommand
     });
     this.menuCommandHelp.Text = "&Help";
     //
     // helpMenuCommand
     //
     this.helpMenuCommand.Description = "Help";
     this.helpMenuCommand.ImageIndex  = 19;
     this.helpMenuCommand.ImageList   = this.imageList16;
     this.helpMenuCommand.Text        = "&Help";
     this.helpMenuCommand.Click      += new System.EventHandler(this.helpMenuCommand_Click);
     //
     // menuCommandHelpSep1
     //
     this.menuCommandHelpSep1.Description = "MenuItem";
     this.menuCommandHelpSep1.Text        = "-";
     //
     // aboutMenuCommand
     //
     this.aboutMenuCommand.Description = "About";
     this.aboutMenuCommand.Text        = "&About DbEditor";
     this.aboutMenuCommand.Click      += new System.EventHandler(this.aboutMenuCommand_Click);
     //
     // imageList24
     //
     this.imageList24.ImageStream =
         ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList24.ImageStream")));
     this.imageList24.TransparentColor = System.Drawing.Color.Fuchsia;
     this.imageList24.Images.SetKeyName(0, "");
     this.imageList24.Images.SetKeyName(1, "");
     this.imageList24.Images.SetKeyName(2, "");
     this.imageList24.Images.SetKeyName(3, "");
     this.imageList24.Images.SetKeyName(4, "");
     this.imageList24.Images.SetKeyName(5, "");
     this.imageList24.Images.SetKeyName(6, "");
     this.imageList24.Images.SetKeyName(7, "");
     this.imageList24.Images.SetKeyName(8, "Import Database.bmp");
     this.imageList24.Images.SetKeyName(9, "Export Database.bmp");
     //
     // toolBar
     //
     this.toolBar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.toolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[]
     {
         this.toolBarButtonAddConnection,
         this.toolBarButtonSep1,
         this.toolBarButtonAddTest,
         this.toolBarButtonAddSet,
         this.toolBarButtonSep2,
         this.toolBarButtonCut,
         this.toolBarButtonCopy,
         this.toolBarButtonPaste,
         this.toolBarButtonSep3,
         this.toolBarButtonExportToAccess,
         this.toolBarButtonImportToDb
     });
     this.toolBar.ButtonSize     = new System.Drawing.Size(30, 30);
     this.toolBar.DropDownArrows = true;
     this.toolBar.ImageList      = this.imageList24;
     this.toolBar.Location       = new System.Drawing.Point(0, 25);
     this.toolBar.Name           = "toolBar";
     this.toolBar.ShowToolTips   = true;
     this.toolBar.Size           = new System.Drawing.Size(1018, 36);
     this.toolBar.TabIndex       = 1;
     this.toolBar.ButtonClick   +=
         new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar_ButtonClick);
     //
     // toolBarButtonAddConnection
     //
     this.toolBarButtonAddConnection.ImageIndex  = 0;
     this.toolBarButtonAddConnection.Name        = "toolBarButtonAddConnection";
     this.toolBarButtonAddConnection.ToolTipText = "Add a New Connection";
     //
     // toolBarButtonSep1
     //
     this.toolBarButtonSep1.Name  = "toolBarButtonSep1";
     this.toolBarButtonSep1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButtonAddTest
     //
     this.toolBarButtonAddTest.ImageIndex  = 7;
     this.toolBarButtonAddTest.Name        = "toolBarButtonAddTest";
     this.toolBarButtonAddTest.ToolTipText = "Add a New Test";
     //
     // toolBarButtonAddSet
     //
     this.toolBarButtonAddSet.ImageIndex  = 6;
     this.toolBarButtonAddSet.Name        = "toolBarButtonAddSet";
     this.toolBarButtonAddSet.ToolTipText = "Add a New Question Set";
     //
     // toolBarButtonSep2
     //
     this.toolBarButtonSep2.Name  = "toolBarButtonSep2";
     this.toolBarButtonSep2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // toolBarButtonCut
     //
     this.toolBarButtonCut.ImageIndex  = 1;
     this.toolBarButtonCut.Name        = "toolBarButtonCut";
     this.toolBarButtonCut.ToolTipText = "Cut";
     this.toolBarButtonCut.Visible     = false;
     //
     // toolBarButtonCopy
     //
     this.toolBarButtonCopy.ImageIndex  = 2;
     this.toolBarButtonCopy.Name        = "toolBarButtonCopy";
     this.toolBarButtonCopy.ToolTipText = "Copy";
     this.toolBarButtonCopy.Visible     = false;
     //
     // toolBarButtonPaste
     //
     this.toolBarButtonPaste.ImageIndex  = 3;
     this.toolBarButtonPaste.Name        = "toolBarButtonPaste";
     this.toolBarButtonPaste.ToolTipText = "Paste";
     this.toolBarButtonPaste.Visible     = false;
     //
     // toolBarButtonSep3
     //
     this.toolBarButtonSep3.Name    = "toolBarButtonSep3";
     this.toolBarButtonSep3.Style   = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.toolBarButtonSep3.Visible = false;
     //
     // toolBarButtonImportToDb
     //
     this.toolBarButtonImportToDb.ImageIndex  = 8;
     this.toolBarButtonImportToDb.Name        = "toolBarButtonImportToDb";
     this.toolBarButtonImportToDb.ToolTipText = "Import Tests from a Database";
     //
     // toolBarButtonExportToAccess
     //
     this.toolBarButtonExportToAccess.ImageIndex  = 9;
     this.toolBarButtonExportToAccess.Name        = "toolBarButtonExportToAccess";
     this.toolBarButtonExportToAccess.ToolTipText = "Export Tests";
     //
     // tabControl
     //
     this.tabControl.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.IDEPixelArea = true;
     this.tabControl.ImageList    = this.imageList16;
     this.tabControl.Location     = new System.Drawing.Point(0, 61);
     this.tabControl.Name         = "tabControl";
     this.tabControl.Size         = new System.Drawing.Size(1018, 675);
     this.tabControl.TabIndex     = 2;
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1018, 736);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.toolBar);
     this.Controls.Add(this.menuControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(1024, 768);
     this.Name            = "MainForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "GMAT Club Test - Database Editor";
     this.Closed         += new System.EventHandler(this.MainForm_Closed);
     this.Load           += new System.EventHandler(this.MainForm_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
     this.statusBar                = new System.Windows.Forms.StatusBar();
     this.tabControlMain           = new Crownwood.Magic.Controls.TabControl();
     this.tabPageActiveFiles       = new Crownwood.Magic.Controls.TabPage();
     this.activeFilesControl       = new Kennedy.FileWatcher.Controls.ActiveFilesControl();
     this.mainMenu                 = new System.Windows.Forms.MainMenu();
     this.menuItemFile             = new System.Windows.Forms.MenuItem();
     this.menuItemFile_Load        = new System.Windows.Forms.MenuItem();
     this.menuItemFile_Close       = new System.Windows.Forms.MenuItem();
     this.menuItemFile_Sep1        = new System.Windows.Forms.MenuItem();
     this.menuItemFile_LoadGroup   = new System.Windows.Forms.MenuItem();
     this.menuItemFile_SaveGroup   = new System.Windows.Forms.MenuItem();
     this.menuItemFile_SaveGroupAs = new System.Windows.Forms.MenuItem();
     this.menuItemFile_Sep2        = new System.Windows.Forms.MenuItem();
     this.menuItemFile_Exit        = new System.Windows.Forms.MenuItem();
     this.menuItemHelp             = new System.Windows.Forms.MenuItem();
     this.menuItemHelp_About       = new System.Windows.Forms.MenuItem();
     this.openFileDialog           = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialogGroup      = new System.Windows.Forms.SaveFileDialog();
     this.openFileDialogGroup      = new System.Windows.Forms.OpenFileDialog();
     this.menuItemView             = new System.Windows.Forms.MenuItem();
     this.menuItemWordWrap         = new System.Windows.Forms.MenuItem();
     this.tabPageActiveFiles.SuspendLayout();
     this.SuspendLayout();
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 527);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(696, 22);
     this.statusBar.TabIndex = 0;
     //
     // tabControlMain
     //
     this.tabControlMain.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.tabControlMain.HideTabsMode     = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabControlMain.HotTrack         = true;
     this.tabControlMain.Location         = new System.Drawing.Point(0, 0);
     this.tabControlMain.Name             = "tabControlMain";
     this.tabControlMain.PositionTop      = true;
     this.tabControlMain.SelectedIndex    = 0;
     this.tabControlMain.SelectedTab      = this.tabPageActiveFiles;
     this.tabControlMain.ShowArrows       = true;
     this.tabControlMain.ShrinkPagesToFit = false;
     this.tabControlMain.Size             = new System.Drawing.Size(696, 527);
     this.tabControlMain.TabIndex         = 1;
     this.tabControlMain.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPageActiveFiles
     });
     this.tabControlMain.SelectionChanged += new System.EventHandler(this.tabControlMain_SelectionChanged);
     this.tabControlMain.ClosePressed     += new System.EventHandler(this.tabControlMain_ClosePressed);
     //
     // tabPageActiveFiles
     //
     this.tabPageActiveFiles.Controls.Add(this.activeFilesControl);
     this.tabPageActiveFiles.Location = new System.Drawing.Point(0, 0);
     this.tabPageActiveFiles.Name     = "tabPageActiveFiles";
     this.tabPageActiveFiles.Size     = new System.Drawing.Size(696, 502);
     this.tabPageActiveFiles.TabIndex = 3;
     this.tabPageActiveFiles.Title    = "All Files";
     //
     // activeFilesControl
     //
     this.activeFilesControl.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.activeFilesControl.Location         = new System.Drawing.Point(0, 0);
     this.activeFilesControl.Name             = "activeFilesControl";
     this.activeFilesControl.Size             = new System.Drawing.Size(696, 502);
     this.activeFilesControl.TabIndex         = 0;
     this.activeFilesControl.FileLoadRequest += new System.EventHandler(this.activeFilesControl_FileLoadRequest);
     this.activeFilesControl.FileSelected    += new Kennedy.FileWatcher.Controls.FileActionHandler(this.activeFilesControl_FileSelected);
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFile,
         this.menuItemView,
         this.menuItemHelp
     });
     //
     // menuItemFile
     //
     this.menuItemFile.Index = 0;
     this.menuItemFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFile_Load,
         this.menuItemFile_Close,
         this.menuItemFile_Sep1,
         this.menuItemFile_LoadGroup,
         this.menuItemFile_SaveGroup,
         this.menuItemFile_SaveGroupAs,
         this.menuItemFile_Sep2,
         this.menuItemFile_Exit
     });
     this.menuItemFile.Text = "&File";
     //
     // menuItemFile_Load
     //
     this.menuItemFile_Load.Index    = 0;
     this.menuItemFile_Load.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.menuItemFile_Load.Text     = "&Load File";
     this.menuItemFile_Load.Click   += new System.EventHandler(this.menuItemFile_Load_Click);
     //
     // menuItemFile_Close
     //
     this.menuItemFile_Close.Enabled  = false;
     this.menuItemFile_Close.Index    = 1;
     this.menuItemFile_Close.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
     this.menuItemFile_Close.Text     = "&Close File";
     this.menuItemFile_Close.Click   += new System.EventHandler(this.menuItemFile_Close_Click);
     //
     // menuItemFile_Sep1
     //
     this.menuItemFile_Sep1.Index = 2;
     this.menuItemFile_Sep1.Text  = "-";
     //
     // menuItemFile_LoadGroup
     //
     this.menuItemFile_LoadGroup.Index  = 3;
     this.menuItemFile_LoadGroup.Text   = "Load File &Group";
     this.menuItemFile_LoadGroup.Click += new System.EventHandler(this.menuItemFile_LoadGroup_Click);
     //
     // menuItemFile_SaveGroup
     //
     this.menuItemFile_SaveGroup.Index  = 4;
     this.menuItemFile_SaveGroup.Text   = "&Save File Group";
     this.menuItemFile_SaveGroup.Click += new System.EventHandler(this.menuItemFile_SaveGroup_Click);
     //
     // menuItemFile_SaveGroupAs
     //
     this.menuItemFile_SaveGroupAs.Index  = 5;
     this.menuItemFile_SaveGroupAs.Text   = "Save File Group &As ...";
     this.menuItemFile_SaveGroupAs.Click += new System.EventHandler(this.menuItemFile_SaveGroupAs_Click);
     //
     // menuItemFile_Sep2
     //
     this.menuItemFile_Sep2.Index = 6;
     this.menuItemFile_Sep2.Text  = "-";
     //
     // menuItemFile_Exit
     //
     this.menuItemFile_Exit.Index  = 7;
     this.menuItemFile_Exit.Text   = "E&xit";
     this.menuItemFile_Exit.Click += new System.EventHandler(this.menuItemFile_Exit_Click);
     //
     // menuItemHelp
     //
     this.menuItemHelp.Index = 2;
     this.menuItemHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemHelp_About
     });
     this.menuItemHelp.Text = "&Help";
     //
     // menuItemHelp_About
     //
     this.menuItemHelp_About.Index  = 0;
     this.menuItemHelp_About.Text   = "&About";
     this.menuItemHelp_About.Click += new System.EventHandler(this.menuItemHelp_About_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.Filter      = "Log Files (*.log)|*.log|Text Files (*.txt)|*.txt|All Files (*.*)|*.*";
     this.openFileDialog.Multiselect = true;
     this.openFileDialog.Title       = "Open Text File";
     //
     // saveFileDialogGroup
     //
     this.saveFileDialogGroup.FileName = "File Watcher Group1.fwg";
     this.saveFileDialogGroup.Filter   = "File Groups (*.fwg)|*.fwg|All Files (*.*)|*.*";
     this.saveFileDialogGroup.Title    = "Save File Group";
     //
     // openFileDialogGroup
     //
     this.openFileDialogGroup.Filter = "File Groups (*.fwg)|*.fwg|All Files (*.*)|*.*";
     this.openFileDialogGroup.Title  = "Load File Group";
     //
     // menuItemView
     //
     this.menuItemView.Index = 1;
     this.menuItemView.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemWordWrap
     });
     this.menuItemView.Text   = "&View";
     this.menuItemView.Popup += new System.EventHandler(this.menuItemView_Popup);
     //
     // menuItemWordWrap
     //
     this.menuItemWordWrap.Index  = 0;
     this.menuItemWordWrap.Text   = "&Word Wrap";
     this.menuItemWordWrap.Click += new System.EventHandler(this.menuItemWordWrap_Click);
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(696, 549);
     this.Controls.Add(this.tabControlMain);
     this.Controls.Add(this.statusBar);
     this.Icon     = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu     = this.mainMenu;
     this.Name     = "MainForm";
     this.Text     = "File Contents Watcher";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
     this.tabPageActiveFiles.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 35
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(FormUploads));
     this.panel1 = new System.Windows.Forms.Panel();
     this.panelUpDetails = new System.Windows.Forms.Panel();
     this.uploadsList = new eLePhant.Client.uploadsListView(this.components);
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel2 = new System.Windows.Forms.Panel();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.tabControlDetails = new Crownwood.Magic.Controls.TabControl();
     this.tabPageDetails = new Crownwood.Magic.Controls.TabPage();
     this.buttonRename = new System.Windows.Forms.Button();
     this.buttonOpenFolder = new System.Windows.Forms.Button();
     this.buttonSetCommet = new System.Windows.Forms.Button();
     this.textBoxComment = new System.Windows.Forms.TextBox();
     this.labelComment = new System.Windows.Forms.Label();
     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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.tabPagStats = new Crownwood.Magic.Controls.TabPage();
     this.labelSessionUploadedRes = new System.Windows.Forms.Label();
     this.labelSessionDownloadedRes = new System.Windows.Forms.Label();
     this.labelSessionRequestsRes = new System.Windows.Forms.Label();
     this.labelSessionUploaded = new System.Windows.Forms.Label();
     this.labelSessionDownloaded = new System.Windows.Forms.Label();
     this.labelSessionRequests = new System.Windows.Forms.Label();
     this.panelLeft = new System.Windows.Forms.Panel();
     this.panelLeftDetails = new System.Windows.Forms.Panel();
     this.buttonReload = new System.Windows.Forms.Button();
     this.labelSharedFiles = new System.Windows.Forms.Label();
     this.sharedListView = new eLePhant.Client.sharedListView(this.components);
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.panelUpDetails.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.tabPageDetails.SuspendLayout();
     this.tabPagStats.SuspendLayout();
     this.panelLeft.SuspendLayout();
     this.panelLeftDetails.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panelUpDetails);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(776, 128);
     this.panel1.TabIndex = 0;
     //
     // panelUpDetails
     //
     this.panelUpDetails.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.panelUpDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelUpDetails.Controls.Add(this.uploadsList);
     this.panelUpDetails.Location = new System.Drawing.Point(8, 8);
     this.panelUpDetails.Name = "panelUpDetails";
     this.panelUpDetails.Size = new System.Drawing.Size(760, 118);
     this.panelUpDetails.TabIndex = 2;
     //
     // uploadsList
     //
     this.uploadsList.AllowColumnReorder = true;
     this.uploadsList.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.uploadsList.AutoArrange = false;
     this.uploadsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.uploadsList.DefaultCustomDraw = true;
     this.uploadsList.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.uploadsList.FullRowSelect = true;
     this.uploadsList.FullyCustomHeader = false;
     this.uploadsList.HideSelection = false;
     this.uploadsList.IncreaseHeaderHeight = 0;
     this.uploadsList.Location = new System.Drawing.Point(8, 8);
     this.uploadsList.Name = "uploadsList";
     this.uploadsList.Size = new System.Drawing.Size(744, 104);
     this.uploadsList.sortColumn = -1;
     this.uploadsList.TabIndex = 2;
     this.uploadsList.View = System.Windows.Forms.View.Details;
     //
     // splitter1
     //
     this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location = new System.Drawing.Point(0, 128);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(776, 7);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop = false;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.splitter2);
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Controls.Add(this.panelLeft);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 135);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(776, 265);
     this.panel2.TabIndex = 2;
     //
     // splitter2
     //
     this.splitter2.Location = new System.Drawing.Point(392, 0);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(8, 265);
     this.splitter2.TabIndex = 5;
     this.splitter2.TabStop = false;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(392, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(384, 265);
     this.panel3.TabIndex = 3;
     //
     // panel4
     //
     this.panel4.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.panel4.BackColor = System.Drawing.Color.White;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.tabControlDetails);
     this.panel4.Location = new System.Drawing.Point(8, 3);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(370, 254);
     this.panel4.TabIndex = 15;
     //
     // 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(368, 252);
     this.tabControlDetails.TabIndex = 0;
     this.tabControlDetails.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
                                                                                         this.tabPageDetails,
                                                                                         this.tabPagStats});
     this.tabControlDetails.SelectionChanged += new System.EventHandler(this.tabControlDetails_SelectionChanged);
     //
     // tabPageDetails
     //
     this.tabPageDetails.Controls.Add(this.buttonRename);
     this.tabPageDetails.Controls.Add(this.buttonOpenFolder);
     this.tabPageDetails.Controls.Add(this.buttonSetCommet);
     this.tabPageDetails.Controls.Add(this.textBoxComment);
     this.tabPageDetails.Controls.Add(this.labelComment);
     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.ImageIndex = 0;
     this.tabPageDetails.ImageList = this.imageList1;
     this.tabPageDetails.Location = new System.Drawing.Point(0, 0);
     this.tabPageDetails.Name = "tabPageDetails";
     this.tabPageDetails.Size = new System.Drawing.Size(368, 227);
     this.tabPageDetails.TabIndex = 0;
     this.tabPageDetails.Title = "Details";
     //
     // buttonRename
     //
     this.buttonRename.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRename.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonRename.Location = new System.Drawing.Point(232, 2);
     this.buttonRename.Name = "buttonRename";
     this.buttonRename.Size = new System.Drawing.Size(137, 19);
     this.buttonRename.TabIndex = 37;
     this.buttonRename.Text = "Rename";
     this.buttonRename.Click += new System.EventHandler(this.buttonRename_Click);
     //
     // buttonOpenFolder
     //
     this.buttonOpenFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     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(340, 20);
     this.buttonOpenFolder.Name = "buttonOpenFolder";
     this.buttonOpenFolder.Size = new System.Drawing.Size(29, 19);
     this.buttonOpenFolder.TabIndex = 36;
     this.toolTip1.SetToolTip(this.buttonOpenFolder, "Open folder");
     this.buttonOpenFolder.Click += new System.EventHandler(this.buttonOpenFolder_Click);
     //
     // buttonSetCommet
     //
     this.buttonSetCommet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSetCommet.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonSetCommet.Location = new System.Drawing.Point(232, 38);
     this.buttonSetCommet.Name = "buttonSetCommet";
     this.buttonSetCommet.Size = new System.Drawing.Size(137, 19);
     this.buttonSetCommet.TabIndex = 34;
     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.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxComment.Font = new System.Drawing.Font("Tahoma", 7F);
     this.textBoxComment.Location = new System.Drawing.Point(84, 38);
     this.textBoxComment.Name = "textBoxComment";
     this.textBoxComment.Size = new System.Drawing.Size(149, 19);
     this.textBoxComment.TabIndex = 33;
     this.textBoxComment.Text = "";
     //
     // labelComment
     //
     this.labelComment.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelComment.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelComment.Location = new System.Drawing.Point(4, 38);
     this.labelComment.Name = "labelComment";
     this.labelComment.Size = new System.Drawing.Size(81, 19);
     this.labelComment.TabIndex = 32;
     this.labelComment.Text = "Comment:";
     //
     // tx_fileName
     //
     this.tx_fileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     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(84, 2);
     this.tx_fileName.Name = "tx_fileName";
     this.tx_fileName.Size = new System.Drawing.Size(149, 19);
     this.tx_fileName.TabIndex = 30;
     this.tx_fileName.Text = "";
     //
     // tx_completeName
     //
     this.tx_completeName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     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(84, 20);
     this.tx_completeName.Name = "tx_completeName";
     this.tx_completeName.ReadOnly = true;
     this.tx_completeName.Size = new System.Drawing.Size(258, 19);
     this.tx_completeName.TabIndex = 29;
     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(4, 20);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(81, 19);
     this.label6.TabIndex = 28;
     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(4, 2);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(81, 19);
     this.label5.TabIndex = 27;
     this.label5.Text = "File Name:";
     //
     // panel_fileDetails
     //
     this.panel_fileDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.panel_fileDetails.AutoScroll = true;
     this.panel_fileDetails.Font = new System.Drawing.Font("Tahoma", 7F);
     this.panel_fileDetails.Location = new System.Drawing.Point(4, 58);
     this.panel_fileDetails.Name = "panel_fileDetails";
     this.panel_fileDetails.Size = new System.Drawing.Size(405, 171);
     this.panel_fileDetails.TabIndex = 31;
     //
     // imageList1
     //
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // tabPagStats
     //
     this.tabPagStats.Controls.Add(this.labelSessionUploadedRes);
     this.tabPagStats.Controls.Add(this.labelSessionDownloadedRes);
     this.tabPagStats.Controls.Add(this.labelSessionRequestsRes);
     this.tabPagStats.Controls.Add(this.labelSessionUploaded);
     this.tabPagStats.Controls.Add(this.labelSessionDownloaded);
     this.tabPagStats.Controls.Add(this.labelSessionRequests);
     this.tabPagStats.ImageIndex = 1;
     this.tabPagStats.ImageList = this.imageList1;
     this.tabPagStats.Location = new System.Drawing.Point(0, 0);
     this.tabPagStats.Name = "tabPagStats";
     this.tabPagStats.Selected = false;
     this.tabPagStats.Size = new System.Drawing.Size(368, 227);
     this.tabPagStats.TabIndex = 2;
     this.tabPagStats.Title = "Stats";
     //
     // labelSessionUploadedRes
     //
     this.labelSessionUploadedRes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionUploadedRes.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionUploadedRes.Location = new System.Drawing.Point(194, 44);
     this.labelSessionUploadedRes.Name = "labelSessionUploadedRes";
     this.labelSessionUploadedRes.Size = new System.Drawing.Size(123, 19);
     this.labelSessionUploadedRes.TabIndex = 16;
     this.labelSessionUploadedRes.Text = "0";
     //
     // labelSessionDownloadedRes
     //
     this.labelSessionDownloadedRes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionDownloadedRes.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionDownloadedRes.Location = new System.Drawing.Point(194, 26);
     this.labelSessionDownloadedRes.Name = "labelSessionDownloadedRes";
     this.labelSessionDownloadedRes.Size = new System.Drawing.Size(123, 19);
     this.labelSessionDownloadedRes.TabIndex = 15;
     this.labelSessionDownloadedRes.Text = "0";
     //
     // labelSessionRequestsRes
     //
     this.labelSessionRequestsRes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionRequestsRes.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionRequestsRes.Location = new System.Drawing.Point(194, 8);
     this.labelSessionRequestsRes.Name = "labelSessionRequestsRes";
     this.labelSessionRequestsRes.Size = new System.Drawing.Size(123, 19);
     this.labelSessionRequestsRes.TabIndex = 14;
     this.labelSessionRequestsRes.Text = "0";
     //
     // labelSessionUploaded
     //
     this.labelSessionUploaded.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelSessionUploaded.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionUploaded.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionUploaded.Location = new System.Drawing.Point(10, 44);
     this.labelSessionUploaded.Name = "labelSessionUploaded";
     this.labelSessionUploaded.Size = new System.Drawing.Size(185, 19);
     this.labelSessionUploaded.TabIndex = 13;
     this.labelSessionUploaded.Text = "Session Uploaded:";
     //
     // labelSessionDownloaded
     //
     this.labelSessionDownloaded.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelSessionDownloaded.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionDownloaded.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionDownloaded.Location = new System.Drawing.Point(10, 26);
     this.labelSessionDownloaded.Name = "labelSessionDownloaded";
     this.labelSessionDownloaded.Size = new System.Drawing.Size(185, 19);
     this.labelSessionDownloaded.TabIndex = 12;
     this.labelSessionDownloaded.Text = "Session Downloaded:";
     //
     // labelSessionRequests
     //
     this.labelSessionRequests.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.labelSessionRequests.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.labelSessionRequests.Font = new System.Drawing.Font("Tahoma", 7F);
     this.labelSessionRequests.Location = new System.Drawing.Point(10, 8);
     this.labelSessionRequests.Name = "labelSessionRequests";
     this.labelSessionRequests.Size = new System.Drawing.Size(185, 19);
     this.labelSessionRequests.TabIndex = 11;
     this.labelSessionRequests.Text = "Session Requests:";
     //
     // panelLeft
     //
     this.panelLeft.Controls.Add(this.panelLeftDetails);
     this.panelLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelLeft.Location = new System.Drawing.Point(0, 0);
     this.panelLeft.Name = "panelLeft";
     this.panelLeft.Size = new System.Drawing.Size(392, 265);
     this.panelLeft.TabIndex = 4;
     //
     // panelLeftDetails
     //
     this.panelLeftDetails.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.panelLeftDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelLeftDetails.Controls.Add(this.buttonReload);
     this.panelLeftDetails.Controls.Add(this.labelSharedFiles);
     this.panelLeftDetails.Controls.Add(this.sharedListView);
     this.panelLeftDetails.Location = new System.Drawing.Point(8, 3);
     this.panelLeftDetails.Name = "panelLeftDetails";
     this.panelLeftDetails.Size = new System.Drawing.Size(382, 255);
     this.panelLeftDetails.TabIndex = 0;
     //
     // buttonReload
     //
     this.buttonReload.BackColor = System.Drawing.SystemColors.Control;
     this.buttonReload.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonReload.Image = ((System.Drawing.Image)(resources.GetObject("buttonReload.Image")));
     this.buttonReload.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonReload.Location = new System.Drawing.Point(152, 8);
     this.buttonReload.Name = "buttonReload";
     this.buttonReload.Size = new System.Drawing.Size(208, 24);
     this.buttonReload.TabIndex = 17;
     this.buttonReload.Text = "Reload shared list";
     this.buttonReload.Click += new System.EventHandler(this.buttonReload_Click);
     //
     // labelSharedFiles
     //
     this.labelSharedFiles.Location = new System.Drawing.Point(8, 8);
     this.labelSharedFiles.Name = "labelSharedFiles";
     this.labelSharedFiles.Size = new System.Drawing.Size(140, 20);
     this.labelSharedFiles.TabIndex = 15;
     this.labelSharedFiles.Text = "Shared Files";
     this.labelSharedFiles.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // sharedListView
     //
     this.sharedListView.Alignment = System.Windows.Forms.ListViewAlignment.Default;
     this.sharedListView.AllowColumnReorder = true;
     this.sharedListView.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.sharedListView.AutoArrange = false;
     this.sharedListView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.sharedListView.DefaultCustomDraw = true;
     this.sharedListView.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(68)), ((System.Byte)(69)), ((System.Byte)(151)));
     this.sharedListView.FullRowSelect = true;
     this.sharedListView.FullyCustomHeader = false;
     this.sharedListView.HideSelection = false;
     this.sharedListView.IncreaseHeaderHeight = 0;
     this.sharedListView.Location = new System.Drawing.Point(8, 40);
     this.sharedListView.Name = "sharedListView";
     this.sharedListView.Size = new System.Drawing.Size(364, 207);
     this.sharedListView.sortColumn = -1;
     this.sharedListView.TabIndex = 16;
     this.sharedListView.View = System.Windows.Forms.View.Details;
     this.sharedListView.SelectedIndexChanged += new System.EventHandler(this.sharedListView_SelectedIndexChanged);
     //
     // FormUploads
     //
     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(776, 400);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "FormUploads";
     this.Text = "FormUploads";
     this.panel1.ResumeLayout(false);
     this.panelUpDetails.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.tabPageDetails.ResumeLayout(false);
     this.tabPagStats.ResumeLayout(false);
     this.panelLeft.ResumeLayout(false);
     this.panelLeftDetails.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 36
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();
     this.panel1 = new System.Windows.Forms.Panel();
     this.buttonAddFriend = new System.Windows.Forms.Button();
     this.listViewFriends = new eLePhant.Client.eLePhantListView();
     this.panelAddFriend = new System.Windows.Forms.Panel();
     this.textBoxUserHash = new System.Windows.Forms.TextBox();
     this.labelOptional = new System.Windows.Forms.Label();
     this.textBoxName = new System.Windows.Forms.TextBox();
     this.labelName = new System.Windows.Forms.Label();
     this.buttonAddFriendCancel = new System.Windows.Forms.Button();
     this.buttonAddFriendOk = new System.Windows.Forms.Button();
     this.textBoxPort = new System.Windows.Forms.TextBox();
     this.textBoxIP = new System.Windows.Forms.TextBox();
     this.labelPort = new System.Windows.Forms.Label();
     this.labelIP = new System.Windows.Forms.Label();
     this.labelUserHash = new System.Windows.Forms.Label();
     this.tabMessages = new Crownwood.Magic.Controls.TabControl();
     this.textBoxMessage = new System.Windows.Forms.TextBox();
     this.buttonSend = new System.Windows.Forms.Button();
     this.panel2 = new System.Windows.Forms.Panel();
     this.imageListFriends = new System.Windows.Forms.ImageList(this.components);
     this.panel1.SuspendLayout();
     this.panelAddFriend.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.buttonAddFriend);
     this.panel1.Controls.Add(this.listViewFriends);
     this.panel1.Controls.Add(this.panelAddFriend);
     this.panel1.Location = new System.Drawing.Point(8, 6);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(176, 373);
     this.panel1.TabIndex = 0;
     //
     // buttonAddFriend
     //
     this.buttonAddFriend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonAddFriend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddFriend.Location = new System.Drawing.Point(6, 338);
     this.buttonAddFriend.Name = "buttonAddFriend";
     this.buttonAddFriend.Size = new System.Drawing.Size(160, 23);
     this.buttonAddFriend.TabIndex = 2;
     this.buttonAddFriend.Text = "Add Friend";
     this.buttonAddFriend.Click += new System.EventHandler(this.buttonAddFriend_Click);
     //
     // listViewFriends
     //
     this.listViewFriends.AllowColumnReorder = true;
     this.listViewFriends.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)));
     this.listViewFriends.AutoArrange = false;
     this.listViewFriends.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.listViewFriends.DefaultCustomDraw = true;
     this.listViewFriends.FullRowSelect = true;
     this.listViewFriends.FullyCustomHeader = true;
     this.listViewFriends.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewFriends.HideSelection = false;
     this.listViewFriends.IncreaseHeaderHeight = 0;
     this.listViewFriends.Location = new System.Drawing.Point(6, 2);
     this.listViewFriends.Name = "listViewFriends";
     this.listViewFriends.Size = new System.Drawing.Size(164, 332);
     this.listViewFriends.sortColumn = -1;
     this.listViewFriends.TabIndex = 0;
     this.listViewFriends.View = System.Windows.Forms.View.Details;
     this.listViewFriends.SelectedIndexChanged += new System.EventHandler(this.OnChangeFriend);
     //
     // panelAddFriend
     //
     this.panelAddFriend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panelAddFriend.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.panelAddFriend.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelAddFriend.Controls.Add(this.textBoxUserHash);
     this.panelAddFriend.Controls.Add(this.labelOptional);
     this.panelAddFriend.Controls.Add(this.textBoxName);
     this.panelAddFriend.Controls.Add(this.labelName);
     this.panelAddFriend.Controls.Add(this.buttonAddFriendCancel);
     this.panelAddFriend.Controls.Add(this.buttonAddFriendOk);
     this.panelAddFriend.Controls.Add(this.textBoxPort);
     this.panelAddFriend.Controls.Add(this.textBoxIP);
     this.panelAddFriend.Controls.Add(this.labelPort);
     this.panelAddFriend.Controls.Add(this.labelIP);
     this.panelAddFriend.Controls.Add(this.labelUserHash);
     this.panelAddFriend.Location = new System.Drawing.Point(6, 198);
     this.panelAddFriend.Name = "panelAddFriend";
     this.panelAddFriend.Size = new System.Drawing.Size(164, 168);
     this.panelAddFriend.TabIndex = 3;
     this.panelAddFriend.Visible = false;
     //
     // textBoxUserHash
     //
     this.textBoxUserHash.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxUserHash.Location = new System.Drawing.Point(4, 88);
     this.textBoxUserHash.Name = "textBoxUserHash";
     this.textBoxUserHash.Size = new System.Drawing.Size(154, 20);
     this.textBoxUserHash.TabIndex = 6;
     this.textBoxUserHash.Text = "";
     //
     // labelOptional
     //
     this.labelOptional.BackColor = System.Drawing.Color.Transparent;
     this.labelOptional.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelOptional.Location = new System.Drawing.Point(82, 74);
     this.labelOptional.Name = "labelOptional";
     this.labelOptional.Size = new System.Drawing.Size(62, 18);
     this.labelOptional.TabIndex = 10;
     this.labelOptional.Text = "(optional)";
     this.labelOptional.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textBoxName
     //
     this.textBoxName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxName.Location = new System.Drawing.Point(4, 18);
     this.textBoxName.Name = "textBoxName";
     this.textBoxName.Size = new System.Drawing.Size(154, 20);
     this.textBoxName.TabIndex = 9;
     this.textBoxName.Text = "My new friend";
     //
     // labelName
     //
     this.labelName.Location = new System.Drawing.Point(2, 4);
     this.labelName.Name = "labelName";
     this.labelName.Size = new System.Drawing.Size(100, 18);
     this.labelName.TabIndex = 8;
     this.labelName.Text = "Name";
     //
     // buttonAddFriendCancel
     //
     this.buttonAddFriendCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddFriendCancel.Location = new System.Drawing.Point(4, 140);
     this.buttonAddFriendCancel.Name = "buttonAddFriendCancel";
     this.buttonAddFriendCancel.Size = new System.Drawing.Size(154, 23);
     this.buttonAddFriendCancel.TabIndex = 7;
     this.buttonAddFriendCancel.Text = "Cancel";
     this.buttonAddFriendCancel.Click += new System.EventHandler(this.buttonAddFriendCancel_Click);
     //
     // buttonAddFriendOk
     //
     this.buttonAddFriendOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddFriendOk.Location = new System.Drawing.Point(4, 114);
     this.buttonAddFriendOk.Name = "buttonAddFriendOk";
     this.buttonAddFriendOk.Size = new System.Drawing.Size(154, 23);
     this.buttonAddFriendOk.TabIndex = 6;
     this.buttonAddFriendOk.Text = "Ok";
     this.buttonAddFriendOk.Click += new System.EventHandler(this.buttonAddFriendOk_Click);
     //
     // textBoxPort
     //
     this.textBoxPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxPort.Location = new System.Drawing.Point(110, 52);
     this.textBoxPort.Name = "textBoxPort";
     this.textBoxPort.Size = new System.Drawing.Size(48, 20);
     this.textBoxPort.TabIndex = 5;
     this.textBoxPort.Text = "";
     this.textBoxPort.TextChanged += new System.EventHandler(this.textBoxPort_TextChanged);
     //
     // textBoxIP
     //
     this.textBoxIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxIP.Location = new System.Drawing.Point(4, 52);
     this.textBoxIP.Name = "textBoxIP";
     this.textBoxIP.Size = new System.Drawing.Size(94, 20);
     this.textBoxIP.TabIndex = 4;
     this.textBoxIP.Text = "";
     //
     // labelPort
     //
     this.labelPort.Location = new System.Drawing.Point(102, 40);
     this.labelPort.Name = "labelPort";
     this.labelPort.Size = new System.Drawing.Size(52, 23);
     this.labelPort.TabIndex = 3;
     this.labelPort.Text = "Port";
     //
     // labelIP
     //
     this.labelIP.Location = new System.Drawing.Point(2, 40);
     this.labelIP.Name = "labelIP";
     this.labelIP.Size = new System.Drawing.Size(68, 23);
     this.labelIP.TabIndex = 2;
     this.labelIP.Text = "IP or ID";
     //
     // labelUserHash
     //
     this.labelUserHash.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.labelUserHash.Location = new System.Drawing.Point(2, 74);
     this.labelUserHash.Name = "labelUserHash";
     this.labelUserHash.Size = new System.Drawing.Size(116, 18);
     this.labelUserHash.TabIndex = 0;
     this.labelUserHash.Text = "User Hash";
     //
     // tabMessages
     //
     this.tabMessages.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.tabMessages.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tabMessages.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabMessages.Location = new System.Drawing.Point(8, 4);
     this.tabMessages.Name = "tabMessages";
     this.tabMessages.PositionTop = true;
     this.tabMessages.ShowArrows = true;
     this.tabMessages.ShowClose = true;
     this.tabMessages.ShrinkPagesToFit = false;
     this.tabMessages.Size = new System.Drawing.Size(404, 333);
     this.tabMessages.TabIndex = 3;
     //
     // textBoxMessage
     //
     this.textBoxMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMessage.Location = new System.Drawing.Point(8, 343);
     this.textBoxMessage.Name = "textBoxMessage";
     this.textBoxMessage.Size = new System.Drawing.Size(320, 20);
     this.textBoxMessage.TabIndex = 2;
     this.textBoxMessage.Text = "";
     this.textBoxMessage.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxMessage_KeyUp);
     //
     // buttonSend
     //
     this.buttonSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonSend.Location = new System.Drawing.Point(332, 343);
     this.buttonSend.Name = "buttonSend";
     this.buttonSend.Size = new System.Drawing.Size(80, 21);
     this.buttonSend.TabIndex = 14;
     this.buttonSend.Text = "Send";
     this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
     //
     // panel2
     //
     this.panel2.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.panel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.tabMessages);
     this.panel2.Controls.Add(this.textBoxMessage);
     this.panel2.Controls.Add(this.buttonSend);
     this.panel2.Location = new System.Drawing.Point(188, 6);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(422, 373);
     this.panel2.TabIndex = 15;
     //
     // imageListFriends
     //
     this.imageListFriends.ImageSize = new System.Drawing.Size(16, 16);
     this.imageListFriends.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormFriends
     //
     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(618, 386);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "FormFriends";
     this.Text = "FormFriends";
     this.panel1.ResumeLayout(false);
     this.panelAddFriend.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 37
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(MainForm));
     this.contextmenuMachines = new System.Windows.Forms.ContextMenu();
     this.menuMachinesConnect = new System.Windows.Forms.MenuItem();
     this.menuMachinesNewFolder = new System.Windows.Forms.MenuItem();
     this.menuMachinesDelete = new System.Windows.Forms.MenuItem();
     this.menuMachinesProperties = new System.Windows.Forms.MenuItem();
     this.menuMain = new System.Windows.Forms.MainMenu();
     this.menuItem1 = new System.Windows.Forms.MenuItem();
     this.menuMainFileQuickConnect = new System.Windows.Forms.MenuItem();
     this.menuMainFileScan = new System.Windows.Forms.MenuItem();
     this.menuMainFilePrune = new System.Windows.Forms.MenuItem();
     this.menuMainFileExit = new System.Windows.Forms.MenuItem();
     this.menuItem3 = new System.Windows.Forms.MenuItem();
     this.menuMainHelpAbout = new System.Windows.Forms.MenuItem();
     this.imglstToolbar = new System.Windows.Forms.ImageList(this.components);
     this.statusBar = new System.Windows.Forms.StatusBar();
     this.timerScanner = new System.Windows.Forms.Timer(this.components);
     this.tabs = new Crownwood.Magic.Controls.TabControl();
     this.tb = new System.Windows.Forms.ToolBar();
     this.tbSep1 = new System.Windows.Forms.ToolBarButton();
     this.tbSendCtrlAltDel = new System.Windows.Forms.ToolBarButton();
     this.tbSep2 = new System.Windows.Forms.ToolBarButton();
     this.tbDisconnect = new System.Windows.Forms.ToolBarButton();
     this.tbSep3 = new System.Windows.Forms.ToolBarButton();
     this.tbRedrawScreen = new System.Windows.Forms.ToolBarButton();
     this.treeHosts = new System.Windows.Forms.TreeView();
     this.imglstTree = new System.Windows.Forms.ImageList(this.components);
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.timerExpand = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // contextmenuMachines
     //
     this.contextmenuMachines.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                                         this.menuMachinesConnect,
                                                                                         this.menuMachinesNewFolder,
                                                                                         this.menuMachinesDelete,
                                                                                         this.menuMachinesProperties});
     //
     // menuMachinesConnect
     //
     this.menuMachinesConnect.DefaultItem = true;
     this.menuMachinesConnect.Index = 0;
     this.menuMachinesConnect.Text = "&Connect";
     this.menuMachinesConnect.Click += new System.EventHandler(this.menuMachinesConnect_Click);
     //
     // menuMachinesNewFolder
     //
     this.menuMachinesNewFolder.Index = 1;
     this.menuMachinesNewFolder.Text = "New folder...";
     this.menuMachinesNewFolder.Click += new System.EventHandler(this.menuMachinesNewFolder_Click);
     //
     // menuMachinesDelete
     //
     this.menuMachinesDelete.Index = 2;
     this.menuMachinesDelete.Shortcut = System.Windows.Forms.Shortcut.Del;
     this.menuMachinesDelete.Text = "&Delete";
     this.menuMachinesDelete.Click += new System.EventHandler(this.menuMachinesDelete_Click);
     //
     // menuMachinesProperties
     //
     this.menuMachinesProperties.Index = 3;
     this.menuMachinesProperties.Text = "P&roperties...";
     this.menuMachinesProperties.Click += new System.EventHandler(this.menuMachinesProperties_Click);
     //
     // menuMain
     //
     this.menuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                              this.menuItem1,
                                                                              this.menuItem3});
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                               this.menuMainFileQuickConnect,
                                                                               this.menuMainFileScan,
                                                                               this.menuMainFilePrune,
                                                                               this.menuMainFileExit});
     this.menuItem1.Text = "&File";
     //
     // menuMainFileQuickConnect
     //
     this.menuMainFileQuickConnect.Index = 0;
     this.menuMainFileQuickConnect.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     this.menuMainFileQuickConnect.Text = "Quick &connect...";
     this.menuMainFileQuickConnect.Click += new System.EventHandler(this.menuMainFileQuickConnect_Click);
     //
     // menuMainFileScan
     //
     this.menuMainFileScan.Index = 1;
     this.menuMainFileScan.Text = "&Scan for servers...";
     this.menuMainFileScan.Click += new System.EventHandler(this.menuMainFileScan_Click);
     //
     // menuMainFilePrune
     //
     this.menuMainFilePrune.Index = 2;
     this.menuMainFilePrune.Text = "&Prune host list";
     this.menuMainFilePrune.Click += new System.EventHandler(this.menuMainFilePrune_Click);
     //
     // menuMainFileExit
     //
     this.menuMainFileExit.Index = 3;
     this.menuMainFileExit.Text = "E&xit";
     this.menuMainFileExit.Click += new System.EventHandler(this.menuMainFileExit_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                               this.menuMainHelpAbout});
     this.menuItem3.Text = "&Help";
     //
     // menuMainHelpAbout
     //
     this.menuMainHelpAbout.Index = 0;
     this.menuMainHelpAbout.Text = "&About...";
     this.menuMainHelpAbout.Click += new System.EventHandler(this.menuMainHelpAbout_Click);
     //
     // imglstToolbar
     //
     this.imglstToolbar.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.imglstToolbar.ImageSize = new System.Drawing.Size(16, 16);
     this.imglstToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglstToolbar.ImageStream")));
     this.imglstToolbar.TransparentColor = System.Drawing.Color.Transparent;
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 523);
     this.statusBar.Name = "statusBar";
     this.statusBar.Size = new System.Drawing.Size(792, 22);
     this.statusBar.TabIndex = 10;
     this.statusBar.Text = "Ready";
     //
     // timerScanner
     //
     this.timerScanner.Tick += new System.EventHandler(this.timerScanner_Tick);
     //
     // tabs
     //
     this.tabs.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabs.HideTabsMode = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabs.HotTrack = true;
     this.tabs.Location = new System.Drawing.Point(155, 28);
     this.tabs.Name = "tabs";
     this.tabs.PositionTop = true;
     this.tabs.ShowArrows = true;
     this.tabs.ShowClose = true;
     this.tabs.ShrinkPagesToFit = false;
     this.tabs.Size = new System.Drawing.Size(637, 495);
     this.tabs.TabIndex = 11;
     this.tabs.ClosePressed += new System.EventHandler(this.tabs_ClosePressed);
     //
     // tb
     //
     this.tb.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
                                                                           this.tbSep1,
                                                                           this.tbSendCtrlAltDel,
                                                                           this.tbSep2,
                                                                           this.tbDisconnect,
                                                                           this.tbSep3,
                                                                           this.tbRedrawScreen});
     this.tb.DropDownArrows = true;
     this.tb.ImageList = this.imglstToolbar;
     this.tb.Location = new System.Drawing.Point(155, 0);
     this.tb.Name = "tb";
     this.tb.ShowToolTips = true;
     this.tb.Size = new System.Drawing.Size(637, 28);
     this.tb.TabIndex = 12;
     this.tb.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right;
     this.tb.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tb_ButtonClick);
     //
     // tbSep1
     //
     this.tbSep1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbSendCtrlAltDel
     //
     this.tbSendCtrlAltDel.ImageIndex = 0;
     this.tbSendCtrlAltDel.Tag = "";
     this.tbSendCtrlAltDel.Text = "Send Ctrl+Alt+Del";
     //
     // tbSep2
     //
     this.tbSep2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbDisconnect
     //
     this.tbDisconnect.ImageIndex = 1;
     this.tbDisconnect.Tag = "";
     this.tbDisconnect.Text = "Disconnect";
     //
     // tbSep3
     //
     this.tbSep3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // tbRedrawScreen
     //
     this.tbRedrawScreen.ImageIndex = 2;
     this.tbRedrawScreen.Text = "Redraw Screen";
     //
     // treeHosts
     //
     this.treeHosts.AllowDrop = true;
     this.treeHosts.ContextMenu = this.contextmenuMachines;
     this.treeHosts.Dock = System.Windows.Forms.DockStyle.Left;
     this.treeHosts.FullRowSelect = true;
     this.treeHosts.HotTracking = true;
     this.treeHosts.ImageList = this.imglstTree;
     this.treeHosts.LabelEdit = true;
     this.treeHosts.Location = new System.Drawing.Point(0, 0);
     this.treeHosts.Name = "treeHosts";
     this.treeHosts.PathSeparator = "/";
     this.treeHosts.Size = new System.Drawing.Size(152, 523);
     this.treeHosts.Sorted = true;
     this.treeHosts.TabIndex = 13;
     this.treeHosts.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.treeHosts_AfterExpand);
     this.treeHosts.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.treeHosts_AfterCollapse);
     this.treeHosts.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.treeHosts_KeyPress);
     this.treeHosts.DragOver += new System.Windows.Forms.DragEventHandler(this.treeHosts_DragOver);
     this.treeHosts.DoubleClick += new System.EventHandler(this.treeHosts_DoubleClick);
     this.treeHosts.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.treeHosts_AfterLabelEdit);
     this.treeHosts.DragEnter += new System.Windows.Forms.DragEventHandler(this.treeHosts_DragEnter);
     this.treeHosts.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeHosts_ItemDrag);
     this.treeHosts.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeHosts_DragDrop);
     //
     // imglstTree
     //
     this.imglstTree.ImageSize = new System.Drawing.Size(16, 16);
     this.imglstTree.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imglstTree.ImageStream")));
     this.imglstTree.TransparentColor = System.Drawing.Color.Transparent;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(152, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 523);
     this.splitter1.TabIndex = 14;
     this.splitter1.TabStop = false;
     //
     // timerExpand
     //
     this.timerExpand.Interval = 1000;
     this.timerExpand.Tick += new System.EventHandler(this.timerExpand_Tick);
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(792, 545);
     this.Controls.Add(this.tabs);
     this.Controls.Add(this.tb);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.treeHosts);
     this.Controls.Add(this.statusBar);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.menuMain;
     this.Name = "MainForm";
     this.Text = "Salamander Control Suite";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.ResumeLayout(false);
 }
Ejemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabController           = new Crownwood.Magic.Controls.TabControl();
     this.tabPage1                = new Crownwood.Magic.Controls.TabPage();
     this.txtNumero               = new System.Windows.Forms.TextBox();
     this.label1                  = new System.Windows.Forms.Label();
     this.txtEsercizio2           = new System.Windows.Forms.TextBox();
     this.label4                  = new System.Windows.Forms.Label();
     this.lblselezautomaticamente = new System.Windows.Forms.Label();
     this.label14                 = new System.Windows.Forms.Label();
     this.gridDettagli            = new System.Windows.Forms.DataGrid();
     this.tabPage3                = new Crownwood.Magic.Controls.TabPage();
     this.gboxPrenotazione        = new System.Windows.Forms.GroupBox();
     this.label12                 = new System.Windows.Forms.Label();
     this.cboResp                 = new System.Windows.Forms.ComboBox();
     this.txtNum                  = new System.Windows.Forms.TextBox();
     this.label13                 = new System.Windows.Forms.Label();
     this.txtEserc                = new System.Windows.Forms.TextBox();
     this.label3                  = new System.Windows.Forms.Label();
     this.btnSeleziona            = new System.Windows.Forms.Button();
     this.label2                  = new System.Windows.Forms.Label();
     this.txtMagazzino            = new System.Windows.Forms.TextBox();
     this.tabPage2                = new Crownwood.Magic.Controls.TabPage();
     this.labelMsg                = new System.Windows.Forms.Label();
     this.btnNext                 = new System.Windows.Forms.Button();
     this.btnBack                 = new System.Windows.Forms.Button();
     this.btnCancel               = new System.Windows.Forms.Button();
     this.tabController.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.gboxPrenotazione.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabController
     //
     this.tabController.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.tabController.IDEPixelArea  = true;
     this.tabController.Location      = new System.Drawing.Point(8, 8);
     this.tabController.Name          = "tabController";
     this.tabController.SelectedIndex = 0;
     this.tabController.SelectedTab   = this.tabPage3;
     this.tabController.Size          = new System.Drawing.Size(600, 408);
     this.tabController.TabIndex      = 14;
     this.tabController.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPage3,
         this.tabPage1,
         this.tabPage2
     });
     this.tabController.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.txtNumero);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.txtEsercizio2);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.lblselezautomaticamente);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.gridDettagli);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Selected = false;
     this.tabPage1.Size     = new System.Drawing.Size(600, 383);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Title    = "Pagina 2 di 3";
     //
     // txtNumero
     //
     this.txtNumero.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNumero.Location = new System.Drawing.Point(163, 13);
     this.txtNumero.Name     = "txtNumero";
     this.txtNumero.Size     = new System.Drawing.Size(73, 21);
     this.txtNumero.TabIndex = 34;
     this.txtNumero.Tag      = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(117, 13);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(40, 16);
     this.label1.TabIndex  = 35;
     this.label1.Text      = "Num.";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtEsercizio2
     //
     this.txtEsercizio2.Location = new System.Drawing.Point(53, 13);
     this.txtEsercizio2.Name     = "txtEsercizio2";
     this.txtEsercizio2.Size     = new System.Drawing.Size(56, 21);
     this.txtEsercizio2.TabIndex = 33;
     this.txtEsercizio2.Tag      = "";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(7, 14);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(40, 16);
     this.label4.TabIndex  = 32;
     this.label4.Text      = "Eserc.";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblselezautomaticamente
     //
     this.lblselezautomaticamente.Location = new System.Drawing.Point(9, 56);
     this.lblselezautomaticamente.Name     = "lblselezautomaticamente";
     this.lblselezautomaticamente.Size     = new System.Drawing.Size(544, 16);
     this.lblselezautomaticamente.TabIndex = 31;
     this.lblselezautomaticamente.Text     = "NB: Saranno selezionati automaticamente tutti i dettagli della prenotazione scelt" +
                                             "a";
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(8, 82);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(249, 16);
     this.label14.TabIndex = 28;
     this.label14.Text     = "Dettagli prenotazione da inserire nello scarico magazzino";
     //
     // gridDettagli
     //
     this.gridDettagli.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.gridDettagli.CaptionVisible  = false;
     this.gridDettagli.DataMember      = "";
     this.gridDettagli.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridDettagli.Location        = new System.Drawing.Point(8, 101);
     this.gridDettagli.Name            = "gridDettagli";
     this.gridDettagli.Size            = new System.Drawing.Size(584, 267);
     this.gridDettagli.TabIndex        = 27;
     this.gridDettagli.Paint          += new System.Windows.Forms.PaintEventHandler(this.gridDettagli_Paint);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.gboxPrenotazione);
     this.tabPage3.Controls.Add(this.label2);
     this.tabPage3.Controls.Add(this.txtMagazzino);
     this.tabPage3.Location = new System.Drawing.Point(0, 0);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(600, 383);
     this.tabPage3.TabIndex = 3;
     this.tabPage3.Title    = "Pagina 1 di 3";
     //
     // gboxPrenotazione
     //
     this.gboxPrenotazione.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.gboxPrenotazione.Controls.Add(this.label12);
     this.gboxPrenotazione.Controls.Add(this.cboResp);
     this.gboxPrenotazione.Controls.Add(this.txtNum);
     this.gboxPrenotazione.Controls.Add(this.label13);
     this.gboxPrenotazione.Controls.Add(this.txtEserc);
     this.gboxPrenotazione.Controls.Add(this.label3);
     this.gboxPrenotazione.Controls.Add(this.btnSeleziona);
     this.gboxPrenotazione.Location = new System.Drawing.Point(11, 68);
     this.gboxPrenotazione.Name     = "gboxPrenotazione";
     this.gboxPrenotazione.Size     = new System.Drawing.Size(412, 126);
     this.gboxPrenotazione.TabIndex = 29;
     this.gboxPrenotazione.TabStop  = false;
     this.gboxPrenotazione.Text     = "Prenotazione";
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(3, 29);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(71, 23);
     this.label12.TabIndex  = 28;
     this.label12.Text      = "Responsabile";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboResp
     //
     this.cboResp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cboResp.DisplayMember    = "title";
     this.cboResp.Location         = new System.Drawing.Point(79, 29);
     this.cboResp.MaxDropDownItems = 25;
     this.cboResp.Name             = "cboResp";
     this.cboResp.Size             = new System.Drawing.Size(327, 21);
     this.cboResp.TabIndex         = 27;
     this.cboResp.ValueMember      = "idman";
     //
     // txtNum
     //
     this.txtNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNum.Location = new System.Drawing.Point(189, 61);
     this.txtNum.Name     = "txtNum";
     this.txtNum.Size     = new System.Drawing.Size(73, 21);
     this.txtNum.TabIndex = 4;
     this.txtNum.Tag      = "";
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(143, 61);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(40, 16);
     this.label13.TabIndex  = 4;
     this.label13.Text      = "Num.";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtEserc
     //
     this.txtEserc.Location = new System.Drawing.Point(79, 61);
     this.txtEserc.Name     = "txtEserc";
     this.txtEserc.Size     = new System.Drawing.Size(56, 21);
     this.txtEserc.TabIndex = 3;
     this.txtEserc.Tag      = "";
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(33, 62);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(40, 16);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Eserc.";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnSeleziona
     //
     this.btnSeleziona.Location = new System.Drawing.Point(7, 97);
     this.btnSeleziona.Name     = "btnSeleziona";
     this.btnSeleziona.Size     = new System.Drawing.Size(128, 23);
     this.btnSeleziona.TabIndex = 1;
     this.btnSeleziona.TabStop  = false;
     this.btnSeleziona.Text     = "Seleziona";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 17);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(69, 23);
     this.label2.TabIndex  = 28;
     this.label2.Text      = "Magazzino";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtMagazzino
     //
     this.txtMagazzino.Location = new System.Drawing.Point(87, 18);
     this.txtMagazzino.Name     = "txtMagazzino";
     this.txtMagazzino.Size     = new System.Drawing.Size(262, 21);
     this.txtMagazzino.TabIndex = 27;
     this.txtMagazzino.Tag      = "";
     this.txtMagazzino.Visible  = false;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.labelMsg);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Selected = false;
     this.tabPage2.Size     = new System.Drawing.Size(600, 383);
     this.tabPage2.TabIndex = 0;
     this.tabPage2.Title    = "Pagina 3 di 3";
     //
     // labelMsg
     //
     this.labelMsg.Location = new System.Drawing.Point(8, 8);
     this.labelMsg.Name     = "labelMsg";
     this.labelMsg.Size     = new System.Drawing.Size(576, 23);
     this.labelMsg.TabIndex = 0;
     this.labelMsg.Text     = "label1";
     //
     // btnNext
     //
     this.btnNext.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.Location = new System.Drawing.Point(432, 424);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(72, 23);
     this.btnNext.TabIndex = 12;
     this.btnNext.Text     = "Avanti >";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnBack
     //
     this.btnBack.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBack.Location = new System.Drawing.Point(352, 424);
     this.btnBack.Name     = "btnBack";
     this.btnBack.Size     = new System.Drawing.Size(72, 23);
     this.btnBack.TabIndex = 11;
     this.btnBack.Text     = "< Indietro";
     this.btnBack.Click   += new System.EventHandler(this.btnBack_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(536, 424);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex     = 13;
     this.btnCancel.Text         = "Cancel";
     //
     // FrmWizardScegliDettagli
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 461);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabController);
     this.Name          = "FrmWizardScegliDettagli";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Selezione dettagli ordine";
     this.tabController.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.gboxPrenotazione.ResumeLayout(false);
     this.gboxPrenotazione.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabController           = new Crownwood.Magic.Controls.TabControl();
     this.tabPage1                = new Crownwood.Magic.Controls.TabPage();
     this.lblValuta               = new System.Windows.Forms.Label();
     this.label1                  = new System.Windows.Forms.Label();
     this.lblselezautomaticamente = new System.Windows.Forms.Label();
     this.btnSelezionaTutto       = new System.Windows.Forms.Button();
     this.label16                 = new System.Windows.Forms.Label();
     this.label14                 = new System.Windows.Forms.Label();
     this.gridDettagli            = new System.Windows.Forms.DataGrid();
     this.tabPage2                = new Crownwood.Magic.Controls.TabPage();
     this.labelMsg                = new System.Windows.Forms.Label();
     this.btnNext                 = new System.Windows.Forms.Button();
     this.btnBack                 = new System.Windows.Forms.Button();
     this.btnCancel               = new System.Windows.Forms.Button();
     this.labDDT                  = new System.Windows.Forms.Label();
     this.tabController.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabController
     //
     this.tabController.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.tabController.IDEPixelArea  = true;
     this.tabController.Location      = new System.Drawing.Point(8, 8);
     this.tabController.Name          = "tabController";
     this.tabController.SelectedIndex = 0;
     this.tabController.SelectedTab   = this.tabPage1;
     this.tabController.Size          = new System.Drawing.Size(779, 479);
     this.tabController.TabIndex      = 14;
     this.tabController.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.tabPage1,
         this.tabPage2
     });
     this.tabController.SelectionChanged += new System.EventHandler(this.tabControl1_SelectionChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.labDDT);
     this.tabPage1.Controls.Add(this.lblValuta);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.lblselezautomaticamente);
     this.tabPage1.Controls.Add(this.btnSelezionaTutto);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.gridDettagli);
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(779, 454);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Title    = "Pagina 1 di 2";
     //
     // lblValuta
     //
     this.lblValuta.AutoSize = true;
     this.lblValuta.Location = new System.Drawing.Point(341, 72);
     this.lblValuta.Name     = "lblValuta";
     this.lblValuta.Size     = new System.Drawing.Size(187, 13);
     this.lblValuta.TabIndex = 34;
     this.lblValuta.Text     = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 72);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(315, 16);
     this.label1.TabIndex = 33;
     this.label1.Text     = "Attenzione: i dettagli si riferiscono a contratti passivi in valuta:";
     //
     // lblselezautomaticamente
     //
     this.lblselezautomaticamente.Location = new System.Drawing.Point(8, 40);
     this.lblselezautomaticamente.Name     = "lblselezautomaticamente";
     this.lblselezautomaticamente.Size     = new System.Drawing.Size(568, 16);
     this.lblselezautomaticamente.TabIndex = 31;
     this.lblselezautomaticamente.Text     = "NB: Saranno selezionati automaticamente tutti i detttagli dello stesso gruppo del" +
                                             "la riga del contratto scelta.";
     //
     // btnSelezionaTutto
     //
     this.btnSelezionaTutto.Location = new System.Drawing.Point(8, 8);
     this.btnSelezionaTutto.Name     = "btnSelezionaTutto";
     this.btnSelezionaTutto.Size     = new System.Drawing.Size(88, 23);
     this.btnSelezionaTutto.TabIndex = 30;
     this.btnSelezionaTutto.Text     = "Seleziona tutto";
     this.btnSelezionaTutto.Click   += new System.EventHandler(this.btnSelezionaTutto_Click);
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(112, 8);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(464, 32);
     this.label16.TabIndex = 29;
     this.label16.Text     = "Tenere premuto il tasto CTRL o MAIUSC e contemporaneamente cliccare con il mouse " +
                             "per selezionare più dettagli da inserire in fattura";
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(8, 56);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(192, 16);
     this.label14.TabIndex = 28;
     this.label14.Text     = "Dettagli ordine da inserire in fattura";
     //
     // gridDettagli
     //
     this.gridDettagli.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.gridDettagli.CaptionVisible  = false;
     this.gridDettagli.DataMember      = "";
     this.gridDettagli.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.gridDettagli.Location        = new System.Drawing.Point(8, 120);
     this.gridDettagli.Name            = "gridDettagli";
     this.gridDettagli.Size            = new System.Drawing.Size(763, 319);
     this.gridDettagli.TabIndex        = 27;
     this.gridDettagli.Paint          += new System.Windows.Forms.PaintEventHandler(this.gridDettagli_Paint);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.labelMsg);
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Selected = false;
     this.tabPage2.Size     = new System.Drawing.Size(779, 454);
     this.tabPage2.TabIndex = 0;
     this.tabPage2.Title    = "Pagina 2 di 2";
     //
     // labelMsg
     //
     this.labelMsg.Location = new System.Drawing.Point(8, 8);
     this.labelMsg.Name     = "labelMsg";
     this.labelMsg.Size     = new System.Drawing.Size(576, 23);
     this.labelMsg.TabIndex = 0;
     this.labelMsg.Text     = "label1";
     //
     // btnNext
     //
     this.btnNext.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.Location = new System.Drawing.Point(611, 495);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(72, 23);
     this.btnNext.TabIndex = 12;
     this.btnNext.Text     = "Avanti >";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnBack
     //
     this.btnBack.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBack.Location = new System.Drawing.Point(531, 495);
     this.btnBack.Name     = "btnBack";
     this.btnBack.Size     = new System.Drawing.Size(72, 23);
     this.btnBack.TabIndex = 11;
     this.btnBack.Text     = "< Indietro";
     this.btnBack.Click   += new System.EventHandler(this.btnBack_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(715, 495);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex     = 13;
     this.btnCancel.Text         = "Cancel";
     //
     // labDDT
     //
     this.labDDT.AutoSize = true;
     this.labDDT.Font     = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.labDDT.Location = new System.Drawing.Point(8, 104);
     this.labDDT.Name     = "labDDT";
     this.labDDT.Size     = new System.Drawing.Size(616, 13);
     this.labDDT.TabIndex = 35;
     this.labDDT.Text     = "La merce  arrivata con DDT deve essere caricata col pulsante \"Inserisci da DDT\" e" +
                            " non con questa maschera";
     //
     // FrmWizardScegliDettagli
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(795, 532);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabController);
     this.Name          = "FrmWizardScegliDettagli";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Selezione dettagli ordine";
     this.tabController.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDettagli)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.menuItem1 = new System.Windows.Forms.MenuItem();
     this._menuMain = new Crownwood.Magic.Menus.MenuControl();
     this._menuFile = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileNew = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileOpen = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileClose = new Crownwood.Magic.Menus.MenuCommand();
     this._sep1 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileSave = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileSaveAs = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileSaveAll = new Crownwood.Magic.Menus.MenuCommand();
     this._sep2 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileRecentProjects = new Crownwood.Magic.Menus.MenuCommand();
     this._sep3 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdFileExit = new Crownwood.Magic.Menus.MenuCommand();
     this._menuEdit = new Crownwood.Magic.Menus.MenuCommand();
     this._menuProject = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRun = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectStop = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectOptions = new Crownwood.Magic.Menus.MenuCommand();
     this._sep4 = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRunViewMessages = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdProjectRunCopy = new Crownwood.Magic.Menus.MenuCommand();
     this._menuView = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdViewProjectView = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdViewNavBack = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdViewNavForward = new Crownwood.Magic.Menus.MenuCommand();
     this._menuHelp = new Crownwood.Magic.Menus.MenuCommand();
     this._cmdHelpAbout = new Crownwood.Magic.Menus.MenuCommand();
     this._tcProfilers = new Crownwood.Magic.Controls.TabControl();
     this._sbStatusBar = new System.Windows.Forms.StatusBar();
     this._sbpMessage = new System.Windows.Forms.StatusBarPanel();
     this.commandBarManager1 = new Reflector.UserInterface.CommandBarManager();
     this.commandBar1 = new Reflector.UserInterface.CommandBar();
     ((System.ComponentModel.ISupportInitialize)(this._sbpMessage)).BeginInit();
     this.SuspendLayout();
     //
     // menuItem1
     //
     this.menuItem1.Index = -1;
     this.menuItem1.Text = "Close Tab";
     //
     // _menuMain
     //
     this._menuMain.AnimateStyle = Crownwood.Magic.Menus.Animation.System;
     this._menuMain.AnimateTime = 100;
     this._menuMain.Cursor = System.Windows.Forms.Cursors.Arrow;
     this._menuMain.Direction = Crownwood.Magic.Common.Direction.Horizontal;
     this._menuMain.Dock = System.Windows.Forms.DockStyle.Top;
     this._menuMain.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((System.Byte)(0)));
     this._menuMain.HighlightTextColor = System.Drawing.SystemColors.MenuText;
     this._menuMain.Location = new System.Drawing.Point(0, 0);
     this._menuMain.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._menuFile,
                                                                                      this._menuEdit,
                                                                                      this._menuProject,
                                                                                      this._menuView,
                                                                                      this._menuHelp});
     this._menuMain.Name = "_menuMain";
     this._menuMain.Size = new System.Drawing.Size(920, 25);
     this._menuMain.Style = Crownwood.Magic.Common.VisualStyle.IDE;
     this._menuMain.TabIndex = 0;
     this._menuMain.TabStop = false;
     this._menuMain.Text = "menuControl1";
     //
     // _menuFile
     //
     this._menuFile.Description = "File";
     this._menuFile.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._cmdFileNew,
                                                                                      this._cmdFileOpen,
                                                                                      this._cmdFileClose,
                                                                                      this._sep1,
                                                                                      this._cmdFileSave,
                                                                                      this._cmdFileSaveAs,
                                                                                      this._cmdFileSaveAll,
                                                                                      this._sep2,
                                                                                      this._cmdFileRecentProjects,
                                                                                      this._sep3,
                                                                                      this._cmdFileExit});
     this._menuFile.Text = "&File";
     //
     // _cmdFileNew
     //
     this._cmdFileNew.Description = "New Profiler Project";
     this._cmdFileNew.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     this._cmdFileNew.Text = "&New...";
     this._cmdFileNew.Click += new System.EventHandler(this._cmdFileNew_Click);
     this._cmdFileNew.Update += new System.EventHandler(this.UpdateMenuItems);
     //
     // _cmdFileOpen
     //
     this._cmdFileOpen.Description = "Open a profile project";
     this._cmdFileOpen.Text = "&Open...";
     this._cmdFileOpen.Click += new System.EventHandler(this._cmdFileOpen_Click);
     //
     // _cmdFileClose
     //
     this._cmdFileClose.Description = "Close the project";
     this._cmdFileClose.Text = "&Close";
     this._cmdFileClose.Click += new System.EventHandler(this._cmdFileClose_Click);
     //
     // _sep1
     //
     this._sep1.Description = "MenuItem";
     this._sep1.Text = "-";
     //
     // _cmdFileSave
     //
     this._cmdFileSave.Description = "Save the active profiler project";
     this._cmdFileSave.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this._cmdFileSave.Text = "&Save";
     this._cmdFileSave.Click += new System.EventHandler(this._cmdFileSave_Click);
     //
     // _cmdFileSaveAs
     //
     this._cmdFileSaveAs.Description = "Save the active profiler project as a specified file name";
     this._cmdFileSaveAs.Text = "Save &As...";
     this._cmdFileSaveAs.Click += new System.EventHandler(this._cmdFileSaveAs_Click);
     //
     // _cmdFileSaveAll
     //
     this._cmdFileSaveAll.Description = "Save all open profiler projects";
     this._cmdFileSaveAll.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftS;
     this._cmdFileSaveAll.Text = "Save A&ll";
     this._cmdFileSaveAll.Click += new System.EventHandler(this._cmdFileSaveAll_Click);
     //
     // _sep2
     //
     this._sep2.Description = "MenuItem";
     this._sep2.Text = "-";
     //
     // _cmdFileRecentProjects
     //
     this._cmdFileRecentProjects.Description = "Provides a list of the 10 most recently opened projects for easy access";
     this._cmdFileRecentProjects.Text = "Recent Projects";
     //
     // _sep3
     //
     this._sep3.Description = "-";
     this._sep3.Text = "-";
     //
     // _cmdFileExit
     //
     this._cmdFileExit.Description = "Exit the application";
     this._cmdFileExit.Shortcut = System.Windows.Forms.Shortcut.AltF4;
     this._cmdFileExit.Text = "E&xit";
     this._cmdFileExit.Click += new System.EventHandler(this._cmdFileExit_Click);
     //
     // _menuEdit
     //
     this._menuEdit.Description = "Edit";
     this._menuEdit.Enabled = false;
     this._menuEdit.Text = "&Edit";
     //
     // _menuProject
     //
     this._menuProject.Description = "Project commands";
     this._menuProject.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                         this._cmdProjectRun,
                                                                                         this._cmdProjectStop,
                                                                                         this._cmdProjectOptions,
                                                                                         this._sep4,
                                                                                         this._cmdProjectRunViewMessages,
                                                                                         this._cmdProjectRunCopy});
     this._menuProject.Text = "&Project";
     //
     // _cmdProjectRun
     //
     this._cmdProjectRun.Description = "Run the current project";
     this._cmdProjectRun.Shortcut = System.Windows.Forms.Shortcut.F5;
     this._cmdProjectRun.Text = "Start project run";
     this._cmdProjectRun.Click += new System.EventHandler(this._cmdProjectRun_Click);
     this._cmdProjectRun.Update += new System.EventHandler(this.UpdateMenuItems);
     //
     // _cmdProjectStop
     //
     this._cmdProjectStop.Description = "Stop the running project";
     this._cmdProjectStop.Text = "Stop project run";
     //
     // _cmdProjectOptions
     //
     this._cmdProjectOptions.Description = "Modify the options for this project";
     this._cmdProjectOptions.Shortcut = System.Windows.Forms.Shortcut.F2;
     this._cmdProjectOptions.Text = "Options...";
     this._cmdProjectOptions.Click += new System.EventHandler(this._cmdProjectOptions_Click);
     this._cmdProjectOptions.Update += new System.EventHandler(this.UpdateMenuItems);
     //
     // _sep4
     //
     this._sep4.Description = "-";
     this._sep4.Text = "-";
     //
     // _cmdProjectRunViewMessages
     //
     this._cmdProjectRunViewMessages.Description = "View the Messages from the current profiler run...";
     this._cmdProjectRunViewMessages.Text = "View Run Messages...";
     this._cmdProjectRunViewMessages.Click += new System.EventHandler(this._cmdProjectRunViewMessages_Click);
     //
     // _cmdProjectRunCopy
     //
     this._cmdProjectRunCopy.Description = "Copy the project run data to the clipboard";
     this._cmdProjectRunCopy.Text = "Copy Project Run Data";
     //
     // _menuView
     //
     this._menuView.Description = "View";
     this._menuView.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._cmdViewProjectView,
                                                                                      this._cmdViewNavBack,
                                                                                      this._cmdViewNavForward});
     this._menuView.Text = "&View";
     //
     // _cmdViewProjectView
     //
     this._cmdViewProjectView.Description = "Show/hide the project tab";
     this._cmdViewProjectView.Text = "Project tab";
     this._cmdViewProjectView.Click += new System.EventHandler(this._cmdViewProjectView_Click);
     this._cmdViewProjectView.Update += new System.EventHandler(this._cmdViewProjectView_Update);
     //
     // _cmdViewNavBack
     //
     this._cmdViewNavBack.Description = "Navigate Back";
     this._cmdViewNavBack.Text = "Back";
     this._cmdViewNavBack.Click += new System.EventHandler(this._cmdViewNavBack_Click);
     //
     // _cmdViewNavForward
     //
     this._cmdViewNavForward.Description = "Navigate Forward";
     this._cmdViewNavForward.Text = "Forward";
     this._cmdViewNavForward.Click += new System.EventHandler(this._cmdViewNavForward_Click);
     //
     // _menuHelp
     //
     this._menuHelp.Description = "Help";
     this._menuHelp.MenuCommands.AddRange(new Crownwood.Magic.Menus.MenuCommand[] {
                                                                                      this._cmdHelpAbout});
     this._menuHelp.Text = "&Help";
     //
     // _cmdHelpAbout
     //
     this._cmdHelpAbout.Description = "About nprof";
     this._cmdHelpAbout.Text = "About nprof...";
     this._cmdHelpAbout.Click += new System.EventHandler(this._cmdHelpAbout_Click);
     //
     // _tcProfilers
     //
     this._tcProfilers.Dock = System.Windows.Forms.DockStyle.Fill;
     this._tcProfilers.IDEPixelArea = true;
     this._tcProfilers.Location = new System.Drawing.Point(0, 26);
     this._tcProfilers.Name = "_tcProfilers";
     this._tcProfilers.Size = new System.Drawing.Size(920, 629);
     this._tcProfilers.TabIndex = 2;
     this._tcProfilers.ClosePressed += new System.EventHandler(this._tcProfilers_ClosePressed);
     //
     // _sbStatusBar
     //
     this._sbStatusBar.Location = new System.Drawing.Point(0, 655);
     this._sbStatusBar.Name = "_sbStatusBar";
     this._sbStatusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
                                                                                     this._sbpMessage});
     this._sbStatusBar.ShowPanels = true;
     this._sbStatusBar.Size = new System.Drawing.Size(920, 22);
     this._sbStatusBar.TabIndex = 3;
     //
     // _sbpMessage
     //
     this._sbpMessage.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this._sbpMessage.Text = "Ready.";
     this._sbpMessage.Width = 904;
     //
     // commandBarManager1
     //
     this.commandBarManager1.Dock = System.Windows.Forms.DockStyle.Top;
     this.commandBarManager1.Location = new System.Drawing.Point(0, 25);
     this.commandBarManager1.Name = "commandBarManager1";
     this.commandBarManager1.Size = new System.Drawing.Size(920, 1);
     this.commandBarManager1.TabIndex = 3;
     this.commandBarManager1.TabStop = false;
     this.commandBarManager1.Text = "commandBarManager1";
     //
     // commandBar1
     //
     this.commandBar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.commandBar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((System.Byte)(0)));
     this.commandBar1.Location = new System.Drawing.Point(0, 64);
     this.commandBar1.Name = "commandBar1";
     this.commandBar1.Size = new System.Drawing.Size(920, 64);
     this.commandBar1.Style = Reflector.UserInterface.CommandBarStyle.ToolBar;
     this.commandBar1.TabIndex = 4;
     this.commandBar1.TabStop = false;
     this.commandBar1.Text = "commandBar1";
     //
     // ProfilerForm
     //
     this.AllowDrop = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(920, 677);
     this.Controls.Add(this._tcProfilers);
     this.Controls.Add(this.commandBarManager1);
     this.Controls.Add(this._menuMain);
     this.Controls.Add(this._sbStatusBar);
     this.Name = "ProfilerForm";
     this.Text = "nprof Profiling Application - Alpha v0.6";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.ProfilerForm_Closing);
     this.Load += new System.EventHandler(this.ProfilerForm_Load);
     this.Layout += new System.Windows.Forms.LayoutEventHandler(this.ProfilerForm_Layout);
     ((System.ComponentModel.ISupportInitialize)(this._sbpMessage)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 41
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(FormSearch));
     this.panel1             = new System.Windows.Forms.Panel();
     this.textBoxExclude     = new System.Windows.Forms.TextBox();
     this.labelExclude       = new System.Windows.Forms.Label();
     this.progressBarSearch  = new System.Windows.Forms.ProgressBar();
     this.checkBoxSearchAny  = new System.Windows.Forms.CheckBox();
     this.textBoxAvaibility  = new System.Windows.Forms.TextBox();
     this.labelAvailability  = new System.Windows.Forms.Label();
     this.comboBoxSearchType = new System.Windows.Forms.ComboBox();
     this.textBoxMinSize     = new System.Windows.Forms.TextBox();
     this.labelSizeUpper     = new System.Windows.Forms.Label();
     this.textBoxMaxSize     = new System.Windows.Forms.TextBox();
     this.labelSizeLower     = new System.Windows.Forms.Label();
     this.buttonExtend       = new System.Windows.Forms.Button();
     this.buttonSearch       = new System.Windows.Forms.Button();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.textBoxSearch      = new System.Windows.Forms.TextBox();
     this.tabSearchs         = new Crownwood.Magic.Controls.TabControl();
     this.panel2             = new System.Windows.Forms.Panel();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.textBoxExclude);
     this.panel1.Controls.Add(this.labelExclude);
     this.panel1.Controls.Add(this.progressBarSearch);
     this.panel1.Controls.Add(this.checkBoxSearchAny);
     this.panel1.Controls.Add(this.textBoxAvaibility);
     this.panel1.Controls.Add(this.labelAvailability);
     this.panel1.Controls.Add(this.comboBoxSearchType);
     this.panel1.Controls.Add(this.textBoxMinSize);
     this.panel1.Controls.Add(this.labelSizeUpper);
     this.panel1.Controls.Add(this.textBoxMaxSize);
     this.panel1.Controls.Add(this.labelSizeLower);
     this.panel1.Controls.Add(this.buttonExtend);
     this.panel1.Controls.Add(this.buttonSearch);
     this.panel1.Controls.Add(this.textBoxSearch);
     this.panel1.Location = new System.Drawing.Point(6, 9);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(158, 355);
     this.panel1.TabIndex = 0;
     //
     // textBoxExclude
     //
     this.textBoxExclude.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxExclude.Location    = new System.Drawing.Point(7, 202);
     this.textBoxExclude.Name        = "textBoxExclude";
     this.textBoxExclude.Size        = new System.Drawing.Size(143, 20);
     this.textBoxExclude.TabIndex    = 24;
     this.textBoxExclude.Text        = "";
     this.textBoxExclude.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelExclude
     //
     this.labelExclude.Location  = new System.Drawing.Point(4, 169);
     this.labelExclude.Name      = "labelExclude";
     this.labelExclude.Size      = new System.Drawing.Size(147, 28);
     this.labelExclude.TabIndex  = 23;
     this.labelExclude.Text      = "Exclude results containing:";
     this.labelExclude.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // progressBarSearch
     //
     this.progressBarSearch.Location = new System.Drawing.Point(7, 300);
     this.progressBarSearch.Name     = "progressBarSearch";
     this.progressBarSearch.Size     = new System.Drawing.Size(147, 24);
     this.progressBarSearch.TabIndex = 22;
     this.progressBarSearch.Visible  = false;
     //
     // checkBoxSearchAny
     //
     this.checkBoxSearchAny.Location = new System.Drawing.Point(8, 35);
     this.checkBoxSearchAny.Name     = "checkBoxSearchAny";
     this.checkBoxSearchAny.Size     = new System.Drawing.Size(145, 16);
     this.checkBoxSearchAny.TabIndex = 21;
     this.checkBoxSearchAny.Text     = "Match any words";
     //
     // textBoxAvaibility
     //
     this.textBoxAvaibility.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxAvaibility.Location    = new System.Drawing.Point(98, 140);
     this.textBoxAvaibility.Name        = "textBoxAvaibility";
     this.textBoxAvaibility.Size        = new System.Drawing.Size(40, 20);
     this.textBoxAvaibility.TabIndex    = 20;
     this.textBoxAvaibility.Text        = "";
     this.textBoxAvaibility.KeyPress   += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSize_KeyPress);
     this.textBoxAvaibility.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelAvailability
     //
     this.labelAvailability.Location  = new System.Drawing.Point(8, 142);
     this.labelAvailability.Name      = "labelAvailability";
     this.labelAvailability.Size      = new System.Drawing.Size(89, 16);
     this.labelAvailability.TabIndex  = 19;
     this.labelAvailability.Text      = "Availability >";
     this.labelAvailability.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboBoxSearchType
     //
     this.comboBoxSearchType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSearchType.Location      = new System.Drawing.Point(8, 59);
     this.comboBoxSearchType.Name          = "comboBoxSearchType";
     this.comboBoxSearchType.Size          = new System.Drawing.Size(143, 21);
     this.comboBoxSearchType.TabIndex      = 18;
     //
     // textBoxMinSize
     //
     this.textBoxMinSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMinSize.Location    = new System.Drawing.Point(98, 114);
     this.textBoxMinSize.Name        = "textBoxMinSize";
     this.textBoxMinSize.Size        = new System.Drawing.Size(40, 20);
     this.textBoxMinSize.TabIndex    = 17;
     this.textBoxMinSize.Text        = "";
     this.textBoxMinSize.KeyPress   += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSize_KeyPress);
     this.textBoxMinSize.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelSizeUpper
     //
     this.labelSizeUpper.Location  = new System.Drawing.Point(8, 115);
     this.labelSizeUpper.Name      = "labelSizeUpper";
     this.labelSizeUpper.Size      = new System.Drawing.Size(93, 16);
     this.labelSizeUpper.TabIndex  = 16;
     this.labelSizeUpper.Text      = "Size (MB) >";
     this.labelSizeUpper.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textBoxMaxSize
     //
     this.textBoxMaxSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMaxSize.Location    = new System.Drawing.Point(98, 91);
     this.textBoxMaxSize.Name        = "textBoxMaxSize";
     this.textBoxMaxSize.Size        = new System.Drawing.Size(40, 20);
     this.textBoxMaxSize.TabIndex    = 15;
     this.textBoxMaxSize.Text        = "";
     this.textBoxMaxSize.KeyPress   += new System.Windows.Forms.KeyPressEventHandler(this.textBoxMaxSize_KeyPress);
     this.textBoxMaxSize.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // labelSizeLower
     //
     this.labelSizeLower.Location  = new System.Drawing.Point(8, 91);
     this.labelSizeLower.Name      = "labelSizeLower";
     this.labelSizeLower.Size      = new System.Drawing.Size(92, 16);
     this.labelSizeLower.TabIndex  = 14;
     this.labelSizeLower.Text      = "Size (MB) <";
     this.labelSizeLower.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // buttonExtend
     //
     this.buttonExtend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonExtend.Location  = new System.Drawing.Point(5, 263);
     this.buttonExtend.Name      = "buttonExtend";
     this.buttonExtend.Size      = new System.Drawing.Size(147, 24);
     this.buttonExtend.TabIndex  = 13;
     this.buttonExtend.Text      = "Search more";
     this.buttonExtend.Click    += new System.EventHandler(this.buttonExtend_Click);
     //
     // buttonSearch
     //
     this.buttonSearch.BackColor  = System.Drawing.SystemColors.Control;
     this.buttonSearch.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.buttonSearch.Image      = ((System.Drawing.Image)(resources.GetObject("buttonSearch.Image")));
     this.buttonSearch.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonSearch.Location   = new System.Drawing.Point(6, 231);
     this.buttonSearch.Name       = "buttonSearch";
     this.buttonSearch.Size       = new System.Drawing.Size(146, 24);
     this.buttonSearch.TabIndex   = 12;
     this.buttonSearch.Text       = "Search";
     this.buttonSearch.Click     += new System.EventHandler(this.buttonSearch_Click);
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Red;
     //
     // textBoxSearch
     //
     this.textBoxSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxSearch.Location    = new System.Drawing.Point(8, 11);
     this.textBoxSearch.Name        = "textBoxSearch";
     this.textBoxSearch.Size        = new System.Drawing.Size(142, 20);
     this.textBoxSearch.TabIndex    = 11;
     this.textBoxSearch.Text        = "";
     this.textBoxSearch.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxSearch_KeyUp);
     //
     // tabSearchs
     //
     this.tabSearchs.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.tabSearchs.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tabSearchs.HideTabsMode     = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabSearchs.Location         = new System.Drawing.Point(7, 7);
     this.tabSearchs.Name             = "tabSearchs";
     this.tabSearchs.PositionTop      = true;
     this.tabSearchs.ShowArrows       = true;
     this.tabSearchs.ShowClose        = true;
     this.tabSearchs.ShrinkPagesToFit = false;
     this.tabSearchs.Size             = new System.Drawing.Size(498, 340);
     this.tabSearchs.TabIndex         = 1;
     //
     // panel2
     //
     this.panel2.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.panel2.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.tabSearchs);
     this.panel2.Location = new System.Drawing.Point(171, 9);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(515, 356);
     this.panel2.TabIndex = 2;
     //
     // FormSearch
     //
     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(693, 372);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "FormSearch";
     this.Text            = "FormSearch";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 42
0
 protected void OnTabControlCreated(TabControl tabControl)
 {
   tabControl.PositionTop = false;
   tabControl.Appearance = TabControl.VisualAppearance.MultiForm;
 }
Ejemplo n.º 43
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();
     this.panel1                = new System.Windows.Forms.Panel();
     this.buttonAddFriend       = new System.Windows.Forms.Button();
     this.listViewFriends       = new eLePhant.Client.eLePhantListView();
     this.panelAddFriend        = new System.Windows.Forms.Panel();
     this.textBoxUserHash       = new System.Windows.Forms.TextBox();
     this.labelOptional         = new System.Windows.Forms.Label();
     this.textBoxName           = new System.Windows.Forms.TextBox();
     this.labelName             = new System.Windows.Forms.Label();
     this.buttonAddFriendCancel = new System.Windows.Forms.Button();
     this.buttonAddFriendOk     = new System.Windows.Forms.Button();
     this.textBoxPort           = new System.Windows.Forms.TextBox();
     this.textBoxIP             = new System.Windows.Forms.TextBox();
     this.labelPort             = new System.Windows.Forms.Label();
     this.labelIP               = new System.Windows.Forms.Label();
     this.labelUserHash         = new System.Windows.Forms.Label();
     this.tabMessages           = new Crownwood.Magic.Controls.TabControl();
     this.textBoxMessage        = new System.Windows.Forms.TextBox();
     this.buttonSend            = new System.Windows.Forms.Button();
     this.panel2                = new System.Windows.Forms.Panel();
     this.imageListFriends      = new System.Windows.Forms.ImageList(this.components);
     this.panel1.SuspendLayout();
     this.panelAddFriend.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.buttonAddFriend);
     this.panel1.Controls.Add(this.listViewFriends);
     this.panel1.Controls.Add(this.panelAddFriend);
     this.panel1.Location = new System.Drawing.Point(8, 6);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(176, 373);
     this.panel1.TabIndex = 0;
     //
     // buttonAddFriend
     //
     this.buttonAddFriend.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonAddFriend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddFriend.Location  = new System.Drawing.Point(6, 338);
     this.buttonAddFriend.Name      = "buttonAddFriend";
     this.buttonAddFriend.Size      = new System.Drawing.Size(160, 23);
     this.buttonAddFriend.TabIndex  = 2;
     this.buttonAddFriend.Text      = "Add Friend";
     this.buttonAddFriend.Click    += new System.EventHandler(this.buttonAddFriend_Click);
     //
     // listViewFriends
     //
     this.listViewFriends.AllowColumnReorder = true;
     this.listViewFriends.Anchor             = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.listViewFriends.AutoArrange          = false;
     this.listViewFriends.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.listViewFriends.DefaultCustomDraw    = true;
     this.listViewFriends.FullRowSelect        = true;
     this.listViewFriends.FullyCustomHeader    = true;
     this.listViewFriends.HeaderStyle          = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewFriends.HideSelection        = false;
     this.listViewFriends.IncreaseHeaderHeight = 0;
     this.listViewFriends.Location             = new System.Drawing.Point(6, 2);
     this.listViewFriends.Name                  = "listViewFriends";
     this.listViewFriends.Size                  = new System.Drawing.Size(164, 332);
     this.listViewFriends.sortColumn            = -1;
     this.listViewFriends.TabIndex              = 0;
     this.listViewFriends.View                  = System.Windows.Forms.View.Details;
     this.listViewFriends.SelectedIndexChanged += new System.EventHandler(this.OnChangeFriend);
     //
     // panelAddFriend
     //
     this.panelAddFriend.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panelAddFriend.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(222)), ((System.Byte)(231)), ((System.Byte)(247)));
     this.panelAddFriend.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelAddFriend.Controls.Add(this.textBoxUserHash);
     this.panelAddFriend.Controls.Add(this.labelOptional);
     this.panelAddFriend.Controls.Add(this.textBoxName);
     this.panelAddFriend.Controls.Add(this.labelName);
     this.panelAddFriend.Controls.Add(this.buttonAddFriendCancel);
     this.panelAddFriend.Controls.Add(this.buttonAddFriendOk);
     this.panelAddFriend.Controls.Add(this.textBoxPort);
     this.panelAddFriend.Controls.Add(this.textBoxIP);
     this.panelAddFriend.Controls.Add(this.labelPort);
     this.panelAddFriend.Controls.Add(this.labelIP);
     this.panelAddFriend.Controls.Add(this.labelUserHash);
     this.panelAddFriend.Location = new System.Drawing.Point(6, 198);
     this.panelAddFriend.Name     = "panelAddFriend";
     this.panelAddFriend.Size     = new System.Drawing.Size(164, 168);
     this.panelAddFriend.TabIndex = 3;
     this.panelAddFriend.Visible  = false;
     //
     // textBoxUserHash
     //
     this.textBoxUserHash.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxUserHash.Location    = new System.Drawing.Point(4, 88);
     this.textBoxUserHash.Name        = "textBoxUserHash";
     this.textBoxUserHash.Size        = new System.Drawing.Size(154, 20);
     this.textBoxUserHash.TabIndex    = 6;
     this.textBoxUserHash.Text        = "";
     //
     // labelOptional
     //
     this.labelOptional.BackColor = System.Drawing.Color.Transparent;
     this.labelOptional.Font      = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelOptional.Location  = new System.Drawing.Point(82, 74);
     this.labelOptional.Name      = "labelOptional";
     this.labelOptional.Size      = new System.Drawing.Size(62, 18);
     this.labelOptional.TabIndex  = 10;
     this.labelOptional.Text      = "(optional)";
     this.labelOptional.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textBoxName
     //
     this.textBoxName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxName.Location    = new System.Drawing.Point(4, 18);
     this.textBoxName.Name        = "textBoxName";
     this.textBoxName.Size        = new System.Drawing.Size(154, 20);
     this.textBoxName.TabIndex    = 9;
     this.textBoxName.Text        = "My new friend";
     //
     // labelName
     //
     this.labelName.Location = new System.Drawing.Point(2, 4);
     this.labelName.Name     = "labelName";
     this.labelName.Size     = new System.Drawing.Size(100, 18);
     this.labelName.TabIndex = 8;
     this.labelName.Text     = "Name";
     //
     // buttonAddFriendCancel
     //
     this.buttonAddFriendCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddFriendCancel.Location  = new System.Drawing.Point(4, 140);
     this.buttonAddFriendCancel.Name      = "buttonAddFriendCancel";
     this.buttonAddFriendCancel.Size      = new System.Drawing.Size(154, 23);
     this.buttonAddFriendCancel.TabIndex  = 7;
     this.buttonAddFriendCancel.Text      = "Cancel";
     this.buttonAddFriendCancel.Click    += new System.EventHandler(this.buttonAddFriendCancel_Click);
     //
     // buttonAddFriendOk
     //
     this.buttonAddFriendOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAddFriendOk.Location  = new System.Drawing.Point(4, 114);
     this.buttonAddFriendOk.Name      = "buttonAddFriendOk";
     this.buttonAddFriendOk.Size      = new System.Drawing.Size(154, 23);
     this.buttonAddFriendOk.TabIndex  = 6;
     this.buttonAddFriendOk.Text      = "Ok";
     this.buttonAddFriendOk.Click    += new System.EventHandler(this.buttonAddFriendOk_Click);
     //
     // textBoxPort
     //
     this.textBoxPort.BorderStyle  = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxPort.Location     = new System.Drawing.Point(110, 52);
     this.textBoxPort.Name         = "textBoxPort";
     this.textBoxPort.Size         = new System.Drawing.Size(48, 20);
     this.textBoxPort.TabIndex     = 5;
     this.textBoxPort.Text         = "";
     this.textBoxPort.TextChanged += new System.EventHandler(this.textBoxPort_TextChanged);
     //
     // textBoxIP
     //
     this.textBoxIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxIP.Location    = new System.Drawing.Point(4, 52);
     this.textBoxIP.Name        = "textBoxIP";
     this.textBoxIP.Size        = new System.Drawing.Size(94, 20);
     this.textBoxIP.TabIndex    = 4;
     this.textBoxIP.Text        = "";
     //
     // labelPort
     //
     this.labelPort.Location = new System.Drawing.Point(102, 40);
     this.labelPort.Name     = "labelPort";
     this.labelPort.Size     = new System.Drawing.Size(52, 23);
     this.labelPort.TabIndex = 3;
     this.labelPort.Text     = "Port";
     //
     // labelIP
     //
     this.labelIP.Location = new System.Drawing.Point(2, 40);
     this.labelIP.Name     = "labelIP";
     this.labelIP.Size     = new System.Drawing.Size(68, 23);
     this.labelIP.TabIndex = 2;
     this.labelIP.Text     = "IP or ID";
     //
     // labelUserHash
     //
     this.labelUserHash.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.labelUserHash.Location  = new System.Drawing.Point(2, 74);
     this.labelUserHash.Name      = "labelUserHash";
     this.labelUserHash.Size      = new System.Drawing.Size(116, 18);
     this.labelUserHash.TabIndex  = 0;
     this.labelUserHash.Text      = "User Hash";
     //
     // tabMessages
     //
     this.tabMessages.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.tabMessages.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.tabMessages.HideTabsMode     = Crownwood.Magic.Controls.TabControl.HideTabsModes.ShowAlways;
     this.tabMessages.Location         = new System.Drawing.Point(8, 4);
     this.tabMessages.Name             = "tabMessages";
     this.tabMessages.PositionTop      = true;
     this.tabMessages.ShowArrows       = true;
     this.tabMessages.ShowClose        = true;
     this.tabMessages.ShrinkPagesToFit = false;
     this.tabMessages.Size             = new System.Drawing.Size(404, 333);
     this.tabMessages.TabIndex         = 3;
     //
     // textBoxMessage
     //
     this.textBoxMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBoxMessage.Location    = new System.Drawing.Point(8, 343);
     this.textBoxMessage.Name        = "textBoxMessage";
     this.textBoxMessage.Size        = new System.Drawing.Size(320, 20);
     this.textBoxMessage.TabIndex    = 2;
     this.textBoxMessage.Text        = "";
     this.textBoxMessage.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxMessage_KeyUp);
     //
     // buttonSend
     //
     this.buttonSend.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSend.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonSend.Location  = new System.Drawing.Point(332, 343);
     this.buttonSend.Name      = "buttonSend";
     this.buttonSend.Size      = new System.Drawing.Size(80, 21);
     this.buttonSend.TabIndex  = 14;
     this.buttonSend.Text      = "Send";
     this.buttonSend.Click    += new System.EventHandler(this.buttonSend_Click);
     //
     // panel2
     //
     this.panel2.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.panel2.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(235)), ((System.Byte)(241)), ((System.Byte)(250)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.tabMessages);
     this.panel2.Controls.Add(this.textBoxMessage);
     this.panel2.Controls.Add(this.buttonSend);
     this.panel2.Location = new System.Drawing.Point(188, 6);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(422, 373);
     this.panel2.TabIndex = 15;
     //
     // imageListFriends
     //
     this.imageListFriends.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageListFriends.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormFriends
     //
     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(618, 386);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "FormFriends";
     this.Text            = "FormFriends";
     this.panel1.ResumeLayout(false);
     this.panelAddFriend.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 44
0
    public MediaPortalEditor()
    {
      InitializeComponent();
      Text = "MediaPortalEditor";

      // Initialize style options
      style = VisualStyle.IDE;
      SetStyle(ControlStyles.DoubleBuffer, true);
      SetStyle(ControlStyles.AllPaintingInWmPaint, true);

      // Create the docking and tab manager
      tabManager = new TabControl();
      tabManager.Appearance = TabControl.VisualAppearance.MultiDocument;
      tabManager.ClosePressed += new EventHandler(OnDesignerClosed);
      tabManager.SelectionChanged += new EventHandler(OnDesignerIndexChanged);
      tabManager.Dock = DockStyle.Fill;
      tabManager.Style = style;
      tabManager.IDEPixelBorder = true;
      tabManager.ShowClose = false;
      tabManager.ImageList = tabImageList;
      Controls.Add(tabManager);

      dockManager = new DockingManager(this, style);
      dockManager.InnerControl = tabManager;
      dockManager.TabControlCreated += new DockingManager.TabControlCreatedHandler(OnTabControlCreated);
      dockManager.ContentHidden += new DockingManager.ContentHandler(OnContentHidden);
      dockManager.ContentShown += new DockingManager.ContentHandler(OnContentShown);

      // Create Status Bar
      statusBar = CreateStatusBar();
      dockManager.OuterControl = statusBar;

      // Create Menu and Toolbar
      topMenu = CreateTopMenu();

      // Create Skin Tree
      skinExplorer = new MpeExplorer(this);
      Content c = dockManager.Contents.Add(skinExplorer, "Explorer", serviceImageList, 0);
      dockManager.AddContentWithState(c, State.DockLeft);

      // Create Properties
      propertyManager = new MpePropertyManager(this);
      c = dockManager.Contents.Add(propertyManager, "Properties", serviceImageList, 1);
      dockManager.AddContentWithState(c, State.DockRight);

      // Create Help Manager and Browser
      helpManager = new MpeHelpManager(this);
      c = dockManager.Contents.Add(helpManager, "Help", serviceImageList, 2);
      dockManager.AddContentWithState(c, State.DockBottom);
      helpBrowser = new MpeHelpBrowser(this);

      // Setup Tab Designers
      selectedDesignerIndex = -1;

      // Static Self Reference
      self = this;
    }