Example #1
1
    public static void Attach (Panel ParentArg)
    { Tabs = new TabControl () ;

      Tabs.Parent = ParentArg ;
      Tabs.Dock = DockStyle.Fill ;
      Tabs.Multiline = true ;
    }
Example #2
0
 public override void Attach(TabControl aFrame, string name)
 {
     base.Attach(aFrame, project.Name);
     IDEApplication.Instance.Editors.Insert(0, this);
     redCodeProjectBindingSource.DataSource = project;
     ActivateControl();
 }
Example #3
0
        public Control GetControl()
        {
                tab = new TabControl { Dock = DockStyle.Fill };
                tab.Deselected += TabControl1_Deselected;
                tab.Selected += TabControl1_Selected;

                if (_file.daxFile)
                {
                    for (var i = 0; i < _file._daxBlocks.Count; i++)
                    {
                        processRecords(_file._daxBlocks[i], _file._blockIds[i].ToString());
                    }
                    return tab;
                }
                if (_file.formatType == "item" || _file.formatType == "spc"
                    ||_file.formatType == "item template")
                {
                    processRecords(_file.GetBytes().ToArray(), _file.formatType);
                }
                else
                {
                    tab.TabPages.Add(initTabPage("Character", _file.GetBytes()));
                }
                return tab;
        }
Example #4
0
 private MainController(ActivitiesController activitiesController, RichTextBox txtPrompting,
                        TabControl tabControl) {
     _activitiesController = activitiesController;
     _txtPrompting = txtPrompting;
     _tabControl = tabControl;
     InitActivitiesList(_activitiesController.ServiceProvider);
 }
Example #5
0
        public Form1(string[] args)
        {
            this.Width = 800;
            this.Height = 600;
            InitializeComponent();
            _tabs = new TabControl();
            _tabs.Dock = DockStyle.Fill;
            Controls.Add(_tabs);

            var page = new TabPage("File0");
            page.Width = _tabs.Width;
            page.Height = Convert.ToInt32(_tabs.Height * 0.9);

            string path = calc(args);
            input(path);
            sum = new int[row, col];
            mark = new int[row, col];
            ans = -INF;

            MaxSum thismaxsum = new MaxSum(map, row, col, ref ans, ref mark, mode);
            DrawMaxSum(page);
            ShowMaxSum(page);
            _tabs.SelectedTab = page;
            _tabs.TabPages.Add(page);
        }
Example #6
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.m_ButtonPanel = new System.Windows.Forms.Panel();
      this.m_TabControl = new System.Windows.Forms.TabControl();
      this.SuspendLayout();
      // 
      // m_ButtonPanel
      // 
      this.m_ButtonPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
      this.m_ButtonPanel.Location = new System.Drawing.Point(0, 218);
      this.m_ButtonPanel.Name = "m_ButtonPanel";
      this.m_ButtonPanel.Size = new System.Drawing.Size(272, 40);
      this.m_ButtonPanel.TabIndex = 0;
      // 
      // m_TabControl
      // 
      this.m_TabControl.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.m_TabControl.Location = new System.Drawing.Point(4, 8);
      this.m_TabControl.Name = "m_TabControl";
      this.m_TabControl.SelectedIndex = 0;
      this.m_TabControl.Size = new System.Drawing.Size(264, 200);
      this.m_TabControl.TabIndex = 1;
      // 
      // TabbedDialogView
      // 
      this.Controls.Add(this.m_TabControl);
      this.Controls.Add(this.m_ButtonPanel);
      this.Name = "TabbedDialogView";
      this.Size = new System.Drawing.Size(272, 258);
      this.Load += new System.EventHandler(this.EhView_Load);
      this.ResumeLayout(false);

    }
Example #7
0
        private void FillListView(TabControl tab)
        {
            if (tab != null)
            {
                foreach (TabPage tabPage in tab.TabPages)
                {
                    ListViewGroup lvg = new ListViewGroup(tabPage.Text);
                    lvMain.Groups.Add(lvg);

                    foreach (Control control in tabPage.Controls)
                    {
                        if (control is TabControl)
                        {
                            TabControl tab2 = control as TabControl;

                            foreach (TabPage tabPage2 in tab2.TabPages)
                            {
                                ListViewItem lvi = new ListViewItem(tabPage2.Text);
                                lvi.ImageKey = tabPage2.ImageKey;
                                lvi.Tag = tabPage2;
                                lvi.Group = lvg;
                                lvMain.Items.Add(lvi);
                            }

                            tab2.TabPages.Clear();
                        }
                    }
                }

                if (lvMain.Items.Count > 0)
                {
                    lvMain.Items[0].Selected = true;
                }
            }
        }
Example #8
0
        public static void NewFile(TabControl tabcontrol)
        {
            int sotab = tabcontrol.TabCount;
            //MessageBox.Show(sotab.ToString());
            int i=0;
            for (i = 0; i < sotab; )
            {
                int dem = 0;
                foreach (TabPage page in tabcontrol.TabPages)
                {
                    if (page.Text == "New File" + i.ToString())
                    {
                        dem++;
                    }
                }
                if (dem == 0)
                    break;
                else i++;
            }

            //if (i < sotab)
            {
                TabPage newpage = new TabPage();
                newpage.Text = "New File" + i.ToString();

                RichTextBox newrtb = new RichTextBox();
                newrtb.Dock = DockStyle.Fill;
                newrtb.WordWrap = false;
                newpage.Controls.Add(newrtb);

                tabcontrol.TabPages.Add(newpage);
                tabcontrol.SelectedTab = newpage;
            }
        }
Example #9
0
        public Control GetControl()
        {

                tab = new TabControl { Dock = DockStyle.Fill };

                Control bookmarkedRow = null; // the row we want to start at

                foreach (var ecl in _file.eclDumps)
                {
                    var page = new TabPage(ecl._blockName);
                    Panel codePanel = (Panel) ViewerHelper.CreatePanel();
                    codePanel.Name = "codepanel";
                    codePanel.Tag = ecl;
                    //page.AutoScroll = true;
                    page.Controls.Add(codePanel);

                    // fill the code panel with the decoded ecl code
                    bookmarkedRow = FillECLCodePanel(page);
                    // add a search bar and 'select all' button to the top of the ecl listing
                    var selectAll = ViewerHelper.CreateButton();
                    selectAll.Text = "Copy to clipboard";
                    selectAll.MouseClick += selectAllRows;
                    selectAll.Dock = DockStyle.Right;

                    var findNext = ViewerHelper.CreateButton();
                    findNext.Text = "find next";
                    findNext.MouseClick += searchEclNext;
                    findNext.Dock = DockStyle.Right;

                    TextBox headerText = (TextBox) ViewerHelper.CreateTextBox();
                    headerText.ReadOnly = false;
                    headerText.Text = "Type text to find";
                    headerText.TextChanged += searchEcl;
                    headerText.KeyDown += searchEclKeyPressed;
                    headerText.Dock = DockStyle.Fill;
                    var row1 = ViewerHelper.CreateRow();
                    page.Controls.Add(row1);
                    row1.Controls.Add(headerText);
                    row1.Controls.Add(findNext);
                    row1.Controls.Add(selectAll);


                    tab.TabPages.Add(page);
                    if (page.Text == ChangeFileEventArgs.currentDaxId.ToString())
                    {
                        tab.SelectedTab = page;
                        codePanel.ScrollControlIntoView(bookmarkedRow);
                    }
                }
                var stringPage = new TabPage("ECL Text");
                stringPage.AutoScroll = true;
                var control = ViewerHelper.CreateTextBoxMultiline();
                control.Text = _file.ToString();
                stringPage.Controls.Add(control);
                tab.TabPages.Add(stringPage);
                tab.Selected += ECLTabControlLoadSelected;
                tab.Deselected += ECLTabControlUnloadDeselected;
                return tab;
            
        }
Example #10
0
        //---------------------------------------------------//
        public Form1()
        {
            InitializeComponent();

            colorTable = new int[16];
            colorTable[0] = RGB2int(255, 0, 255);
            colorTable[1] = RGB2int(255, 0, 0);
            colorTable[2] = RGB2int(255, 255, 0);
            colorTable[3] = RGB2int(0, 255, 0);
            colorTable[4] = RGB2int(0, 255, 255);
            colorTable[5] = RGB2int(0, 0, 255);
            colorTable[6] = RGB2int(255, 255, 255);
            colorTable[7] = RGB2int(128, 128, 128);
            colorTable[8] = RGB2int(192, 192, 192);
            colorTable[9] = RGB2int(128, 0, 0);
            colorTable[10] = RGB2int(128, 128, 0);
            colorTable[11] = RGB2int(0, 128, 0);
            colorTable[12] = RGB2int(0, 128, 128);
            colorTable[13] = RGB2int(0, 0, 128);
            colorTable[14] = RGB2int(128, 0, 128);

            s_lstError = lstError;
            s_tabControl1 = tabControl1;
            s_showDebug = chkShowDebug.Checked;
        }
Example #11
0
        private void InitializeComponent()
        {
            this.Size = new System.Drawing.Size(500, 500);
            int w = this.Size.Width - 50;
            int h = this.Size.Height - 50;
            System.Drawing.Size sizeTabControl = new System.Drawing.Size(w, h);

            this.tabControl = new System.Windows.Forms.TabControl();
            this.tabControl.Controls.Add(new TabPageProfesionales(sizeTabControl));
            this.tabHorarios = new TabPageConfiguracionHorarios();
            this.tabControl.Controls.Add(this.tabHorarios);
            this.Controls.Add(this.tabControl);
            this.Size = new System.Drawing.Size(500, 500);// SystemInformation.VirtualScreen.Size;

            this.tabControl.Size = sizeTabControl;
            this.tabControl.SuspendLayout();
            this.SuspendLayout();
            //
            // tabHorarios
            //
            this.tabHorarios.Location = new System.Drawing.Point(0,0);
            this.tabHorarios.Name = "tabHorarios";
            this.tabHorarios.Padding = new System.Windows.Forms.Padding(3);
            this.tabHorarios.Size = this.tabControl.Size;
            this.tabHorarios.TabIndex = 1;
            this.tabHorarios.Text = "Horarios";
            this.tabHorarios.UseVisualStyleBackColor = true;
        }
Example #12
0
 public TabDragDrop(TabControl tabControl)
 {
     tabControl1 = tabControl;
     tabControl1.AllowDrop = true;
     this.tabControl1.DragOver += new System.Windows.Forms.DragEventHandler(this.tabControl1_DragOver);
     this.tabControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.tabControl1_MouseMove);
 }
Example #13
0
 public void Setup()
 {
     this.tabCtrl = new TabControl();
     this.mr = new MockRepository();
     this.pane = mr.Stub<IWindowPane>();
     this.services = mr.Stub<IServiceProvider>();
 }
Example #14
0
            public monitor(DynamicNode n)
            {
                //MessageBox.Show(n.Owner.ToString());

                props = n.GetType().GetProperties();

                this.Text = "Resource monitor - " + n.ToString();
                this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
                this.ClientSize = new System.Drawing.Size(480, 640);
                this.StartPosition = FormStartPosition.Manual;
                //this.Location = new Point(this.Parent

                // TABS
                tc = new TabControl();
                tc.Dock = DockStyle.Fill;
                tp_props = new TabPage();
                tc.Controls.AddRange(new Control[] { tp_props });

                // Datagrid for properties
                pg_props = new PropertyGrid();
                pg_props.SelectedObject = n;
                pg_props.Dock = DockStyle.Fill;
                tp_props.Controls.Add(pg_props);

                t = new Timer();
                t.Interval = 100;
                t.Tick += delegate(object sender, EventArgs e) { pg_props.Refresh(); };
                t.Start();

                this.Controls.Add(tc);
            }
        private void SetupForm()
        {

            SuspendLayout();
            Controls.Clear();

            tabControl = getNewTabControl();
            tabControl.SuspendLayout();

            for (int i = 0; i < tabCaptions.Length; i++)
            {
                textboxes[i] = getNewTextBox();
                tabPages[i] = getNewTabPage(textboxes[i], tabCaptions[i]);
                tabControl.Controls.Add(tabPages[i]);
            }

            Controls.Add(tabControl);

            this.AutoScaleDimensions = new SizeF(96F, 96F);
            this.AutoScaleMode = AutoScaleMode.Dpi;
            this.ClientSize = new Size(624, 442);
            this.FormBorderStyle = FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text = "Thanks to...";

            this.ResumeLayout(false);

        }
Example #16
0
        public void PutControls(List<IExtension> extensions, OMenuItems menu, TabControl tabControl, int clientId, int contractId)
        {
            if (extensions != null)
            {
                foreach (var extension in extensions)
                {
                    if (extension.MainMenu == menu)
                    {
                        TabPage tabPageExtension = new TabPage();
                        tabPageExtension.SuspendLayout();
                        tabPageExtension.Name = extension.ExtensionName;
                        tabPageExtension.Text = extension.ExtensionName;
                        tabPageExtension.UseVisualStyleBackColor = true;
                        extension.ClientId = clientId;
                        extension.ContractId = contractId;

                        UserControl control = (UserControl)extension;
                        control.Dock = DockStyle.Fill;
                        tabPageExtension.Controls.Add(control);
                        tabPageExtension.ResumeLayout(false);
                        tabControl.TabPages.Add(tabPageExtension);
                    }
                }
            }
        }
Example #17
0
        public IEWebBrowser(TabControl tabMain, TabPage tabPage, ContextMenuStrip contextMenuBrowser)
        {
            _tabMain = tabMain;
            _currentTab = tabPage;

            wbMain = CallBackWinAppWebBrowser();
        }
Example #18
0
        private string[] snippets = { }; //{ "diag_log \"\";", "for \"_i\" from 1 to 10 do { debugLog _i; };", "call compile preprocessFileLine Numbers \"\";" };

        #endregion Fields

        #region Constructors

        public EditorHelper(
            EventHandler<TextChangedEventArgs> textAreaTextChanged,
            EventHandler<TextChangedEventArgs> textAreaTextChangedDelayed,
            KeyEventHandler textAreaKeyUp,
            EventHandler textAreaSelectionChangedDelayed,
            DragEventHandler textAreaDragDrop,
            DragEventHandler textAreaDragEnter,
            TabControl mainTabControl,
            AutocompleteMenu armaSense,
            DashGlobal dashGlobal)
        {
            TextAreaTextChanged = textAreaTextChanged;
            TextAreaTextChangedDelayed = textAreaTextChangedDelayed;
            TextAreaKeyUp = textAreaKeyUp;
            TextAreaSelectionChangedDelayed = textAreaSelectionChangedDelayed;
            TextAreaDragDrop = textAreaDragDrop;
            TextAreaDragEnter = textAreaDragEnter;
            MainTabControl = mainTabControl;
            ArmaSense = armaSense;

            DashGlobal = dashGlobal;

            ArmaListItemsCount = 0;
            ArmaSenseKeywords = new List<AutocompleteItem>();

            foreach (var item in keywordList)
            {
                ArmaSenseKeywords.Add(new AutocompleteItem(item) { ImageIndex = 0, ToolTipTitle = "Arma Script Command", ToolTipText = item });
            }
        }
Example #19
0
 /// <summary>
 /// Limpa todos os controles passados de todas as TabPages informadas
 /// </summary>
 /// <param name="controls">Controles onde possui os campos a serem limpados</param>
 /// <param name="tabPages">TabPages que necessitam ter seus controles limpados</param>
 public static void ClearControls(Control.ControlCollection controls, TabControl.TabPageCollection tabPages)
 {
     foreach (TabPage tp in tabPages)
     {
         ClearControls(controls);
     }
 }
Example #20
0
        private void FillTreeView(TreeNodeCollection nodeCollection, TabControl tab)
        {
            if (nodeCollection != null && tab != null)
            {
                foreach (TabPage tabPage in tab.TabPages)
                {
                    TreeNode treeNode = new TreeNode(tabPage.Text);
                    if (!string.IsNullOrEmpty(tabPage.ImageKey))
                    {
                        treeNode.ImageKey = treeNode.SelectedImageKey = tabPage.ImageKey;
                    }
                    treeNode.Tag = tabPage;
                    nodeCollection.Add(treeNode);

                    foreach (Control control in tabPage.Controls)
                    {
                        if (control is TabControl)
                        {
                            FillTreeView(treeNode.Nodes, control as TabControl);
                            break;
                        }
                    }
                }
            }
        }
        public EditorEventsDialog(object hook)
        {
            InitializeComponent();
            this.Hook = hook;
            e_dockWinForm = this;
            //get a reference to the editor
            UID uid = new UIDClass();
            uid.Value = "esriEditor.Editor";
            m_editor = ArcMap.Application.FindExtensionByCLSID(uid) as ESRI.ArcGIS.Editor.IEditor;

            m_TabControl = e_dockWinForm.tabControl1;
            System.Collections.IEnumerator e = m_TabControl.TabPages.GetEnumerator();
            e.MoveNext();
            m_listenTab = e.Current as TabPage;
            e.MoveNext();
            m_selectTab = e.Current as TabPage;

            CheckedListBox editEventList = m_selectTab.GetNextControl(m_selectTab, true) as CheckedListBox;
            editEventList.ItemCheck += new ItemCheckEventHandler(editEventList_ItemCheck);

            ListBox listEvent = m_listenTab.GetNextControl(m_listenTab, true) as ListBox;
            listEvent.MouseDown += new MouseEventHandler(listEvent_MouseDown);

            eventListener = new EventListener(m_editor);

            eventListener.Changed += new ChangedEventHandler(eventListener_Changed);

            //populate the editor events
            editEventList.Items.AddRange(Enum.GetNames(typeof(EventListener.EditorEvent)));
        }
Example #22
0
 public Custom(frmMain Main, Graphics g, TabControl TabControlMain, TabControl TabControlProperties)
 {
     this.Main = Main;
     this.g = g;
     this.TabControlMain = TabControlMain;
     this.TabControlProperties = TabControlProperties;
 }
 public TabChangedBinding(TabControl exitableTabControl, ICommand command, Func<object> commandParameterCallback)
     : base(exitableTabControl, command)
 {
     _tabControl = exitableTabControl;
     _commandParameterCallback = commandParameterCallback;
     _tabControl.SelectedIndexChanged += TabControlSelectedIndexChanged;
 }
Example #24
0
        public void  SetTab(TabControl tab)
        {

            this.tab = tab;
            tab.Selected +=new TabControlEventHandler(tab_Selected);
            uxPrevious.Visible = false;
        }
 public PageListContextMenuStrip(TabControl tabControl, LabelButton lablBtn)
 {
     contextMenuStrip1 = new ClassicContextMenuStrip();
     tabControl1 = tabControl;
     labelButton1 = lablBtn;
     labelButton1.MouseClick += new System.Windows.Forms.MouseEventHandler(labelButton1_MouseClick);
 }
Example #26
0
        public MainForm()
        {
            InitializeComponent();
            _treeViewHandler = new TreeViewHandler(treeView1, treeMenu);

            TabControl = tabControl1;
            ListAnalysis = listAnalysis;
            ListAnalysis.Columns[0].Width = -1;
            LblAnalysis = lblAnalysis;

            DgBody = dgBody;
            DgVariables = dgVariables;
            RtbILSpy = rtbILSpy;

            TreeView = treeView1;
            ToolStrip = toolStrip1;

            InstructionMenuStrip = instructionMenu;
            VariableMenu = variableMenu;
            ExceptionHandlerMenu = exceptionHandlerMenu;

            TreeMenuStrip = treeMenu;
            txtMagicRegex.Text = Settings.Default.MagicRegex;

            InitializeBody();

            cbSearchType.SelectedIndex = 0;
        }
Example #27
0
 private void MakeTabPagesMenuGrey(TabControl tbc)
 {
     foreach (TabPage page in tbc.TabPages)
     {
         page.BackColor = SystemColors.Menu;
     }
 }
Example #28
0
        public Main_frm()
        {
            InitializeComponent();

            LauncherHelper.CardManager = new CardDatabase.CardsManager();
            LauncherHelper.CardManager.Init();

            char[] version = Program.Version.ToCharArray();
            this.Text = Program.LanguageManager.Translation.MainFormTitle + " v" + version[0] + "." + version[1] + "." + version[2];

            TabPage FileManager = new TabPage(){ Name = "File Manager", Text = Program.LanguageManager.Translation.MainFileManagerTab};
            TabControl FileControl = new TabControl();
            FileControl.Dock = DockStyle.Fill;

            TabPage decktab = new TabPage() {Name = "Decks",Text =Program.LanguageManager.Translation.MainFileDeckTab};
            decktab.Controls.Add(new FileManager_frm("Decks", Program.Config.LauncherDir + "deck/", ".ydk"));

            TabPage replaytab = new TabPage() { Name = "Replays", Text = Program.LanguageManager.Translation.MainFileReplayTab };
            replaytab.Controls.Add(new FileManager_frm("Replays", Program.Config.LauncherDir + "replay/", ".yrp"));
            FileControl.TabPages.AddRange(new TabPage[] { decktab, replaytab });

            FileManager.Controls.Add(FileControl);

            TabPage ServerTab = new TabPage() { Text = Program.Config.ServerName, Name = Program.Config.ServerName };
            ServerTab.Controls.Add(new ServerInterface_frm(Program.Config.ServerName));

            TabPage CustomizeTab = new TabPage() { Text = "Customize", Name = Program.LanguageManager.Translation.MainCustomizeTab};
            CustomizeTab.Controls.Add(new Customize_frm());

            TabPage AboutTab = new TabPage() { Text = "About", Name = Program.LanguageManager.Translation.MainAboutTab};
            AboutTab.Controls.Add(new About_frm());

            TabPage ChatTab = new TabPage() { Text = "Chat (Beta)", Name = Program.LanguageManager.Translation.MainChatTab};
            ChatTab.Controls.Add(new Chat_frm());

            if (Program.UserInfo.Rank > 0)
            {
                ServerControl.TabPages.AddRange(new TabPage[] { ServerTab,
                ChatTab,
                CreateBrowserWindow("Tournament Room",Program.LanguageManager.Translation.MainTornyTab),

                CreateBrowserWindow("Youtube",Program.LanguageManager.Translation.MainYoutubeTab),
                FileManager, CustomizeTab, AboutTab });

            }
            else
            {
                ServerControl.TabPages.AddRange(new TabPage[] { ServerTab,
                    ChatTab,
                    CreateBrowserWindow("Tournament Room",Program.LanguageManager.Translation.MainTornyTab),
                CreateBrowserWindow("Youtube",Program.LanguageManager.Translation.MainYoutubeTab),
                FileManager, CustomizeTab, AboutTab });
            }

            Program.ServerConnection.ServerMessage += new NetClient.ServerResponse(ServerMessage);
            ConnectionCheck.Tick += new EventHandler(CheckConnection);
            ServerControl.SelectedIndexChanged += new EventHandler(NavigateOnClick);

            LauncherHelper.LoadBanlist();
        }
 public MultiClipboard(TabControl control)
 {
     _maxCountofBuffers = 4;
     _currentIndex = 0;
     _currentCountofBuffers = 0;
     _control = control;
 }
Example #30
0
        public DashGlobal(
            EventHandler<TextChangedEventArgs> textAreaTextChanged,
            EventHandler<TextChangedEventArgs> textAreaTextChangedDelayed,
            KeyEventHandler textAreaKeyUp,
            EventHandler textAreaSelectionChangedDelayed,
            DragEventHandler textAreaDragDrop,
            DragEventHandler textAreaDragEnter,
            TabControl mainTabControl,
            AutocompleteMenu armaSense,
            Main mainWindow)
        {
            EditorHelper = new EditorHelper(
                textAreaTextChanged,
                textAreaTextChangedDelayed,
                textAreaKeyUp,
                textAreaSelectionChangedDelayed,
                textAreaDragDrop,
                textAreaDragEnter,
                mainTabControl,
                armaSense,
                this);

            TabsHelper = new TabsHelper(
                textAreaTextChanged,
                textAreaSelectionChangedDelayed,
                mainTabControl,
                this);

            FilesHelper = new FilesHelper(this);
            SettingsHelper = new SettingsHelper();

            MainWindow = mainWindow;
        }
Example #31
0
        /// <include file='doc\SysInfoForm.uex' path='docs/doc[@for="SysInfoForm.InitializeComponent"]/*' />
        /// <devdoc>
        ///    Required method for Designer support - do not modify
        ///    the contents of this method with an editor
        /// </devdoc>
        private void InitializeComponent()
        {
            this.components                    = new Container();
            this.sysInfo                       = new TabPage();
            this.versionColumn                 = new ColumnHeader();
            this.fileVersionColumn             = new ColumnHeader();
            this.loadedAssemblyList            = new ListView();
            this.switchesList                  = new ListView();
            this.appInfo                       = new TabPage();
            this.tabControl1                   = new TabControl();
            this.asmNameColumn                 = new ColumnHeader();
            this.codeBaseColumn                = new ColumnHeader();
            this.switchNameColumn              = new ColumnHeader();
            this.displayNameColumn             = new ColumnHeader();
            this.secInfo                       = new TabPage();
            this.bugReportInfo                 = new TabPage();
            this.bugReportLabel                = new Label();
            this.switchInfo                    = new TabPage();
            this.closeButton                   = new Button();
            this.securityLabel                 = new Label();
            this.bugReportDescription          = new TextBox();
            this.includeSystemInformation      = new CheckBox();
            this.includeApplicationInformation = new CheckBox();
            this.saveBugReport                 = new Button();
            this.submitBugReport               = new Button();
            this.switchLabel                   = new Label();
            this.bugReportPanel                = new Panel();

            this.appProps = new PropertyGrid();

            //@design this.TrayLargeIcon = false;
            //@design this.TrayAutoArrange = true;
            //@design this.TrayHeight = 0;
            //@design this.GridSize = new System.Drawing.Size(4, 4);
            this.Text = SR.SecurityAboutDialog;
            this.AutoScaleDimensions = new System.Drawing.Size(6, 13);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(442, 273);
            this.MinimizeBox         = false;
            this.MaximizeBox         = false;
            this.ControlBox          = false;
            this.CancelButton        = closeButton;
            this.Font = new Font("Tahoma", 8);

            sysInfo.Size     = new System.Drawing.Size(428, 210);
            sysInfo.TabIndex = 1;
            sysInfo.Text     = SR.SecurityAssembliesTab;

            versionColumn.Text      = SR.SecurityVersionColumn;
            versionColumn.Width     = 100;
            versionColumn.TextAlign = HorizontalAlignment.Left;

            fileVersionColumn.Text      = SR.SecurityFileVersionColumn;
            fileVersionColumn.Width     = 100;
            fileVersionColumn.TextAlign = HorizontalAlignment.Left;

            loadedAssemblyList.Size          = new System.Drawing.Size(428, 210);
            loadedAssemblyList.Dock          = DockStyle.Fill;
            loadedAssemblyList.TabIndex      = 0;
            loadedAssemblyList.FullRowSelect = true;
            loadedAssemblyList.View          = View.Details;
            loadedAssemblyList.Columns.Clear();
            loadedAssemblyList.Columns.AddRange(new ColumnHeader[] { asmNameColumn,
                                                                     fileVersionColumn,
                                                                     versionColumn,
                                                                     codeBaseColumn });

            switchLabel.Size = new Size(428, 25);
            switchLabel.Dock = DockStyle.Bottom;
            switchLabel.Text = SR.SecuritySwitchLabel;

            switchesList.Size          = new System.Drawing.Size(428, 210);
            switchesList.Dock          = DockStyle.Fill;
            switchesList.ItemCheck    += new ItemCheckEventHandler(SwitchChecked);
            switchesList.TabIndex      = 0;
            switchesList.CheckBoxes    = true;
            switchesList.FullRowSelect = true;
            switchesList.View          = View.Details;
            switchesList.Columns.Clear();
            switchesList.Columns.AddRange(new ColumnHeader[] { switchNameColumn,
                                                               displayNameColumn });

            appInfo.Size            = new System.Drawing.Size(428, 210);
            appInfo.TabIndex        = 2;
            appInfo.Text            = SR.SecurityApplication;
            appInfo.DockPadding.All = 2;

            switchInfo.Size     = new System.Drawing.Size(428, 210);
            switchInfo.TabIndex = 4;
            switchInfo.Text     = SR.SecuritySwitchesTab;

            bugReportDescription.Multiline = true;
            bugReportDescription.Dock      = DockStyle.Fill;
            bugReportDescription.WordWrap  = true;

            bugReportLabel.Dock = DockStyle.Top;
            bugReportLabel.Size = new System.Drawing.Size(428, 36);
            bugReportLabel.Text = SR.SecurityBugReportLabel;

            includeSystemInformation.Checked   = true;
            includeSystemInformation.Dock      = DockStyle.Bottom;
            includeSystemInformation.FlatStyle = FlatStyle.System;
            includeSystemInformation.Text      = SR.SecurityIncludeSysInfo;

            includeApplicationInformation.Checked   = true;
            includeApplicationInformation.Dock      = DockStyle.Bottom;
            includeApplicationInformation.FlatStyle = FlatStyle.System;
            includeApplicationInformation.Text      = SR.SecurityIncludeAppInfo;

            saveBugReport.Text      = SR.SecuritySaveBug;
            saveBugReport.Location  = new Point(2, 2);
            saveBugReport.FlatStyle = FlatStyle.System;
            saveBugReport.Size      = new Size(75, 23);
            saveBugReport.Click    += new EventHandler(SaveBugReport);

            submitBugReport.Text      = SR.SecuritySubmitBug;
            submitBugReport.Location  = new Point(79, 2);
            submitBugReport.FlatStyle = FlatStyle.System;
            submitBugReport.Size      = new Size(75, 23);
            submitBugReport.Click    += new EventHandler(SubmitBugReport);

            bugReportPanel.Dock = DockStyle.Bottom;
            bugReportPanel.Size = new Size(428, 27);

            appProps.Dock           = DockStyle.Fill;
            appProps.ToolbarVisible = false;

            tabControl1.Location              = new System.Drawing.Point(4, 4);
            tabControl1.Size                  = new System.Drawing.Size(436, 236);
            tabControl1.Anchor                = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom;
            tabControl1.SelectedIndex         = 0;
            tabControl1.TabIndex              = 0;
            tabControl1.SelectedIndexChanged += new EventHandler(TabSelectionChanged);

            asmNameColumn.Text      = SR.SecurityAsmNameColumn;
            asmNameColumn.Width     = 150;
            asmNameColumn.TextAlign = HorizontalAlignment.Left;

            switchNameColumn.Text      = SR.SecuritySwitchNameColumn;
            switchNameColumn.Width     = 150;
            switchNameColumn.TextAlign = HorizontalAlignment.Left;

            displayNameColumn.Text      = SR.SecuritySwitchDescrColumn;
            displayNameColumn.Width     = 300;
            displayNameColumn.TextAlign = HorizontalAlignment.Left;

            codeBaseColumn.Text      = SR.SecurityCodeBaseColumn;
            codeBaseColumn.Width     = 400;
            codeBaseColumn.TextAlign = HorizontalAlignment.Left;

            secInfo.Size     = new System.Drawing.Size(428, 210);
            secInfo.TabIndex = 0;
            secInfo.Text     = SR.SecurityInfoTab;

            bugReportInfo.Size     = new System.Drawing.Size(428, 210);
            bugReportInfo.TabIndex = 0;
            bugReportInfo.Text     = SR.SecurityBugReportTab;

            securityLabel.Dock = DockStyle.Fill;

            closeButton.Size         = new System.Drawing.Size(75, 23);
            closeButton.FlatStyle    = FlatStyle.System;
            closeButton.TabIndex     = 1;
            closeButton.Location     = new System.Drawing.Point(344, 248);
            closeButton.Text         = SR.SecurityClose;
            closeButton.Anchor       = AnchorStyles.Right | AnchorStyles.Bottom;
            closeButton.DialogResult = DialogResult.OK;

            this.Controls.Add(closeButton);
            this.Controls.Add(tabControl1);
            switchInfo.Controls.Add(switchesList);
            switchInfo.Controls.Add(switchLabel);
            sysInfo.Controls.Add(loadedAssemblyList);
            secInfo.Controls.Add(securityLabel);
            appInfo.Controls.Add(appProps);
            bugReportPanel.Controls.Add(saveBugReport);
            bugReportPanel.Controls.Add(submitBugReport);
            bugReportInfo.Controls.Add(bugReportDescription);
            bugReportInfo.Controls.Add(bugReportLabel);
            bugReportInfo.Controls.Add(includeSystemInformation);
            bugReportInfo.Controls.Add(includeApplicationInformation);
            bugReportInfo.Controls.Add(bugReportPanel);
            tabControl1.Controls.Add(secInfo);
            tabControl1.Controls.Add(appInfo);
            tabControl1.Controls.Add(sysInfo);
            tabControl1.Controls.Add(switchInfo);
            tabControl1.Controls.Add(bugReportInfo);
        }
Example #32
0
 private void InitializeComponent()
 {
     this.panel1        = new System.Windows.Forms.Panel();
     this.tabControl1   = new System.Windows.Forms.TabControl();
     this.tabPage1      = new System.Windows.Forms.TabPage();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.listKeyframes = new System.Windows.Forms.ListBox();
     this.panel2        = new System.Windows.Forms.Panel();
     this.label7        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.btnNext       = new System.Windows.Forms.Button();
     this.btnPrev       = new System.Windows.Forms.Button();
     this.lblFrameCount = new System.Windows.Forms.Label();
     this.numStart      = new System.Windows.Forms.NumericInputBox();
     this.numEnd        = new System.Windows.Forms.NumericInputBox();
     this.numFrame      = new System.Windows.Forms.NumericUpDown();
     this.label1        = new System.Windows.Forms.Label();
     this.tabPage3      = new System.Windows.Forms.TabPage();
     this.lightCtrl     = new System.Windows.Forms.CLRControl();
     this.panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numFrame)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tabControl1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(221, 200);
     this.panel1.TabIndex = 23;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(221, 200);
     this.tabControl1.TabIndex      = 18;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.panel2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(213, 174);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Lighting";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.listKeyframes);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(213, 102);
     this.groupBox1.TabIndex = 21;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Keyframes";
     //
     // listKeyframes
     //
     this.listKeyframes.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listKeyframes.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listKeyframes.FormattingEnabled = true;
     this.listKeyframes.IntegralHeight    = false;
     this.listKeyframes.ItemHeight        = 14;
     this.listKeyframes.Location          = new System.Drawing.Point(3, 16);
     this.listKeyframes.Name                  = "listKeyframes";
     this.listKeyframes.Size                  = new System.Drawing.Size(207, 83);
     this.listKeyframes.TabIndex              = 18;
     this.listKeyframes.SelectedIndexChanged += new System.EventHandler(this.listKeyframes_SelectedIndexChanged);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.Control;
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.btnNext);
     this.panel2.Controls.Add(this.btnPrev);
     this.panel2.Controls.Add(this.lblFrameCount);
     this.panel2.Controls.Add(this.numStart);
     this.panel2.Controls.Add(this.numEnd);
     this.panel2.Controls.Add(this.numFrame);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 102);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(213, 72);
     this.panel2.TabIndex = 22;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(3, 3);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(41, 20);
     this.label7.TabIndex  = 15;
     this.label7.Text      = "Frame:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label3.Location    = new System.Drawing.Point(6, 45);
     this.label3.Margin      = new System.Windows.Forms.Padding(0);
     this.label3.Name        = "label3";
     this.label3.Size        = new System.Drawing.Size(70, 20);
     this.label3.TabIndex    = 2;
     this.label3.Text        = "End Point Z";
     this.label3.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnNext
     //
     this.btnNext.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNext.Location  = new System.Drawing.Point(187, 1);
     this.btnNext.Name      = "btnNext";
     this.btnNext.Size      = new System.Drawing.Size(23, 23);
     this.btnNext.TabIndex  = 2;
     this.btnNext.Text      = ">";
     this.btnNext.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnNext.UseVisualStyleBackColor = true;
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // btnPrev
     //
     this.btnPrev.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrev.Location  = new System.Drawing.Point(162, 1);
     this.btnPrev.Name      = "btnPrev";
     this.btnPrev.Size      = new System.Drawing.Size(23, 23);
     this.btnPrev.TabIndex  = 1;
     this.btnPrev.Text      = "<";
     this.btnPrev.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnPrev.UseVisualStyleBackColor = true;
     this.btnPrev.Click += new System.EventHandler(this.btnPrev_Click);
     //
     // lblFrameCount
     //
     this.lblFrameCount.Location  = new System.Drawing.Point(114, 3);
     this.lblFrameCount.Name      = "lblFrameCount";
     this.lblFrameCount.Size      = new System.Drawing.Size(51, 20);
     this.lblFrameCount.TabIndex  = 17;
     this.lblFrameCount.Text      = "/ 10";
     this.lblFrameCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // numStart
     //
     this.numStart.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numStart.Location      = new System.Drawing.Point(75, 26);
     this.numStart.Margin        = new System.Windows.Forms.Padding(0);
     this.numStart.Name          = "numStart";
     this.numStart.Size          = new System.Drawing.Size(70, 20);
     this.numStart.TabIndex      = 3;
     this.numStart.Text          = "0";
     this.numStart.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numEnd
     //
     this.numEnd.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numEnd.Location      = new System.Drawing.Point(75, 45);
     this.numEnd.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numEnd.Name          = "numEnd";
     this.numEnd.Size          = new System.Drawing.Size(70, 20);
     this.numEnd.TabIndex      = 6;
     this.numEnd.Text          = "0";
     this.numEnd.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numFrame
     //
     this.numFrame.Location = new System.Drawing.Point(50, 3);
     this.numFrame.Minimum  = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numFrame.Name     = "numFrame";
     this.numFrame.Size     = new System.Drawing.Size(58, 20);
     this.numFrame.TabIndex = 0;
     this.numFrame.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numFrame.ValueChanged += new System.EventHandler(this.numFrame_ValueChanged);
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Location    = new System.Drawing.Point(6, 26);
     this.label1.Margin      = new System.Windows.Forms.Padding(0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(70, 20);
     this.label1.TabIndex    = 0;
     this.label1.Text        = "Start Point Z";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.lightCtrl);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(213, 174);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Light Color";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // lightCtrl
     //
     this.lightCtrl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.lightCtrl.Location = new System.Drawing.Point(0, 0);
     this.lightCtrl.Name     = "lightCtrl";
     this.lightCtrl.Size     = new System.Drawing.Size(213, 174);
     this.lightCtrl.TabIndex = 0;
     //
     // SCN0FogEditControl
     //
     this.Controls.Add(this.panel1);
     this.Name = "SCN0FogEditControl";
     this.Size = new System.Drawing.Size(221, 200);
     this.panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numFrame)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #33
0
 public abstract void DrawTabControl(Graphics dc, Rectangle area, TabControl tab);
Example #34
0
 public abstract Size TabControlGetSpacing(TabControl tab);
Example #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();
     this._tabControlLyrics          = new System.Windows.Forms.TabControl();
     this._tabPageGeneric            = new System.Windows.Forms.TabPage();
     this._labelSHA                  = new System.Windows.Forms.Label();
     this._buttonScanWholeFile       = new System.Windows.Forms.Button();
     this.hasInconsistenciesCheckBox = new System.Windows.Forms.CheckBox();
     this.checkBoxVbr                = new System.Windows.Forms.CheckBox();
     this._mp3FileBindingSource      = new System.Windows.Forms.BindingSource(this.components);
     this._addPicture                = new System.Windows.Forms.Button();
     this._removePicture             = new System.Windows.Forms.Button();
     this._artPictureBox             = new System.Windows.Forms.PictureBox();
     this._tagHandlerBindingSource   = new System.Windows.Forms.BindingSource(this.components);
     this._comboBoxGenre             = new System.Windows.Forms.ComboBox();
     this._labelGenre                = new System.Windows.Forms.Label();
     this._textBoxYear               = new System.Windows.Forms.TextBox();
     this._labelYear                 = new System.Windows.Forms.Label();
     this._labelAlbum                = new System.Windows.Forms.Label();
     this._labelArtist               = new System.Windows.Forms.Label();
     this._textBoxAlbum              = new System.Windows.Forms.TextBox();
     this._textBoxArtist             = new System.Windows.Forms.TextBox();
     this._textBoxSampleRate         = new System.Windows.Forms.TextBox();
     this._textBoxKBitRate           = new System.Windows.Forms.TextBox();
     this._textBoxKBitRateVbr        = new System.Windows.Forms.TextBox();
     this._textBoxKBitRateCalc       = new System.Windows.Forms.TextBox();
     this._textBoxKBitRateMP3        = new System.Windows.Forms.TextBox();
     this._textBoxLength             = new System.Windows.Forms.TextBox();
     this._textBoxPadding            = new System.Windows.Forms.TextBox();
     this.label10          = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.label8           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.label9           = new System.Windows.Forms.Label();
     this.label6           = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this._labelKBitRate   = new System.Windows.Forms.Label();
     this._labelPadding    = new System.Windows.Forms.Label();
     this._labelDetails    = new System.Windows.Forms.Label();
     this._textBoxDiscNo   = new System.Windows.Forms.TextBox();
     this._labelLength     = new System.Windows.Forms.Label();
     this._textBoxTrackNo  = new System.Windows.Forms.TextBox();
     this._labelDiscNo     = new System.Windows.Forms.Label();
     this._labelTrackNo    = new System.Windows.Forms.Label();
     this._textBoxTitle    = new System.Windows.Forms.TextBox();
     this._labelTitle      = new System.Windows.Forms.Label();
     this._tabPageLyrics   = new System.Windows.Forms.TabPage();
     this._textBoxLyrics   = new System.Windows.Forms.TextBox();
     this._tabPageComments = new System.Windows.Forms.TabPage();
     this._textBoxComments = new System.Windows.Forms.TextBox();
     this._tabPageMore     = new System.Windows.Forms.TabPage();
     this._labelComposer   = new System.Windows.Forms.Label();
     this._textBoxComposer = new System.Windows.Forms.TextBox();
     this._errorProvider   = new System.Windows.Forms.ErrorProvider(this.components);
     this._buttonOK        = new System.Windows.Forms.Button();
     this._buttonCancel    = new System.Windows.Forms.Button();
     this._openFileDialog  = new System.Windows.Forms.OpenFileDialog();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this._tabControlLyrics.SuspendLayout();
     this._tabPageGeneric.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._mp3FileBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._artPictureBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._tagHandlerBindingSource)).BeginInit();
     this._tabPageLyrics.SuspendLayout();
     this._tabPageComments.SuspendLayout();
     this._tabPageMore.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // _tabControlLyrics
     //
     this._tabControlLyrics.Controls.Add(this._tabPageGeneric);
     this._tabControlLyrics.Controls.Add(this._tabPageLyrics);
     this._tabControlLyrics.Controls.Add(this._tabPageComments);
     this._tabControlLyrics.Controls.Add(this._tabPageMore);
     this._tabControlLyrics.Location      = new System.Drawing.Point(8, 8);
     this._tabControlLyrics.Name          = "_tabControlLyrics";
     this._tabControlLyrics.SelectedIndex = 0;
     this._tabControlLyrics.Size          = new System.Drawing.Size(552, 391);
     this._tabControlLyrics.TabIndex      = 0;
     //
     // _tabPageGeneric
     //
     this._tabPageGeneric.AutoScroll = true;
     this._tabPageGeneric.Controls.Add(this._labelSHA);
     this._tabPageGeneric.Controls.Add(this._buttonScanWholeFile);
     this._tabPageGeneric.Controls.Add(this.hasInconsistenciesCheckBox);
     this._tabPageGeneric.Controls.Add(this.checkBoxVbr);
     this._tabPageGeneric.Controls.Add(this._addPicture);
     this._tabPageGeneric.Controls.Add(this._removePicture);
     this._tabPageGeneric.Controls.Add(this._artPictureBox);
     this._tabPageGeneric.Controls.Add(this._comboBoxGenre);
     this._tabPageGeneric.Controls.Add(this._labelGenre);
     this._tabPageGeneric.Controls.Add(this._textBoxYear);
     this._tabPageGeneric.Controls.Add(this._labelYear);
     this._tabPageGeneric.Controls.Add(this._labelAlbum);
     this._tabPageGeneric.Controls.Add(this._labelArtist);
     this._tabPageGeneric.Controls.Add(this._textBoxAlbum);
     this._tabPageGeneric.Controls.Add(this._textBoxArtist);
     this._tabPageGeneric.Controls.Add(this._textBoxSampleRate);
     this._tabPageGeneric.Controls.Add(this._textBoxKBitRate);
     this._tabPageGeneric.Controls.Add(this._textBoxKBitRateVbr);
     this._tabPageGeneric.Controls.Add(this._textBoxKBitRateCalc);
     this._tabPageGeneric.Controls.Add(this._textBoxKBitRateMP3);
     this._tabPageGeneric.Controls.Add(this._textBoxLength);
     this._tabPageGeneric.Controls.Add(this._textBoxPadding);
     this._tabPageGeneric.Controls.Add(this.label10);
     this._tabPageGeneric.Controls.Add(this.label4);
     this._tabPageGeneric.Controls.Add(this.label8);
     this._tabPageGeneric.Controls.Add(this.label2);
     this._tabPageGeneric.Controls.Add(this.label9);
     this._tabPageGeneric.Controls.Add(this.label6);
     this._tabPageGeneric.Controls.Add(this.label7);
     this._tabPageGeneric.Controls.Add(this.label3);
     this._tabPageGeneric.Controls.Add(this.label5);
     this._tabPageGeneric.Controls.Add(this.label1);
     this._tabPageGeneric.Controls.Add(this._labelKBitRate);
     this._tabPageGeneric.Controls.Add(this._labelPadding);
     this._tabPageGeneric.Controls.Add(this._labelDetails);
     this._tabPageGeneric.Controls.Add(this._textBoxDiscNo);
     this._tabPageGeneric.Controls.Add(this._labelLength);
     this._tabPageGeneric.Controls.Add(this._textBoxTrackNo);
     this._tabPageGeneric.Controls.Add(this._labelDiscNo);
     this._tabPageGeneric.Controls.Add(this._labelTrackNo);
     this._tabPageGeneric.Controls.Add(this._textBoxTitle);
     this._tabPageGeneric.Controls.Add(this._labelTitle);
     this._tabPageGeneric.Location = new System.Drawing.Point(4, 22);
     this._tabPageGeneric.Name     = "_tabPageGeneric";
     this._tabPageGeneric.Size     = new System.Drawing.Size(544, 365);
     this._tabPageGeneric.TabIndex = 0;
     this._tabPageGeneric.Text     = "Generic";
     //
     // _labelSHA
     //
     this._labelSHA.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this._labelSHA.Location    = new System.Drawing.Point(10, 331);
     this._labelSHA.Margin      = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this._labelSHA.Name        = "_labelSHA";
     this._labelSHA.Size        = new System.Drawing.Size(164, 30);
     this._labelSHA.TabIndex    = 43;
     this._labelSHA.Text        = "SHA-1";
     this.toolTip1.SetToolTip(this._labelSHA, "Click to calculate SHA-1 160bit cryptographic hash of the audio");
     this._labelSHA.Click += new System.EventHandler(this.SHA_Click);
     //
     // _buttonScanWholeFile
     //
     this._buttonScanWholeFile.Location = new System.Drawing.Point(10, 305);
     this._buttonScanWholeFile.Margin   = new System.Windows.Forms.Padding(2);
     this._buttonScanWholeFile.Name     = "_buttonScanWholeFile";
     this._buttonScanWholeFile.Size     = new System.Drawing.Size(67, 23);
     this._buttonScanWholeFile.TabIndex = 41;
     this._buttonScanWholeFile.Text     = "Scan File";
     this.toolTip1.SetToolTip(this._buttonScanWholeFile, "parse and count audio frames and bytes; result is added to details text box");
     this._buttonScanWholeFile.UseVisualStyleBackColor = true;
     this._buttonScanWholeFile.Click += new System.EventHandler(this.OnButtonScanWholeFile);
     //
     // hasInconsistenciesCheckBox
     //
     this.hasInconsistenciesCheckBox.AutoCheck = false;
     this.hasInconsistenciesCheckBox.Location  = new System.Drawing.Point(10, 282);
     this.hasInconsistenciesCheckBox.Margin    = new System.Windows.Forms.Padding(2);
     this.hasInconsistenciesCheckBox.Name      = "hasInconsistenciesCheckBox";
     this.hasInconsistenciesCheckBox.Size      = new System.Drawing.Size(136, 20);
     this.hasInconsistenciesCheckBox.TabIndex  = 40;
     this.hasInconsistenciesCheckBox.Text      = "Has Inconsistencies";
     this.toolTip1.SetToolTip(this.hasInconsistenciesCheckBox, "VBR header size doesn\'t agree with  measured audio file size");
     this.hasInconsistenciesCheckBox.UseVisualStyleBackColor = true;
     //
     // checkBoxVbr
     //
     this.checkBoxVbr.AutoCheck = false;
     this.checkBoxVbr.AutoSize  = true;
     this.checkBoxVbr.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._mp3FileBindingSource, "Audio.IsVbr", true));
     this.checkBoxVbr.Location = new System.Drawing.Point(11, 260);
     this.checkBoxVbr.Name     = "checkBoxVbr";
     this.checkBoxVbr.Size     = new System.Drawing.Size(136, 17);
     this.checkBoxVbr.TabIndex = 15;
     this.checkBoxVbr.Text     = "Variable Bit Rate (VBR)";
     this.toolTip1.SetToolTip(this.checkBoxVbr, "probably VBR encoded MP3 audio");
     this.checkBoxVbr.UseVisualStyleBackColor = true;
     //
     // _mp3FileBindingSource
     //
     this._mp3FileBindingSource.DataSource = typeof(Mp3Lib.Mp3File);
     //
     // _addPicture
     //
     this._addPicture.Location = new System.Drawing.Point(410, 308);
     this._addPicture.Name     = "_addPicture";
     this._addPicture.Size     = new System.Drawing.Size(91, 23);
     this._addPicture.TabIndex = 14;
     this._addPicture.Text     = "Add Picture";
     this._addPicture.Click   += new System.EventHandler(this.addPicture_Click);
     //
     // _removePicture
     //
     this._removePicture.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._removePicture.Location = new System.Drawing.Point(507, 308);
     this._removePicture.Name     = "_removePicture";
     this._removePicture.Size     = new System.Drawing.Size(22, 23);
     this._removePicture.TabIndex = 13;
     this._removePicture.Text     = "X";
     this._removePicture.Click   += new System.EventHandler(this.removePicture_Click);
     //
     // _artPictureBox
     //
     this._artPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this._artPictureBox.DataBindings.Add(new System.Windows.Forms.Binding("Image", this._tagHandlerBindingSource, "Picture", true));
     this._artPictureBox.Location = new System.Drawing.Point(400, 150);
     this._artPictureBox.Name     = "_artPictureBox";
     this._artPictureBox.Size     = new System.Drawing.Size(140, 152);
     this._artPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this._artPictureBox.TabIndex = 12;
     this._artPictureBox.TabStop  = false;
     //
     // _tagHandlerBindingSource
     //
     this._tagHandlerBindingSource.DataSource = typeof(Id3Lib.TagHandler);
     //
     // _comboBoxGenre
     //
     this._comboBoxGenre.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Genre", true));
     this._comboBoxGenre.Location = new System.Drawing.Point(71, 72);
     this._comboBoxGenre.Name     = "_comboBoxGenre";
     this._comboBoxGenre.Size     = new System.Drawing.Size(184, 21);
     this._comboBoxGenre.TabIndex = 11;
     //
     // _labelGenre
     //
     this._labelGenre.Location  = new System.Drawing.Point(8, 74);
     this._labelGenre.Name      = "_labelGenre";
     this._labelGenre.Size      = new System.Drawing.Size(56, 16);
     this._labelGenre.TabIndex  = 10;
     this._labelGenre.Text      = "Genre:";
     this._labelGenre.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _textBoxYear
     //
     this._textBoxYear.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Year", true));
     this._textBoxYear.Location = new System.Drawing.Point(301, 72);
     this._textBoxYear.Name     = "_textBoxYear";
     this._textBoxYear.Size     = new System.Drawing.Size(44, 20);
     this._textBoxYear.TabIndex = 9;
     //
     // _labelYear
     //
     this._labelYear.Location  = new System.Drawing.Point(268, 74);
     this._labelYear.Name      = "_labelYear";
     this._labelYear.Size      = new System.Drawing.Size(32, 16);
     this._labelYear.TabIndex  = 8;
     this._labelYear.Text      = "Year:";
     this._labelYear.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _labelAlbum
     //
     this._labelAlbum.Location  = new System.Drawing.Point(8, 50);
     this._labelAlbum.Name      = "_labelAlbum";
     this._labelAlbum.Size      = new System.Drawing.Size(56, 16);
     this._labelAlbum.TabIndex  = 7;
     this._labelAlbum.Text      = "Album:";
     this._labelAlbum.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _labelArtist
     //
     this._labelArtist.Location  = new System.Drawing.Point(8, 28);
     this._labelArtist.Name      = "_labelArtist";
     this._labelArtist.Size      = new System.Drawing.Size(56, 16);
     this._labelArtist.TabIndex  = 6;
     this._labelArtist.Text      = "Artist:";
     this._labelArtist.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _textBoxAlbum
     //
     this._textBoxAlbum.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Album", true));
     this._textBoxAlbum.Location = new System.Drawing.Point(71, 50);
     this._textBoxAlbum.Name     = "_textBoxAlbum";
     this._textBoxAlbum.Size     = new System.Drawing.Size(448, 20);
     this._textBoxAlbum.TabIndex = 5;
     //
     // _textBoxArtist
     //
     this._textBoxArtist.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Artist", true));
     this._textBoxArtist.Location = new System.Drawing.Point(71, 28);
     this._textBoxArtist.Name     = "_textBoxArtist";
     this._textBoxArtist.Size     = new System.Drawing.Size(448, 20);
     this._textBoxArtist.TabIndex = 4;
     //
     // _textBoxSampleRate
     //
     this._textBoxSampleRate.Location  = new System.Drawing.Point(78, 236);
     this._textBoxSampleRate.Name      = "_textBoxSampleRate";
     this._textBoxSampleRate.ReadOnly  = true;
     this._textBoxSampleRate.Size      = new System.Drawing.Size(60, 20);
     this._textBoxSampleRate.TabIndex  = 3;
     this._textBoxSampleRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // _textBoxKBitRate
     //
     this._textBoxKBitRate.Location  = new System.Drawing.Point(78, 215);
     this._textBoxKBitRate.Name      = "_textBoxKBitRate";
     this._textBoxKBitRate.ReadOnly  = true;
     this._textBoxKBitRate.Size      = new System.Drawing.Size(60, 20);
     this._textBoxKBitRate.TabIndex  = 3;
     this._textBoxKBitRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // _textBoxKBitRateVbr
     //
     this._textBoxKBitRateVbr.Location  = new System.Drawing.Point(78, 194);
     this._textBoxKBitRateVbr.Name      = "_textBoxKBitRateVbr";
     this._textBoxKBitRateVbr.ReadOnly  = true;
     this._textBoxKBitRateVbr.Size      = new System.Drawing.Size(60, 20);
     this._textBoxKBitRateVbr.TabIndex  = 3;
     this._textBoxKBitRateVbr.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // _textBoxKBitRateCalc
     //
     this._textBoxKBitRateCalc.Location  = new System.Drawing.Point(78, 173);
     this._textBoxKBitRateCalc.Name      = "_textBoxKBitRateCalc";
     this._textBoxKBitRateCalc.ReadOnly  = true;
     this._textBoxKBitRateCalc.Size      = new System.Drawing.Size(60, 20);
     this._textBoxKBitRateCalc.TabIndex  = 3;
     this._textBoxKBitRateCalc.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // _textBoxKBitRateMP3
     //
     this._textBoxKBitRateMP3.Location  = new System.Drawing.Point(78, 152);
     this._textBoxKBitRateMP3.Name      = "_textBoxKBitRateMP3";
     this._textBoxKBitRateMP3.ReadOnly  = true;
     this._textBoxKBitRateMP3.Size      = new System.Drawing.Size(60, 20);
     this._textBoxKBitRateMP3.TabIndex  = 3;
     this._textBoxKBitRateMP3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // _textBoxLength
     //
     this._textBoxLength.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Length", true, System.Windows.Forms.DataSourceUpdateMode.Never, null, "hh:mm:ss.fff"));
     this._textBoxLength.Location = new System.Drawing.Point(78, 131);
     this._textBoxLength.Name     = "_textBoxLength";
     this._textBoxLength.ReadOnly = true;
     this._textBoxLength.Size     = new System.Drawing.Size(60, 20);
     this._textBoxLength.TabIndex = 3;
     //
     // _textBoxPadding
     //
     this._textBoxPadding.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "PaddingSize", true, System.Windows.Forms.DataSourceUpdateMode.Never));
     this._textBoxPadding.Location  = new System.Drawing.Point(78, 109);
     this._textBoxPadding.Name      = "_textBoxPadding";
     this._textBoxPadding.ReadOnly  = true;
     this._textBoxPadding.Size      = new System.Drawing.Size(60, 20);
     this._textBoxPadding.TabIndex  = 3;
     this._textBoxPadding.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(143, 216);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(34, 17);
     this.label10.TabIndex  = 2;
     this.label10.Text      = "kbit/s";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(143, 237);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(34, 17);
     this.label4.TabIndex  = 2;
     this.label4.Text      = "kHz";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(143, 195);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(34, 17);
     this.label8.TabIndex  = 2;
     this.label8.Text      = "kbit/s";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(143, 110);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(34, 17);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "bytes";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(2, 216);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(75, 17);
     this.label9.TabIndex  = 2;
     this.label9.Text      = "BitRate:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(143, 174);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(34, 17);
     this.label6.TabIndex  = 2;
     this.label6.Text      = "kbit/s";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(2, 195);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(75, 17);
     this.label7.TabIndex  = 2;
     this.label7.Text      = "VbrBitRate:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(2, 237);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(75, 17);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Samples:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(2, 174);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(75, 17);
     this.label5.TabIndex  = 2;
     this.label5.Text      = "CalcBitRate:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(143, 154);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(34, 17);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "kbit/s";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // _labelKBitRate
     //
     this._labelKBitRate.Location  = new System.Drawing.Point(2, 154);
     this._labelKBitRate.Name      = "_labelKBitRate";
     this._labelKBitRate.Size      = new System.Drawing.Size(75, 17);
     this._labelKBitRate.TabIndex  = 2;
     this._labelKBitRate.Text      = "MP3BitRate:";
     this._labelKBitRate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _labelPadding
     //
     this._labelPadding.Location  = new System.Drawing.Point(2, 110);
     this._labelPadding.Name      = "_labelPadding";
     this._labelPadding.Size      = new System.Drawing.Size(75, 17);
     this._labelPadding.TabIndex  = 2;
     this._labelPadding.Text      = "Padding:";
     this._labelPadding.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _labelDetails
     //
     this._labelDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this._labelDetails.Location    = new System.Drawing.Point(192, 96);
     this._labelDetails.Name        = "_labelDetails";
     this._labelDetails.Size        = new System.Drawing.Size(200, 265);
     this._labelDetails.TabIndex    = 2;
     this._labelDetails.Text        = "Details:";
     //
     // _textBoxDiscNo
     //
     this._textBoxDiscNo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Disc", true));
     this._textBoxDiscNo.Location = new System.Drawing.Point(393, 72);
     this._textBoxDiscNo.Name     = "_textBoxDiscNo";
     this._textBoxDiscNo.Size     = new System.Drawing.Size(40, 20);
     this._textBoxDiscNo.TabIndex = 3;
     //
     // _labelLength
     //
     this._labelLength.Location  = new System.Drawing.Point(2, 131);
     this._labelLength.Name      = "_labelLength";
     this._labelLength.Size      = new System.Drawing.Size(75, 17);
     this._labelLength.TabIndex  = 2;
     this._labelLength.Text      = "Length:";
     this._labelLength.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _textBoxTrackNo
     //
     this._textBoxTrackNo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Track", true));
     this._textBoxTrackNo.Location = new System.Drawing.Point(479, 72);
     this._textBoxTrackNo.Name     = "_textBoxTrackNo";
     this._textBoxTrackNo.Size     = new System.Drawing.Size(40, 20);
     this._textBoxTrackNo.TabIndex = 3;
     //
     // _labelDiscNo
     //
     this._labelDiscNo.Location  = new System.Drawing.Point(346, 74);
     this._labelDiscNo.Name      = "_labelDiscNo";
     this._labelDiscNo.Size      = new System.Drawing.Size(46, 16);
     this._labelDiscNo.TabIndex  = 2;
     this._labelDiscNo.Text      = "Disc #:";
     this._labelDiscNo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _labelTrackNo
     //
     this._labelTrackNo.Location  = new System.Drawing.Point(413, 74);
     this._labelTrackNo.Name      = "_labelTrackNo";
     this._labelTrackNo.Size      = new System.Drawing.Size(68, 16);
     this._labelTrackNo.TabIndex  = 2;
     this._labelTrackNo.Text      = "Track #:";
     this._labelTrackNo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _textBoxTitle
     //
     this._textBoxTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Title", true));
     this._textBoxTitle.Location = new System.Drawing.Point(71, 6);
     this._textBoxTitle.Name     = "_textBoxTitle";
     this._textBoxTitle.Size     = new System.Drawing.Size(448, 20);
     this._textBoxTitle.TabIndex = 1;
     //
     // _labelTitle
     //
     this._labelTitle.Location  = new System.Drawing.Point(8, 6);
     this._labelTitle.Name      = "_labelTitle";
     this._labelTitle.Size      = new System.Drawing.Size(56, 16);
     this._labelTitle.TabIndex  = 0;
     this._labelTitle.Text      = "Title:";
     this._labelTitle.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _tabPageLyrics
     //
     this._tabPageLyrics.Controls.Add(this._textBoxLyrics);
     this._tabPageLyrics.Location = new System.Drawing.Point(4, 22);
     this._tabPageLyrics.Name     = "_tabPageLyrics";
     this._tabPageLyrics.Size     = new System.Drawing.Size(544, 365);
     this._tabPageLyrics.TabIndex = 1;
     this._tabPageLyrics.Text     = "Lyrics";
     //
     // _textBoxLyrics
     //
     this._textBoxLyrics.AcceptsReturn = true;
     this._textBoxLyrics.AcceptsTab    = true;
     this._textBoxLyrics.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Lyrics", true));
     this._textBoxLyrics.Location   = new System.Drawing.Point(16, 16);
     this._textBoxLyrics.Multiline  = true;
     this._textBoxLyrics.Name       = "_textBoxLyrics";
     this._textBoxLyrics.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this._textBoxLyrics.Size       = new System.Drawing.Size(512, 288);
     this._textBoxLyrics.TabIndex   = 0;
     //
     // _tabPageComments
     //
     this._tabPageComments.Controls.Add(this._textBoxComments);
     this._tabPageComments.Location = new System.Drawing.Point(4, 22);
     this._tabPageComments.Name     = "_tabPageComments";
     this._tabPageComments.Size     = new System.Drawing.Size(544, 365);
     this._tabPageComments.TabIndex = 3;
     this._tabPageComments.Text     = "Comments";
     //
     // _textBoxComments
     //
     this._textBoxComments.AcceptsReturn = true;
     this._textBoxComments.AcceptsTab    = true;
     this._textBoxComments.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Comment", true));
     this._textBoxComments.Location   = new System.Drawing.Point(16, 15);
     this._textBoxComments.Multiline  = true;
     this._textBoxComments.Name       = "_textBoxComments";
     this._textBoxComments.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this._textBoxComments.Size       = new System.Drawing.Size(512, 288);
     this._textBoxComments.TabIndex   = 1;
     //
     // _tabPageMore
     //
     this._tabPageMore.Controls.Add(this._labelComposer);
     this._tabPageMore.Controls.Add(this._textBoxComposer);
     this._tabPageMore.Location = new System.Drawing.Point(4, 22);
     this._tabPageMore.Name     = "_tabPageMore";
     this._tabPageMore.Size     = new System.Drawing.Size(544, 365);
     this._tabPageMore.TabIndex = 2;
     this._tabPageMore.Text     = "More";
     //
     // _labelComposer
     //
     this._labelComposer.Location  = new System.Drawing.Point(8, 8);
     this._labelComposer.Name      = "_labelComposer";
     this._labelComposer.Size      = new System.Drawing.Size(66, 16);
     this._labelComposer.TabIndex  = 15;
     this._labelComposer.Text      = "Composer:";
     this._labelComposer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _textBoxComposer
     //
     this._textBoxComposer.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._tagHandlerBindingSource, "Composer", true));
     this._textBoxComposer.Location = new System.Drawing.Point(80, 8);
     this._textBoxComposer.Name     = "_textBoxComposer";
     this._textBoxComposer.Size     = new System.Drawing.Size(448, 20);
     this._textBoxComposer.TabIndex = 14;
     //
     // _errorProvider
     //
     this._errorProvider.ContainerControl = this;
     this._errorProvider.DataMember       = "";
     //
     // _buttonOK
     //
     this._buttonOK.Location = new System.Drawing.Point(208, 405);
     this._buttonOK.Name     = "_buttonOK";
     this._buttonOK.Size     = new System.Drawing.Size(72, 24);
     this._buttonOK.TabIndex = 1;
     this._buttonOK.Text     = "OK";
     this._buttonOK.Click   += new System.EventHandler(this.OnOkClick);
     //
     // _buttonCancel
     //
     this._buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this._buttonCancel.Location     = new System.Drawing.Point(288, 405);
     this._buttonCancel.Name         = "_buttonCancel";
     this._buttonCancel.Size         = new System.Drawing.Size(72, 24);
     this._buttonCancel.TabIndex     = 2;
     this._buttonCancel.Text         = "&Cancel";
     this._buttonCancel.Click       += new System.EventHandler(this.buttonCancel_Click);
     //
     // ID3AdapterEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this._buttonCancel;
     this.ClientSize          = new System.Drawing.Size(567, 439);
     this.Controls.Add(this._buttonCancel);
     this.Controls.Add(this._buttonOK);
     this.Controls.Add(this._tabControlLyrics);
     this.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._mp3FileBindingSource, "FileName", true, System.Windows.Forms.DataSourceUpdateMode.Never));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "ID3AdapterEdit";
     this.ShowInTaskbar   = false;
     this.Text            = "ID3 Tag Adapter Editor";
     this.Load           += new System.EventHandler(this.ID3Edit_Load);
     this._tabControlLyrics.ResumeLayout(false);
     this._tabPageGeneric.ResumeLayout(false);
     this._tabPageGeneric.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._mp3FileBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._artPictureBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._tagHandlerBindingSource)).EndInit();
     this._tabPageLyrics.ResumeLayout(false);
     this._tabPageLyrics.PerformLayout();
     this._tabPageComments.ResumeLayout(false);
     this._tabPageComments.PerformLayout();
     this._tabPageMore.ResumeLayout(false);
     this._tabPageMore.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
     this.ResumeLayout(false);
 }
Example #36
0
 public ControlCollection(TabControl owner) : base(owner)
 {
     this.owner = owner;
 }
 public TabPageCollection(TabControl owner)
 {
     _owner = owner ?? throw new ArgumentNullException(nameof(owner));
 }
 public TabPageCollection(TabControl owner)
 {
     _tabs  = new List <TabPage>();
     _owner = owner;
 }
Example #39
0
 public TabPageCollection(TabControl owner)
 {
     this.owner = owner;
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl       = new System.Windows.Forms.TabControl();
     this.customColorsPage = new System.Windows.Forms.TabPage();
     this.webColorsPage    = new System.Windows.Forms.TabPage();
     this.systemColorsPage = new System.Windows.Forms.TabPage();
     this.tabControl.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.customColorsPage,
         this.webColorsPage,
         this.systemColorsPage
     });
     this.tabControl.Cursor                = System.Windows.Forms.Cursors.Default;
     this.tabControl.Location              = new System.Drawing.Point(0, 4);
     this.tabControl.Name                  = "tabControl";
     this.tabControl.SelectedIndex         = 0;
     this.tabControl.Size                  = new System.Drawing.Size(200, 188);
     this.tabControl.TabIndex              = 0;
     this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
     //
     // customColorsPage
     //
     this.customColorsPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.customColorsPage.Location    = new System.Drawing.Point(4, 22);
     this.customColorsPage.Name        = "customColorsPage";
     this.customColorsPage.Size        = new System.Drawing.Size(192, 162);
     this.customColorsPage.TabIndex    = 0;
     this.customColorsPage.Text        = "Custom";
     this.customColorsPage.Click      += new System.EventHandler(this.customColorsPage_Click);
     this.customColorsPage.Paint      += new System.Windows.Forms.PaintEventHandler(this.customColorsPage_Paint);
     this.customColorsPage.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.customColorsPage_MouseDown);
     //
     // webColorsPage
     //
     this.webColorsPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.webColorsPage.Location    = new System.Drawing.Point(4, 22);
     this.webColorsPage.Name        = "webColorsPage";
     this.webColorsPage.Size        = new System.Drawing.Size(192, 162);
     this.webColorsPage.TabIndex    = 1;
     this.webColorsPage.Text        = "Web";
     //
     // systemColorsPage
     //
     this.systemColorsPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.systemColorsPage.Location    = new System.Drawing.Point(4, 22);
     this.systemColorsPage.Name        = "systemColorsPage";
     this.systemColorsPage.Size        = new System.Drawing.Size(192, 162);
     this.systemColorsPage.TabIndex    = 2;
     this.systemColorsPage.Text        = "System";
     //
     // ColorPickerDropDown
     //
     this.AutoScaleMode = AutoScaleMode.Font;
     this.ClientSize    = new System.Drawing.Size(198, 215);
     this.Controls.AddRange(new System.Windows.Forms.Control[] { this.tabControl });
     this.ForeColor       = System.Drawing.SystemColors.Control;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "ColorPickerDropDown";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.VisibleChanged += new System.EventHandler(this.ColorPickerDropDown_VisibleChanged);
     this.tabControl.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.tabControl1           = new System.Windows.Forms.TabControl();
     this.timer1                = new System.Windows.Forms.Timer(this.components);
     this.menuStrip1            = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemNewLiveLogReceiver = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemOpenLogFile        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemOpenSession        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSaveSession        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemSaveSessionAs      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemCloseSession       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemCloseAllSessions   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItemRecentSessions = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3           = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem2           = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.alwaysOnTopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyIcon1          = new System.Windows.Forms.NotifyIcon(this.components);
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.buttonCloseActiveTab = new System.Windows.Forms.Button();
     this.introDialog1         = new NLogViewer.UI.IntroDialog();
     this.toolTip1             = new System.Windows.Forms.ToolTip(this.components);
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.HotTrack              = true;
     this.tabControl1.Location              = new System.Drawing.Point(12, 46);
     this.tabControl1.Multiline             = true;
     this.tabControl1.Name                  = "tabControl1";
     this.tabControl1.Padding               = new System.Drawing.Point(6, 6);
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(373, 201);
     this.tabControl1.TabIndex              = 6;
     this.tabControl1.Visible               = false;
     this.tabControl1.DoubleClick          += new System.EventHandler(this.tabControl1_DoubleClick);
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     this.tabControl1.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.tabControl1_KeyDown);
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Tick   += new System.EventHandler(this.timer1_Tick);
     //
     // menuStrip1
     //
     this.menuStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.viewToolStripMenuItem,
         this.toolsToolStripMenuItem
     });
     this.menuStrip1.Location      = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name          = "menuStrip1";
     this.menuStrip1.RenderMode    = System.Windows.Forms.ToolStripRenderMode.System;
     this.menuStrip1.Size          = new System.Drawing.Size(692, 24);
     this.menuStrip1.TabIndex      = 7;
     this.menuStrip1.Text          = "menuStrip1";
     this.menuStrip1.MenuActivate += new System.EventHandler(this.menuStrip1_MenuActivate);
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemNewLiveLogReceiver,
         this.toolStripMenuItemOpenLogFile,
         this.toolStripMenuItemOpenSession,
         this.toolStripMenuItemSaveSession,
         this.toolStripMenuItemSaveSessionAs,
         this.toolStripMenuItemCloseSession,
         this.toolStripMenuItemCloseAllSessions,
         this.toolStripSeparator5,
         this.toolStripMenuItemRecentSessions,
         this.toolStripMenuItem3,
         this.toolStripMenuItem2
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
     this.fileToolStripMenuItem.Text = "&Session";
     //
     // toolStripMenuItemNewLiveLogReceiver
     //
     this.toolStripMenuItemNewLiveLogReceiver.Name         = "toolStripMenuItemNewLiveLogReceiver";
     this.toolStripMenuItemNewLiveLogReceiver.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     this.toolStripMenuItemNewLiveLogReceiver.Size         = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemNewLiveLogReceiver.Text         = "New &Live Log Receiver...";
     this.toolStripMenuItemNewLiveLogReceiver.Click       += new System.EventHandler(this.NewLiveLogReceiver_Clicked);
     //
     // toolStripMenuItemOpenLogFile
     //
     this.toolStripMenuItemOpenLogFile.Name         = "toolStripMenuItemOpenLogFile";
     this.toolStripMenuItemOpenLogFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.toolStripMenuItemOpenLogFile.Size         = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemOpenLogFile.Text         = "&Open Log File...";
     this.toolStripMenuItemOpenLogFile.Click       += new System.EventHandler(this.OpenLogFile);
     //
     // toolStripMenuItemOpenSession
     //
     this.toolStripMenuItemOpenSession.Image        = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItemOpenSession.Image")));
     this.toolStripMenuItemOpenSession.Name         = "toolStripMenuItemOpenSession";
     this.toolStripMenuItemOpenSession.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                    | System.Windows.Forms.Keys.O)));
     this.toolStripMenuItemOpenSession.Size   = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemOpenSession.Text   = "Open Session...";
     this.toolStripMenuItemOpenSession.Click += new System.EventHandler(this.OpenSession);
     //
     // toolStripMenuItemSaveSession
     //
     this.toolStripMenuItemSaveSession.Image        = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItemSaveSession.Image")));
     this.toolStripMenuItemSaveSession.Name         = "toolStripMenuItemSaveSession";
     this.toolStripMenuItemSaveSession.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                                                                                    | System.Windows.Forms.Keys.S)));
     this.toolStripMenuItemSaveSession.Size   = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemSaveSession.Text   = "Save Session";
     this.toolStripMenuItemSaveSession.Click += new System.EventHandler(this.toolStripMenuItemSaveSession_Click);
     //
     // toolStripMenuItemSaveSessionAs
     //
     this.toolStripMenuItemSaveSessionAs.Name   = "toolStripMenuItemSaveSessionAs";
     this.toolStripMenuItemSaveSessionAs.Size   = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemSaveSessionAs.Text   = "Save Session As...";
     this.toolStripMenuItemSaveSessionAs.Click += new System.EventHandler(this.toolStripMenuItemSaveSessionAs_Click);
     //
     // toolStripMenuItemCloseSession
     //
     this.toolStripMenuItemCloseSession.Name   = "toolStripMenuItemCloseSession";
     this.toolStripMenuItemCloseSession.Size   = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemCloseSession.Text   = "Close Session";
     this.toolStripMenuItemCloseSession.Click += new System.EventHandler(this.toolStripMenuItemCloseSession_Click);
     //
     // toolStripMenuItemCloseAllSessions
     //
     this.toolStripMenuItemCloseAllSessions.Name   = "toolStripMenuItemCloseAllSessions";
     this.toolStripMenuItemCloseAllSessions.Size   = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemCloseAllSessions.Text   = "Close All Sessions";
     this.toolStripMenuItemCloseAllSessions.Click += new System.EventHandler(this.toolStripMenuItemCloseAllSessions_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(241, 6);
     //
     // toolStripMenuItemRecentSessions
     //
     this.toolStripMenuItemRecentSessions.Name = "toolStripMenuItemRecentSessions";
     this.toolStripMenuItemRecentSessions.Size = new System.Drawing.Size(244, 22);
     this.toolStripMenuItemRecentSessions.Text = "&Recent Sessions";
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(241, 6);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name         = "toolStripMenuItem2";
     this.toolStripMenuItem2.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
     this.toolStripMenuItem2.Size         = new System.Drawing.Size(244, 22);
     this.toolStripMenuItem2.Text         = "&Exit";
     this.toolStripMenuItem2.Click       += new System.EventHandler(this.FileExit);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.alwaysOnTopToolStripMenuItem
     });
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.viewToolStripMenuItem.Text = "&View";
     //
     // alwaysOnTopToolStripMenuItem
     //
     this.alwaysOnTopToolStripMenuItem.Name   = "alwaysOnTopToolStripMenuItem";
     this.alwaysOnTopToolStripMenuItem.Size   = new System.Drawing.Size(155, 22);
     this.alwaysOnTopToolStripMenuItem.Text   = "&Always on Top";
     this.alwaysOnTopToolStripMenuItem.Click += new System.EventHandler(this.alwaysOnTopToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.optionsToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name   = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size   = new System.Drawing.Size(134, 22);
     this.optionsToolStripMenuItem.Text   = "&Options...";
     this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
     //
     // notifyIcon1
     //
     this.notifyIcon1.Icon    = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text    = "notifyIcon1";
     this.notifyIcon1.Visible = true;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "App.ico");
     //
     // buttonCloseActiveTab
     //
     this.buttonCloseActiveTab.AccessibleDescription = "AAA";
     this.buttonCloseActiveTab.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCloseActiveTab.BackColor = System.Drawing.Color.Transparent;
     this.buttonCloseActiveTab.FlatAppearance.BorderSize = 0;
     this.buttonCloseActiveTab.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.buttonCloseActiveTab.Image                   = ((System.Drawing.Image)(resources.GetObject("buttonCloseActiveTab.Image")));
     this.buttonCloseActiveTab.Location                = new System.Drawing.Point(668, 24);
     this.buttonCloseActiveTab.Name                    = "buttonCloseActiveTab";
     this.buttonCloseActiveTab.Size                    = new System.Drawing.Size(24, 24);
     this.buttonCloseActiveTab.TabIndex                = 9;
     this.buttonCloseActiveTab.TabStop                 = false;
     this.buttonCloseActiveTab.UseMnemonic             = false;
     this.buttonCloseActiveTab.UseVisualStyleBackColor = true;
     this.buttonCloseActiveTab.Click                  += new System.EventHandler(this.buttonCloseActiveTab_Click);
     this.buttonCloseActiveTab.MouseHover             += new System.EventHandler(this.buttonCloseActiveTab_MouseHover);
     //
     // introDialog1
     //
     this.introDialog1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("introDialog1.BackgroundImage")));
     this.introDialog1.Location        = new System.Drawing.Point(198, 103);
     this.introDialog1.Name            = "introDialog1";
     this.introDialog1.Size            = new System.Drawing.Size(446, 395);
     this.introDialog1.TabIndex        = 8;
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(692, 466);
     this.Controls.Add(this.buttonCloseActiveTab);
     this.Controls.Add(this.introDialog1);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.menuStrip1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.MinimumSize   = new System.Drawing.Size(458, 420);
     this.Name          = "MainForm";
     this.Text          = "NLog Viewer";
     this.Closed       += new System.EventHandler(this.MainForm_Closed);
     this.Shown        += new System.EventHandler(this.MainForm_Shown);
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load         += new System.EventHandler(this.MainForm_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #42
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(FormTransform));
     this.tabControl1     = new System.Windows.Forms.TabControl();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.btnOK           = new System.Windows.Forms.Button();
     this.btnCancel       = new System.Windows.Forms.Button();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.textBoxStretchX = new System.Windows.Forms.TextBox();
     this.textBoxStretchY = new System.Windows.Forms.TextBox();
     this.label3          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.textBoxRotation = new System.Windows.Forms.TextBox();
     this.textBoxSkew     = new System.Windows.Forms.TextBox();
     this.groupBox2       = new System.Windows.Forms.GroupBox();
     this.textBoxR1C1     = new System.Windows.Forms.TextBox();
     this.textBoxR1C2     = new System.Windows.Forms.TextBox();
     this.textBoxR1C3     = new System.Windows.Forms.TextBox();
     this.textBoxR2C1     = new System.Windows.Forms.TextBox();
     this.textBoxR2C2     = new System.Windows.Forms.TextBox();
     this.textBoxR2C3     = new System.Windows.Forms.TextBox();
     this.textBoxR3C1     = new System.Windows.Forms.TextBox();
     this.textBoxR3C2     = new System.Windows.Forms.TextBox();
     this.textBoxR3C3     = new System.Windows.Forms.TextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabPage1,
         this.tabPage2
     });
     this.tabControl1.Location      = new System.Drawing.Point(8, 8);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(328, 224);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.textBoxSkew,
         this.textBoxRotation,
         this.label4,
         this.label3,
         this.groupBox1
     });
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(320, 198);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Settings";
     //
     // tabPage2
     //
     this.tabPage2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.groupBox2
     });
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(320, 198);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Matrix";
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(64, 248);
     this.btnOK.Name     = "btnOK";
     this.btnOK.TabIndex = 1;
     this.btnOK.Text     = "OK";
     this.btnOK.Click   += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(200, 248);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.TabIndex     = 2;
     this.btnCancel.Text         = "Cancel";
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.textBoxStretchY,
         this.textBoxStretchX,
         this.label2,
         this.label1
     });
     this.groupBox1.Location = new System.Drawing.Point(16, 16);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(288, 72);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Stretch Factor";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(24, 32);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(16, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "X:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(136, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(24, 23);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Y:";
     //
     // textBoxStretchX
     //
     this.textBoxStretchX.Location    = new System.Drawing.Point(48, 32);
     this.textBoxStretchX.Name        = "textBoxStretchX";
     this.textBoxStretchX.Size        = new System.Drawing.Size(64, 20);
     this.textBoxStretchX.TabIndex    = 2;
     this.textBoxStretchX.Text        = "";
     this.textBoxStretchX.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxStretchX_Validating);
     this.textBoxStretchX.Validated  += new System.EventHandler(this.textBoxStretchX_Validated);
     //
     // textBoxStretchY
     //
     this.textBoxStretchY.Location    = new System.Drawing.Point(168, 32);
     this.textBoxStretchY.Name        = "textBoxStretchY";
     this.textBoxStretchY.Size        = new System.Drawing.Size(64, 20);
     this.textBoxStretchY.TabIndex    = 3;
     this.textBoxStretchY.Text        = "";
     this.textBoxStretchY.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxStretchY_Validating);
     this.textBoxStretchY.Validated  += new System.EventHandler(this.textBoxStretchY_Validated);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 104);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(224, 23);
     this.label3.TabIndex = 1;
     this.label3.Text     = "Rotation in degrees (+ Counter Clockwise)";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 144);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(168, 23);
     this.label4.TabIndex = 2;
     this.label4.Text     = "Skew in degrees (+ Clockwise)";
     //
     // textBoxRotation
     //
     this.textBoxRotation.Location    = new System.Drawing.Point(248, 104);
     this.textBoxRotation.Name        = "textBoxRotation";
     this.textBoxRotation.Size        = new System.Drawing.Size(56, 20);
     this.textBoxRotation.TabIndex    = 3;
     this.textBoxRotation.Text        = "";
     this.textBoxRotation.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxRotation_Validating);
     this.textBoxRotation.Validated  += new System.EventHandler(this.textBoxRotation_Validated);
     //
     // textBoxSkew
     //
     this.textBoxSkew.Location    = new System.Drawing.Point(248, 144);
     this.textBoxSkew.Name        = "textBoxSkew";
     this.textBoxSkew.Size        = new System.Drawing.Size(56, 20);
     this.textBoxSkew.TabIndex    = 4;
     this.textBoxSkew.Text        = "";
     this.textBoxSkew.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxSkew_Validating);
     this.textBoxSkew.Validated  += new System.EventHandler(this.textBoxSkew_Validated);
     //
     // groupBox2
     //
     this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label5,
         this.textBoxR3C3,
         this.textBoxR3C2,
         this.textBoxR3C1,
         this.textBoxR2C3,
         this.textBoxR2C2,
         this.textBoxR2C1,
         this.textBoxR1C3,
         this.textBoxR1C2,
         this.textBoxR1C1
     });
     this.groupBox2.Location = new System.Drawing.Point(32, 16);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(256, 160);
     this.groupBox2.TabIndex = 0;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Transform Matrix";
     //
     // textBoxR1C1
     //
     this.textBoxR1C1.Location    = new System.Drawing.Point(16, 56);
     this.textBoxR1C1.Name        = "textBoxR1C1";
     this.textBoxR1C1.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR1C1.TabIndex    = 0;
     this.textBoxR1C1.Text        = "";
     this.textBoxR1C1.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR1C1_Validating);
     this.textBoxR1C1.Validated  += new System.EventHandler(this.textBoxR1C1_Validated);
     //
     // textBoxR1C2
     //
     this.textBoxR1C2.Location    = new System.Drawing.Point(96, 56);
     this.textBoxR1C2.Name        = "textBoxR1C2";
     this.textBoxR1C2.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR1C2.TabIndex    = 1;
     this.textBoxR1C2.Text        = "";
     this.textBoxR1C2.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR1C2_Validating);
     this.textBoxR1C2.Validated  += new System.EventHandler(this.textBoxR1C2_Validated);
     //
     // textBoxR1C3
     //
     this.textBoxR1C3.Location    = new System.Drawing.Point(176, 56);
     this.textBoxR1C3.Name        = "textBoxR1C3";
     this.textBoxR1C3.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR1C3.TabIndex    = 2;
     this.textBoxR1C3.Text        = "";
     this.textBoxR1C3.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR1C3_Validating);
     this.textBoxR1C3.Validated  += new System.EventHandler(this.textBoxR1C3_Validated);
     //
     // textBoxR2C1
     //
     this.textBoxR2C1.Location    = new System.Drawing.Point(16, 88);
     this.textBoxR2C1.Name        = "textBoxR2C1";
     this.textBoxR2C1.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR2C1.TabIndex    = 3;
     this.textBoxR2C1.Text        = "";
     this.textBoxR2C1.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR2C1_Validating);
     this.textBoxR2C1.Validated  += new System.EventHandler(this.textBoxR2C1_Validated);
     //
     // textBoxR2C2
     //
     this.textBoxR2C2.Location    = new System.Drawing.Point(96, 88);
     this.textBoxR2C2.Name        = "textBoxR2C2";
     this.textBoxR2C2.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR2C2.TabIndex    = 4;
     this.textBoxR2C2.Text        = "";
     this.textBoxR2C2.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR2C2_Validating);
     this.textBoxR2C2.Validated  += new System.EventHandler(this.textBoxR2C2_Validated);
     //
     // textBoxR2C3
     //
     this.textBoxR2C3.Location    = new System.Drawing.Point(176, 88);
     this.textBoxR2C3.Name        = "textBoxR2C3";
     this.textBoxR2C3.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR2C3.TabIndex    = 5;
     this.textBoxR2C3.Text        = "";
     this.textBoxR2C3.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR2C3_Validating);
     this.textBoxR2C3.Validated  += new System.EventHandler(this.textBoxR2C3_Validated);
     //
     // textBoxR3C1
     //
     this.textBoxR3C1.Location    = new System.Drawing.Point(16, 120);
     this.textBoxR3C1.Name        = "textBoxR3C1";
     this.textBoxR3C1.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR3C1.TabIndex    = 6;
     this.textBoxR3C1.Text        = "";
     this.textBoxR3C1.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR3C1_Validating);
     this.textBoxR3C1.Validated  += new System.EventHandler(this.textBoxR3C1_Validated);
     //
     // textBoxR3C2
     //
     this.textBoxR3C2.Location    = new System.Drawing.Point(96, 120);
     this.textBoxR3C2.Name        = "textBoxR3C2";
     this.textBoxR3C2.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR3C2.TabIndex    = 7;
     this.textBoxR3C2.Text        = "";
     this.textBoxR3C2.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR3C2_Validating);
     this.textBoxR3C2.Validated  += new System.EventHandler(this.textBoxR3C2_Validated);
     //
     // textBoxR3C3
     //
     this.textBoxR3C3.Location    = new System.Drawing.Point(176, 120);
     this.textBoxR3C3.Name        = "textBoxR3C3";
     this.textBoxR3C3.Size        = new System.Drawing.Size(64, 20);
     this.textBoxR3C3.TabIndex    = 8;
     this.textBoxR3C3.Text        = "";
     this.textBoxR3C3.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxR3C3_Validating);
     this.textBoxR3C3.Validated  += new System.EventHandler(this.textBoxR3C3_Validated);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 24);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(224, 23);
     this.label5.TabIndex = 9;
     this.label5.Text     = "Combined with values in the Settings tab.";
     //
     // errorProvider1
     //
     this.errorProvider1.DataMember = null;
     //
     // FormTransform
     //
     this.AcceptButton = this.btnOK;
     if (Type.GetType("Mono.Runtime") == null)
     {
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     }
     this.CancelButton = this.btnCancel;
     this.ClientSize   = new System.Drawing.Size(344, 286);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btnCancel,
         this.btnOK,
         this.tabControl1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormTransform";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Transform Properties";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #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.tbcSampleType          = new System.Windows.Forms.TabControl();
     this.tpSampleType           = new System.Windows.Forms.TabPage();
     this.btnExit0               = new System.Windows.Forms.Button();
     this.btnNewSampleType       = new System.Windows.Forms.Button();
     this.btnDelSampleType       = new System.Windows.Forms.Button();
     this.btnSaveSampleType      = new System.Windows.Forms.Button();
     this.lsvSampleType          = new System.Windows.Forms.ListView();
     this.chSampleTypeID         = new System.Windows.Forms.ColumnHeader();
     this.chSampleType           = new System.Windows.Forms.ColumnHeader();
     this.chPyCode               = new System.Windows.Forms.ColumnHeader();
     this.chWbCode               = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3          = new System.Windows.Forms.ColumnHeader();
     this.gbSampleTypeInfo       = new System.Windows.Forms.GroupBox();
     this.m_cboHasBarCode        = new System.Windows.Forms.ComboBox();
     this.txtWbCode              = new System.Windows.Forms.TextBox();
     this.label2                 = new System.Windows.Forms.Label();
     this.txtPyCode              = new System.Windows.Forms.TextBox();
     this.txtSampleType          = new System.Windows.Forms.TextBox();
     this.label7                 = new System.Windows.Forms.Label();
     this.lbSampleType           = new System.Windows.Forms.Label();
     this.label1                 = new System.Windows.Forms.Label();
     this.tpSampleCharacter      = new System.Windows.Forms.TabPage();
     this.btnExit1               = new System.Windows.Forms.Button();
     this.btnDelSampleCharacter  = new System.Windows.Forms.Button();
     this.btnSaveSampleCharacter = new System.Windows.Forms.Button();
     this.btnNewSampleCharacter  = new System.Windows.Forms.Button();
     this.lsvSampleCharacter     = new System.Windows.Forms.ListView();
     this.chSEQ                    = new System.Windows.Forms.ColumnHeader();
     this.chCharacter              = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1            = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2            = new System.Windows.Forms.ColumnHeader();
     this.gbSampleCharacter        = new System.Windows.Forms.GroupBox();
     this.txtSampleCharacterWBCode = new System.Windows.Forms.TextBox();
     this.label4                   = new System.Windows.Forms.Label();
     this.txtSampleCharacterPYCode = new System.Windows.Forms.TextBox();
     this.label3                   = new System.Windows.Forms.Label();
     this.txtSampleCharacter       = new System.Windows.Forms.TextBox();
     this.label5                   = new System.Windows.Forms.Label();
     this.label6                   = new System.Windows.Forms.Label();
     this.cboSampleType            = new System.Windows.Forms.ComboBox();
     this.tbcSampleType.SuspendLayout();
     this.tpSampleType.SuspendLayout();
     this.gbSampleTypeInfo.SuspendLayout();
     this.tpSampleCharacter.SuspendLayout();
     this.gbSampleCharacter.SuspendLayout();
     this.SuspendLayout();
     //
     // tbcSampleType
     //
     this.tbcSampleType.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.tbcSampleType.Controls.Add(this.tpSampleType);
     this.tbcSampleType.Controls.Add(this.tpSampleCharacter);
     this.tbcSampleType.Font                  = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbcSampleType.Location              = new System.Drawing.Point(16, 16);
     this.tbcSampleType.Name                  = "tbcSampleType";
     this.tbcSampleType.SelectedIndex         = 0;
     this.tbcSampleType.Size                  = new System.Drawing.Size(839, 432);
     this.tbcSampleType.TabIndex              = 0;
     this.tbcSampleType.SelectedIndexChanged += new System.EventHandler(this.tbcSampleType_SelectedIndexChanged);
     //
     // tpSampleType
     //
     this.tpSampleType.Controls.Add(this.btnExit0);
     this.tpSampleType.Controls.Add(this.btnNewSampleType);
     this.tpSampleType.Controls.Add(this.btnDelSampleType);
     this.tpSampleType.Controls.Add(this.btnSaveSampleType);
     this.tpSampleType.Controls.Add(this.lsvSampleType);
     this.tpSampleType.Controls.Add(this.gbSampleTypeInfo);
     this.tpSampleType.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tpSampleType.Location = new System.Drawing.Point(4, 23);
     this.tpSampleType.Name     = "tpSampleType";
     this.tpSampleType.Size     = new System.Drawing.Size(831, 405);
     this.tpSampleType.TabIndex = 0;
     this.tpSampleType.Text     = "样品类别";
     //
     // btnExit0
     //
     this.btnExit0.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit0.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnExit0.Location = new System.Drawing.Point(735, 366);
     this.btnExit0.Name     = "btnExit0";
     this.btnExit0.Size     = new System.Drawing.Size(75, 24);
     this.btnExit0.TabIndex = 16;
     this.btnExit0.Text     = "关闭(&C)";
     this.btnExit0.UseVisualStyleBackColor = true;
     this.btnExit0.Click += new System.EventHandler(this.btnExit0_Click);
     //
     // btnNewSampleType
     //
     this.btnNewSampleType.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNewSampleType.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnNewSampleType.Location = new System.Drawing.Point(471, 366);
     this.btnNewSampleType.Name     = "btnNewSampleType";
     this.btnNewSampleType.Size     = new System.Drawing.Size(75, 24);
     this.btnNewSampleType.TabIndex = 15;
     this.btnNewSampleType.Text     = "新增";
     this.btnNewSampleType.Click   += new System.EventHandler(this.btnNewSampleType_Click);
     //
     // btnDelSampleType
     //
     this.btnDelSampleType.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelSampleType.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnDelSampleType.Location = new System.Drawing.Point(647, 366);
     this.btnDelSampleType.Name     = "btnDelSampleType";
     this.btnDelSampleType.Size     = new System.Drawing.Size(75, 24);
     this.btnDelSampleType.TabIndex = 14;
     this.btnDelSampleType.Text     = "删除";
     this.btnDelSampleType.Click   += new System.EventHandler(this.btnDelSampleType_Click);
     //
     // btnSaveSampleType
     //
     this.btnSaveSampleType.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSaveSampleType.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnSaveSampleType.Location = new System.Drawing.Point(559, 366);
     this.btnSaveSampleType.Name     = "btnSaveSampleType";
     this.btnSaveSampleType.Size     = new System.Drawing.Size(75, 24);
     this.btnSaveSampleType.TabIndex = 13;
     this.btnSaveSampleType.Text     = "保存";
     this.btnSaveSampleType.Click   += new System.EventHandler(this.btnSaveSampleType_Click);
     //
     // lsvSampleType
     //
     this.lsvSampleType.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.lsvSampleType.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.chSampleTypeID,
         this.chSampleType,
         this.chPyCode,
         this.chWbCode,
         this.columnHeader3
     });
     this.lsvSampleType.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lsvSampleType.FullRowSelect = true;
     this.lsvSampleType.HideSelection = false;
     this.lsvSampleType.Location      = new System.Drawing.Point(16, 96);
     this.lsvSampleType.MultiSelect   = false;
     this.lsvSampleType.Name          = "lsvSampleType";
     this.lsvSampleType.Size          = new System.Drawing.Size(799, 246);
     this.lsvSampleType.TabIndex      = 12;
     this.lsvSampleType.UseCompatibleStateImageBehavior = false;
     this.lsvSampleType.View = System.Windows.Forms.View.Details;
     this.lsvSampleType.SelectedIndexChanged += new System.EventHandler(this.lsvSampleType_SelectedIndexChanged);
     //
     // chSampleTypeID
     //
     this.chSampleTypeID.Text  = "样本类别编号";
     this.chSampleTypeID.Width = 100;
     //
     // chSampleType
     //
     this.chSampleType.Text  = "样本类别";
     this.chSampleType.Width = 80;
     //
     // chPyCode
     //
     this.chPyCode.Text  = "拼音助记符";
     this.chPyCode.Width = 90;
     //
     // chWbCode
     //
     this.chWbCode.Text  = "五笔助记符";
     this.chWbCode.Width = 90;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "是否有条码";
     this.columnHeader3.Width = 121;
     //
     // gbSampleTypeInfo
     //
     this.gbSampleTypeInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.gbSampleTypeInfo.Controls.Add(this.m_cboHasBarCode);
     this.gbSampleTypeInfo.Controls.Add(this.txtWbCode);
     this.gbSampleTypeInfo.Controls.Add(this.label2);
     this.gbSampleTypeInfo.Controls.Add(this.txtPyCode);
     this.gbSampleTypeInfo.Controls.Add(this.txtSampleType);
     this.gbSampleTypeInfo.Controls.Add(this.label7);
     this.gbSampleTypeInfo.Controls.Add(this.lbSampleType);
     this.gbSampleTypeInfo.Controls.Add(this.label1);
     this.gbSampleTypeInfo.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.gbSampleTypeInfo.Location = new System.Drawing.Point(16, 16);
     this.gbSampleTypeInfo.Name     = "gbSampleTypeInfo";
     this.gbSampleTypeInfo.Size     = new System.Drawing.Size(799, 72);
     this.gbSampleTypeInfo.TabIndex = 11;
     this.gbSampleTypeInfo.TabStop  = false;
     this.gbSampleTypeInfo.Text     = "样本类别基本信息";
     //
     // m_cboHasBarCode
     //
     this.m_cboHasBarCode.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboHasBarCode.FormattingEnabled = true;
     this.m_cboHasBarCode.Items.AddRange(new object[] {
         "无",
         "有"
     });
     this.m_cboHasBarCode.Location = new System.Drawing.Point(710, 29);
     this.m_cboHasBarCode.Name     = "m_cboHasBarCode";
     this.m_cboHasBarCode.Size     = new System.Drawing.Size(67, 22);
     this.m_cboHasBarCode.TabIndex = 7;
     //
     // txtWbCode
     //
     this.txtWbCode.Location = new System.Drawing.Point(497, 29);
     this.txtWbCode.Name     = "txtWbCode";
     this.txtWbCode.Size     = new System.Drawing.Size(112, 23);
     this.txtWbCode.TabIndex = 5;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(420, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 4;
     this.label2.Text     = "五笔助记符";
     //
     // txtPyCode
     //
     this.txtPyCode.Location = new System.Drawing.Point(295, 29);
     this.txtPyCode.Name     = "txtPyCode";
     this.txtPyCode.Size     = new System.Drawing.Size(112, 23);
     this.txtPyCode.TabIndex = 3;
     //
     // txtSampleType
     //
     this.txtSampleType.Location = new System.Drawing.Point(90, 29);
     this.txtSampleType.Name     = "txtSampleType";
     this.txtSampleType.Size     = new System.Drawing.Size(112, 23);
     this.txtSampleType.TabIndex = 1;
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(631, 32);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(91, 16);
     this.label7.TabIndex = 6;
     this.label7.Text     = "是否有条码";
     //
     // lbSampleType
     //
     this.lbSampleType.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lbSampleType.Location = new System.Drawing.Point(24, 32);
     this.lbSampleType.Name     = "lbSampleType";
     this.lbSampleType.Size     = new System.Drawing.Size(64, 16);
     this.lbSampleType.TabIndex = 0;
     this.lbSampleType.Text     = "样本类别";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(216, 32);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "拼音助记符";
     //
     // tpSampleCharacter
     //
     this.tpSampleCharacter.Controls.Add(this.btnExit1);
     this.tpSampleCharacter.Controls.Add(this.btnDelSampleCharacter);
     this.tpSampleCharacter.Controls.Add(this.btnSaveSampleCharacter);
     this.tpSampleCharacter.Controls.Add(this.btnNewSampleCharacter);
     this.tpSampleCharacter.Controls.Add(this.lsvSampleCharacter);
     this.tpSampleCharacter.Controls.Add(this.gbSampleCharacter);
     this.tpSampleCharacter.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tpSampleCharacter.Location = new System.Drawing.Point(4, 23);
     this.tpSampleCharacter.Name     = "tpSampleCharacter";
     this.tpSampleCharacter.Size     = new System.Drawing.Size(831, 405);
     this.tpSampleCharacter.TabIndex = 1;
     this.tpSampleCharacter.Text     = "样品性状";
     //
     // btnExit1
     //
     this.btnExit1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit1.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnExit1.Location = new System.Drawing.Point(736, 368);
     this.btnExit1.Name     = "btnExit1";
     this.btnExit1.Size     = new System.Drawing.Size(75, 24);
     this.btnExit1.TabIndex = 17;
     this.btnExit1.Text     = "关闭(&C)";
     this.btnExit1.UseVisualStyleBackColor = true;
     this.btnExit1.Click += new System.EventHandler(this.btnExit1_Click);
     //
     // btnDelSampleCharacter
     //
     this.btnDelSampleCharacter.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelSampleCharacter.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnDelSampleCharacter.Location = new System.Drawing.Point(648, 368);
     this.btnDelSampleCharacter.Name     = "btnDelSampleCharacter";
     this.btnDelSampleCharacter.Size     = new System.Drawing.Size(75, 24);
     this.btnDelSampleCharacter.TabIndex = 9;
     this.btnDelSampleCharacter.Text     = "删除";
     this.btnDelSampleCharacter.Click   += new System.EventHandler(this.btnDelSampleCharacter_Click);
     //
     // btnSaveSampleCharacter
     //
     this.btnSaveSampleCharacter.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSaveSampleCharacter.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnSaveSampleCharacter.Location = new System.Drawing.Point(560, 368);
     this.btnSaveSampleCharacter.Name     = "btnSaveSampleCharacter";
     this.btnSaveSampleCharacter.Size     = new System.Drawing.Size(75, 24);
     this.btnSaveSampleCharacter.TabIndex = 8;
     this.btnSaveSampleCharacter.Text     = "保存";
     this.btnSaveSampleCharacter.Click   += new System.EventHandler(this.btnSaveSampleCharacter_Click);
     //
     // btnNewSampleCharacter
     //
     this.btnNewSampleCharacter.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNewSampleCharacter.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnNewSampleCharacter.Location = new System.Drawing.Point(472, 368);
     this.btnNewSampleCharacter.Name     = "btnNewSampleCharacter";
     this.btnNewSampleCharacter.Size     = new System.Drawing.Size(75, 24);
     this.btnNewSampleCharacter.TabIndex = 7;
     this.btnNewSampleCharacter.Text     = "新增";
     this.btnNewSampleCharacter.Click   += new System.EventHandler(this.btnNewSampleCharacter_Click);
     //
     // lsvSampleCharacter
     //
     this.lsvSampleCharacter.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.lsvSampleCharacter.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.chSEQ,
         this.chCharacter,
         this.columnHeader1,
         this.columnHeader2
     });
     this.lsvSampleCharacter.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lsvSampleCharacter.FullRowSelect = true;
     this.lsvSampleCharacter.HideSelection = false;
     this.lsvSampleCharacter.Location      = new System.Drawing.Point(8, 112);
     this.lsvSampleCharacter.MultiSelect   = false;
     this.lsvSampleCharacter.Name          = "lsvSampleCharacter";
     this.lsvSampleCharacter.Size          = new System.Drawing.Size(807, 232);
     this.lsvSampleCharacter.TabIndex      = 6;
     this.lsvSampleCharacter.UseCompatibleStateImageBehavior = false;
     this.lsvSampleCharacter.View = System.Windows.Forms.View.Details;
     this.lsvSampleCharacter.SelectedIndexChanged += new System.EventHandler(this.lsvSampleCharacter_SelectedIndexChanged);
     //
     // chSEQ
     //
     this.chSEQ.Text  = "序号";
     this.chSEQ.Width = 50;
     //
     // chCharacter
     //
     this.chCharacter.Text  = "样本性状";
     this.chCharacter.Width = 120;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "拼音助记符";
     this.columnHeader1.Width = 90;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "五笔助记符";
     this.columnHeader2.Width = 90;
     //
     // gbSampleCharacter
     //
     this.gbSampleCharacter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.gbSampleCharacter.Controls.Add(this.txtSampleCharacterWBCode);
     this.gbSampleCharacter.Controls.Add(this.label4);
     this.gbSampleCharacter.Controls.Add(this.txtSampleCharacterPYCode);
     this.gbSampleCharacter.Controls.Add(this.label3);
     this.gbSampleCharacter.Controls.Add(this.txtSampleCharacter);
     this.gbSampleCharacter.Controls.Add(this.label5);
     this.gbSampleCharacter.Controls.Add(this.label6);
     this.gbSampleCharacter.Controls.Add(this.cboSampleType);
     this.gbSampleCharacter.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.gbSampleCharacter.Location = new System.Drawing.Point(8, 16);
     this.gbSampleCharacter.Name     = "gbSampleCharacter";
     this.gbSampleCharacter.Size     = new System.Drawing.Size(807, 88);
     this.gbSampleCharacter.TabIndex = 5;
     this.gbSampleCharacter.TabStop  = false;
     this.gbSampleCharacter.Text     = "样本性状基本信息";
     //
     // txtSampleCharacterWBCode
     //
     this.txtSampleCharacterWBCode.Location = new System.Drawing.Point(488, 48);
     this.txtSampleCharacterWBCode.Name     = "txtSampleCharacterWBCode";
     this.txtSampleCharacterWBCode.Size     = new System.Drawing.Size(112, 23);
     this.txtSampleCharacterWBCode.TabIndex = 7;
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(416, 56);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(80, 16);
     this.label4.TabIndex = 6;
     this.label4.Text     = "五笔助记符";
     //
     // txtSampleCharacterPYCode
     //
     this.txtSampleCharacterPYCode.Location = new System.Drawing.Point(296, 48);
     this.txtSampleCharacterPYCode.Name     = "txtSampleCharacterPYCode";
     this.txtSampleCharacterPYCode.Size     = new System.Drawing.Size(112, 23);
     this.txtSampleCharacterPYCode.TabIndex = 5;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(216, 56);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(80, 16);
     this.label3.TabIndex = 4;
     this.label3.Text     = "拼音助记符";
     //
     // txtSampleCharacter
     //
     this.txtSampleCharacter.Location = new System.Drawing.Point(88, 48);
     this.txtSampleCharacter.Name     = "txtSampleCharacter";
     this.txtSampleCharacter.Size     = new System.Drawing.Size(120, 23);
     this.txtSampleCharacter.TabIndex = 3;
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(8, 56);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(64, 16);
     this.label5.TabIndex = 2;
     this.label5.Text     = "样本性状";
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(8, 30);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(64, 16);
     this.label6.TabIndex = 1;
     this.label6.Text     = "样本类别";
     //
     // cboSampleType
     //
     this.cboSampleType.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboSampleType.Location              = new System.Drawing.Point(88, 24);
     this.cboSampleType.Name                  = "cboSampleType";
     this.cboSampleType.Size                  = new System.Drawing.Size(120, 22);
     this.cboSampleType.TabIndex              = 0;
     this.cboSampleType.SelectedIndexChanged += new System.EventHandler(this.cboSampleType_SelectedIndexChanged);
     //
     // frmSampleInfo
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(871, 477);
     this.Controls.Add(this.tbcSampleType);
     this.Name  = "frmSampleInfo";
     this.Text  = "样本基本信息";
     this.Load += new System.EventHandler(this.frmSampleInfo_Load);
     this.tbcSampleType.ResumeLayout(false);
     this.tpSampleType.ResumeLayout(false);
     this.gbSampleTypeInfo.ResumeLayout(false);
     this.gbSampleTypeInfo.PerformLayout();
     this.tpSampleCharacter.ResumeLayout(false);
     this.gbSampleCharacter.ResumeLayout(false);
     this.gbSampleCharacter.PerformLayout();
     this.ResumeLayout(false);
 }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.buttonOK          = new System.Windows.Forms.Button();
     this.buttonCancel      = new System.Windows.Forms.Button();
     this.tabControl1       = new System.Windows.Forms.TabControl();
     this.tabPage1          = new System.Windows.Forms.TabPage();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.label11           = new System.Windows.Forms.Label();
     this.label8            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.label10           = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label9            = new System.Windows.Forms.Label();
     this.label7            = new System.Windows.Forms.Label();
     this.label6            = new System.Windows.Forms.Label();
     this.textBoxDateShort  = new System.Windows.Forms.TextBox();
     this.textBoxDateLong   = new System.Windows.Forms.TextBox();
     this.label2            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.tabPage2          = new System.Windows.Forms.TabPage();
     this.groupBox2         = new System.Windows.Forms.GroupBox();
     this.label20           = new System.Windows.Forms.Label();
     this.label19           = new System.Windows.Forms.Label();
     this.label18           = new System.Windows.Forms.Label();
     this.label17           = new System.Windows.Forms.Label();
     this.label15           = new System.Windows.Forms.Label();
     this.label14           = new System.Windows.Forms.Label();
     this.label13           = new System.Windows.Forms.Label();
     this.label12           = new System.Windows.Forms.Label();
     this.textBoxAM         = new System.Windows.Forms.TextBox();
     this.textBoxPM         = new System.Windows.Forms.TextBox();
     this.textBoxTime       = new System.Windows.Forms.TextBox();
     this.tabPage3          = new System.Windows.Forms.TabPage();
     this.comboBoxTempUnit  = new System.Windows.Forms.ComboBox();
     this.label21           = new System.Windows.Forms.Label();
     this.comboBoxSpeedUnit = new System.Windows.Forms.ComboBox();
     this.label16           = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // buttonOK
     //
     this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonOK.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.buttonOK.Location     = new System.Drawing.Point(184, 336);
     this.buttonOK.Name         = "buttonOK";
     this.buttonOK.TabIndex     = 1;
     this.buttonOK.Text         = "OK";
     this.buttonOK.Click       += new System.EventHandler(this.buttonOK_Click);
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.buttonCancel.Location     = new System.Drawing.Point(272, 336);
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.TabIndex     = 2;
     this.buttonCancel.Text         = "Cancel";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(8, 8);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(344, 320);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.textBoxDateShort);
     this.tabPage1.Controls.Add(this.textBoxDateLong);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(336, 294);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Date";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label11);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label10);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(8, 72);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(312, 216);
     this.groupBox1.TabIndex  = 12;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Date Format";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(32, 176);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(208, 32);
     this.label11.TabIndex = 12;
     this.label11.Text     = "Optional text can be placed between apostrophes (\' \')";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(32, 112);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(208, 23);
     this.label8.TabIndex = 9;
     this.label8.Text     = "M = numeric month without prefixed zero";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(32, 56);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(208, 23);
     this.label5.TabIndex = 6;
     this.label5.Text     = "D = numeric day without prefixed zero";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(32, 40);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(208, 23);
     this.label4.TabIndex = 5;
     this.label4.Text     = "DD = numeric day with prefixed zero";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(32, 152);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(208, 23);
     this.label10.TabIndex = 11;
     this.label10.Text     = "YY = Year as two-digit number";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(32, 24);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(208, 16);
     this.label3.TabIndex = 4;
     this.label3.Text     = "DDDD = Day of week as string";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(32, 136);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(208, 23);
     this.label9.TabIndex = 10;
     this.label9.Text     = "YYYY = Year as four-digit number";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(32, 96);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(208, 23);
     this.label7.TabIndex = 8;
     this.label7.Text     = "MM = numeric month with prefixed zero";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(32, 80);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(208, 23);
     this.label6.TabIndex = 7;
     this.label6.Text     = "MMMM = Month as string";
     //
     // textBoxDateShort
     //
     this.textBoxDateShort.Location = new System.Drawing.Point(96, 48);
     this.textBoxDateShort.Name     = "textBoxDateShort";
     this.textBoxDateShort.Size     = new System.Drawing.Size(224, 20);
     this.textBoxDateShort.TabIndex = 3;
     this.textBoxDateShort.Text     = "";
     //
     // textBoxDateLong
     //
     this.textBoxDateLong.Location = new System.Drawing.Point(96, 16);
     this.textBoxDateLong.Name     = "textBoxDateLong";
     this.textBoxDateLong.Size     = new System.Drawing.Size(224, 20);
     this.textBoxDateLong.TabIndex = 1;
     this.textBoxDateLong.Text     = "";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 23);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Date Short:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Date Long:";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Controls.Add(this.label14);
     this.tabPage2.Controls.Add(this.label13);
     this.tabPage2.Controls.Add(this.label12);
     this.tabPage2.Controls.Add(this.textBoxAM);
     this.tabPage2.Controls.Add(this.textBoxPM);
     this.tabPage2.Controls.Add(this.textBoxTime);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(336, 294);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Time";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.label15);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location  = new System.Drawing.Point(8, 112);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(320, 176);
     this.groupBox2.TabIndex  = 6;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Time Format";
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(16, 128);
     this.label20.Name     = "label20";
     this.label20.Size     = new System.Drawing.Size(232, 23);
     this.label20.TabIndex = 5;
     this.label20.Text     = "hh, mm, ss = with prefixed zero";
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(16, 104);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(232, 23);
     this.label19.TabIndex = 4;
     this.label19.Text     = "h, m, s = without prefixed zero";
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(16, 80);
     this.label18.Name     = "label18";
     this.label18.TabIndex = 3;
     this.label18.Text     = "H=24 hour clock";
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(16, 56);
     this.label17.Name     = "label17";
     this.label17.TabIndex = 2;
     this.label17.Text     = "h=12 hour clock";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(16, 32);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(280, 23);
     this.label15.TabIndex = 0;
     this.label15.Text     = "h=hour, m=minute, s=second, x=meridiem symbol";
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(8, 80);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(72, 23);
     this.label14.TabIndex = 5;
     this.label14.Text     = "AM symbol:";
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(8, 48);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(72, 23);
     this.label13.TabIndex = 3;
     this.label13.Text     = "PM symbol:";
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(8, 16);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(72, 23);
     this.label12.TabIndex = 1;
     this.label12.Text     = "Time:";
     //
     // textBoxAM
     //
     this.textBoxAM.Location = new System.Drawing.Point(88, 80);
     this.textBoxAM.Name     = "textBoxAM";
     this.textBoxAM.Size     = new System.Drawing.Size(72, 20);
     this.textBoxAM.TabIndex = 6;
     this.textBoxAM.Text     = "";
     //
     // textBoxPM
     //
     this.textBoxPM.Location = new System.Drawing.Point(88, 48);
     this.textBoxPM.Name     = "textBoxPM";
     this.textBoxPM.Size     = new System.Drawing.Size(72, 20);
     this.textBoxPM.TabIndex = 4;
     this.textBoxPM.Text     = "";
     //
     // textBoxTime
     //
     this.textBoxTime.Location = new System.Drawing.Point(88, 16);
     this.textBoxTime.Name     = "textBoxTime";
     this.textBoxTime.Size     = new System.Drawing.Size(136, 20);
     this.textBoxTime.TabIndex = 2;
     this.textBoxTime.Text     = "";
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.tabPage3.Controls.Add(this.comboBoxTempUnit);
     this.tabPage3.Controls.Add(this.label21);
     this.tabPage3.Controls.Add(this.comboBoxSpeedUnit);
     this.tabPage3.Controls.Add(this.label16);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(336, 294);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Other";
     //
     // comboBoxTempUnit
     //
     this.comboBoxTempUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxTempUnit.Location      = new System.Drawing.Point(136, 112);
     this.comboBoxTempUnit.Name          = "comboBoxTempUnit";
     this.comboBoxTempUnit.Size          = new System.Drawing.Size(121, 21);
     this.comboBoxTempUnit.TabIndex      = 4;
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(24, 112);
     this.label21.Name     = "label21";
     this.label21.TabIndex = 3;
     this.label21.Text     = "Temperature Unit:";
     //
     // comboBoxSpeedUnit
     //
     this.comboBoxSpeedUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSpeedUnit.Location      = new System.Drawing.Point(136, 48);
     this.comboBoxSpeedUnit.Name          = "comboBoxSpeedUnit";
     this.comboBoxSpeedUnit.Size          = new System.Drawing.Size(121, 21);
     this.comboBoxSpeedUnit.TabIndex      = 1;
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(24, 48);
     this.label16.Name     = "label16";
     this.label16.TabIndex = 0;
     this.label16.Text     = "Speed Unit:";
     //
     // RegionForm
     //
     this.AcceptButton      = this.buttonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.buttonCancel;
     this.ClientSize        = new System.Drawing.Size(362, 368);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "RegionForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Region Properties";
     this.Load           += new System.EventHandler(this.RegionForm_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChonchidinh_ct));
     this.tabControl = new System.Windows.Forms.TabControl();
     this.butOK      = new System.Windows.Forms.Button();
     this.butCancel  = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl.Location      = new System.Drawing.Point(1, -2);
     this.tabControl.Multiline     = true;
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.ShowToolTips  = true;
     this.tabControl.Size          = new System.Drawing.Size(792, 508);
     this.tabControl.TabIndex      = 0;
     //
     // butOK
     //
     this.butOK.Image      = ((System.Drawing.Image)(resources.GetObject("butOK.Image")));
     this.butOK.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butOK.Location   = new System.Drawing.Point(308, 505);
     this.butOK.Name       = "butOK";
     this.butOK.Size       = new System.Drawing.Size(88, 25);
     this.butOK.TabIndex   = 1;
     this.butOK.Text       = "Đồng ý";
     this.butOK.Click     += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Image        = ((System.Drawing.Image)(resources.GetObject("butCancel.Image")));
     this.butCancel.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butCancel.Location     = new System.Drawing.Point(398, 505);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(84, 25);
     this.butCancel.TabIndex     = 2;
     this.butCancel.Text         = "Bỏ qua";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // frmChonchidinh_ct
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(794, 536);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.tabControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmChonchidinh_ct";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Chọn dịch vụ";
     this.Load           += new System.EventHandler(this.frmChonchidinh_ct_Load);
     this.ResumeLayout(false);
 }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel = new System.Windows.Forms.Panel();
     this.buttonSetProcessVariable      = new System.Windows.Forms.Button();
     this.groupBoxSelections            = new System.Windows.Forms.GroupBox();
     this.textBoxDependentVarSelected   = new System.Windows.Forms.TextBox();
     this.labelDependentVarSelected     = new System.Windows.Forms.Label();
     this.textBoxParameterSelected      = new System.Windows.Forms.TextBox();
     this.labelParameterSelected        = new System.Windows.Forms.Label();
     this.textBoxIndependentVarSelected = new System.Windows.Forms.TextBox();
     this.labelIndependentVarSelected   = new System.Windows.Forms.Label();
     this.tabControl            = new System.Windows.Forms.TabControl();
     this.tabPageIndependentVar = new System.Windows.Forms.TabPage();
     this.solvableVariablesControlIndependentVar = new ProsimoUI.SolvableVariablesControl();
     this.tabPageDependentVar = new System.Windows.Forms.TabPage();
     this.solvableVariablesControlDependentVar = new ProsimoUI.SolvableVariablesControl();
     this.tabPageParameter = new System.Windows.Forms.TabPage();
     this.solvableVariablesControlParameter = new ProsimoUI.SolvableVariablesControl();
     this.checkBoxIncludeParamVar           = new System.Windows.Forms.CheckBox();
     this.textBoxName  = new System.Windows.Forms.TextBox();
     this.labelName    = new System.Windows.Forms.Label();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.buttonOk     = new System.Windows.Forms.Button();
     this.panel.SuspendLayout();
     this.groupBoxSelections.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tabPageIndependentVar.SuspendLayout();
     this.tabPageDependentVar.SuspendLayout();
     this.tabPageParameter.SuspendLayout();
     this.SuspendLayout();
     //
     // panel
     //
     this.panel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel.Controls.Add(this.buttonSetProcessVariable);
     this.panel.Controls.Add(this.groupBoxSelections);
     this.panel.Controls.Add(this.tabControl);
     this.panel.Controls.Add(this.checkBoxIncludeParamVar);
     this.panel.Controls.Add(this.textBoxName);
     this.panel.Controls.Add(this.labelName);
     this.panel.Controls.Add(this.buttonCancel);
     this.panel.Controls.Add(this.buttonOk);
     this.panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name     = "panel";
     this.panel.Size     = new System.Drawing.Size(394, 468);
     this.panel.TabIndex = 0;
     //
     // buttonSetProcessVariable
     //
     this.buttonSetProcessVariable.Location = new System.Drawing.Point(128, 320);
     this.buttonSetProcessVariable.Name     = "buttonSetProcessVariable";
     this.buttonSetProcessVariable.Size     = new System.Drawing.Size(128, 23);
     this.buttonSetProcessVariable.TabIndex = 8;
     this.buttonSetProcessVariable.Text     = "Set Process Variable";
     this.buttonSetProcessVariable.Click   += new System.EventHandler(this.buttonSetProcessVariable_Click);
     //
     // groupBoxSelections
     //
     this.groupBoxSelections.Controls.Add(this.textBoxDependentVarSelected);
     this.groupBoxSelections.Controls.Add(this.labelDependentVarSelected);
     this.groupBoxSelections.Controls.Add(this.textBoxParameterSelected);
     this.groupBoxSelections.Controls.Add(this.labelParameterSelected);
     this.groupBoxSelections.Controls.Add(this.textBoxIndependentVarSelected);
     this.groupBoxSelections.Controls.Add(this.labelIndependentVarSelected);
     this.groupBoxSelections.Location = new System.Drawing.Point(4, 348);
     this.groupBoxSelections.Name     = "groupBoxSelections";
     this.groupBoxSelections.Size     = new System.Drawing.Size(384, 80);
     this.groupBoxSelections.TabIndex = 6;
     this.groupBoxSelections.TabStop  = false;
     this.groupBoxSelections.Text     = "Selections";
     //
     // textBoxDependentVarSelected
     //
     this.textBoxDependentVarSelected.BackColor = System.Drawing.Color.White;
     this.textBoxDependentVarSelected.Location  = new System.Drawing.Point(136, 36);
     this.textBoxDependentVarSelected.Name      = "textBoxDependentVarSelected";
     this.textBoxDependentVarSelected.ReadOnly  = true;
     this.textBoxDependentVarSelected.Size      = new System.Drawing.Size(244, 20);
     this.textBoxDependentVarSelected.TabIndex  = 9;
     this.textBoxDependentVarSelected.Text      = "";
     //
     // labelDependentVarSelected
     //
     this.labelDependentVarSelected.Location  = new System.Drawing.Point(8, 40);
     this.labelDependentVarSelected.Name      = "labelDependentVarSelected";
     this.labelDependentVarSelected.Size      = new System.Drawing.Size(124, 16);
     this.labelDependentVarSelected.TabIndex  = 8;
     this.labelDependentVarSelected.Text      = "Dependent Variable:";
     this.labelDependentVarSelected.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBoxParameterSelected
     //
     this.textBoxParameterSelected.BackColor = System.Drawing.Color.White;
     this.textBoxParameterSelected.Location  = new System.Drawing.Point(136, 56);
     this.textBoxParameterSelected.Name      = "textBoxParameterSelected";
     this.textBoxParameterSelected.ReadOnly  = true;
     this.textBoxParameterSelected.Size      = new System.Drawing.Size(244, 20);
     this.textBoxParameterSelected.TabIndex  = 7;
     this.textBoxParameterSelected.Text      = "";
     //
     // labelParameterSelected
     //
     this.labelParameterSelected.Location  = new System.Drawing.Point(8, 60);
     this.labelParameterSelected.Name      = "labelParameterSelected";
     this.labelParameterSelected.Size      = new System.Drawing.Size(124, 16);
     this.labelParameterSelected.TabIndex  = 6;
     this.labelParameterSelected.Text      = "Parameter :";
     this.labelParameterSelected.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBoxIndependentVarSelected
     //
     this.textBoxIndependentVarSelected.BackColor = System.Drawing.Color.White;
     this.textBoxIndependentVarSelected.Location  = new System.Drawing.Point(136, 16);
     this.textBoxIndependentVarSelected.Name      = "textBoxIndependentVarSelected";
     this.textBoxIndependentVarSelected.ReadOnly  = true;
     this.textBoxIndependentVarSelected.Size      = new System.Drawing.Size(244, 20);
     this.textBoxIndependentVarSelected.TabIndex  = 5;
     this.textBoxIndependentVarSelected.Text      = "";
     //
     // labelIndependentVarSelected
     //
     this.labelIndependentVarSelected.Location  = new System.Drawing.Point(8, 20);
     this.labelIndependentVarSelected.Name      = "labelIndependentVarSelected";
     this.labelIndependentVarSelected.Size      = new System.Drawing.Size(124, 16);
     this.labelIndependentVarSelected.TabIndex  = 4;
     this.labelIndependentVarSelected.Text      = "Independent Variable:";
     this.labelIndependentVarSelected.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabPageIndependentVar);
     this.tabControl.Controls.Add(this.tabPageDependentVar);
     this.tabControl.Controls.Add(this.tabPageParameter);
     this.tabControl.Location      = new System.Drawing.Point(4, 40);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(384, 276);
     this.tabControl.TabIndex      = 5;
     //
     // tabPageIndependentVar
     //
     this.tabPageIndependentVar.Controls.Add(this.solvableVariablesControlIndependentVar);
     this.tabPageIndependentVar.Location = new System.Drawing.Point(4, 22);
     this.tabPageIndependentVar.Name     = "tabPageIndependentVar";
     this.tabPageIndependentVar.Size     = new System.Drawing.Size(376, 250);
     this.tabPageIndependentVar.TabIndex = 0;
     this.tabPageIndependentVar.Text     = "Independent Variable";
     //
     // solvableVariablesControlIndependentVar
     //
     this.solvableVariablesControlIndependentVar.Location = new System.Drawing.Point(0, 0);
     this.solvableVariablesControlIndependentVar.Name     = "solvableVariablesControlIndependentVar";
     this.solvableVariablesControlIndependentVar.Size     = new System.Drawing.Size(376, 252);
     this.solvableVariablesControlIndependentVar.TabIndex = 0;
     //
     // tabPageDependentVar
     //
     this.tabPageDependentVar.Controls.Add(this.solvableVariablesControlDependentVar);
     this.tabPageDependentVar.Location = new System.Drawing.Point(4, 22);
     this.tabPageDependentVar.Name     = "tabPageDependentVar";
     this.tabPageDependentVar.Size     = new System.Drawing.Size(376, 250);
     this.tabPageDependentVar.TabIndex = 1;
     this.tabPageDependentVar.Text     = "Dependent Variable";
     //
     // solvableVariablesControlDependentVar
     //
     this.solvableVariablesControlDependentVar.Location = new System.Drawing.Point(0, 0);
     this.solvableVariablesControlDependentVar.Name     = "solvableVariablesControlDependentVar";
     this.solvableVariablesControlDependentVar.Size     = new System.Drawing.Size(376, 252);
     this.solvableVariablesControlDependentVar.TabIndex = 0;
     //
     // tabPageParameter
     //
     this.tabPageParameter.Controls.Add(this.solvableVariablesControlParameter);
     this.tabPageParameter.Location = new System.Drawing.Point(4, 22);
     this.tabPageParameter.Name     = "tabPageParameter";
     this.tabPageParameter.Size     = new System.Drawing.Size(376, 250);
     this.tabPageParameter.TabIndex = 2;
     this.tabPageParameter.Text     = "Parameter";
     //
     // solvableVariablesControlParameter
     //
     this.solvableVariablesControlParameter.Location = new System.Drawing.Point(0, 0);
     this.solvableVariablesControlParameter.Name     = "solvableVariablesControlParameter";
     this.solvableVariablesControlParameter.Size     = new System.Drawing.Size(376, 252);
     this.solvableVariablesControlParameter.TabIndex = 0;
     //
     // checkBoxIncludeParamVar
     //
     this.checkBoxIncludeParamVar.Location        = new System.Drawing.Point(216, 8);
     this.checkBoxIncludeParamVar.Name            = "checkBoxIncludeParamVar";
     this.checkBoxIncludeParamVar.Size            = new System.Drawing.Size(172, 20);
     this.checkBoxIncludeParamVar.TabIndex        = 4;
     this.checkBoxIncludeParamVar.Text            = "Include Parameter Variable";
     this.checkBoxIncludeParamVar.CheckedChanged += new System.EventHandler(this.checkBoxIncludeParamVar_CheckedChanged);
     //
     // textBoxName
     //
     this.textBoxName.Location = new System.Drawing.Point(56, 8);
     this.textBoxName.Name     = "textBoxName";
     this.textBoxName.Size     = new System.Drawing.Size(148, 20);
     this.textBoxName.TabIndex = 3;
     this.textBoxName.Text     = "";
     //
     // labelName
     //
     this.labelName.Location  = new System.Drawing.Point(0, 12);
     this.labelName.Name      = "labelName";
     this.labelName.Size      = new System.Drawing.Size(52, 16);
     this.labelName.TabIndex  = 2;
     this.labelName.Text      = "Name:";
     this.labelName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // buttonCancel
     //
     this.buttonCancel.Location = new System.Drawing.Point(200, 436);
     this.buttonCancel.Name     = "buttonCancel";
     this.buttonCancel.TabIndex = 1;
     this.buttonCancel.Text     = "Cancel";
     this.buttonCancel.Click   += new System.EventHandler(this.buttonCancel_Click);
     //
     // buttonOk
     //
     this.buttonOk.Location = new System.Drawing.Point(116, 436);
     this.buttonOk.Name     = "buttonOk";
     this.buttonOk.TabIndex = 0;
     this.buttonOk.Text     = "OK";
     this.buttonOk.Click   += new System.EventHandler(this.buttonOk_Click);
     //
     // AddPlot2DForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(394, 468);
     this.Controls.Add(this.panel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "AddPlot2DForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "AddPlot2DForm";
     this.panel.ResumeLayout(false);
     this.groupBoxSelections.ResumeLayout(false);
     this.tabControl.ResumeLayout(false);
     this.tabPageIndependentVar.ResumeLayout(false);
     this.tabPageDependentVar.ResumeLayout(false);
     this.tabPageParameter.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1    = new System.Windows.Forms.TabPage();
     this.c1Chart1    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart2    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart3    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart5    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart6    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart4    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart7    = new C1.Win.C1Chart.C1Chart();
     this.c1Chart8    = new C1.Win.C1Chart.C1Chart();
     this.tabPage2    = new System.Windows.Forms.TabPage();
     this.c1Chart3D1  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D2  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D3  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D4  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D6  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D5  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D7  = new C1.Win.C1Chart3D.C1Chart3D();
     this.c1Chart3D8  = new C1.Win.C1Chart3D.C1Chart3D();
     this.button1     = new System.Windows.Forms.Button();
     this._c1pdf      = new C1.C1Pdf.C1PdfDocument();
     this.label1      = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart8)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D8)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(10, 9);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(670, 406);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.c1Chart1);
     this.tabPage1.Controls.Add(this.c1Chart2);
     this.tabPage1.Controls.Add(this.c1Chart3);
     this.tabPage1.Controls.Add(this.c1Chart5);
     this.tabPage1.Controls.Add(this.c1Chart6);
     this.tabPage1.Controls.Add(this.c1Chart4);
     this.tabPage1.Controls.Add(this.c1Chart7);
     this.tabPage1.Controls.Add(this.c1Chart8);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(662, 377);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "2D Charts";
     //
     // c1Chart1
     //
     this.c1Chart1.Location = new System.Drawing.Point(10, 9);
     this.c1Chart1.Name     = "c1Chart1";
     this.c1Chart1.PropBag  = resources.GetString("c1Chart1.PropBag");
     this.c1Chart1.Size     = new System.Drawing.Size(182, 176);
     this.c1Chart1.TabIndex = 0;
     //
     // c1Chart2
     //
     this.c1Chart2.Location = new System.Drawing.Point(192, 9);
     this.c1Chart2.Name     = "c1Chart2";
     this.c1Chart2.PropBag  = resources.GetString("c1Chart2.PropBag");
     this.c1Chart2.Size     = new System.Drawing.Size(182, 176);
     this.c1Chart2.TabIndex = 0;
     //
     // c1Chart3
     //
     this.c1Chart3.Location = new System.Drawing.Point(374, 9);
     this.c1Chart3.Name     = "c1Chart3";
     this.c1Chart3.PropBag  = resources.GetString("c1Chart3.PropBag");
     this.c1Chart3.Size     = new System.Drawing.Size(183, 176);
     this.c1Chart3.TabIndex = 0;
     //
     // c1Chart5
     //
     this.c1Chart5.Location = new System.Drawing.Point(10, 194);
     this.c1Chart5.Name     = "c1Chart5";
     this.c1Chart5.PropBag  = resources.GetString("c1Chart5.PropBag");
     this.c1Chart5.Size     = new System.Drawing.Size(182, 175);
     this.c1Chart5.TabIndex = 0;
     //
     // c1Chart6
     //
     this.c1Chart6.Location = new System.Drawing.Point(192, 194);
     this.c1Chart6.Name     = "c1Chart6";
     this.c1Chart6.PropBag  = resources.GetString("c1Chart6.PropBag");
     this.c1Chart6.Size     = new System.Drawing.Size(182, 175);
     this.c1Chart6.TabIndex = 0;
     //
     // c1Chart4
     //
     this.c1Chart4.Location = new System.Drawing.Point(374, 194);
     this.c1Chart4.Name     = "c1Chart4";
     this.c1Chart4.PropBag  = resources.GetString("c1Chart4.PropBag");
     this.c1Chart4.Size     = new System.Drawing.Size(183, 175);
     this.c1Chart4.TabIndex = 0;
     //
     // c1Chart7
     //
     this.c1Chart7.Location = new System.Drawing.Point(557, 194);
     this.c1Chart7.Name     = "c1Chart7";
     this.c1Chart7.PropBag  = resources.GetString("c1Chart7.PropBag");
     this.c1Chart7.Size     = new System.Drawing.Size(182, 175);
     this.c1Chart7.TabIndex = 0;
     //
     // c1Chart8
     //
     this.c1Chart8.Location = new System.Drawing.Point(557, 9);
     this.c1Chart8.Name     = "c1Chart8";
     this.c1Chart8.PropBag  = resources.GetString("c1Chart8.PropBag");
     this.c1Chart8.Size     = new System.Drawing.Size(182, 176);
     this.c1Chart8.TabIndex = 0;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.c1Chart3D1);
     this.tabPage2.Controls.Add(this.c1Chart3D2);
     this.tabPage2.Controls.Add(this.c1Chart3D3);
     this.tabPage2.Controls.Add(this.c1Chart3D4);
     this.tabPage2.Controls.Add(this.c1Chart3D6);
     this.tabPage2.Controls.Add(this.c1Chart3D5);
     this.tabPage2.Controls.Add(this.c1Chart3D7);
     this.tabPage2.Controls.Add(this.c1Chart3D8);
     this.tabPage2.Location = new System.Drawing.Point(4, 25);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(761, 377);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "3D Charts";
     //
     // c1Chart3D1
     //
     this.c1Chart3D1.Location = new System.Drawing.Point(10, 9);
     this.c1Chart3D1.Name     = "c1Chart3D1";
     this.c1Chart3D1.PropBag  = resources.GetString("c1Chart3D1.PropBag");
     this.c1Chart3D1.Size     = new System.Drawing.Size(182, 176);
     this.c1Chart3D1.TabIndex = 0;
     //
     // c1Chart3D2
     //
     this.c1Chart3D2.Location = new System.Drawing.Point(192, 9);
     this.c1Chart3D2.Name     = "c1Chart3D2";
     this.c1Chart3D2.PropBag  = resources.GetString("c1Chart3D2.PropBag");
     this.c1Chart3D2.Size     = new System.Drawing.Size(182, 176);
     this.c1Chart3D2.TabIndex = 0;
     //
     // c1Chart3D3
     //
     this.c1Chart3D3.Location = new System.Drawing.Point(374, 9);
     this.c1Chart3D3.Name     = "c1Chart3D3";
     this.c1Chart3D3.PropBag  = resources.GetString("c1Chart3D3.PropBag");
     this.c1Chart3D3.Size     = new System.Drawing.Size(183, 176);
     this.c1Chart3D3.TabIndex = 0;
     //
     // c1Chart3D4
     //
     this.c1Chart3D4.Location = new System.Drawing.Point(10, 194);
     this.c1Chart3D4.Name     = "c1Chart3D4";
     this.c1Chart3D4.PropBag  = resources.GetString("c1Chart3D4.PropBag");
     this.c1Chart3D4.Size     = new System.Drawing.Size(182, 175);
     this.c1Chart3D4.TabIndex = 0;
     //
     // c1Chart3D6
     //
     this.c1Chart3D6.Location = new System.Drawing.Point(192, 194);
     this.c1Chart3D6.Name     = "c1Chart3D6";
     this.c1Chart3D6.PropBag  = resources.GetString("c1Chart3D6.PropBag");
     this.c1Chart3D6.Size     = new System.Drawing.Size(182, 175);
     this.c1Chart3D6.TabIndex = 0;
     //
     // c1Chart3D5
     //
     this.c1Chart3D5.Location = new System.Drawing.Point(374, 194);
     this.c1Chart3D5.Name     = "c1Chart3D5";
     this.c1Chart3D5.PropBag  = resources.GetString("c1Chart3D5.PropBag");
     this.c1Chart3D5.Size     = new System.Drawing.Size(183, 175);
     this.c1Chart3D5.TabIndex = 0;
     //
     // c1Chart3D7
     //
     this.c1Chart3D7.Location = new System.Drawing.Point(557, 9);
     this.c1Chart3D7.Name     = "c1Chart3D7";
     this.c1Chart3D7.PropBag  = resources.GetString("c1Chart3D7.PropBag");
     this.c1Chart3D7.Size     = new System.Drawing.Size(182, 176);
     this.c1Chart3D7.TabIndex = 0;
     //
     // c1Chart3D8
     //
     this.c1Chart3D8.Location = new System.Drawing.Point(557, 194);
     this.c1Chart3D8.Name     = "c1Chart3D8";
     this.c1Chart3D8.PropBag  = resources.GetString("c1Chart3D8.PropBag");
     this.c1Chart3D8.Size     = new System.Drawing.Size(182, 175);
     this.c1Chart3D8.TabIndex = 0;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(10, 425);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(153, 37);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Create PDF";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // _c1pdf
     //
     this._c1pdf.Security.OwnerPassword = "******";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(182, 434);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(576, 18);
     this.label1.TabIndex = 2;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(689, 476);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "Form1";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "C1Charts in PDF";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart8)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1Chart3D8)).EndInit();
     this.ResumeLayout(false);
 }
Example #48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogToolOptions));
     this.bOK              = new System.Windows.Forms.Button();
     this.bCancel          = new System.Windows.Forms.Button();
     this.tabControl1      = new System.Windows.Forms.TabControl();
     this.tpGeneral        = new System.Windows.Forms.TabPage();
     this.gbPropLoc        = new System.Windows.Forms.GroupBox();
     this.chkPBAutoHide    = new System.Windows.Forms.CheckBox();
     this.rbPBBottom       = new System.Windows.Forms.RadioButton();
     this.rbPBTop          = new System.Windows.Forms.RadioButton();
     this.rbPBLeft         = new System.Windows.Forms.RadioButton();
     this.rbPBRight        = new System.Windows.Forms.RadioButton();
     this.cbTabInterface   = new System.Windows.Forms.CheckBox();
     this.cbOutline        = new System.Windows.Forms.CheckBox();
     this.cbEditLines      = new System.Windows.Forms.CheckBox();
     this.tbHelpUrl        = new System.Windows.Forms.TextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.tbRecentFilesMax = new System.Windows.Forms.TextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.tpToolbar        = new System.Windows.Forms.TabPage();
     this.bRemove          = new System.Windows.Forms.Button();
     this.bReset           = new System.Windows.Forms.Button();
     this.bDown            = new System.Windows.Forms.Button();
     this.bUp              = new System.Windows.Forms.Button();
     this.bCopyItem        = new System.Windows.Forms.Button();
     this.label5           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.lbToolbar        = new System.Windows.Forms.ListBox();
     this.lbOperation      = new System.Windows.Forms.ListBox();
     this.tpDesktop        = new System.Windows.Forms.TabPage();
     this.bBrowse          = new System.Windows.Forms.Button();
     this.tbDirectory      = new System.Windows.Forms.TextBox();
     this.label9           = new System.Windows.Forms.Label();
     this.label8           = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.ckLocal          = new System.Windows.Forms.CheckBox();
     this.tbPort           = new System.Windows.Forms.TextBox();
     this.label6           = new System.Windows.Forms.Label();
     this.bApply           = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tpGeneral.SuspendLayout();
     this.gbPropLoc.SuspendLayout();
     this.tpToolbar.SuspendLayout();
     this.tpDesktop.SuspendLayout();
     this.SuspendLayout();
     //
     // bOK
     //
     this.bOK.Location = new System.Drawing.Point(210, 275);
     this.bOK.Name     = "bOK";
     this.bOK.Size     = new System.Drawing.Size(75, 23);
     this.bOK.TabIndex = 1;
     this.bOK.Text     = "OK";
     this.bOK.Click   += new System.EventHandler(this.bOK_Click);
     //
     // bCancel
     //
     this.bCancel.CausesValidation = false;
     this.bCancel.DialogResult     = System.Windows.Forms.DialogResult.Cancel;
     this.bCancel.Location         = new System.Drawing.Point(298, 275);
     this.bCancel.Name             = "bCancel";
     this.bCancel.Size             = new System.Drawing.Size(75, 23);
     this.bCancel.TabIndex         = 2;
     this.bCancel.Text             = "Cancel";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tpGeneral);
     this.tabControl1.Controls.Add(this.tpToolbar);
     this.tabControl1.Controls.Add(this.tpDesktop);
     this.tabControl1.Location      = new System.Drawing.Point(3, 3);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(466, 269);
     this.tabControl1.TabIndex      = 0;
     //
     // tpGeneral
     //
     this.tpGeneral.Controls.Add(this.gbPropLoc);
     this.tpGeneral.Controls.Add(this.cbTabInterface);
     this.tpGeneral.Controls.Add(this.cbOutline);
     this.tpGeneral.Controls.Add(this.cbEditLines);
     this.tpGeneral.Controls.Add(this.tbHelpUrl);
     this.tpGeneral.Controls.Add(this.label3);
     this.tpGeneral.Controls.Add(this.label2);
     this.tpGeneral.Controls.Add(this.tbRecentFilesMax);
     this.tpGeneral.Controls.Add(this.label1);
     this.tpGeneral.Location = new System.Drawing.Point(4, 22);
     this.tpGeneral.Name     = "tpGeneral";
     this.tpGeneral.Size     = new System.Drawing.Size(458, 243);
     this.tpGeneral.TabIndex = 0;
     this.tpGeneral.Tag      = "general";
     this.tpGeneral.Text     = "General";
     //
     // gbPropLoc
     //
     this.gbPropLoc.Controls.Add(this.chkPBAutoHide);
     this.gbPropLoc.Controls.Add(this.rbPBBottom);
     this.gbPropLoc.Controls.Add(this.rbPBTop);
     this.gbPropLoc.Controls.Add(this.rbPBLeft);
     this.gbPropLoc.Controls.Add(this.rbPBRight);
     this.gbPropLoc.Location = new System.Drawing.Point(14, 155);
     this.gbPropLoc.Name     = "gbPropLoc";
     this.gbPropLoc.Size     = new System.Drawing.Size(401, 69);
     this.gbPropLoc.TabIndex = 8;
     this.gbPropLoc.TabStop  = false;
     this.gbPropLoc.Text     = "Properties Window";
     //
     // chkPBAutoHide
     //
     this.chkPBAutoHide.AutoSize = true;
     this.chkPBAutoHide.Location = new System.Drawing.Point(13, 42);
     this.chkPBAutoHide.Name     = "chkPBAutoHide";
     this.chkPBAutoHide.Size     = new System.Drawing.Size(73, 17);
     this.chkPBAutoHide.TabIndex = 4;
     this.chkPBAutoHide.Text     = "Auto Hide";
     this.chkPBAutoHide.UseVisualStyleBackColor = true;
     //
     // rbPBBottom
     //
     this.rbPBBottom.AutoSize = true;
     this.rbPBBottom.Location = new System.Drawing.Point(301, 19);
     this.rbPBBottom.Name     = "rbPBBottom";
     this.rbPBBottom.Size     = new System.Drawing.Size(58, 17);
     this.rbPBBottom.TabIndex = 3;
     this.rbPBBottom.TabStop  = true;
     this.rbPBBottom.Text     = "Bottom";
     this.rbPBBottom.UseVisualStyleBackColor = true;
     //
     // rbPBTop
     //
     this.rbPBTop.AutoSize = true;
     this.rbPBTop.Location = new System.Drawing.Point(205, 19);
     this.rbPBTop.Name     = "rbPBTop";
     this.rbPBTop.Size     = new System.Drawing.Size(44, 17);
     this.rbPBTop.TabIndex = 2;
     this.rbPBTop.TabStop  = true;
     this.rbPBTop.Text     = "Top";
     this.rbPBTop.UseVisualStyleBackColor = true;
     //
     // rbPBLeft
     //
     this.rbPBLeft.AutoSize = true;
     this.rbPBLeft.Location = new System.Drawing.Point(109, 19);
     this.rbPBLeft.Name     = "rbPBLeft";
     this.rbPBLeft.Size     = new System.Drawing.Size(43, 17);
     this.rbPBLeft.TabIndex = 1;
     this.rbPBLeft.TabStop  = true;
     this.rbPBLeft.Text     = "Left";
     this.rbPBLeft.UseVisualStyleBackColor = true;
     //
     // rbPBRight
     //
     this.rbPBRight.AutoSize = true;
     this.rbPBRight.Location = new System.Drawing.Point(13, 19);
     this.rbPBRight.Name     = "rbPBRight";
     this.rbPBRight.Size     = new System.Drawing.Size(50, 17);
     this.rbPBRight.TabIndex = 0;
     this.rbPBRight.TabStop  = true;
     this.rbPBRight.Text     = "Right";
     this.rbPBRight.UseVisualStyleBackColor = true;
     //
     // cbTabInterface
     //
     this.cbTabInterface.AutoSize = true;
     this.cbTabInterface.Location = new System.Drawing.Point(14, 132);
     this.cbTabInterface.Name     = "cbTabInterface";
     this.cbTabInterface.Size     = new System.Drawing.Size(133, 17);
     this.cbTabInterface.TabIndex = 7;
     this.cbTabInterface.Text     = "Show tabbed interface";
     this.cbTabInterface.UseVisualStyleBackColor = true;
     this.cbTabInterface.CheckedChanged         += new System.EventHandler(this.cbTabInterface_CheckedChanged);
     //
     // cbOutline
     //
     this.cbOutline.AutoSize = true;
     this.cbOutline.Location = new System.Drawing.Point(14, 109);
     this.cbOutline.Name     = "cbOutline";
     this.cbOutline.Size     = new System.Drawing.Size(172, 17);
     this.cbOutline.TabIndex = 6;
     this.cbOutline.Text     = "Outline report items in Designer";
     this.cbOutline.UseVisualStyleBackColor = true;
     //
     // cbEditLines
     //
     this.cbEditLines.AutoSize = true;
     this.cbEditLines.Location = new System.Drawing.Point(14, 86);
     this.cbEditLines.Name     = "cbEditLines";
     this.cbEditLines.Size     = new System.Drawing.Size(175, 17);
     this.cbEditLines.TabIndex = 5;
     this.cbEditLines.Text     = "Show line numbers in RDL Text";
     this.cbEditLines.UseVisualStyleBackColor = true;
     //
     // tbHelpUrl
     //
     this.tbHelpUrl.Location = new System.Drawing.Point(27, 60);
     this.tbHelpUrl.Name     = "tbHelpUrl";
     this.tbHelpUrl.Size     = new System.Drawing.Size(404, 20);
     this.tbHelpUrl.TabIndex = 4;
     this.tbHelpUrl.Text     = "tbHelpUrl";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(11, 40);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(404, 23);
     this.label3.TabIndex = 3;
     this.label3.Text     = "Help System URL  (Empty string means use default help url.)";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(100, 15);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(174, 23);
     this.label2.TabIndex = 2;
     this.label2.Text     = "items in most recently used lists.";
     //
     // tbRecentFilesMax
     //
     this.tbRecentFilesMax.Location = new System.Drawing.Point(58, 11);
     this.tbRecentFilesMax.Name     = "tbRecentFilesMax";
     this.tbRecentFilesMax.Size     = new System.Drawing.Size(31, 20);
     this.tbRecentFilesMax.TabIndex = 1;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(11, 13);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(45, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Display";
     //
     // tpToolbar
     //
     this.tpToolbar.Controls.Add(this.bRemove);
     this.tpToolbar.Controls.Add(this.bReset);
     this.tpToolbar.Controls.Add(this.bDown);
     this.tpToolbar.Controls.Add(this.bUp);
     this.tpToolbar.Controls.Add(this.bCopyItem);
     this.tpToolbar.Controls.Add(this.label5);
     this.tpToolbar.Controls.Add(this.label4);
     this.tpToolbar.Controls.Add(this.lbToolbar);
     this.tpToolbar.Controls.Add(this.lbOperation);
     this.tpToolbar.Location = new System.Drawing.Point(4, 22);
     this.tpToolbar.Name     = "tpToolbar";
     this.tpToolbar.Size     = new System.Drawing.Size(458, 243);
     this.tpToolbar.TabIndex = 1;
     this.tpToolbar.Tag      = "toolbar";
     this.tpToolbar.Text     = "Toolbar";
     //
     // bRemove
     //
     this.bRemove.Location = new System.Drawing.Point(179, 74);
     this.bRemove.Name     = "bRemove";
     this.bRemove.Size     = new System.Drawing.Size(23, 23);
     this.bRemove.TabIndex = 2;
     this.bRemove.Text     = "<";
     this.bRemove.Click   += new System.EventHandler(this.bRemove_Click);
     //
     // bReset
     //
     this.bReset.Location = new System.Drawing.Point(374, 104);
     this.bReset.Name     = "bReset";
     this.bReset.Size     = new System.Drawing.Size(53, 23);
     this.bReset.TabIndex = 6;
     this.bReset.Text     = "Reset";
     this.bReset.Click   += new System.EventHandler(this.bReset_Click);
     //
     // bDown
     //
     this.bDown.Location = new System.Drawing.Point(374, 65);
     this.bDown.Name     = "bDown";
     this.bDown.Size     = new System.Drawing.Size(53, 23);
     this.bDown.TabIndex = 5;
     this.bDown.Text     = "Down";
     this.bDown.Click   += new System.EventHandler(this.bDown_Click);
     //
     // bUp
     //
     this.bUp.Location = new System.Drawing.Point(374, 35);
     this.bUp.Name     = "bUp";
     this.bUp.Size     = new System.Drawing.Size(53, 23);
     this.bUp.TabIndex = 4;
     this.bUp.Text     = "Up";
     this.bUp.Click   += new System.EventHandler(this.bUp_Click);
     //
     // bCopyItem
     //
     this.bCopyItem.Location = new System.Drawing.Point(179, 40);
     this.bCopyItem.Name     = "bCopyItem";
     this.bCopyItem.Size     = new System.Drawing.Size(23, 23);
     this.bCopyItem.TabIndex = 1;
     this.bCopyItem.Text     = ">";
     this.bCopyItem.Click   += new System.EventHandler(this.bCopyItem_Click);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(213, 8);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 23);
     this.label5.TabIndex = 8;
     this.label5.Text     = "Toolbar Layout";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(15, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(112, 23);
     this.label4.TabIndex = 7;
     this.label4.Text     = "ToolBar Operations";
     //
     // lbToolbar
     //
     this.lbToolbar.Location = new System.Drawing.Point(213, 33);
     this.lbToolbar.Name     = "lbToolbar";
     this.lbToolbar.Size     = new System.Drawing.Size(152, 199);
     this.lbToolbar.TabIndex = 3;
     //
     // lbOperation
     //
     this.lbOperation.Location = new System.Drawing.Point(14, 33);
     this.lbOperation.Name     = "lbOperation";
     this.lbOperation.Size     = new System.Drawing.Size(152, 199);
     this.lbOperation.TabIndex = 0;
     //
     // tpDesktop
     //
     this.tpDesktop.Controls.Add(this.bBrowse);
     this.tpDesktop.Controls.Add(this.tbDirectory);
     this.tpDesktop.Controls.Add(this.label9);
     this.tpDesktop.Controls.Add(this.label8);
     this.tpDesktop.Controls.Add(this.label7);
     this.tpDesktop.Controls.Add(this.ckLocal);
     this.tpDesktop.Controls.Add(this.tbPort);
     this.tpDesktop.Controls.Add(this.label6);
     this.tpDesktop.Location = new System.Drawing.Point(4, 22);
     this.tpDesktop.Name     = "tpDesktop";
     this.tpDesktop.Size     = new System.Drawing.Size(458, 243);
     this.tpDesktop.TabIndex = 2;
     this.tpDesktop.Tag      = "desktop";
     this.tpDesktop.Text     = "Desktop Server";
     //
     // bBrowse
     //
     this.bBrowse.Location = new System.Drawing.Point(411, 102);
     this.bBrowse.Name     = "bBrowse";
     this.bBrowse.Size     = new System.Drawing.Size(26, 19);
     this.bBrowse.TabIndex = 2;
     this.bBrowse.Text     = "...";
     this.bBrowse.Click   += new System.EventHandler(this.bBrowse_Click);
     //
     // tbDirectory
     //
     this.tbDirectory.Location     = new System.Drawing.Point(68, 100);
     this.tbDirectory.Name         = "tbDirectory";
     this.tbDirectory.Size         = new System.Drawing.Size(334, 20);
     this.tbDirectory.TabIndex     = 1;
     this.tbDirectory.Text         = "textBox1";
     this.tbDirectory.TextChanged += new System.EventHandler(this.Desktop_Changed);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(13, 101);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(56, 23);
     this.label9.TabIndex = 5;
     this.label9.Text     = "Directory:";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(33, 156);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(414, 26);
     this.label8.TabIndex = 4;
     this.label8.Text     = "Important: Desktop server is not intended to be used as a production web server. " +
                            " Use an ASP enabled server for anything other than local desktop use.";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(10, 6);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(435, 57);
     this.label7.TabIndex = 3;
     this.label7.Text     = resources.GetString("label7.Text");
     //
     // ckLocal
     //
     this.ckLocal.Location        = new System.Drawing.Point(15, 131);
     this.ckLocal.Name            = "ckLocal";
     this.ckLocal.Size            = new System.Drawing.Size(190, 24);
     this.ckLocal.TabIndex        = 3;
     this.ckLocal.Text            = "Restrict access to local machine";
     this.ckLocal.CheckedChanged += new System.EventHandler(this.Desktop_Changed);
     //
     // tbPort
     //
     this.tbPort.Location     = new System.Drawing.Point(44, 66);
     this.tbPort.Name         = "tbPort";
     this.tbPort.Size         = new System.Drawing.Size(50, 20);
     this.tbPort.TabIndex     = 0;
     this.tbPort.TextChanged += new System.EventHandler(this.Desktop_Changed);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 68);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(33, 23);
     this.label6.TabIndex = 0;
     this.label6.Text     = "Port";
     //
     // bApply
     //
     this.bApply.Location = new System.Drawing.Point(386, 275);
     this.bApply.Name     = "bApply";
     this.bApply.Size     = new System.Drawing.Size(75, 23);
     this.bApply.TabIndex = 3;
     this.bApply.Text     = "Apply";
     this.bApply.Click   += new System.EventHandler(this.bApply_Click);
     //
     // DialogToolOptions
     //
     this.AcceptButton      = this.bOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.bCancel;
     this.ClientSize        = new System.Drawing.Size(466, 304);
     this.Controls.Add(this.bApply);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.bOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "DialogToolOptions";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Options";
     this.tabControl1.ResumeLayout(false);
     this.tpGeneral.ResumeLayout(false);
     this.tpGeneral.PerformLayout();
     this.gbPropLoc.ResumeLayout(false);
     this.gbPropLoc.PerformLayout();
     this.tpToolbar.ResumeLayout(false);
     this.tpDesktop.ResumeLayout(false);
     this.tpDesktop.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <sUMM2ary>
 ///
 /// </sUMM2ary>
 private void InitializeComponent()
 {
     this.tabControl       = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.Support          = new System.Windows.Forms.GroupBox();
     this.linkLabel3       = new System.Windows.Forms.LinkLabel();
     this.linkLabel2       = new System.Windows.Forms.LinkLabel();
     this.label2           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.VIENNAAddIn      = new System.Windows.Forms.GroupBox();
     this.UMM2TextBox      = new System.Windows.Forms.TextBox();
     this.UMM2VersionLabel = new System.Windows.Forms.Label();
     this.versionLabel     = new System.Windows.Forms.Label();
     this.versionTextBox   = new System.Windows.Forms.TextBox();
     this.copyrightLabel   = new System.Windows.Forms.Label();
     this.copyrightTextBox = new System.Windows.Forms.TextBox();
     this.buttonClose      = new System.Windows.Forms.Button();
     this.tabControl.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.Support.SuspendLayout();
     this.VIENNAAddIn.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabPage1);
     this.tabControl.Location      = new System.Drawing.Point(18, 13);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(466, 265);
     this.tabControl.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.Support);
     this.tabPage1.Controls.Add(this.VIENNAAddIn);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(458, 239);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "VIENNAAddIn";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // Support
     //
     this.Support.Controls.Add(this.linkLabel3);
     this.Support.Controls.Add(this.linkLabel2);
     this.Support.Controls.Add(this.label2);
     this.Support.Controls.Add(this.label1);
     this.Support.Location = new System.Drawing.Point(16, 136);
     this.Support.Name     = "Support";
     this.Support.Size     = new System.Drawing.Size(429, 89);
     this.Support.TabIndex = 13;
     this.Support.TabStop  = false;
     this.Support.Text     = "Support";
     //
     // linkLabel3
     //
     this.linkLabel3.AutoSize     = true;
     this.linkLabel3.Location     = new System.Drawing.Point(112, 48);
     this.linkLabel3.Name         = "linkLabel3";
     this.linkLabel3.Size         = new System.Drawing.Size(291, 13);
     this.linkLabel3.TabIndex     = 21;
     this.linkLabel3.TabStop      = true;
     this.linkLabel3.Text         = "https://github.com/GeertBellekens/vienna-add-in-BE/issues";
     this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize     = true;
     this.linkLabel2.Location     = new System.Drawing.Point(112, 24);
     this.linkLabel2.Name         = "linkLabel2";
     this.linkLabel2.Size         = new System.Drawing.Size(115, 13);
     this.linkLabel2.TabIndex     = 20;
     this.linkLabel2.TabStop      = true;
     this.linkLabel2.Text         = "https://bellekens.com/";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 24);
     this.label2.TabIndex = 16;
     this.label2.Text     = "Bug-Report";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 24);
     this.label1.TabIndex = 12;
     this.label1.Text     = "Website";
     //
     // VIENNAAddIn
     //
     this.VIENNAAddIn.Controls.Add(this.UMM2TextBox);
     this.VIENNAAddIn.Controls.Add(this.UMM2VersionLabel);
     this.VIENNAAddIn.Controls.Add(this.versionLabel);
     this.VIENNAAddIn.Controls.Add(this.versionTextBox);
     this.VIENNAAddIn.Controls.Add(this.copyrightLabel);
     this.VIENNAAddIn.Controls.Add(this.copyrightTextBox);
     this.VIENNAAddIn.Location = new System.Drawing.Point(16, 8);
     this.VIENNAAddIn.Name     = "VIENNAAddIn";
     this.VIENNAAddIn.Size     = new System.Drawing.Size(429, 110);
     this.VIENNAAddIn.TabIndex = 12;
     this.VIENNAAddIn.TabStop  = false;
     this.VIENNAAddIn.Text     = "VIENNAAddIn";
     //
     // UMM2TextBox
     //
     this.UMM2TextBox.Location = new System.Drawing.Point(112, 48);
     this.UMM2TextBox.Name     = "UMM2TextBox";
     this.UMM2TextBox.ReadOnly = true;
     this.UMM2TextBox.Size     = new System.Drawing.Size(251, 21);
     this.UMM2TextBox.TabIndex = 5;
     //
     // UMM2VersionLabel
     //
     this.UMM2VersionLabel.Location = new System.Drawing.Point(16, 48);
     this.UMM2VersionLabel.Name     = "UMM2VersionLabel";
     this.UMM2VersionLabel.Size     = new System.Drawing.Size(96, 24);
     this.UMM2VersionLabel.TabIndex = 4;
     this.UMM2VersionLabel.Text     = "UMM-Version";
     //
     // versionLabel
     //
     this.versionLabel.Location = new System.Drawing.Point(16, 24);
     this.versionLabel.Name     = "versionLabel";
     this.versionLabel.Size     = new System.Drawing.Size(96, 24);
     this.versionLabel.TabIndex = 0;
     this.versionLabel.Text     = "Version";
     //
     // versionTextBox
     //
     this.versionTextBox.Location = new System.Drawing.Point(112, 24);
     this.versionTextBox.Name     = "versionTextBox";
     this.versionTextBox.ReadOnly = true;
     this.versionTextBox.Size     = new System.Drawing.Size(251, 21);
     this.versionTextBox.TabIndex = 2;
     //
     // copyrightLabel
     //
     this.copyrightLabel.Location = new System.Drawing.Point(16, 72);
     this.copyrightLabel.Name     = "copyrightLabel";
     this.copyrightLabel.Size     = new System.Drawing.Size(96, 32);
     this.copyrightLabel.TabIndex = 1;
     this.copyrightLabel.Text     = "Copyright";
     //
     // copyrightTextBox
     //
     this.copyrightTextBox.Location  = new System.Drawing.Point(112, 72);
     this.copyrightTextBox.Multiline = true;
     this.copyrightTextBox.Name      = "copyrightTextBox";
     this.copyrightTextBox.ReadOnly  = true;
     this.copyrightTextBox.Size      = new System.Drawing.Size(251, 21);
     this.copyrightTextBox.TabIndex  = 3;
     //
     // buttonClose
     //
     this.buttonClose.Location = new System.Drawing.Point(202, 293);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(100, 24);
     this.buttonClose.TabIndex = 1;
     this.buttonClose.Text     = "Close";
     this.buttonClose.Click   += new System.EventHandler(this.buttonClose_Click);
     //
     // AboutWindow
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(506, 324);
     this.Controls.Add(this.buttonClose);
     this.Controls.Add(this.tabControl);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "AboutWindow";
     this.Text = "About...";
     this.tabControl.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.Support.ResumeLayout(false);
     this.Support.PerformLayout();
     this.VIENNAAddIn.ResumeLayout(false);
     this.VIENNAAddIn.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConnectionStringEditorForm));
     this.tc_main              = new System.Windows.Forms.TabControl();
     this.tp_connection        = new System.Windows.Forms.TabPage();
     this.btn_refresh          = new System.Windows.Forms.Button();
     this.tb_server            = new System.Windows.Forms.TextBox();
     this.btn_check_connection = new System.Windows.Forms.Button();
     this.gb_add_parms         = new System.Windows.Forms.GroupBox();
     this.tb_port              = new System.Windows.Forms.TextBox();
     this.lab_port             = new System.Windows.Forms.Label();
     this.tb_timeout           = new System.Windows.Forms.TextBox();
     this.lab_timeout          = new System.Windows.Forms.Label();
     this.cb_select_db         = new System.Windows.Forms.ComboBox();
     this.lab_select_db        = new System.Windows.Forms.Label();
     this.tb_password          = new System.Windows.Forms.TextBox();
     this.lab_password         = new System.Windows.Forms.Label();
     this.tb_username          = new System.Windows.Forms.TextBox();
     this.lab_username         = new System.Windows.Forms.Label();
     this.lab_login            = new System.Windows.Forms.Label();
     this.lab_server           = new System.Windows.Forms.Label();
     this.lab_advise           = new System.Windows.Forms.Label();
     this.btn_ok     = new System.Windows.Forms.Button();
     this.btn_cancel = new System.Windows.Forms.Button();
     this.btn_help   = new System.Windows.Forms.Button();
     this.pgconn     = new Npgsql.NpgsqlConnection();
     this.tc_main.SuspendLayout();
     this.tp_connection.SuspendLayout();
     this.gb_add_parms.SuspendLayout();
     this.SuspendLayout();
     //
     // tc_main
     //
     this.tc_main.Controls.Add(this.tp_connection);
     resources.ApplyResources(this.tc_main, "tc_main");
     this.tc_main.Name          = "tc_main";
     this.tc_main.SelectedIndex = 0;
     //
     // tp_connection
     //
     this.tp_connection.Controls.Add(this.btn_refresh);
     this.tp_connection.Controls.Add(this.tb_server);
     this.tp_connection.Controls.Add(this.btn_check_connection);
     this.tp_connection.Controls.Add(this.gb_add_parms);
     this.tp_connection.Controls.Add(this.cb_select_db);
     this.tp_connection.Controls.Add(this.lab_select_db);
     this.tp_connection.Controls.Add(this.tb_password);
     this.tp_connection.Controls.Add(this.lab_password);
     this.tp_connection.Controls.Add(this.tb_username);
     this.tp_connection.Controls.Add(this.lab_username);
     this.tp_connection.Controls.Add(this.lab_login);
     this.tp_connection.Controls.Add(this.lab_server);
     this.tp_connection.Controls.Add(this.lab_advise);
     resources.ApplyResources(this.tp_connection, "tp_connection");
     this.tp_connection.Name = "tp_connection";
     //
     // btn_refresh
     //
     resources.ApplyResources(this.btn_refresh, "btn_refresh");
     this.btn_refresh.Name   = "btn_refresh";
     this.btn_refresh.Click += new System.EventHandler(this.btn_refresh_Click);
     //
     // tb_server
     //
     resources.ApplyResources(this.tb_server, "tb_server");
     this.tb_server.Name = "tb_server";
     //
     // btn_check_connection
     //
     resources.ApplyResources(this.btn_check_connection, "btn_check_connection");
     this.btn_check_connection.Name   = "btn_check_connection";
     this.btn_check_connection.Click += new System.EventHandler(this.btn_check_connection_Click);
     //
     // gb_add_parms
     //
     this.gb_add_parms.Controls.Add(this.tb_port);
     this.gb_add_parms.Controls.Add(this.lab_port);
     this.gb_add_parms.Controls.Add(this.tb_timeout);
     this.gb_add_parms.Controls.Add(this.lab_timeout);
     resources.ApplyResources(this.gb_add_parms, "gb_add_parms");
     this.gb_add_parms.Name    = "gb_add_parms";
     this.gb_add_parms.TabStop = false;
     //
     // tb_port
     //
     resources.ApplyResources(this.tb_port, "tb_port");
     this.tb_port.Name = "tb_port";
     //
     // lab_port
     //
     resources.ApplyResources(this.lab_port, "lab_port");
     this.lab_port.Name = "lab_port";
     //
     // tb_timeout
     //
     resources.ApplyResources(this.tb_timeout, "tb_timeout");
     this.tb_timeout.Name = "tb_timeout";
     //
     // lab_timeout
     //
     resources.ApplyResources(this.lab_timeout, "lab_timeout");
     this.lab_timeout.Name = "lab_timeout";
     //
     // cb_select_db
     //
     resources.ApplyResources(this.cb_select_db, "cb_select_db");
     this.cb_select_db.Name      = "cb_select_db";
     this.cb_select_db.DropDown += new System.EventHandler(this.cb_select_db_DropDown);
     //
     // lab_select_db
     //
     resources.ApplyResources(this.lab_select_db, "lab_select_db");
     this.lab_select_db.Name = "lab_select_db";
     //
     // tb_password
     //
     resources.ApplyResources(this.tb_password, "tb_password");
     this.tb_password.Name = "tb_password";
     //
     // lab_password
     //
     resources.ApplyResources(this.lab_password, "lab_password");
     this.lab_password.Name = "lab_password";
     //
     // tb_username
     //
     resources.ApplyResources(this.tb_username, "tb_username");
     this.tb_username.Name = "tb_username";
     //
     // lab_username
     //
     resources.ApplyResources(this.lab_username, "lab_username");
     this.lab_username.Name = "lab_username";
     //
     // lab_login
     //
     resources.ApplyResources(this.lab_login, "lab_login");
     this.lab_login.Name = "lab_login";
     //
     // lab_server
     //
     resources.ApplyResources(this.lab_server, "lab_server");
     this.lab_server.Name = "lab_server";
     //
     // lab_advise
     //
     resources.ApplyResources(this.lab_advise, "lab_advise");
     this.lab_advise.Name = "lab_advise";
     //
     // btn_ok
     //
     resources.ApplyResources(this.btn_ok, "btn_ok");
     this.btn_ok.Name   = "btn_ok";
     this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
     //
     // btn_cancel
     //
     this.btn_cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this.btn_cancel, "btn_cancel");
     this.btn_cancel.Name   = "btn_cancel";
     this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
     //
     // btn_help
     //
     resources.ApplyResources(this.btn_help, "btn_help");
     this.btn_help.Name   = "btn_help";
     this.btn_help.Click += new System.EventHandler(this.btn_help_Click);
     //
     // ConnectionStringEditorForm
     //
     this.AcceptButton = this.btn_ok;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.btn_cancel;
     this.Controls.Add(this.btn_help);
     this.Controls.Add(this.btn_cancel);
     this.Controls.Add(this.btn_ok);
     this.Controls.Add(this.tc_main);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ConnectionStringEditorForm";
     this.ShowInTaskbar   = false;
     this.tc_main.ResumeLayout(false);
     this.tp_connection.ResumeLayout(false);
     this.tp_connection.PerformLayout();
     this.gb_add_parms.ResumeLayout(false);
     this.gb_add_parms.PerformLayout();
     this.ResumeLayout(false);
 }
Example #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChonchidinh));
     this.tabControl  = new System.Windows.Forms.TabControl();
     this.butOK       = new System.Windows.Forms.Button();
     this.butCancel   = new System.Windows.Forms.Button();
     this.panel1      = new System.Windows.Forms.Panel();
     this.panel2      = new System.Windows.Forms.Panel();
     this.treeView1   = new System.Windows.Forms.TreeView();
     this.dataGrid1   = new System.Windows.Forms.DataGrid();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.splitter1   = new System.Windows.Forms.Splitter();
     this.timkiem     = new System.Windows.Forms.TextBox();
     this.chkcachcu   = new System.Windows.Forms.CheckBox();
     this.chkdong     = new System.Windows.Forms.CheckBox();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl.Location      = new System.Drawing.Point(0, 0);
     this.tabControl.Multiline     = true;
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.ShowToolTips  = true;
     this.tabControl.Size          = new System.Drawing.Size(796, 504);
     this.tabControl.TabIndex      = 0;
     this.tabControl.Visible       = false;
     //
     // butOK
     //
     this.butOK.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butOK.Image      = ((System.Drawing.Image)(resources.GetObject("butOK.Image")));
     this.butOK.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butOK.Location   = new System.Drawing.Point(329, 505);
     this.butOK.Name       = "butOK";
     this.butOK.Size       = new System.Drawing.Size(70, 25);
     this.butOK.TabIndex   = 1;
     this.butOK.Text       = "     Đồng ý";
     this.butOK.Click     += new System.EventHandler(this.butOK_Click);
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Image        = ((System.Drawing.Image)(resources.GetObject("butCancel.Image")));
     this.butCancel.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butCancel.Location     = new System.Drawing.Point(399, 505);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(70, 25);
     this.butCancel.TabIndex     = 2;
     this.butCancel.Text         = "Kết thúc";
     this.butCancel.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tabControl);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(796, 504);
     this.panel1.TabIndex = 3;
     //
     // 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.Controls.Add(this.treeView1);
     this.panel2.Controls.Add(this.dataGrid1);
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Controls.Add(this.splitter1);
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(796, 504);
     this.panel2.TabIndex = 4;
     //
     // treeView1
     //
     this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.treeView1.BackColor        = System.Drawing.Color.White;
     this.treeView1.ItemHeight       = 18;
     this.treeView1.Location         = new System.Drawing.Point(0, 0);
     this.treeView1.Name             = "treeView1";
     this.treeView1.ShowNodeToolTips = true;
     this.treeView1.Size             = new System.Drawing.Size(252, 388);
     this.treeView1.TabIndex         = 14;
     this.treeView1.AfterSelect     += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     this.treeView1.BeforeSelect    += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeView1_BeforeSelect);
     //
     // dataGrid1
     //
     this.dataGrid1.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid1.BackColor           = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.BackgroundColor     = System.Drawing.SystemColors.Control;
     this.dataGrid1.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.dataGrid1.CaptionBackColor    = System.Drawing.SystemColors.Control;
     this.dataGrid1.CaptionFont         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.CaptionForeColor    = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.DataMember          = "";
     this.dataGrid1.FlatMode            = true;
     this.dataGrid1.Font                = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dataGrid1.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.GridLineColor       = System.Drawing.Color.Gainsboro;
     this.dataGrid1.GridLineStyle       = System.Windows.Forms.DataGridLineStyle.None;
     this.dataGrid1.HeaderFont          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dataGrid1.HeaderForeColor     = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.LinkColor           = System.Drawing.Color.Teal;
     this.dataGrid1.Location            = new System.Drawing.Point(3, 373);
     this.dataGrid1.Name                = "dataGrid1";
     this.dataGrid1.ParentRowsBackColor = System.Drawing.Color.Gainsboro;
     this.dataGrid1.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.RowHeaderWidth      = 10;
     this.dataGrid1.SelectionBackColor  = System.Drawing.Color.CadetBlue;
     this.dataGrid1.SelectionForeColor  = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.Size                = new System.Drawing.Size(249, 128);
     this.dataGrid1.TabIndex            = 22;
     //
     // 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.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl1.Location      = new System.Drawing.Point(255, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.ShowToolTips  = true;
     this.tabControl1.Size          = new System.Drawing.Size(538, 504);
     this.tabControl1.TabIndex      = 21;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 504);
     this.splitter1.TabIndex = 17;
     this.splitter1.TabStop  = false;
     //
     // timkiem
     //
     this.timkiem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.timkiem.Location     = new System.Drawing.Point(502, 504);
     this.timkiem.Name         = "timkiem";
     this.timkiem.Size         = new System.Drawing.Size(291, 20);
     this.timkiem.TabIndex     = 22;
     this.timkiem.Text         = "Tìm kiếm";
     this.timkiem.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.timkiem.Visible      = false;
     this.timkiem.Enter       += new System.EventHandler(this.timkiem_Enter);
     this.timkiem.Leave       += new System.EventHandler(this.timkiem_Leave);
     this.timkiem.TextChanged += new System.EventHandler(this.timkiem_TextChanged_1);
     //
     // chkcachcu
     //
     this.chkcachcu.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkcachcu.AutoSize = true;
     this.chkcachcu.Location = new System.Drawing.Point(3, 507);
     this.chkcachcu.Name     = "chkcachcu";
     this.chkcachcu.Size     = new System.Drawing.Size(88, 17);
     this.chkcachcu.TabIndex = 5;
     this.chkcachcu.Text     = "Liệt kê tất cả";
     this.chkcachcu.UseVisualStyleBackColor = true;
     this.chkcachcu.Click += new System.EventHandler(this.chkcachcu_Click);
     //
     // chkdong
     //
     this.chkdong.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkdong.AutoSize = true;
     this.chkdong.Location = new System.Drawing.Point(117, 507);
     this.chkdong.Name     = "chkdong";
     this.chkdong.Size     = new System.Drawing.Size(118, 17);
     this.chkdong.TabIndex = 6;
     this.chkdong.Text     = "Hiện thị nhiều dòng";
     this.chkdong.UseVisualStyleBackColor = true;
     this.chkdong.CheckedChanged         += new System.EventHandler(this.chkdong_CheckedChanged);
     //
     // frmChonchidinh
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(794, 536);
     this.Controls.Add(this.timkiem);
     this.Controls.Add(this.chkdong);
     this.Controls.Add(this.chkcachcu);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "frmChonchidinh";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Chọn dịch vụ";
     this.Load           += new System.EventHandler(this.frmChonchidinh_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #52
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(PagoReferenciado));
     this.btnAceptar = new System.Windows.Forms.Button();
     this.btnBuscar  = new System.Windows.Forms.Button();
     this.vwGrd2     = new CustGrd.vwGrd();
     this.vwGrd3     = new CustGrd.vwGrd();
     this.panel1     = new System.Windows.Forms.Panel();
     this.btnActualizarArchivoOrigen = new System.Windows.Forms.Button();
     this.label3           = new System.Windows.Forms.Label();
     this.cboArchivoOrigen = new System.Windows.Forms.ComboBox();
     this.grpMovimiento    = new System.Windows.Forms.GroupBox();
     this.btnCancelar      = new System.Windows.Forms.Button();
     this.label4           = new System.Windows.Forms.Label();
     this.chkSaldoAFavor   = new System.Windows.Forms.CheckBox();
     this.label2           = new System.Windows.Forms.Label();
     this.dtpFMovimiento   = new System.Windows.Forms.DateTimePicker();
     this.label5           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.tbcOpcion        = new System.Windows.Forms.TabControl();
     this.tbpEdificio      = new System.Windows.Forms.TabPage();
     this.tbpCYC           = new System.Windows.Forms.TabPage();
     this.label6           = new System.Windows.Forms.Label();
     this.grdCyC           = new CustGrd.vwGrd();
     this.label7           = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.grpMovimiento.SuspendLayout();
     this.tbcOpcion.SuspendLayout();
     this.tbpEdificio.SuspendLayout();
     this.tbpCYC.SuspendLayout();
     this.SuspendLayout();
     //
     // btnAceptar
     //
     this.btnAceptar.Anchor     = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.btnAceptar.Enabled    = false;
     this.btnAceptar.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.btnAceptar.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnAceptar.Image      = ((System.Drawing.Bitmap)(resources.GetObject("btnAceptar.Image")));
     this.btnAceptar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAceptar.Location   = new System.Drawing.Point(344, 16);
     this.btnAceptar.Name       = "btnAceptar";
     this.btnAceptar.Size       = new System.Drawing.Size(112, 23);
     this.btnAceptar.TabIndex   = 1;
     this.btnAceptar.Text       = "     Aceptar";
     this.btnAceptar.Click     += new System.EventHandler(this.btnAceptar_Click);
     //
     // btnBuscar
     //
     this.btnBuscar.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.btnBuscar.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnBuscar.Image      = ((System.Drawing.Bitmap)(resources.GetObject("btnBuscar.Image")));
     this.btnBuscar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnBuscar.Location   = new System.Drawing.Point(388, 8);
     this.btnBuscar.Name       = "btnBuscar";
     this.btnBuscar.Size       = new System.Drawing.Size(80, 23);
     this.btnBuscar.TabIndex   = 2;
     this.btnBuscar.Text       = "    Buscar";
     this.btnBuscar.Click     += new System.EventHandler(this.button2_Click);
     //
     // vwGrd2
     //
     this.vwGrd2.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                            | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.vwGrd2.ColumnMargin            = 30;
     this.vwGrd2.FullRowSelect           = true;
     this.vwGrd2.Location                = new System.Drawing.Point(8, 32);
     this.vwGrd2.MultiSelect             = false;
     this.vwGrd2.Name                    = "vwGrd2";
     this.vwGrd2.Size                    = new System.Drawing.Size(864, 184);
     this.vwGrd2.TabIndex                = 8;
     this.vwGrd2.View                    = System.Windows.Forms.View.Details;
     this.vwGrd2.ListViewContentChanged += new CustGrd._listViewContentChanged(this.vwGrd2_ListViewContentChanged);
     //
     // vwGrd3
     //
     this.vwGrd3.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.vwGrd3.ColumnMargin  = 30;
     this.vwGrd3.FullRowSelect = true;
     this.vwGrd3.Location      = new System.Drawing.Point(8, 248);
     this.vwGrd3.MultiSelect   = false;
     this.vwGrd3.Name          = "vwGrd3";
     this.vwGrd3.Size          = new System.Drawing.Size(864, 224);
     this.vwGrd3.TabIndex      = 9;
     this.vwGrd3.View          = System.Windows.Forms.View.Details;
     //
     // panel1
     //
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btnActualizarArchivoOrigen,
         this.label3,
         this.cboArchivoOrigen,
         this.btnBuscar,
         this.grpMovimiento
     });
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(888, 128);
     this.panel1.TabIndex = 10;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // btnActualizarArchivoOrigen
     //
     this.btnActualizarArchivoOrigen.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.btnActualizarArchivoOrigen.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnActualizarArchivoOrigen.Image      = ((System.Drawing.Bitmap)(resources.GetObject("btnActualizarArchivoOrigen.Image")));
     this.btnActualizarArchivoOrigen.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnActualizarArchivoOrigen.Location   = new System.Drawing.Point(356, 8);
     this.btnActualizarArchivoOrigen.Name       = "btnActualizarArchivoOrigen";
     this.btnActualizarArchivoOrigen.Size       = new System.Drawing.Size(26, 23);
     this.btnActualizarArchivoOrigen.TabIndex   = 10;
     this.btnActualizarArchivoOrigen.Text       = "    Buscar";
     this.toolTip1.SetToolTip(this.btnActualizarArchivoOrigen, "Actualizar lista de archivos");
     this.btnActualizarArchivoOrigen.Click += new System.EventHandler(this.btnActualizarArchivoOrigen_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(12, 12);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(91, 14);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Archivo origen:";
     //
     // cboArchivoOrigen
     //
     this.cboArchivoOrigen.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboArchivoOrigen.Location              = new System.Drawing.Point(140, 9);
     this.cboArchivoOrigen.Name                  = "cboArchivoOrigen";
     this.cboArchivoOrigen.Size                  = new System.Drawing.Size(208, 21);
     this.cboArchivoOrigen.TabIndex              = 8;
     this.cboArchivoOrigen.SelectedIndexChanged += new System.EventHandler(this.cboArchivoOrigen_SelectedIndexChanged);
     //
     // grpMovimiento
     //
     this.grpMovimiento.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btnCancelar,
         this.label4,
         this.chkSaldoAFavor,
         this.label2,
         this.dtpFMovimiento,
         this.btnAceptar
     });
     this.grpMovimiento.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.grpMovimiento.Location = new System.Drawing.Point(12, 36);
     this.grpMovimiento.Name     = "grpMovimiento";
     this.grpMovimiento.Size     = new System.Drawing.Size(464, 80);
     this.grpMovimiento.TabIndex = 7;
     this.grpMovimiento.TabStop  = false;
     this.grpMovimiento.Text     = "Movimiento";
     this.grpMovimiento.Enter   += new System.EventHandler(this.grpMovimiento_Enter);
     //
     // btnCancelar
     //
     this.btnCancelar.Anchor     = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.btnCancelar.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.btnCancelar.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancelar.Image      = ((System.Drawing.Bitmap)(resources.GetObject("btnCancelar.Image")));
     this.btnCancelar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancelar.Location   = new System.Drawing.Point(344, 48);
     this.btnCancelar.Name       = "btnCancelar";
     this.btnCancelar.Size       = new System.Drawing.Size(112, 23);
     this.btnCancelar.TabIndex   = 13;
     this.btnCancelar.Text       = "     Cancelar";
     this.btnCancelar.Click     += new System.EventHandler(this.button1_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(12, 51);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(83, 14);
     this.label4.TabIndex = 12;
     this.label4.Text     = "Saldo a favor:";
     //
     // chkSaldoAFavor
     //
     this.chkSaldoAFavor.Enabled  = false;
     this.chkSaldoAFavor.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.chkSaldoAFavor.Location = new System.Drawing.Point(128, 48);
     this.chkSaldoAFavor.Name     = "chkSaldoAFavor";
     this.chkSaldoAFavor.Size     = new System.Drawing.Size(104, 20);
     this.chkSaldoAFavor.TabIndex = 11;
     this.chkSaldoAFavor.Text     = "Saldo a favor";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 19);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(113, 14);
     this.label2.TabIndex = 8;
     this.label2.Text     = "Fecha movimiento:";
     //
     // dtpFMovimiento
     //
     this.dtpFMovimiento.Enabled  = false;
     this.dtpFMovimiento.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.dtpFMovimiento.Location = new System.Drawing.Point(128, 16);
     this.dtpFMovimiento.Name     = "dtpFMovimiento";
     this.dtpFMovimiento.Size     = new System.Drawing.Size(208, 21);
     this.dtpFMovimiento.TabIndex = 8;
     //
     // label5
     //
     this.label5.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label5.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location    = new System.Drawing.Point(8, 224);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(864, 20);
     this.label5.TabIndex    = 11;
     this.label5.Text        = "  Documentos relacionados:";
     this.label5.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label1.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location    = new System.Drawing.Point(8, 8);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(864, 20);
     this.label1.TabIndex    = 12;
     this.label1.Text        = "  Cobros por registrar:";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tbcOpcion
     //
     this.tbcOpcion.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                               | System.Windows.Forms.AnchorStyles.Left)
                              | System.Windows.Forms.AnchorStyles.Right);
     this.tbcOpcion.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tbpEdificio,
         this.tbpCYC
     });
     this.tbcOpcion.Location      = new System.Drawing.Point(0, 136);
     this.tbcOpcion.Name          = "tbcOpcion";
     this.tbcOpcion.SelectedIndex = 0;
     this.tbcOpcion.Size          = new System.Drawing.Size(888, 504);
     this.tbcOpcion.TabIndex      = 11;
     //
     // tbpEdificio
     //
     this.tbpEdificio.BackColor = System.Drawing.Color.Gainsboro;
     this.tbpEdificio.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label1,
         this.vwGrd2,
         this.label5,
         this.vwGrd3
     });
     this.tbpEdificio.Location = new System.Drawing.Point(4, 22);
     this.tbpEdificio.Name     = "tbpEdificio";
     this.tbpEdificio.Size     = new System.Drawing.Size(880, 478);
     this.tbpEdificio.TabIndex = 0;
     this.tbpEdificio.Text     = "Edificios administrados";
     //
     // tbpCYC
     //
     this.tbpCYC.BackColor = System.Drawing.Color.Gainsboro;
     this.tbpCYC.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label6,
         this.grdCyC,
         this.label7
     });
     this.tbpCYC.Location = new System.Drawing.Point(4, 22);
     this.tbpCYC.Name     = "tbpCYC";
     this.tbpCYC.Size     = new System.Drawing.Size(880, 478);
     this.tbpCYC.TabIndex = 1;
     this.tbpCYC.Text     = "CYC";
     //
     // label6
     //
     this.label6.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.label6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label6.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location    = new System.Drawing.Point(8, 7);
     this.label6.Name        = "label6";
     this.label6.Size        = new System.Drawing.Size(1624, 20);
     this.label6.TabIndex    = 16;
     this.label6.Text        = "  Cobros por registrar:";
     this.label6.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // grdCyC
     //
     this.grdCyC.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                            | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.grdCyC.ColumnMargin            = 30;
     this.grdCyC.FullRowSelect           = true;
     this.grdCyC.Location                = new System.Drawing.Point(8, 32);
     this.grdCyC.MultiSelect             = false;
     this.grdCyC.Name                    = "grdCyC";
     this.grdCyC.Size                    = new System.Drawing.Size(864, 440);
     this.grdCyC.TabIndex                = 13;
     this.grdCyC.View                    = System.Windows.Forms.View.Details;
     this.grdCyC.ListViewContentChanged += new CustGrd._listViewContentChanged(this.grdCyC_ListViewContentChanged);
     //
     // label7
     //
     this.label7.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.label7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label7.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location    = new System.Drawing.Point(8, 553);
     this.label7.Name        = "label7";
     this.label7.Size        = new System.Drawing.Size(1624, 20);
     this.label7.TabIndex    = 15;
     this.label7.Text        = "  Documentos relacionados:";
     this.label7.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PagoReferenciado
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.BackColor         = System.Drawing.Color.Gainsboro;
     this.ClientSize        = new System.Drawing.Size(888, 646);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panel1,
         this.tbcOpcion
     });
     this.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "PagoReferenciado";
     this.Text  = "Pago Referenciado";
     this.Load += new System.EventHandler(this.PagoReferenciado_Load);
     this.panel1.ResumeLayout(false);
     this.grpMovimiento.ResumeLayout(false);
     this.tbcOpcion.ResumeLayout(false);
     this.tbpEdificio.ResumeLayout(false);
     this.tbpCYC.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #53
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form2));
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.tabControl1     = new System.Windows.Forms.TabControl();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.checkBox1       = new System.Windows.Forms.CheckBox();
     this.button1         = new System.Windows.Forms.Button();
     this.listBox1        = new System.Windows.Forms.ListBox();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.textBox3        = new System.Windows.Forms.TextBox();
     this.cmbFile         = new System.Windows.Forms.ComboBox();
     this.cmbPump         = new System.Windows.Forms.ComboBox();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.tabPage3        = new System.Windows.Forms.TabPage();
     this.label1          = new System.Windows.Forms.Label();
     this.progressBar1    = new System.Windows.Forms.ProgressBar();
     this.button2         = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // openFileDialog1
     //
     this.openFileDialog1.Filter      = "AutoCAD Drawing(*.dwg)|*.dwg";
     this.openFileDialog1.Multiselect = true;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(16, 24);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(472, 360);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.checkBox1);
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Controls.Add(this.listBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 21);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(464, 335);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "第一步";
     //
     // checkBox1
     //
     this.checkBox1.Checked    = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location   = new System.Drawing.Point(24, 296);
     this.checkBox1.Name       = "checkBox1";
     this.checkBox1.Size       = new System.Drawing.Size(200, 24);
     this.checkBox1.TabIndex   = 2;
     this.checkBox1.Text       = "自动检测并存储类型";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(288, 296);
     this.button1.Name     = "button1";
     this.button1.TabIndex = 1;
     this.button1.Text     = "Open";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // listBox1
     //
     this.listBox1.ItemHeight = 12;
     this.listBox1.Location   = new System.Drawing.Point(24, 16);
     this.listBox1.Name       = "listBox1";
     this.listBox1.Size       = new System.Drawing.Size(344, 268);
     this.listBox1.TabIndex   = 0;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.pictureBox1);
     this.tabPage2.Controls.Add(this.textBox3);
     this.tabPage2.Controls.Add(this.cmbFile);
     this.tabPage2.Controls.Add(this.cmbPump);
     this.tabPage2.Controls.Add(this.textBox2);
     this.tabPage2.Controls.Add(this.textBox1);
     this.tabPage2.Location = new System.Drawing.Point(4, 21);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(464, 335);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "第二步";
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(424, 136);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(24, 24);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop  = false;
     this.pictureBox1.Visible  = false;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(80, 240);
     this.textBox3.Name     = "textBox3";
     this.textBox3.TabIndex = 4;
     this.textBox3.Text     = "";
     //
     // cmbFile
     //
     this.cmbFile.Location         = new System.Drawing.Point(80, 192);
     this.cmbFile.MaxDropDownItems = 19;
     this.cmbFile.Name             = "cmbFile";
     this.cmbFile.Size             = new System.Drawing.Size(328, 20);
     this.cmbFile.TabIndex         = 3;
     this.cmbFile.Text             = "comboBox2";
     //
     // cmbPump
     //
     this.cmbPump.Location         = new System.Drawing.Point(80, 136);
     this.cmbPump.MaxDropDownItems = 20;
     this.cmbPump.Name             = "cmbPump";
     this.cmbPump.Size             = new System.Drawing.Size(328, 20);
     this.cmbPump.TabIndex         = 2;
     this.cmbPump.Text             = "comboBox1";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(80, 72);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(328, 21);
     this.textBox2.TabIndex = 1;
     this.textBox2.Text     = "";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(80, 40);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(328, 21);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text     = "";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.label1);
     this.tabPage3.Controls.Add(this.progressBar1);
     this.tabPage3.Location = new System.Drawing.Point(4, 21);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(464, 335);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "第三步";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(24, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(200, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "进行:";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(24, 80);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(384, 24);
     this.progressBar1.TabIndex = 0;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(232, 400);
     this.button2.Name     = "button2";
     this.button2.TabIndex = 1;
     this.button2.Text     = "Next";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // Form2
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(504, 446);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.tabControl1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "Form2";
     this.Text  = "产品入库";
     this.Load += new System.EventHandler(this.Form2_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dlgOpenFile               = new System.Windows.Forms.OpenFileDialog();
     this.lblInfo                   = new System.Windows.Forms.Label();
     this.tabMain                   = new System.Windows.Forms.TabControl();
     this.tabPage1                  = new System.Windows.Forms.TabPage();
     this.tabPage2                  = new System.Windows.Forms.TabPage();
     this.txtFileData               = new System.Windows.Forms.TextBox();
     this.lstFiles                  = new System.Windows.Forms.TreeView();
     this.tabPage3                  = new System.Windows.Forms.TabPage();
     this.label3                    = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.label1                    = new System.Windows.Forms.Label();
     this.cmdGetGranule             = new System.Windows.Forms.Button();
     this.cmdGetSector              = new System.Windows.Forms.Button();
     this.txtGranule                = new System.Windows.Forms.TextBox();
     this.txtSector                 = new System.Windows.Forms.TextBox();
     this.txtTrack                  = new System.Windows.Forms.TextBox();
     this.txtData                   = new System.Windows.Forms.TextBox();
     this.menuStrip1                = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.openDiskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cmdSend                   = new System.Windows.Forms.Button();
     this.cmdView                   = new System.Windows.Forms.Button();
     this.pbProgress                = new System.Windows.Forms.ProgressBar();
     this.cmdSave                   = new System.Windows.Forms.Button();
     this.dlgSaveFile               = new System.Windows.Forms.SaveFileDialog();
     this.tabMain.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // dlgOpenFile
     //
     this.dlgOpenFile.Filter  = "CoCo Virtual Disk (*.dsk)|*.dsk|All files (*.*)|*.*";
     this.dlgOpenFile.FileOk += new System.ComponentModel.CancelEventHandler(this.dlgOpenFile_FileOk);
     //
     // lblInfo
     //
     this.lblInfo.Font     = new System.Drawing.Font("Courier New", 8F);
     this.lblInfo.Location = new System.Drawing.Point(8, 8);
     this.lblInfo.Name     = "lblInfo";
     this.lblInfo.Size     = new System.Drawing.Size(480, 400);
     this.lblInfo.TabIndex = 4;
     //
     // tabMain
     //
     this.tabMain.Controls.Add(this.tabPage1);
     this.tabMain.Controls.Add(this.tabPage2);
     this.tabMain.Controls.Add(this.tabPage3);
     this.tabMain.Enabled       = false;
     this.tabMain.Location      = new System.Drawing.Point(8, 27);
     this.tabMain.Name          = "tabMain";
     this.tabMain.SelectedIndex = 0;
     this.tabMain.Size          = new System.Drawing.Size(640, 461);
     this.tabMain.TabIndex      = 14;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.lblInfo);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(632, 435);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "General";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.cmdSave);
     this.tabPage2.Controls.Add(this.pbProgress);
     this.tabPage2.Controls.Add(this.cmdView);
     this.tabPage2.Controls.Add(this.cmdSend);
     this.tabPage2.Controls.Add(this.txtFileData);
     this.tabPage2.Controls.Add(this.lstFiles);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(632, 435);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Directory";
     //
     // txtFileData
     //
     this.txtFileData.Font       = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFileData.Location   = new System.Drawing.Point(208, 8);
     this.txtFileData.Multiline  = true;
     this.txtFileData.Name       = "txtFileData";
     this.txtFileData.ReadOnly   = true;
     this.txtFileData.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtFileData.Size       = new System.Drawing.Size(421, 355);
     this.txtFileData.TabIndex   = 3;
     //
     // lstFiles
     //
     this.lstFiles.Location     = new System.Drawing.Point(8, 8);
     this.lstFiles.Name         = "lstFiles";
     this.lstFiles.Size         = new System.Drawing.Size(192, 413);
     this.lstFiles.TabIndex     = 2;
     this.lstFiles.DoubleClick += new System.EventHandler(this.lstFiles_DoubleClick);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.label3);
     this.tabPage3.Controls.Add(this.label2);
     this.tabPage3.Controls.Add(this.label1);
     this.tabPage3.Controls.Add(this.cmdGetGranule);
     this.tabPage3.Controls.Add(this.cmdGetSector);
     this.tabPage3.Controls.Add(this.txtGranule);
     this.tabPage3.Controls.Add(this.txtSector);
     this.tabPage3.Controls.Add(this.txtTrack);
     this.tabPage3.Controls.Add(this.txtData);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(632, 435);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Raw View";
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(280, 11);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(48, 23);
     this.label3.TabIndex  = 31;
     this.label3.Text      = "Granule:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(88, 11);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(40, 23);
     this.label2.TabIndex  = 30;
     this.label2.Text      = "Sector:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 11);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(40, 23);
     this.label1.TabIndex  = 29;
     this.label1.Text      = "Track:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cmdGetGranule
     //
     this.cmdGetGranule.Location = new System.Drawing.Point(368, 11);
     this.cmdGetGranule.Name     = "cmdGetGranule";
     this.cmdGetGranule.Size     = new System.Drawing.Size(75, 23);
     this.cmdGetGranule.TabIndex = 28;
     this.cmdGetGranule.Text     = "Get &Granule";
     this.cmdGetGranule.Click   += new System.EventHandler(this.cmdGetGranule_Click);
     //
     // cmdGetSector
     //
     this.cmdGetSector.Location = new System.Drawing.Point(176, 11);
     this.cmdGetSector.Name     = "cmdGetSector";
     this.cmdGetSector.Size     = new System.Drawing.Size(104, 23);
     this.cmdGetSector.TabIndex = 27;
     this.cmdGetSector.Text     = "Get &Track/Sector";
     this.cmdGetSector.Click   += new System.EventHandler(this.cmdGetSector_Click);
     //
     // txtGranule
     //
     this.txtGranule.Location  = new System.Drawing.Point(328, 11);
     this.txtGranule.MaxLength = 3;
     this.txtGranule.Name      = "txtGranule";
     this.txtGranule.Size      = new System.Drawing.Size(32, 20);
     this.txtGranule.TabIndex  = 26;
     //
     // txtSector
     //
     this.txtSector.Location  = new System.Drawing.Point(136, 11);
     this.txtSector.MaxLength = 3;
     this.txtSector.Name      = "txtSector";
     this.txtSector.Size      = new System.Drawing.Size(32, 20);
     this.txtSector.TabIndex  = 25;
     //
     // txtTrack
     //
     this.txtTrack.Location  = new System.Drawing.Point(56, 11);
     this.txtTrack.MaxLength = 3;
     this.txtTrack.Name      = "txtTrack";
     this.txtTrack.Size      = new System.Drawing.Size(32, 20);
     this.txtTrack.TabIndex  = 24;
     //
     // txtData
     //
     this.txtData.BackColor  = System.Drawing.Color.White;
     this.txtData.Font       = new System.Drawing.Font("Courier New", 8F);
     this.txtData.Location   = new System.Drawing.Point(8, 40);
     this.txtData.Multiline  = true;
     this.txtData.Name       = "txtData";
     this.txtData.ReadOnly   = true;
     this.txtData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtData.Size       = new System.Drawing.Size(480, 376);
     this.txtData.TabIndex   = 23;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem [] {
         this.fileToolStripMenuItem,
         this.optionsToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(654, 24);
     this.menuStrip1.TabIndex = 15;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem [] {
         this.openDiskToolStripMenuItem,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // openDiskToolStripMenuItem
     //
     this.openDiskToolStripMenuItem.Name   = "openDiskToolStripMenuItem";
     this.openDiskToolStripMenuItem.Size   = new System.Drawing.Size(122, 22);
     this.openDiskToolStripMenuItem.Text   = "&Open Disk";
     this.openDiskToolStripMenuItem.Click += new System.EventHandler(this.openDiskToolStripMenuItem_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size   = new System.Drawing.Size(122, 22);
     this.exitToolStripMenuItem.Text   = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem [] {
         this.settingsToolStripMenuItem
     });
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
     this.optionsToolStripMenuItem.Text = "O&ptions";
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.Name   = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size   = new System.Drawing.Size(113, 22);
     this.settingsToolStripMenuItem.Text   = "&Settings";
     this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
     //
     // cmdSend
     //
     this.cmdSend.Location = new System.Drawing.Point(554, 369);
     this.cmdSend.Name     = "cmdSend";
     this.cmdSend.Size     = new System.Drawing.Size(75, 23);
     this.cmdSend.TabIndex = 4;
     this.cmdSend.Text     = "Sen&d";
     this.cmdSend.UseVisualStyleBackColor = true;
     this.cmdSend.Click += new System.EventHandler(this.cmdSend_Click);
     //
     // cmdView
     //
     this.cmdView.Location = new System.Drawing.Point(473, 369);
     this.cmdView.Name     = "cmdView";
     this.cmdView.Size     = new System.Drawing.Size(75, 23);
     this.cmdView.TabIndex = 5;
     this.cmdView.Text     = "&View";
     this.cmdView.UseVisualStyleBackColor = true;
     this.cmdView.Click += new System.EventHandler(this.cmdView_Click);
     //
     // pbProgress
     //
     this.pbProgress.Location = new System.Drawing.Point(208, 398);
     this.pbProgress.Name     = "pbProgress";
     this.pbProgress.Size     = new System.Drawing.Size(422, 23);
     this.pbProgress.Step     = 100;
     this.pbProgress.TabIndex = 6;
     //
     // cmdSave
     //
     this.cmdSave.Location = new System.Drawing.Point(392, 369);
     this.cmdSave.Name     = "cmdSave";
     this.cmdSave.Size     = new System.Drawing.Size(75, 23);
     this.cmdSave.TabIndex = 7;
     this.cmdSave.Text     = "&Save";
     this.cmdSave.UseVisualStyleBackColor = true;
     this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
     //
     // dlgSaveFile
     //
     this.dlgSaveFile.Filter  = "Basic (*.bas)|*.bas|Assembly (*.bin)|*.bin|All files (*.*)|*.*";
     this.dlgSaveFile.FileOk += new System.ComponentModel.CancelEventHandler(this.dlgSaveFile_FileOk);
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(654, 517);
     this.Controls.Add(this.tabMain);
     this.Controls.Add(this.menuStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MainMenuStrip   = this.menuStrip1;
     this.MaximizeBox     = false;
     this.Name            = "frmMain";
     this.Text            = "CoCo3 Virtual Disk Viewer";
     this.tabMain.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #55
0
        public DialogEdit(Control Parent, Molecule Mol, List <int> SelIdx)
        {
            // super(Parent, "Edit Molecule", true)

            mol     = Mol.Clone();
            aselidx = SelIdx;
            //UPGRADE_ISSUE: The following fragment of code could not be parsed and was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1156'"
            bselidx = new List <int>();
            for (int n = 1; n <= mol.NumBonds(); n++)
            {
                if (aselidx.IndexOf(mol.BondFrom(n)) >= 0 && aselidx.IndexOf(mol.BondTo(n)) >= 0)
                {
                    bselidx.Add(n);
                }
            }

            //UPGRADE_ISSUE: Method 'javax.swing.JDialog.setLayout' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaxswingJDialogsetLayout_javaawtLayoutManager'"
            //UPGRADE_ISSUE: Constructor 'java.awt.BorderLayout.BorderLayout' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaawtBorderLayout'"

            /*
             * setLayout(new BorderLayout());*/

            atoms = new AnonymousClassJTable(this, CompileAtomData(), new System.String[] { "#", "El", "X", "Y", "Charge", "Unpaired", "HExplicit" });
            bonds = new AnonymousClassJTable1(this, CompileBondData(), new System.String[] { "#", "From", "To", "Order", "Type" });

            //UPGRADE_TODO: Method 'javax.swing.table.TableColumn.setCellEditor' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1095'"
            //UPGRADE_TODO: The equivalent in .NET for method 'javax.swing.table.TableColumnModel.getColumn' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
            // ((System.Data.DataTable)atoms.DataSource).Columns[0].setCellEditor(null);
            System.Windows.Forms.ComboBox bondTypes = new System.Windows.Forms.ComboBox();
            for (int n = 0; n < BOND_TYPES.Length; n++)
            {
                bondTypes.Items.Add(BOND_TYPES[n]);
            }
            //UPGRADE_TODO: Method 'javax.swing.table.TableColumn.setCellEditor' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1095'"
            //UPGRADE_TODO: The equivalent in .NET for method 'javax.swing.table.TableColumnModel.getColumn' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
            //UPGRADE_ISSUE: Constructor 'javax.swing.DefaultCellEditor.DefaultCellEditor' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaxswingDefaultCellEditor'"
            // TODO: Have to see this in action before I can tel what they need to do.
            // ((System.Data.DataTable)bonds.DataSource).Columns[4].setCellEditor(new DefaultCellEditor(bondTypes));

            System.Windows.Forms.Panel tabAtoms = new System.Windows.Forms.Panel(), tabBonds = new System.Windows.Forms.Panel();
            //UPGRADE_ISSUE: Method 'java.awt.Container.setLayout' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaawtContainersetLayout_javaawtLayoutManager'"
            //UPGRADE_ISSUE: Constructor 'java.awt.BorderLayout.BorderLayout' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaawtBorderLayout'"

            /*
             * tabAtoms.setLayout(new BorderLayout());*/
            //UPGRADE_ISSUE: Method 'java.awt.Container.setLayout' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaawtContainersetLayout_javaawtLayoutManager'"
            //UPGRADE_ISSUE: Constructor 'java.awt.BorderLayout.BorderLayout' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaawtBorderLayout'"

            /*
             * tabBonds.setLayout(new BorderLayout());*/

            //UPGRADE_ISSUE: Method 'javax.swing.JTable.setPreferredScrollableViewportSize' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaxswingJTablesetPreferredScrollableViewportSize_javaawtDimension'"

            // TODO: atoms.setPreferredScrollableViewportSize(new System.Drawing.Size(350, 200));
            //UPGRADE_ISSUE: Method 'javax.swing.JTable.setPreferredScrollableViewportSize' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javaxswingJTablesetPreferredScrollableViewportSize_javaawtDimension'"
            // TODO: bonds.setPreferredScrollableViewportSize(new System.Drawing.Size(350, 200));

            //UPGRADE_TODO: Constructor 'javax.swing.JScrollPane.JScrollPane' was converted to 'System.Windows.Forms.ScrollableControl.ScrollableControl' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaxswingJScrollPaneJScrollPane_javaawtComponent'"
            System.Windows.Forms.ScrollableControl temp_scrollablecontrol2;
            temp_scrollablecontrol2            = new System.Windows.Forms.ScrollableControl();
            temp_scrollablecontrol2.AutoScroll = true;
            temp_scrollablecontrol2.Controls.Add(atoms);
            //UPGRADE_TODO: Method 'java.awt.Container.add' was converted to 'System.Windows.Forms.ContainerControl.Controls.Add' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtContaineradd_javaawtComponent'"
            System.Windows.Forms.Control temp_Control;
            temp_Control = temp_scrollablecontrol2;
            tabAtoms.Controls.Add(temp_Control);
            //UPGRADE_TODO: Constructor 'javax.swing.JScrollPane.JScrollPane' was converted to 'System.Windows.Forms.ScrollableControl.ScrollableControl' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaxswingJScrollPaneJScrollPane_javaawtComponent'"
            System.Windows.Forms.ScrollableControl temp_scrollablecontrol4;
            temp_scrollablecontrol4            = new System.Windows.Forms.ScrollableControl();
            temp_scrollablecontrol4.AutoScroll = true;
            temp_scrollablecontrol4.Controls.Add(bonds);
            //UPGRADE_TODO: Method 'java.awt.Container.add' was converted to 'System.Windows.Forms.ContainerControl.Controls.Add' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtContaineradd_javaawtComponent'"
            System.Windows.Forms.Control temp_Control2;
            temp_Control2 = temp_scrollablecontrol4;
            tabBonds.Controls.Add(temp_Control2);

            tabs = new System.Windows.Forms.TabControl();
            //UPGRADE_TODO: Method 'javax.swing.JTabbedPane.addTab' was converted to 'SupportClass.TabControlSupport.AddTab' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaxswingJTabbedPaneaddTab_javalangString_javaawtComponent'"
            SupportClass.TabControlSupport.AddTab(tabs, "Atoms", tabAtoms);
            //UPGRADE_TODO: Method 'javax.swing.JTabbedPane.addTab' was converted to 'SupportClass.TabControlSupport.AddTab' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaxswingJTabbedPaneaddTab_javalangString_javaawtComponent'"
            SupportClass.TabControlSupport.AddTab(tabs, "Bonds", tabBonds);
            //UPGRADE_TODO: Method 'java.awt.Container.add' was converted to 'System.Windows.Forms.ContainerControl.Controls.Add' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtContaineradd_javaawtComponent_javalangObject'"
            Controls.Add(tabs);
            tabs.Dock = System.Windows.Forms.DockStyle.Fill;
            tabs.BringToFront();

            System.Windows.Forms.Panel buttons = new System.Windows.Forms.Panel();
            //UPGRADE_TODO: Constructor 'java.awt.FlowLayout.FlowLayout' was converted to 'System.Object[]' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtFlowLayoutFlowLayout_int'"
            buttons.Tag     = new System.Object[] { (int)System.Drawing.ContentAlignment.TopRight, 5, 5 };
            buttons.Layout += new System.Windows.Forms.LayoutEventHandler(SupportClass.FlowLayoutResize);
            accept          = SupportClass.ButtonSupport.CreateStandardButton("Accept");
            accept.Click   += new System.EventHandler(this.actionPerformed);
            SupportClass.CommandManager.CheckCommand(accept);
            reject        = SupportClass.ButtonSupport.CreateStandardButton("Reject");
            reject.Click += new System.EventHandler(this.actionPerformed);
            SupportClass.CommandManager.CheckCommand(reject);
            //UPGRADE_TODO: Method 'java.awt.Container.add' was converted to 'System.Windows.Forms.ContainerControl.Controls.Add' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtContaineradd_javaawtComponent'"
            buttons.Controls.Add(accept);
            //UPGRADE_TODO: Method 'java.awt.Container.add' was converted to 'System.Windows.Forms.ContainerControl.Controls.Add' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtContaineradd_javaawtComponent'"
            buttons.Controls.Add(reject);
            //UPGRADE_TODO: Method 'java.awt.Container.add' was converted to 'System.Windows.Forms.ContainerControl.Controls.Add' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaawtContaineradd_javaawtComponent_javalangObject'"
            Controls.Add(buttons);
            buttons.Dock = System.Windows.Forms.DockStyle.Bottom;
            buttons.SendToBack();

            // TODO: What does pack do?
            // pack();
        }
Example #56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.title              = new System.Windows.Forms.Label();
     this.tabControl1        = new System.Windows.Forms.TabControl();
     this.tabPage3           = new System.Windows.Forms.TabPage();
     this.parentClass        = new System.Windows.Forms.ComboBox();
     this.label3             = new System.Windows.Forms.Label();
     this.groupBox2          = new System.Windows.Forms.GroupBox();
     this.joinedSubKeyColumn = new System.Windows.Forms.ComboBox();
     this.label5             = new System.Windows.Forms.Label();
     this.isJoinedSubClass   = new System.Windows.Forms.CheckBox();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.discValue          = new System.Windows.Forms.TextBox();
     this.label4             = new System.Windows.Forms.Label();
     this.discColumn         = new System.Windows.Forms.ComboBox();
     this.label2             = new System.Windows.Forms.Label();
     this.useDiscriminator   = new System.Windows.Forms.CheckBox();
     this.className          = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.tabPage1           = new System.Windows.Forms.TabPage();
     this.listView1          = new System.Windows.Forms.ListView();
     this.columnHeader1      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13     = new System.Windows.Forms.ColumnHeader();
     this.tabPage2           = new System.Windows.Forms.TabPage();
     this.EditRelation       = new System.Windows.Forms.Button();
     this.AddRelation        = new System.Windows.Forms.Button();
     this.listView2          = new System.Windows.Forms.ListView();
     this.columnHeader9      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12     = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8      = new System.Windows.Forms.ColumnHeader();
     this.okButton           = new System.Windows.Forms.Button();
     this.cancelButton       = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // title
     //
     this.title.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.title.Location = new System.Drawing.Point(16, 12);
     this.title.Name     = "title";
     this.title.Size     = new System.Drawing.Size(648, 23);
     this.title.TabIndex = 1;
     this.title.Text     = "Class properties";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location      = new System.Drawing.Point(16, 40);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(656, 320);
     this.tabControl1.TabIndex      = 2;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.parentClass);
     this.tabPage3.Controls.Add(this.label3);
     this.tabPage3.Controls.Add(this.groupBox2);
     this.tabPage3.Controls.Add(this.groupBox1);
     this.tabPage3.Controls.Add(this.className);
     this.tabPage3.Controls.Add(this.label1);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(648, 294);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Class";
     //
     // parentClass
     //
     this.parentClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.parentClass.Location      = new System.Drawing.Point(272, 48);
     this.parentClass.Name          = "parentClass";
     this.parentClass.Size          = new System.Drawing.Size(192, 21);
     this.parentClass.TabIndex      = 9;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(176, 48);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(100, 24);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Parent:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.joinedSubKeyColumn);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.isJoinedSubClass);
     this.groupBox2.Location = new System.Drawing.Point(336, 104);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(288, 168);
     this.groupBox2.TabIndex = 4;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Joined-subclass";
     //
     // joinedSubKeyColumn
     //
     this.joinedSubKeyColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.joinedSubKeyColumn.Enabled       = false;
     this.joinedSubKeyColumn.Location      = new System.Drawing.Point(128, 64);
     this.joinedSubKeyColumn.Name          = "joinedSubKeyColumn";
     this.joinedSubKeyColumn.Size          = new System.Drawing.Size(136, 21);
     this.joinedSubKeyColumn.TabIndex      = 7;
     //
     // label5
     //
     this.label5.Enabled   = false;
     this.label5.Location  = new System.Drawing.Point(32, 64);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(100, 24);
     this.label5.TabIndex  = 6;
     this.label5.Text      = "Key column:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // isJoinedSubClass
     //
     this.isJoinedSubClass.Location = new System.Drawing.Point(72, 24);
     this.isJoinedSubClass.Name     = "isJoinedSubClass";
     this.isJoinedSubClass.Size     = new System.Drawing.Size(152, 24);
     this.isJoinedSubClass.TabIndex = 4;
     this.isJoinedSubClass.Text     = "Is Joined subclass";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.discValue);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.discColumn);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.useDiscriminator);
     this.groupBox1.Location = new System.Drawing.Point(24, 104);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(288, 168);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Table hierarchy";
     //
     // discValue
     //
     this.discValue.Location = new System.Drawing.Point(120, 96);
     this.discValue.Name     = "discValue";
     this.discValue.Size     = new System.Drawing.Size(136, 21);
     this.discValue.TabIndex = 9;
     this.discValue.Text     = "";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(24, 96);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(100, 24);
     this.label4.TabIndex  = 8;
     this.label4.Text      = "Disc. Value:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // discColumn
     //
     this.discColumn.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.discColumn.Enabled       = false;
     this.discColumn.Location      = new System.Drawing.Point(120, 64);
     this.discColumn.Name          = "discColumn";
     this.discColumn.Size          = new System.Drawing.Size(136, 21);
     this.discColumn.TabIndex      = 5;
     //
     // label2
     //
     this.label2.Enabled   = false;
     this.label2.Location  = new System.Drawing.Point(24, 64);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 24);
     this.label2.TabIndex  = 4;
     this.label2.Text      = "Discriminator:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // useDiscriminator
     //
     this.useDiscriminator.Location        = new System.Drawing.Point(56, 24);
     this.useDiscriminator.Name            = "useDiscriminator";
     this.useDiscriminator.Size            = new System.Drawing.Size(152, 24);
     this.useDiscriminator.TabIndex        = 3;
     this.useDiscriminator.Text            = "Use discriminator column";
     this.useDiscriminator.CheckedChanged += new System.EventHandler(this.useDiscriminator_CheckedChanged);
     //
     // className
     //
     this.className.Location = new System.Drawing.Point(272, 16);
     this.className.Name     = "className";
     this.className.Size     = new System.Drawing.Size(192, 21);
     this.className.TabIndex = 1;
     this.className.Text     = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(176, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 24);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Class name:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.listView1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(648, 294);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Columns";
     //
     // listView1
     //
     this.listView1.CheckBoxes = true;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader13
     });
     this.listView1.FullRowSelect   = true;
     this.listView1.HeaderStyle     = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listView1.LabelEdit       = true;
     this.listView1.Location        = new System.Drawing.Point(36, 27);
     this.listView1.Name            = "listView1";
     this.listView1.Size            = new System.Drawing.Size(576, 213);
     this.listView1.TabIndex        = 2;
     this.listView1.View            = System.Windows.Forms.View.Details;
     this.listView1.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listView1_AfterLabelEdit);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Property";
     this.columnHeader1.Width = 170;
     //
     // columnHeader2
     //
     this.columnHeader2.Text      = "Type";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width     = 90;
     //
     // columnHeader3
     //
     this.columnHeader3.Text      = "Column";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width     = 160;
     //
     // columnHeader4
     //
     this.columnHeader4.Text      = "Type";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width     = 90;
     //
     // columnHeader13
     //
     this.columnHeader13.Text      = "PK";
     this.columnHeader13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.EditRelation);
     this.tabPage2.Controls.Add(this.AddRelation);
     this.tabPage2.Controls.Add(this.listView2);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(648, 294);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Relationships";
     //
     // EditRelation
     //
     this.EditRelation.Enabled  = false;
     this.EditRelation.Location = new System.Drawing.Point(392, 256);
     this.EditRelation.Name     = "EditRelation";
     this.EditRelation.Size     = new System.Drawing.Size(104, 23);
     this.EditRelation.TabIndex = 6;
     this.EditRelation.Text     = "Edit Relation";
     this.EditRelation.Click   += new System.EventHandler(this.EditRelation_Click);
     //
     // AddRelation
     //
     this.AddRelation.Location = new System.Drawing.Point(504, 256);
     this.AddRelation.Name     = "AddRelation";
     this.AddRelation.Size     = new System.Drawing.Size(104, 23);
     this.AddRelation.TabIndex = 5;
     this.AddRelation.Text     = "Add Relation";
     this.AddRelation.Click   += new System.EventHandler(this.AddRelation_Click);
     //
     // listView2
     //
     this.listView2.CheckBoxes = true;
     this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader9,
         this.columnHeader10,
         this.columnHeader11,
         this.columnHeader12
     });
     this.listView2.FullRowSelect   = true;
     this.listView2.HeaderStyle     = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listView2.LabelEdit       = true;
     this.listView2.Location        = new System.Drawing.Point(36, 27);
     this.listView2.Name            = "listView2";
     this.listView2.Size            = new System.Drawing.Size(576, 213);
     this.listView2.TabIndex        = 4;
     this.listView2.View            = System.Windows.Forms.View.Details;
     this.listView2.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listView2_AfterLabelEdit);
     //
     // columnHeader9
     //
     this.columnHeader9.Text  = "Property";
     this.columnHeader9.Width = 190;
     //
     // columnHeader10
     //
     this.columnHeader10.Text      = "Type";
     this.columnHeader10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader10.Width     = 90;
     //
     // columnHeader11
     //
     this.columnHeader11.Text      = "Association";
     this.columnHeader11.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader11.Width     = 120;
     //
     // columnHeader12
     //
     this.columnHeader12.Text      = "Column";
     this.columnHeader12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader12.Width     = 160;
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "Property";
     this.columnHeader5.Width = 190;
     //
     // columnHeader6
     //
     this.columnHeader6.Text      = "Type";
     this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader6.Width     = 90;
     //
     // columnHeader7
     //
     this.columnHeader7.Text      = "Association";
     this.columnHeader7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader7.Width     = 120;
     //
     // columnHeader8
     //
     this.columnHeader8.Text      = "Column";
     this.columnHeader8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader8.Width     = 160;
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(592, 376);
     this.okButton.Name     = "okButton";
     this.okButton.TabIndex = 3;
     this.okButton.Text     = "OK";
     this.okButton.Click   += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location     = new System.Drawing.Point(504, 376);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.TabIndex     = 4;
     this.cancelButton.Text         = "Cancel";
     this.cancelButton.Click       += new System.EventHandler(this.cancelButton_Click);
     //
     // ActiveRecordPropertiesDialog
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(686, 408);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.title);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ActiveRecordPropertiesDialog";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Properties";
     this.tabControl1.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #57
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(SysMonitorView));
     this.tabMenu          = new System.Windows.Forms.ContextMenu();
     this.mnuCloseActive   = new System.Windows.Forms.MenuItem();
     this.menuItem14       = new System.Windows.Forms.MenuItem();
     this.mnuCloseOther    = new System.Windows.Forms.MenuItem();
     this.mnuCloseAll      = new System.Windows.Forms.MenuItem();
     this.menuItem13       = new System.Windows.Forms.MenuItem();
     this.mnuRename        = new System.Windows.Forms.MenuItem();
     this.tabs             = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.axSystemMonitor1 = new AxSystemMonitor.AxSystemMonitor();
     this.imageList1       = new System.Windows.Forms.ImageList(this.components);
     this.tabs.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axSystemMonitor1)).BeginInit();
     this.SuspendLayout();
     //
     // tabMenu
     //
     this.tabMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuCloseActive,
         this.menuItem14,
         this.mnuCloseOther,
         this.mnuCloseAll,
         this.menuItem13,
         this.mnuRename
     });
     //
     // mnuCloseActive
     //
     this.mnuCloseActive.DefaultItem = true;
     this.mnuCloseActive.Index       = 0;
     this.mnuCloseActive.Text        = "&Close Tab";
     this.mnuCloseActive.Click      += new System.EventHandler(this.mnuCloseActiveClick);
     //
     // menuItem14
     //
     this.menuItem14.Index = 1;
     this.menuItem14.Text  = "-";
     //
     // mnuCloseOther
     //
     this.mnuCloseOther.Index  = 2;
     this.mnuCloseOther.Text   = "Close &Other Tabs";
     this.mnuCloseOther.Click += new System.EventHandler(this.mnuCloseOtherClick);
     //
     // mnuCloseAll
     //
     this.mnuCloseAll.Index  = 3;
     this.mnuCloseAll.Text   = "Close &All Tabs";
     this.mnuCloseAll.Click += new System.EventHandler(this.mnuCloseAllClick);
     //
     // menuItem13
     //
     this.menuItem13.Index = 4;
     this.menuItem13.Text  = "-";
     //
     // mnuRename
     //
     this.mnuRename.Index  = 5;
     this.mnuRename.Text   = "&Rename...";
     this.mnuRename.Click += new System.EventHandler(this.mnuRenameClick);
     //
     // tabs
     //
     this.tabs.Controls.Add(this.tabPage1);
     this.tabs.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabs.Location      = new System.Drawing.Point(0, 0);
     this.tabs.Name          = "tabs";
     this.tabs.SelectedIndex = 0;
     this.tabs.Size          = new System.Drawing.Size(432, 384);
     this.tabs.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.axSystemMonitor1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(424, 358);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Sample";
     //
     // axSystemMonitor1
     //
     this.axSystemMonitor1.ContainingControl = this;
     this.axSystemMonitor1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.axSystemMonitor1.Enabled  = true;
     this.axSystemMonitor1.Location = new System.Drawing.Point(0, 0);
     this.axSystemMonitor1.Name     = "axSystemMonitor1";
     this.axSystemMonitor1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axSystemMonitor1.OcxState")));
     this.axSystemMonitor1.Size     = new System.Drawing.Size(424, 358);
     this.axSystemMonitor1.TabIndex = 0;
     //
     // 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;
     //
     // SysMonitorView
     //
     this.Controls.Add(this.tabs);
     this.Name  = "SysMonitorView";
     this.Size  = new System.Drawing.Size(432, 384);
     this.Load += new System.EventHandler(this.SysMonitorView_Load_1);
     this.tabs.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axSystemMonitor1)).EndInit();
     this.ResumeLayout(false);
 }
Example #58
0
 public abstract Rectangle TabControlGetPanelRect(TabControl tab);
Example #59
0
 public abstract Rectangle TabControlGetDisplayRectangle(TabControl tab);
 /// <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 System.Windows.Forms.TabControl();
     this.tabPage1               = new System.Windows.Forms.TabPage();
     this.telefon                = new System.Windows.Forms.Label();
     this.label19                = new System.Windows.Forms.Label();
     this.label20                = new System.Windows.Forms.Label();
     this.ADres                  = new System.Windows.Forms.Label();
     this.label17                = new System.Windows.Forms.Label();
     this.label18                = new System.Windows.Forms.Label();
     this.label9                 = new System.Windows.Forms.Label();
     this.ortalamavade           = new System.Windows.Forms.Label();
     this.borcbakiye             = new System.Windows.Forms.Label();
     this.toplamrisk             = new System.Windows.Forms.Label();
     this.risklimiti             = new System.Windows.Forms.Label();
     this.vergino                = new System.Windows.Forms.Label();
     this.vergidairesi           = new System.Windows.Forms.Label();
     this.cariadi                = new System.Windows.Forms.Label();
     this.carino                 = new System.Windows.Forms.Label();
     this.label15                = new System.Windows.Forms.Label();
     this.label16                = new System.Windows.Forms.Label();
     this.label13                = new System.Windows.Forms.Label();
     this.label14                = new System.Windows.Forms.Label();
     this.label11                = new System.Windows.Forms.Label();
     this.label12                = new System.Windows.Forms.Label();
     this.label10                = new System.Windows.Forms.Label();
     this.label8                 = new System.Windows.Forms.Label();
     this.label7                 = new System.Windows.Forms.Label();
     this.label6                 = new System.Windows.Forms.Label();
     this.label5                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.label4                 = new System.Windows.Forms.Label();
     this.label2                 = new System.Windows.Forms.Label();
     this.label1                 = new System.Windows.Forms.Label();
     this.tabPage2               = new System.Windows.Forms.TabPage();
     this.CariDataGrid           = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.button1                = new System.Windows.Forms.Button();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(240, 272);
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Controls.Add(this.telefon);
     this.tabPage1.Controls.Add(this.label19);
     this.tabPage1.Controls.Add(this.label20);
     this.tabPage1.Controls.Add(this.ADres);
     this.tabPage1.Controls.Add(this.label17);
     this.tabPage1.Controls.Add(this.label18);
     this.tabPage1.Controls.Add(this.label9);
     this.tabPage1.Controls.Add(this.ortalamavade);
     this.tabPage1.Controls.Add(this.borcbakiye);
     this.tabPage1.Controls.Add(this.toplamrisk);
     this.tabPage1.Controls.Add(this.risklimiti);
     this.tabPage1.Controls.Add(this.vergino);
     this.tabPage1.Controls.Add(this.vergidairesi);
     this.tabPage1.Controls.Add(this.cariadi);
     this.tabPage1.Controls.Add(this.carino);
     this.tabPage1.Controls.Add(this.label15);
     this.tabPage1.Controls.Add(this.label16);
     this.tabPage1.Controls.Add(this.label13);
     this.tabPage1.Controls.Add(this.label14);
     this.tabPage1.Controls.Add(this.label11);
     this.tabPage1.Controls.Add(this.label12);
     this.tabPage1.Controls.Add(this.label10);
     this.tabPage1.Controls.Add(this.label8);
     this.tabPage1.Controls.Add(this.label7);
     this.tabPage1.Controls.Add(this.label6);
     this.tabPage1.Controls.Add(this.label5);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Location = new System.Drawing.Point(4, 4);
     this.tabPage1.Size     = new System.Drawing.Size(232, 246);
     this.tabPage1.Text     = "Cari";
     //
     // telefon
     //
     this.telefon.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.telefon.ForeColor = System.Drawing.Color.Blue;
     this.telefon.Location  = new System.Drawing.Point(64, 110);
     this.telefon.Size      = new System.Drawing.Size(150, 20);
     this.telefon.Text      = "bos";
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(52, 110);
     this.label19.Size     = new System.Drawing.Size(8, 20);
     this.label19.Text     = ":";
     //
     // label20
     //
     this.label20.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label20.Location = new System.Drawing.Point(8, 110);
     this.label20.Size     = new System.Drawing.Size(40, 20);
     this.label20.Text     = "Tel.";
     //
     // ADres
     //
     this.ADres.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.ADres.ForeColor = System.Drawing.Color.Blue;
     this.ADres.Location  = new System.Drawing.Point(62, 66);
     this.ADres.Size      = new System.Drawing.Size(150, 40);
     this.ADres.Text      = "bos";
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(52, 66);
     this.label17.Size     = new System.Drawing.Size(8, 20);
     this.label17.Text     = ":";
     //
     // label18
     //
     this.label18.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label18.Location = new System.Drawing.Point(6, 64);
     this.label18.Size     = new System.Drawing.Size(40, 20);
     this.label18.Text     = "Adres";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(52, 230);
     this.label9.Size     = new System.Drawing.Size(8, 20);
     this.label9.Text     = ":";
     //
     // ortalamavade
     //
     this.ortalamavade.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.ortalamavade.ForeColor = System.Drawing.Color.Blue;
     this.ortalamavade.Location  = new System.Drawing.Point(64, 230);
     this.ortalamavade.Size      = new System.Drawing.Size(150, 20);
     this.ortalamavade.Text      = "bos";
     //
     // borcbakiye
     //
     this.borcbakiye.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.borcbakiye.ForeColor = System.Drawing.Color.Blue;
     this.borcbakiye.Location  = new System.Drawing.Point(64, 210);
     this.borcbakiye.Size      = new System.Drawing.Size(150, 20);
     this.borcbakiye.Text      = "bos";
     //
     // toplamrisk
     //
     this.toplamrisk.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.toplamrisk.ForeColor = System.Drawing.Color.Blue;
     this.toplamrisk.Location  = new System.Drawing.Point(64, 190);
     this.toplamrisk.Size      = new System.Drawing.Size(150, 20);
     this.toplamrisk.Text      = "bos";
     //
     // risklimiti
     //
     this.risklimiti.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.risklimiti.ForeColor = System.Drawing.Color.Blue;
     this.risklimiti.Location  = new System.Drawing.Point(64, 170);
     this.risklimiti.Size      = new System.Drawing.Size(150, 20);
     this.risklimiti.Text      = "bos";
     //
     // vergino
     //
     this.vergino.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.vergino.ForeColor = System.Drawing.Color.Blue;
     this.vergino.Location  = new System.Drawing.Point(64, 150);
     this.vergino.Size      = new System.Drawing.Size(150, 20);
     this.vergino.Text      = "bos";
     //
     // vergidairesi
     //
     this.vergidairesi.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.vergidairesi.ForeColor = System.Drawing.Color.Blue;
     this.vergidairesi.Location  = new System.Drawing.Point(64, 130);
     this.vergidairesi.Size      = new System.Drawing.Size(150, 20);
     this.vergidairesi.Text      = "bos";
     //
     // cariadi
     //
     this.cariadi.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.cariadi.ForeColor = System.Drawing.Color.Blue;
     this.cariadi.Location  = new System.Drawing.Point(64, 18);
     this.cariadi.Size      = new System.Drawing.Size(150, 40);
     this.cariadi.Text      = "bos";
     //
     // carino
     //
     this.carino.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular);
     this.carino.ForeColor = System.Drawing.Color.Blue;
     this.carino.Location  = new System.Drawing.Point(64, 2);
     this.carino.Size      = new System.Drawing.Size(150, 20);
     this.carino.Text      = "bos";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(52, 210);
     this.label15.Size     = new System.Drawing.Size(8, 20);
     this.label15.Text     = ":";
     //
     // label16
     //
     this.label16.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label16.Location = new System.Drawing.Point(6, 230);
     this.label16.Size     = new System.Drawing.Size(40, 20);
     this.label16.Text     = "Ort. V.";
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(52, 190);
     this.label13.Size     = new System.Drawing.Size(8, 20);
     this.label13.Text     = ":";
     //
     // label14
     //
     this.label14.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label14.Location = new System.Drawing.Point(6, 210);
     this.label14.Size     = new System.Drawing.Size(40, 20);
     this.label14.Text     = "Bakiye";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(52, 170);
     this.label11.Size     = new System.Drawing.Size(8, 20);
     this.label11.Text     = ":";
     //
     // label12
     //
     this.label12.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label12.Location = new System.Drawing.Point(6, 190);
     this.label12.Size     = new System.Drawing.Size(40, 20);
     this.label12.Text     = "R.Top.";
     //
     // label10
     //
     this.label10.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label10.Location = new System.Drawing.Point(6, 170);
     this.label10.Size     = new System.Drawing.Size(40, 20);
     this.label10.Text     = "R.Lim";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(52, 150);
     this.label8.Size     = new System.Drawing.Size(8, 20);
     this.label8.Text     = ":";
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label7.Location = new System.Drawing.Point(6, 150);
     this.label7.Size     = new System.Drawing.Size(40, 20);
     this.label7.Text     = "V.N.";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(52, 130);
     this.label6.Size     = new System.Drawing.Size(8, 20);
     this.label6.Text     = ":";
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label5.Location = new System.Drawing.Point(6, 130);
     this.label5.Size     = new System.Drawing.Size(40, 20);
     this.label5.Text     = "V.D.";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(52, 18);
     this.label3.Size     = new System.Drawing.Size(8, 20);
     this.label3.Text     = ":";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label4.Location = new System.Drawing.Point(6, 18);
     this.label4.Size     = new System.Drawing.Size(40, 20);
     this.label4.Text     = "Adý";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(52, 2);
     this.label2.Size     = new System.Drawing.Size(8, 20);
     this.label2.Text     = ":";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Bold);
     this.label1.Location = new System.Drawing.Point(6, 2);
     this.label1.Size     = new System.Drawing.Size(40, 20);
     this.label1.Text     = "No";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.CariDataGrid);
     this.tabPage2.Location = new System.Drawing.Point(4, 4);
     this.tabPage2.Size     = new System.Drawing.Size(232, 246);
     this.tabPage2.Text     = "Extre";
     //
     // CariDataGrid
     //
     this.CariDataGrid.Location = new System.Drawing.Point(4, 8);
     this.CariDataGrid.Size     = new System.Drawing.Size(224, 230);
     this.CariDataGrid.TableStyles.Add(this.dataGridTableStyle1);
     this.CariDataGrid.Text = "dataGrid1";
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn1);
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn2);
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn3);
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn4);
     this.dataGridTableStyle1.GridColumnStyles.Add(this.dataGridTextBoxColumn5);
     this.dataGridTableStyle1.MappingName = "CarDat";
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.HeaderText  = "Tarih";
     this.dataGridTextBoxColumn1.MappingName = "TARIH";
     this.dataGridTextBoxColumn1.NullText    = "(null)";
     this.dataGridTextBoxColumn1.Width       = 55;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.HeaderText  = "Belge No";
     this.dataGridTextBoxColumn2.MappingName = "BELGE_NO";
     this.dataGridTextBoxColumn2.NullText    = "(null)";
     this.dataGridTextBoxColumn2.Width       = 60;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.HeaderText  = "B";
     this.dataGridTextBoxColumn3.MappingName = "BORC";
     this.dataGridTextBoxColumn3.NullText    = "(null)";
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.HeaderText  = "A";
     this.dataGridTextBoxColumn4.MappingName = "ALAC";
     this.dataGridTextBoxColumn4.NullText    = "(null)";
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.HeaderText  = "Ö Kod";
     this.dataGridTextBoxColumn5.MappingName = "OZKOD2";
     this.dataGridTextBoxColumn5.NullText    = "(null)";
     this.dataGridTextBoxColumn5.Width       = 120;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(160, 224);
     this.button1.Text     = "Kapat";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // CariBilgiForm
     //
     this.ControlBox = false;
     this.Controls.Add(this.tabControl1);
     this.Text  = "CariBilgiForm";
     this.Load += new System.EventHandler(this.CariBilgiForm_Load);
 }