Example #1
2
        private void InitTabControlPages()
        {
            foreach(var obj in CardLevels)
            {
                var page = new TabPage { Text = CardLevel.RoleCardLevelName(obj) };
                CardTabControl.TabPages.Add(page);

                var listData        = new BindingList<RoleCard>();
                var list            = new ListBox()
                {
                    Dock                = DockStyle.Fill,
                    ContextMenuStrip    = TabControlContextMenu,
                    DisplayMember       = "Name",
                    ValueMember         = "Id",
                    DataSource          = listData,
                };
                
                list.SelectedIndexChanged += (sender, msg) =>
                {
                    var item = list.SelectedItem as RoleCard;
                    if (ListOfRoleCardList[CardTabControl.SelectedIndex].Contains(item))
                    {
                        SelectedItem = item;

                        cardInfoControl1.BeginModify();
                        cardInfoControl1.Images     = CardImageDictionary[SelectedItem.Id];
                        cardInfoControl1.RoleCard   = SelectedItem;
                        cardInfoControl1.EndModify();
                    }
                };

                page.Controls.Add(list);
                ListOfRoleCardList.Add(listData);
            }
        }
Example #2
1
        private void AddTab(string url, int? insertIndex = null)
        {
            browserTabControl.SuspendLayout();

            var browser = new BrowserTabUserControl(url)
            {
                Dock = DockStyle.Fill,
            };

            var tabPage = new TabPage(url)
            {
                Dock = DockStyle.Fill
            };

            //This call isn't required for the sample to work. 
            //It's sole purpose is to demonstrate that #553 has been resolved.
            browser.CreateControl();

            tabPage.Controls.Add(browser);

            if (insertIndex == null)
            {
                browserTabControl.TabPages.Add(tabPage);
            }
            else
            {
                browserTabControl.TabPages.Insert(insertIndex.Value, tabPage);
            }

            //Make newly created tab active
            browserTabControl.SelectedTab = tabPage;

            browserTabControl.ResumeLayout(true);
        }
Example #3
0
            public override void Initialize ()
            {
                _textBox = new TextBox() {
                    Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right,
                    Font = new Font("Courier New", 9F, FontStyle.Regular, GraphicsUnit.Point, 0),
                    Location = new Point(0, 0),
                    Margin = new Padding(0),
                    Multiline = true,
                    ScrollBars = ScrollBars.Vertical,
                    Size = new Size(500, 263),
                    TabIndex = 0,
                    MaxLength = 0,
                };

                _tabPage = new TabPage() {
                    Location = new Point(4, 22),
                    Padding = new Padding(3),
                    Size = new Size(500, 263),
                    TabIndex = 1,
                    Text = "Text View",
                    UseVisualStyleBackColor = true,
                };

                _tabPage.Controls.Add(_textBox);

                _textBox.TextChanged += (s, e) => { OnModified(); RebuildElementIndex(); };
                _textBox.PreviewKeyDown += (s, e) => { e.IsInputKey = true; };
                _textBox.KeyUp += (s, e) => { UpdateElementLabel(); };
                _textBox.MouseClick += (s, e) => { UpdateElementLabel(); };

                InitializeStatusBar();
            }
        /// <summary>
        /// Adds a tab.
        /// </summary>
        /// <param name="name">The tab name.</param>
        /// <param name="tabFactory">The tab factory.</param>
        public void AddTab(string name, Func<ControlPanelTab> tabFactory)
        {
            TabPage tabPage = new TabPage(name);
            tabPage.Tag = tabFactory;

            controlPanelTabControl.TabPages.Add(tabPage);
        }
Example #5
0
		public osd_screen (int num, OSD aosd)
		{
			number=num;
			osd=aosd;
			
			num+=1;
			
			this.tabPage = new System.Windows.Forms.TabPage();		
			this.panelItems=new Panel[64];
			this.panelItems_default = new Panel[64];
			this.LIST_items=new System.Windows.Forms.TreeView();
			this.rbtSortCategory = new System.Windows.Forms.RadioButton();
            this.rbtSortAlphabetic = new System.Windows.Forms.RadioButton();
			this.groupBox = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.NUM_Y = new System.Windows.Forms.NumericUpDown();
            this.NUM_X = new System.Windows.Forms.NumericUpDown();
			this.pictureBox = new System.Windows.Forms.PictureBox();
			this.chkSign = new System.Windows.Forms.CheckBox();
			
			this.tabPage.SuspendLayout();
			this.groupBox.SuspendLayout();
			this.pictureBox.SuspendLayout();
		}
Example #6
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;
            
        }
		void AddOptionPanels(IEnumerable<IDialogPanelDescriptor> dialogPanelDescriptors)
		{
			foreach (IDialogPanelDescriptor descriptor in dialogPanelDescriptors) {
				descriptors.Add(descriptor);
				if (descriptor != null && descriptor.DialogPanel != null && descriptor.DialogPanel.Control != null) { // may be null, if it is only a "path"
					descriptor.DialogPanel.CustomizationObject = project;
					descriptor.DialogPanel.ReceiveDialogMessage(DialogMessage.Activated);
					ICanBeDirty dirtyable = descriptor.DialogPanel as ICanBeDirty;
					if (dirtyable != null) {
						dirtyable.IsDirtyChanged += PanelDirtyChanged;
					}
					
					TabPage page = new TabPage(descriptor.Label);
					page.UseVisualStyleBackColor = true;
					page.Controls.Add(descriptor.DialogPanel.Control);
					tabControl.TabPages.Add(page);
				}
				
				if (descriptor.ChildDialogPanelDescriptors != null) {
					AddOptionPanels(descriptor.ChildDialogPanelDescriptors);
				}
			}
			// re-evaluate dirty because option pages can be dirty when they are newly loaded
			PanelDirtyChanged(null, null);
		}
Example #8
0
 /// <summary>
 /// Sets the enable on all tab page controls.
 /// </summary>
 /// <param name="tp">The tp.</param>
 /// <param name="enabled">if set to <c>true</c> [enabled].</param>
 public static void SetEnableOnAllTabPageControls(TabPage tp, bool enabled)
 {
     foreach (Control c in tp.Controls)
     {
         c.Enabled = enabled;
     }
 }
 private void NumericUpDownActorsValueChanged(object sender, EventArgs e)
 {
     var value = (int)this.numericUpDownActors.Value;
     if (value < this.tabControlActors.TabCount)
     {
         for (int i = this.tabControlActors.TabCount - 1; i >= value; i--)
         {
             this.tabControlActors.TabPages.RemoveAt(i);
             Project.BTActors.RemoveAt(i);
         }
     }
     else
     {
         this.tabControlActors.SuspendLayout();
         for (int i = this.tabControlActors.TabCount; i < value; i++)
         {
             var page = new TabPage((i + 1).ToString(CultureInfo.InvariantCulture));
             var panel = new BattleTestActorPanel();
             page.Controls.Add(panel);
             panel.Dock = DockStyle.Fill;
             this.tabControlActors.TabPages.Add(page);
             Project.BTActors.Add(Project.Data.Actors[0]);
         }
         this.tabControlActors.ResumeLayout(true);
     }
 }
Example #10
0
        public ControlCenterMainForm()
        {
            InitializeComponent();

            m_ScreenLogger = new ScreenLogger();// debug tool

            // load up the AppData object so the rest of the app has acccess to global resources

            m_AppData = new APPLICATION_DATA();
            m_AppData.LogToScreen = m_ScreenLogger;

            m_Log = new ErrorLog(m_AppData);
            m_AppData.Logger = m_Log;

            m_ScreenLogger.Show();

            m_AppData.RCSProtocol = (object)new RCS_Protocol.RCS_Protocol(m_AppData,null);
            m_AppData.TCPClient = (object)new RCSClientLib.RCSClient(null, m_AppData);

            this.FormClosing += new FormClosingEventHandler(Form1_FormClosing);

            tabControlMain.Click += new EventHandler(tabControlMain_Click);

            // not logged in

            m_AppData.LoggedIn = APPLICATION_DATA.LoggedInAs.NOT_LOGGED_IN;

            // start on the select server tab
            tabControlMain.SelectedTab = tabPageSelectServer;
            m_CurrentPage = tabControlMain.SelectedTab;
            LoadSelectServerUC();
        }
        public MultipleGraphics(ResultResearch r)
        {
            InitializeComponent();

            this.research = r;

            SortedDictionary<double, SortedDictionary<double, SubGraphsInfo>>.KeyCollection keys =
                this.research.Result.Keys;
            foreach (double k in keys)
            {
                Chart graphic = new Chart();
                graphic.Titles.Add("Network Size = " + this.research.Size.ToString());

                ChartArea chArea = new ChartArea("Current Level = " + k.ToString());
                chArea.AxisX.Title = "Mu";
                chArea.AxisY.Title = "Order";
                graphic.ChartAreas.Add(chArea);

                Series s = new Series("Current Level = " + k.ToString());
                s.ChartType = SeriesChartType.Line;
                s.Color = Color.Red;
                foreach (KeyValuePair<double, SubGraphsInfo> v in this.research.Result[k])
                {
                    s.Points.Add(new DataPoint(v.Key, v.Value.avgOrder));
                }
                graphic.Series.Add(s);

                graphic.Dock = DockStyle.Fill;
                TabPage page = new TabPage("Current Level = " + k.ToString());
                page.Controls.Add(graphic);
                this.graphicsTab.TabPages.Add(page);

                this.graphics.Add(graphic);
            }
        }
Example #12
0
 private void addButton_Click(object sender, EventArgs e)
 {
     Element element = item.NewElement();
     TabPage ctrl = new TabPage();
     ctrl.Controls.Add(new ElementCtrl(element,ctrl));
     elementTabCtrl.TabPages.Add(ctrl);
 }
Example #13
0
 private void addVersionButton_Click(object sender, EventArgs e)
 {
     ItemVersion itemversion = item.NewItemVersion();
     TabPage ctrl = new TabPage();
     ctrl.Controls.Add(new ItemVersionCtrl(itemversion,ctrl));
     itemVersionTabCtrl.TabPages.Add(ctrl);
 }
Example #14
0
 public static void HideTabPage(this TabControl tc, TabPage tp)
 {
   if (tc.TabPages.Contains(tp))
   {
     tc.TabPages.Remove(tp);
   }
 }
Example #15
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 #16
0
 public void DrawMaxSum(TabPage page)
 {
     int X = page.Width;
     int Y = page.Height;
     bt = new Button[row, col];
     for (int i = 0; i < row; i++)
     {
         for (int j = 0; j < col; j++)
         {
             bt[i, j] = new Button();
             bt[i, j].AutoSize = false;
             bt[i, j].Text = Convert.ToString(map[i, j]);
             bt[i, j].SetBounds(j * X / col, i * Y / row, X / col, Y / row);
             bt[i, j].Visible = true;
             page.Controls.Add(bt[i, j]);
         }
     }
     for (int i = 0; i < row; i++)
     {
         for (int j = 0; j < col; j++)
         {
             if (mark[i, j] == 1)
             {
                 bt[i, j].BackColor = Color.Yellow;
             }
         }
     }
 }
Example #17
0
        public FormGeneratedCode(List<GeneratedCode> generatedCodes)
        {
            InitializeComponent();

            this.generatedCodes = generatedCodes;

            tabControl1.TabPages.Clear();
            foreach (GeneratedCode gc in generatedCodes)
            {
                TabPage tp = new TabPage(Path.GetFileName(gc.Path));
                tabControl1.TabPages.Add(tp);
                tp.Tag = gc;

                RichTextBox tb = new RichTextBox();
                tb.AcceptsTab = true;
                tb.DetectUrls = false;
                tb.Dock = DockStyle.Fill;
                tb.Font = new Font("Lucida Console", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 162);
                tb.Location = new System.Drawing.Point(3, 3);
                tb.Text = gc.Code;
                tb.WordWrap = false;

                tb.TextChanged += delegate {
                    (tp.Tag as GeneratedCode).Code = tb.Text;
                };

                tp.Controls.Add(tb);
            }

            tabControl1.SelectedIndex = 0;
        }
        void GlobalWindowManager_WindowAdded(object sender, GwmWindowEventArgs e)
        {
            OptionsForm optionsForm = e.Form as OptionsForm;
            if (optionsForm != null)
            {

                TabPage tp = new TabPage("QuickSearch");
                tp.BackColor = SystemColors.Window;
                tp.AutoScroll = true;
                OptionsControl optionsControl = new OptionsControl();
                //optionsControl.BackColor = SystemColors.Control;
                tp.Controls.Add(optionsControl);
                TabControl tc = optionsForm.Controls.Find("m_tabMain", false)[0] as TabControl;
                //System.Drawing.Image image = Resources.search_icon_16;
                //tc.ImageList.Images.Add("QuickSearch", image);
                //tp.ImageKey = "QuickSearch";
                tc.TabPages.Add(tp);
                //optionsForm.VisibleChanged += new EventHandler(delegate(object o, EventArgs em)
                //{
                //    em.
                //});
                optionsControl.Dock = DockStyle.Top;
                Button buttonOK = optionsForm.Controls.Find("m_btnOK", false)[0] as Button;
                buttonOK.Click += delegate(object senderr, EventArgs evtarg) {
                    optionsControl.OKButtonPressed(senderr, evtarg);
                    //removeBuiltinQuickFind(host);
                    this.qsControl.UpdateWidth();
                    //this.qsControl.
                    
                };
                //buttonOK.Click += new EventHandler(optionsControl.OKButtonPressed);

            }
        }
Example #19
0
 public static void AddTabPage(this TabControl tc, TabPage tabpage)
 {
   if (!tc.TabPages.Contains(tabpage))
   {
     tc.TabPages.Add(tabpage);
   }
 }
Example #20
0
        private void InitData()
        {
            #region 生成按钮

            foreach (var m in CommonHelper.ConfigHelper.Config.CategoryConfig.CategoryList)
            {
                TabPage tab = new TabPage(m.Name);
                FlowLayoutPanel flowPanel = new FlowLayoutPanel();
                flowPanel.Dock = DockStyle.Fill;
                if (null != m.CategoryItemList && m.CategoryItemList.Count > 0)
                {
                    for (int k = 0; k < m.CategoryItemList.Count; k++)
                    {
                        var model = m.CategoryItemList[k];
                        Button bt = new Button();
                        bt.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                        bt.Name = model.AssemblyName;
                        bt.Text = model.Name;
                        bt.AutoSize = true;
                        bt.Height = 25;
                        bt.Margin = new System.Windows.Forms.Padding(5);
                        bt.Padding = new System.Windows.Forms.Padding(3);
                        bt.Click += new EventHandler(bt_Click);
                        bt.MouseEnter += new EventHandler(bt_MouseEnter);
                        bt.MouseLeave += new EventHandler(bt_MouseLeave);
                        flowPanel.Controls.Add(bt);
                    }
                }
                tab.Controls.Add(flowPanel);
                this.tabMenu.TabPages.Add(tab);
            }

            #endregion 生成按钮
        }
Example #21
0
        /// <summary>
        /// 根据某个url添加界面
        /// </summary>
        /// <param name="url"></param>
        /// <param name="insertIndex"></param>
        private void AddTab(string url, int? insertIndex = null)
        {
            browerTabControl.SuspendLayout();

            var brower = new UserControl1(url)
            {
                Dock=DockStyle.Fill,
            };

            var tabPage = new TabPage(url)
            {
                Dock = DockStyle.Fill
            };

            brower.CreateControl();
            tabPage.Controls.Add(brower);

            if (insertIndex == null)
            {
                browerTabControl.TabPages.Add(tabPage);
            }
            else
            {
                browerTabControl.TabPages.Insert(insertIndex.Value, tabPage);
            }

            browerTabControl.SelectedTab = tabPage;
            browerTabControl.ResumeLayout(true);
        }
Example #22
0
 public void AddTab(string name, Dictionary<string, string> fieldMap)
 {
     ResultsPane rp = new ResultsPane { FieldMap = fieldMap, Dock = DockStyle.Fill };
      TabPage tp = new TabPage { Text = name };
      tp.Controls.Add(rp);
      tabControl1.TabPages.Add(tp);
 }
Example #23
0
        public bool AddSource(string pathToSource, string title)
        {
            TabPage tpg = new TabPage(title);
            bool fRez = true;

            if (System.IO.File.Exists(pathToSource))
            {
                FileKeyValue fkv = new FileKeyValue(pathToSource);
                fkv.Dock = DockStyle.Fill;
                tpg.Controls.Add(fkv);
                Sources.Add(title, pathToSource);
            }
            else
            {
                Label lbl = new Label();
                lbl.TextAlign = ContentAlignment.MiddleCenter;
                lbl.Text = "!!!!!!!!!!!!!!!!!!!!!!!!!!!!\r\n\r\nTHERE IS NO EQUIVALENT FILE\r\n\r\nPAY ATTENTION TO THIS ISSUE \r\n IF IT IS A DEFAULT TAB PAGE\r\n\r\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
                lbl.Font = new System.Drawing.Font(this.Font, FontStyle.Bold);
                lbl.ForeColor = Color.Red;
                lbl.Padding = new System.Windows.Forms.Padding(100);
                lbl.Dock = DockStyle.Fill;
                tpg.BackColor = Color.LightPink;
                tpg.Controls.Add(lbl);
                fRez = false;

                this.panel1.Padding = new Padding(10);
                this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
                this.panel1.BackColor = Color.Red;
            }

            this.tabControl1.TabPages.Add(tpg);

            return fRez;
        }
Example #24
0
        public void LoadXML( FaceXML XML )
        {
            this.XML = XML;

            this.tabControl1.Controls.Clear();
            this.tabPage1.Controls.Clear();
            this.tabControl1.Controls.Add( tabPage1 );

            int width = tabPage1.Size.Width;
            int height = tabPage1.Size.Height;

            FaceImageListControl f = new FaceImageListControl( XML, this );
            f.Size = new Size( width, height );
            f.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
            this.tabPage1.Controls.Add( f );

            AllFacesControl = f;
            FaceControls = new Dictionary<string, FaceImageListControl>();

            foreach ( KeyValuePair<String, List<FaceImage>> KVP in XML.Categories ) {
                TabPage p = new TabPage( KVP.Key );
                p.Size = new Size( width, height );
                f = new FaceImageListControl( KVP.Key, KVP.Value, AllFacesControl, this );
                f.Size = new Size( width, height );
                f.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
                p.Controls.Add( f );
                this.tabControl1.Controls.Add( p );

                FaceControls.Add( KVP.Key, f );
            }
        }
Example #25
0
        public PropertiesForm(Folder f)
        {
            InitializeComponent();
            xFolder = f;
            this.Text = "Properties -- " + f.Name;
            groupBox4.Enabled = false;
            groupBox1.Enabled = false;
            LoadGeneral(f);
            tabPage1.Click += new EventHandler(tabPage1_Click);
            #if DEBUG
            TabPage tabPage2 = new TabPage();
            propertyGrid1.Dock = DockStyle.Fill;
            tabPage2.Controls.Add(this.propertyGrid1);
            tabPage2.Location = new System.Drawing.Point(4, 22);
            tabPage2.Name = "tabPage2";
            tabPage2.Padding = new System.Windows.Forms.Padding(3);
            tabPage2.Size = new System.Drawing.Size(509, 320);
            tabPage2.TabIndex = 1;
            tabPage2.Text = "Entry";
            tabPage2.UseVisualStyleBackColor = true;

            tabControl1.TabPages.Add(tabPage2);
            #endif
            this.Load +=new EventHandler(PropertiesForm_Load);
        }
Example #26
0
		public void OpenFile(string filename)
		{
			this.AddFileToRecentFiles(filename);
			foreach (TabPage fileTab in this.fileTabs.TabPages)
			{
				var tag = fileTab.Tag as IResourceEditor;
				if (tag != null)
				{
					if (string.Compare(tag.CurrentFileName, filename, StringComparison.InvariantCultureIgnoreCase) == 0)
					{
						this.fileTabs.SelectedTab = fileTab;
						return;
					}
				}
			}

			var resourceEditor = this.CreateEditor(filename);
			if (resourceEditor == null)
			{
				return;
			}

			resourceEditor.Control.Dock = DockStyle.Fill;
			resourceEditor.LoadFile(filename);

			var tabPage = new TabPage(Path.GetFileName(filename));
			tabPage.Controls.Add(resourceEditor.Control);
			tabPage.Tag = resourceEditor;
			this.fileTabs.TabPages.Add(tabPage);
			this.fileTabs.SelectedTab = tabPage;
		}
Example #27
0
        public void Init(Frame frame)
        {
            mFrame = frame;

            mFrame.Changed += new Action<Frame, EventArgs>(mWindow_Changed);

            foreach (var screen in Screen.AllScreens) {
                monitorPulldown.Items.Add(screen);
                if (screen.DeviceName.Equals(frame.Monitor.DeviceName))
                    monitorPulldown.SelectedItem = screen;
            }

            if (frame.Output != null) {
                Control panel = frame.Output.ControlPanel;
                panel.Dock = DockStyle.Fill;

                TabPage tab = new TabPage();
                tab.Name = "outputTab";
                tab.Text = "Output";
                tab.Controls.Add(panel);

                mainTab.Controls.Add(tab);
            }

            mWindow_Changed(frame, null);
        }
        private void InitializeRFGenTab()
        {
            this.m_tabRFGen = new System.Windows.Forms.TabPage();
            this.m_tabRFGen.SuspendLayout();
            this.m_MainTab.Controls.Add(this.m_tabRFGen);

            // 
            // m_tabRFGen
            // 
            //this.m_tabRFGen.Controls.Add(this.m_groupControl_Commands);
            //this.m_tabRFGen.Controls.Add(this.m_ReportTextBox);
            this.m_tabRFGen.Location = new System.Drawing.Point(4, 26);
            this.m_tabRFGen.Name = "m_tabRFGen";
            this.m_tabRFGen.Padding = new System.Windows.Forms.Padding(3);
            this.m_tabRFGen.Size = new System.Drawing.Size(1084, 510);
            this.m_tabRFGen.TabIndex = 1;
            this.m_tabRFGen.Text = "Signal Generator [BETA]";
            this.m_tabRFGen.UseVisualStyleBackColor = true;
            this.m_tabRFGen.Enter += new System.EventHandler(this.OnTabRFGen_Enter);

            m_GraphTrackingGenerator = new ZedGraph.ZedGraphControl();
            m_tabRFGen.Controls.Add(m_GraphTrackingGenerator);

            InitializeTrackingGeneratorGraph();
        }
Example #29
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 #30
0
        public MainFrm()
        {
            InitializeComponent();

            Text = GetVersionString();

            LauncherHelper.LoadBanlist();

            var loginTab = new TabPage("Login");
            m_loginWindow = new LoginFrm();
            loginTab.Controls.Add(m_loginWindow);
            mainTabs.TabPages.Add(loginTab);
            m_chatWindow = new ChatFrm();
            GameWindow = new HubGameList_frm();
            m_rankingWindow = new RankingFrm();
            m_devpointWindow = new SupportFrm();
            m_filemanagerWindow = new FileManagerFrm();
            m_customizerWindow = new CustomizeFrm();

            Program.ChatServer.ServerMessage += ServerMessage;

            mainTabs.SelectedIndexChanged += TabChange;

            ApplyTranslation();
        }
Example #31
0
    // This method is required for Designer support.
    private void InitializeComponent(Size W_size)
    {
        this.components           = new System.ComponentModel.Container();
        this.tabControl1          = new System.Windows.Forms.TabControl();
        this.tabPage1             = new System.Windows.Forms.TabPage();
        this.tabPage2             = new System.Windows.Forms.TabPage();
        this.tabPage3             = new System.Windows.Forms.TabPage();
        this.tabPage4             = new System.Windows.Forms.TabPage();
        this.tab1Button           = new MyButton[4];
        this.tab2Button           = new MyButton[4];
        this.tab3Button           = new MyButton[4];
        this.tab4Button           = new MyButton[4];
        this.PictureBox1          = new System.Windows.Forms.PictureBox();
        this.PictureBox1.Size     = new Size(100, 100);
        this.PictureBox1.Location = new Point(560, 500);
        this.canvas1 = new Bitmap(PictureBox1.Width, PictureBox1.Height);
        this.text1   = Graphics.FromImage(canvas1);
        this.fnt     = new Font("MU UI Gothic", 20);
        this.text1.DrawString("Before", fnt, Brushes.Blue, 0, 0);
        PictureBox1.Image         = canvas1;
        this.PictureBox2          = new System.Windows.Forms.PictureBox();
        this.PictureBox2.Size     = new Size(100, 100);
        this.PictureBox2.Location = new Point(680, 500);
        this.canvas2 = new Bitmap(PictureBox2.Width, PictureBox2.Height);
        this.text2   = Graphics.FromImage(canvas2);
        this.text2.DrawString("After", fnt, Brushes.Red, 0, 0);
        PictureBox2.Image = canvas2;


        //江夏側の設定部分
        //Face:UIに出力する顔画像部分のPicture Box
        //picture:OpenCVSharpで顔画像の読み込みクラス
        this.Face        = new System.Windows.Forms.PictureBox();
        this.static_Face = new System.Windows.Forms.PictureBox();
        this.picture     = new opencvsharp_test();

        Face.Location        = new Point(W_size.Width - 660, 10);
        static_Face.Location = new Point(20, 10);
        Face.Image           = picture.testImage.ToBitmap();
        static_Face.Image    = picture.testImage.ToBitmap();
        Face.Size            = new System.Drawing.Size(640, 480);
        static_Face.Size     = new System.Drawing.Size(640, 480);


        int  allowance = 50;
        int  first_x   = 50;
        Size T_size    = new System.Drawing.Size(W_size.Width - 40, 180 - 20);
        Size T_size2   = new System.Drawing.Size(40, 20);
        Size B_size    = new System.Drawing.Size(60, 80);

        tabControl1.Location      = new System.Drawing.Point(20, 530);
        tabControl1.Size          = T_size;
        tabControl1.SelectedIndex = 0;
        tabControl1.TabIndex      = 0;
        tabPage1.Text             = "cheek";
        tabPage1.Size             = T_size2;
        tabPage1.TabIndex         = 0;
        tabPage2.Text             = "eye";
        tabPage2.Size             = T_size2;
        tabPage2.TabIndex         = 1;
        tabPage3.Text             = "mouse";
        tabPage3.Size             = T_size2;
        tabPage3.TabIndex         = 2;
        tabPage4.Text             = "eyeshadow";
        tabPage4.Size             = T_size2;
        tabPage4.TabIndex         = 3;

        get_TabImage Tab1Image = new get_TabImage("TabImages/cheek/", "cheek", 3);

        for (int i = 0; i < 3; i++)
        {
            tab1Button[i] = new MyButton(0, i)
            {
                Image    = Tab1Image.img[i],
                Location = new System.Drawing.Point(first_x + i * (B_size.Width + allowance), T_size.Height / 4),
                Size     = B_size,
                TabIndex = i,
                Cursor   = Cursors.Hand,
            };
            tab1Button[i].Click += new System.EventHandler(this.TabButton_Click);
        }
        get_TabImage Tab2Image = new get_TabImage("TabImages/eye/", "eye", 3);

        for (int i = 0; i < 3; i++)
        {
            tab2Button[i] = new MyButton(1, i)
            {
                Image    = Tab2Image.img[i],
                Location = new System.Drawing.Point(first_x + i * (B_size.Width + allowance), T_size.Height / 4),
                Size     = B_size,
                TabIndex = i,
                Cursor   = Cursors.Hand,
            };
            tab2Button[i].Click += new System.EventHandler(this.TabButton_Click);
        }
        get_TabImage Tab3Image = new get_TabImage("TabImages/mouse/", "mouse", 3);

        for (int i = 0; i < 3; i++)
        {
            tab3Button[i] = new MyButton(2, i)
            {
                Image    = Tab3Image.img[i],
                Location = new System.Drawing.Point(first_x + i * (B_size.Width + allowance), T_size.Height / 4),
                Size     = B_size,
                TabIndex = i,
                Cursor   = Cursors.Hand,
            };
            tab3Button[i].Click += new System.EventHandler(this.TabButton_Click);
        }
        get_TabImage Tab4Image = new get_TabImage("TabImages/eyeshadow/", "eyeshadow", 3);

        for (int i = 0; i < 3; i++)
        {
            tab4Button[i] = new MyButton(3, i)
            {
                Image    = Tab4Image.img[i],
                Location = new System.Drawing.Point(first_x + i * (B_size.Width + allowance), T_size.Height / 4),
                Size     = B_size,
                TabIndex = i,
                Cursor   = Cursors.Hand,
            };
            tab4Button[i].Click += new System.EventHandler(this.TabButton_Click);
        }
        tab1Button[3] = new MyButton(9, 3)
        {
            Text     = "Reset",
            Location = new System.Drawing.Point(T_size.Width - B_size.Width - 20, T_size.Height / 4),
            Size     = B_size,
            TabIndex = 3,
            Cursor   = Cursors.Hand,
        };
        tab1Button[3].Click += new System.EventHandler(this.TabButton_Click);
        tab2Button[3]        = new MyButton(9, 3)
        {
            Text     = "Reset",
            Location = new System.Drawing.Point(T_size.Width - B_size.Width - 20, T_size.Height / 4),
            Size     = B_size,
            TabIndex = 3,
            Cursor   = Cursors.Hand,
        };
        tab2Button[3].Click += new System.EventHandler(this.TabButton_Click);
        tab3Button[3]        = new MyButton(9, 3)
        {
            Text     = "Reset",
            Location = new System.Drawing.Point(T_size.Width - B_size.Width - 20, T_size.Height / 4),
            Size     = B_size,
            TabIndex = 3,
            Cursor   = Cursors.Hand,
        };
        tab3Button[3].Click += new System.EventHandler(this.TabButton_Click);
        tab4Button[3]        = new MyButton(9, 3)
        {
            Text     = "Reset",
            Location = new System.Drawing.Point(T_size.Width - B_size.Width - 20, T_size.Height / 4),
            Size     = B_size,
            TabIndex = 3,
            Cursor   = Cursors.Hand,
        };
        tab4Button[3].Click += new System.EventHandler(this.TabButton_Click);

        this.Text = "Form1";

        for (int i = 0; i < 4; i++)
        {
            tabPage1.Controls.Add(this.tab1Button[i]);
        }
        for (int i = 0; i < 4; i++)
        {
            tabPage2.Controls.Add(this.tab2Button[i]);
        }
        for (int i = 0; i < 4; i++)
        {
            tabPage3.Controls.Add(this.tab3Button[i]);
        }
        for (int i = 0; i < 4; i++)
        {
            tabPage4.Controls.Add(this.tab4Button[i]);
        }

        this.Controls.Add(this.tabControl1);

        this.Controls.Add(this.PictureBox1);
        this.Controls.Add(this.PictureBox2);
        this.Controls.Add(this.Face);
        this.Controls.Add(this.static_Face);

        tabControl1.Controls.Add(this.tabPage1);
        tabControl1.Controls.Add(this.tabPage2);
        tabControl1.Controls.Add(this.tabPage3);
        tabControl1.Controls.Add(this.tabPage4);
    }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InstanceTracker));
     this.DetailMenu     = new System.Windows.Forms.ContextMenu();
     this.DetailMenuItem = new System.Windows.Forms.MenuItem();
     this.statusBar      = new System.Windows.Forms.StatusBar();
     this.mainMenu       = new System.Windows.Forms.MainMenu(this.components);
     this.menuItem1      = new System.Windows.Forms.MenuItem();
     this.saveAsMenuItem = new System.Windows.Forms.MenuItem();
     this.menuItem8      = new System.Windows.Forms.MenuItem();
     this.gcMenuItem     = new System.Windows.Forms.MenuItem();
     this.fullGcMenuItem = new System.Windows.Forms.MenuItem();
     this.menuItem4      = new System.Windows.Forms.MenuItem();
     this.enableInstanceTrackingMenuItem = new System.Windows.Forms.MenuItem();
     this.menuItem3                = new System.Windows.Forms.MenuItem();
     this.closeMenuItem            = new System.Windows.Forms.MenuItem();
     this.menuItem2                = new System.Windows.Forms.MenuItem();
     this.showExceptionsMenuItem   = new System.Windows.Forms.MenuItem();
     this.showWarningsMenuItem     = new System.Windows.Forms.MenuItem();
     this.showInformationMenuItem  = new System.Windows.Forms.MenuItem();
     this.showAuditMenuItem        = new System.Windows.Forms.MenuItem();
     this.menuItem5                = new System.Windows.Forms.MenuItem();
     this.haltOnExceptionsMenuItem = new System.Windows.Forms.MenuItem();
     this.menuItem6                = new System.Windows.Forms.MenuItem();
     this.ClearEventMenuItem       = new System.Windows.Forms.MenuItem();
     this.tabControl1              = new System.Windows.Forms.TabControl();
     this.tabPage2                           = new System.Windows.Forms.TabPage();
     this.EventText                          = new System.Windows.Forms.TextBox();
     this.splitter1                          = new System.Windows.Forms.Splitter();
     this.EventListView                      = new System.Windows.Forms.ListView();
     this.columnHeader4                      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3                      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.iconImageList                      = new System.Windows.Forms.ImageList(this.components);
     this.tabPage1                           = new System.Windows.Forms.TabPage();
     this.instanceListView                   = new System.Windows.Forms.ListView();
     this.columnHeader1                      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2                      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ToolsIconList                      = new System.Windows.Forms.ImageList(this.components);
     this.eventToolBar                       = new System.Windows.Forms.ToolBar();
     this.toolBarButton3                     = new System.Windows.Forms.ToolBarButton();
     this.showExceptionsToolBarButton        = new System.Windows.Forms.ToolBarButton();
     this.showWarningEventsToolBarButton     = new System.Windows.Forms.ToolBarButton();
     this.showInformationEventsToolBarButton = new System.Windows.Forms.ToolBarButton();
     this.showAuditEventsToolBarButton       = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1                     = new System.Windows.Forms.ToolBarButton();
     this.clearEventLogToolBarButton         = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton2                     = new System.Windows.Forms.ToolBarButton();
     this.gcToolBarButton                    = new System.Windows.Forms.ToolBarButton();
     this.saveLogFileDialog                  = new System.Windows.Forms.SaveFileDialog();
     this.tabControl1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.SuspendLayout();
     //
     // DetailMenu
     //
     this.DetailMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.DetailMenuItem
     });
     //
     // DetailMenuItem
     //
     this.DetailMenuItem.Index  = 0;
     this.DetailMenuItem.Text   = "Details";
     this.DetailMenuItem.Click += new System.EventHandler(this.DetailMenuItem_Click);
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 441);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(480, 16);
     this.statusBar.TabIndex = 1;
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem2
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.saveAsMenuItem,
         this.menuItem8,
         this.gcMenuItem,
         this.fullGcMenuItem,
         this.menuItem4,
         this.enableInstanceTrackingMenuItem,
         this.menuItem3,
         this.closeMenuItem
     });
     this.menuItem1.Text = "&File";
     //
     // saveAsMenuItem
     //
     this.saveAsMenuItem.Index  = 0;
     this.saveAsMenuItem.Text   = "Save As...";
     this.saveAsMenuItem.Click += new System.EventHandler(this.saveAsMenuItem_Click);
     //
     // menuItem8
     //
     this.menuItem8.Index = 1;
     this.menuItem8.Text  = "-";
     //
     // gcMenuItem
     //
     this.gcMenuItem.Index  = 2;
     this.gcMenuItem.Text   = "&Garbage Collect";
     this.gcMenuItem.Click += new System.EventHandler(this.gcMenuItem_Click);
     //
     // fullGcMenuItem
     //
     this.fullGcMenuItem.Index  = 3;
     this.fullGcMenuItem.Text   = "&Full Garbage Collect";
     this.fullGcMenuItem.Click += new System.EventHandler(this.fullGcMenuItem_Click);
     //
     // menuItem4
     //
     this.menuItem4.Index = 4;
     this.menuItem4.Text  = "-";
     //
     // enableInstanceTrackingMenuItem
     //
     this.enableInstanceTrackingMenuItem.Index  = 5;
     this.enableInstanceTrackingMenuItem.Text   = "&Enable Object Tracking";
     this.enableInstanceTrackingMenuItem.Click += new System.EventHandler(this.enableInstanceTrackingMenuItem_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 6;
     this.menuItem3.Text  = "-";
     //
     // closeMenuItem
     //
     this.closeMenuItem.Index  = 7;
     this.closeMenuItem.Text   = "&Close";
     this.closeMenuItem.Click += new System.EventHandler(this.closeMenuItem_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 1;
     this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.showExceptionsMenuItem,
         this.showWarningsMenuItem,
         this.showInformationMenuItem,
         this.showAuditMenuItem,
         this.menuItem5,
         this.haltOnExceptionsMenuItem,
         this.menuItem6,
         this.ClearEventMenuItem
     });
     this.menuItem2.Text = "Events";
     //
     // showExceptionsMenuItem
     //
     this.showExceptionsMenuItem.Index  = 0;
     this.showExceptionsMenuItem.Text   = "Show &Exception Messages";
     this.showExceptionsMenuItem.Click += new System.EventHandler(this.showExceptionsMenuItem_Click);
     //
     // showWarningsMenuItem
     //
     this.showWarningsMenuItem.Index  = 1;
     this.showWarningsMenuItem.Text   = "Show &Warning Messages";
     this.showWarningsMenuItem.Click += new System.EventHandler(this.showWarningsMenuItem_Click);
     //
     // showInformationMenuItem
     //
     this.showInformationMenuItem.Index  = 2;
     this.showInformationMenuItem.Text   = "Show &Information Messages";
     this.showInformationMenuItem.Click += new System.EventHandler(this.showInformationMenuItem_Click);
     //
     // showAuditMenuItem
     //
     this.showAuditMenuItem.Index  = 3;
     this.showAuditMenuItem.Text   = "Show &Audit Messages";
     this.showAuditMenuItem.Click += new System.EventHandler(this.showAuditMenuItem_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index = 4;
     this.menuItem5.Text  = "-";
     //
     // haltOnExceptionsMenuItem
     //
     this.haltOnExceptionsMenuItem.Index  = 5;
     this.haltOnExceptionsMenuItem.Text   = "&Halt On Exceptions";
     this.haltOnExceptionsMenuItem.Click += new System.EventHandler(this.haltOnExceptionsMenuItem_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 6;
     this.menuItem6.Text  = "-";
     //
     // ClearEventMenuItem
     //
     this.ClearEventMenuItem.Index  = 7;
     this.ClearEventMenuItem.Text   = "&Clear Event Log";
     this.ClearEventMenuItem.Click += new System.EventHandler(this.ClearEventMenuItem_Click);
     //
     // tabControl1
     //
     this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 28);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(480, 413);
     this.tabControl1.TabIndex      = 2;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.EventText);
     this.tabPage2.Controls.Add(this.splitter1);
     this.tabPage2.Controls.Add(this.EventListView);
     this.tabPage2.Location = new System.Drawing.Point(4, 4);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(472, 387);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Events";
     //
     // EventText
     //
     this.EventText.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.EventText.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.EventText.Location    = new System.Drawing.Point(0, 179);
     this.EventText.Multiline   = true;
     this.EventText.Name        = "EventText";
     this.EventText.ReadOnly    = true;
     this.EventText.ScrollBars  = System.Windows.Forms.ScrollBars.Vertical;
     this.EventText.Size        = new System.Drawing.Size(472, 208);
     this.EventText.TabIndex    = 1;
     this.EventText.TabStop     = false;
     //
     // splitter1
     //
     this.splitter1.BackColor = System.Drawing.SystemColors.ControlDark;
     this.splitter1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location  = new System.Drawing.Point(0, 176);
     this.splitter1.Name      = "splitter1";
     this.splitter1.Size      = new System.Drawing.Size(472, 3);
     this.splitter1.TabIndex  = 2;
     this.splitter1.TabStop   = false;
     //
     // EventListView
     //
     this.EventListView.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.EventListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader4,
         this.columnHeader3
     });
     this.EventListView.Dock           = System.Windows.Forms.DockStyle.Top;
     this.EventListView.FullRowSelect  = true;
     this.EventListView.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.EventListView.LargeImageList = this.iconImageList;
     this.EventListView.Location       = new System.Drawing.Point(0, 0);
     this.EventListView.MultiSelect    = false;
     this.EventListView.Name           = "EventListView";
     this.EventListView.Size           = new System.Drawing.Size(472, 176);
     this.EventListView.SmallImageList = this.iconImageList;
     this.EventListView.TabIndex       = 0;
     this.EventListView.UseCompatibleStateImageBehavior = false;
     this.EventListView.View = System.Windows.Forms.View.Details;
     this.EventListView.SelectedIndexChanged += new System.EventHandler(this.EventListView_SelectedIndexChanged);
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "Origin";
     this.columnHeader4.Width = 150;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Message";
     this.columnHeader3.Width = 300;
     //
     // iconImageList
     //
     this.iconImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("iconImageList.ImageStream")));
     this.iconImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.iconImageList.Images.SetKeyName(0, "");
     this.iconImageList.Images.SetKeyName(1, "");
     this.iconImageList.Images.SetKeyName(2, "");
     this.iconImageList.Images.SetKeyName(3, "");
     this.iconImageList.Images.SetKeyName(4, "");
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.instanceListView);
     this.tabPage1.Location = new System.Drawing.Point(4, 4);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(472, 390);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Instances";
     //
     // instanceListView
     //
     this.instanceListView.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.instanceListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2
     });
     this.instanceListView.ContextMenu   = this.DetailMenu;
     this.instanceListView.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.instanceListView.FullRowSelect = true;
     this.instanceListView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.instanceListView.Location      = new System.Drawing.Point(0, 0);
     this.instanceListView.MultiSelect   = false;
     this.instanceListView.Name          = "instanceListView";
     this.instanceListView.Size          = new System.Drawing.Size(472, 390);
     this.instanceListView.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     this.instanceListView.TabIndex      = 1;
     this.instanceListView.UseCompatibleStateImageBehavior = false;
     this.instanceListView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Count";
     this.columnHeader1.Width = 81;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Object";
     this.columnHeader2.Width = 370;
     //
     // ToolsIconList
     //
     this.ToolsIconList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ToolsIconList.ImageStream")));
     this.ToolsIconList.TransparentColor = System.Drawing.Color.Transparent;
     this.ToolsIconList.Images.SetKeyName(0, "");
     this.ToolsIconList.Images.SetKeyName(1, "");
     this.ToolsIconList.Images.SetKeyName(2, "");
     this.ToolsIconList.Images.SetKeyName(3, "");
     this.ToolsIconList.Images.SetKeyName(4, "");
     this.ToolsIconList.Images.SetKeyName(5, "");
     this.ToolsIconList.Images.SetKeyName(6, "");
     //
     // eventToolBar
     //
     this.eventToolBar.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
     this.eventToolBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.toolBarButton3,
         this.showExceptionsToolBarButton,
         this.showWarningEventsToolBarButton,
         this.showInformationEventsToolBarButton,
         this.showAuditEventsToolBarButton,
         this.toolBarButton1,
         this.clearEventLogToolBarButton,
         this.toolBarButton2,
         this.gcToolBarButton
     });
     this.eventToolBar.DropDownArrows = true;
     this.eventToolBar.ImageList      = this.ToolsIconList;
     this.eventToolBar.Location       = new System.Drawing.Point(0, 0);
     this.eventToolBar.Name           = "eventToolBar";
     this.eventToolBar.ShowToolTips   = true;
     this.eventToolBar.Size           = new System.Drawing.Size(480, 28);
     this.eventToolBar.TabIndex       = 4;
     this.eventToolBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.eventToolBar_ButtonClick);
     //
     // toolBarButton3
     //
     this.toolBarButton3.Name  = "toolBarButton3";
     this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // showExceptionsToolBarButton
     //
     this.showExceptionsToolBarButton.ImageIndex  = 3;
     this.showExceptionsToolBarButton.Name        = "showExceptionsToolBarButton";
     this.showExceptionsToolBarButton.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.showExceptionsToolBarButton.ToolTipText = "Show Exception Messages";
     //
     // showWarningEventsToolBarButton
     //
     this.showWarningEventsToolBarButton.ImageIndex  = 2;
     this.showWarningEventsToolBarButton.Name        = "showWarningEventsToolBarButton";
     this.showWarningEventsToolBarButton.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.showWarningEventsToolBarButton.ToolTipText = "Show Warnings Messages";
     //
     // showInformationEventsToolBarButton
     //
     this.showInformationEventsToolBarButton.ImageIndex  = 1;
     this.showInformationEventsToolBarButton.Name        = "showInformationEventsToolBarButton";
     this.showInformationEventsToolBarButton.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.showInformationEventsToolBarButton.ToolTipText = "Show Information Messages";
     //
     // showAuditEventsToolBarButton
     //
     this.showAuditEventsToolBarButton.ImageIndex  = 6;
     this.showAuditEventsToolBarButton.Name        = "showAuditEventsToolBarButton";
     this.showAuditEventsToolBarButton.Style       = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.showAuditEventsToolBarButton.ToolTipText = "Show Audit Messages";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Name  = "toolBarButton1";
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // clearEventLogToolBarButton
     //
     this.clearEventLogToolBarButton.ImageIndex  = 4;
     this.clearEventLogToolBarButton.Name        = "clearEventLogToolBarButton";
     this.clearEventLogToolBarButton.ToolTipText = "Clear Event Log";
     //
     // toolBarButton2
     //
     this.toolBarButton2.ImageIndex = 5;
     this.toolBarButton2.Name       = "toolBarButton2";
     this.toolBarButton2.Style      = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     // gcToolBarButton
     //
     this.gcToolBarButton.ImageIndex  = 5;
     this.gcToolBarButton.Name        = "gcToolBarButton";
     this.gcToolBarButton.ToolTipText = "Force Garbage Collection";
     //
     // saveLogFileDialog
     //
     this.saveLogFileDialog.DefaultExt = "log";
     this.saveLogFileDialog.FileName   = "DebugInformation.log";
     this.saveLogFileDialog.Filter     = "Log Files|*.log";
     this.saveLogFileDialog.Title      = "Save Debug Information Log";
     //
     // InstanceTracker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(480, 457);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.eventToolBar);
     this.Controls.Add(this.statusBar);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu          = this.mainMenu;
     this.Name          = "InstanceTracker";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Debug Information";
     this.Closed       += new System.EventHandler(this.InstanceTracker_Closed);
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.InstanceTracker_FormClosing);
     this.Load         += new System.EventHandler(this.InstanceTracker_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #33
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtSrcFile          = new System.Windows.Forms.TextBox();
     this.btnSrcFile          = new System.Windows.Forms.Button();
     this.btnDstFile          = new System.Windows.Forms.Button();
     this.txtDstFile          = new System.Windows.Forms.TextBox();
     this.label2              = new System.Windows.Forms.Label();
     this.btnHide             = new System.Windows.Forms.Button();
     this.txtMessage          = new System.Windows.Forms.TextBox();
     this.tabCtl              = new System.Windows.Forms.TabControl();
     this.tabHide             = new System.Windows.Forms.TabPage();
     this.rdoMsgText          = new System.Windows.Forms.RadioButton();
     this.btnMsgFile1         = new System.Windows.Forms.Button();
     this.txtMsgFile          = new System.Windows.Forms.TextBox();
     this.rdoMsgFile          = new System.Windows.Forms.RadioButton();
     this.tabExtract          = new System.Windows.Forms.TabPage();
     this.btnMessageDstFile   = new System.Windows.Forms.Button();
     this.txtMessageDstFile   = new System.Windows.Forms.TextBox();
     this.rdoMessageDisplay   = new System.Windows.Forms.RadioButton();
     this.rdoMessageDstFile   = new System.Windows.Forms.RadioButton();
     this.txtExtractedMessage = new System.Windows.Forms.TextBox();
     this.btnExtract          = new System.Windows.Forms.Button();
     this.label5              = new System.Windows.Forms.Label();
     this.btnKeyFile          = new System.Windows.Forms.Button();
     this.txtKeyFile          = new System.Windows.Forms.TextBox();
     this.rdoSrcFile          = new System.Windows.Forms.RadioButton();
     this.rdoRecord           = new System.Windows.Forms.RadioButton();
     this.errorProvider       = new System.Windows.Forms.ErrorProvider();
     this.tabCtl.SuspendLayout();
     this.tabHide.SuspendLayout();
     this.tabExtract.SuspendLayout();
     this.SuspendLayout();
     //
     // txtSrcFile
     //
     this.errorProvider.SetIconAlignment(this.txtSrcFile, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtSrcFile.Location     = new System.Drawing.Point(145, 21);
     this.txtSrcFile.Name         = "txtSrcFile";
     this.txtSrcFile.Size         = new System.Drawing.Size(382, 22);
     this.txtSrcFile.TabIndex     = 0;
     this.txtSrcFile.Text         = "";
     this.txtSrcFile.TextChanged += new System.EventHandler(this.textField_TextChanged);
     //
     // btnSrcFile
     //
     this.btnSrcFile.Location = new System.Drawing.Point(529, 21);
     this.btnSrcFile.Name     = "btnSrcFile";
     this.btnSrcFile.Size     = new System.Drawing.Size(102, 28);
     this.btnSrcFile.TabIndex = 1;
     this.btnSrcFile.Text     = "Browse...";
     this.btnSrcFile.Click   += new System.EventHandler(this.btnSrcFile_Click);
     //
     // btnDstFile
     //
     this.btnDstFile.Location = new System.Drawing.Point(594, 21);
     this.btnDstFile.Name     = "btnDstFile";
     this.btnDstFile.Size     = new System.Drawing.Size(102, 28);
     this.btnDstFile.TabIndex = 1;
     this.btnDstFile.Text     = "Browse...";
     this.btnDstFile.Click   += new System.EventHandler(this.btnDstFile_Click);
     //
     // txtDstFile
     //
     this.errorProvider.SetIconAlignment(this.txtDstFile, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtDstFile.Location     = new System.Drawing.Point(195, 21);
     this.txtDstFile.Name         = "txtDstFile";
     this.txtDstFile.Size         = new System.Drawing.Size(382, 22);
     this.txtDstFile.TabIndex     = 0;
     this.txtDstFile.Text         = "";
     this.txtDstFile.TextChanged += new System.EventHandler(this.textField_TextChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(51, 21);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(123, 31);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Save Result as";
     //
     // btnHide
     //
     this.btnHide.Location = new System.Drawing.Point(297, 237);
     this.btnHide.Name     = "btnHide";
     this.btnHide.Size     = new System.Drawing.Size(164, 30);
     this.btnHide.TabIndex = 3;
     this.btnHide.Text     = "Hide Message";
     this.btnHide.Click   += new System.EventHandler(this.btnHide_Click);
     //
     // txtMessage
     //
     this.errorProvider.SetIconAlignment(this.txtMessage, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtMessage.Location     = new System.Drawing.Point(195, 99);
     this.txtMessage.Multiline    = true;
     this.txtMessage.Name         = "txtMessage";
     this.txtMessage.Size         = new System.Drawing.Size(378, 128);
     this.txtMessage.TabIndex     = 4;
     this.txtMessage.Text         = "";
     this.txtMessage.TextChanged += new System.EventHandler(this.textField_TextChanged);
     this.txtMessage.Enter       += new System.EventHandler(this.txtMessage_Enter);
     //
     // tabCtl
     //
     this.tabCtl.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabHide,
         this.tabExtract
     });
     this.tabCtl.Location              = new System.Drawing.Point(10, 172);
     this.tabCtl.Name                  = "tabCtl";
     this.tabCtl.SelectedIndex         = 0;
     this.tabCtl.Size                  = new System.Drawing.Size(727, 315);
     this.tabCtl.TabIndex              = 5;
     this.tabCtl.SelectedIndexChanged += new System.EventHandler(this.tabCtl_SelectedIndexChanged);
     //
     // tabHide
     //
     this.tabHide.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.rdoMsgText,
         this.btnMsgFile1,
         this.txtMsgFile,
         this.rdoMsgFile,
         this.txtMessage,
         this.btnHide,
         this.label2,
         this.btnDstFile,
         this.txtDstFile
     });
     this.tabHide.Location = new System.Drawing.Point(4, 25);
     this.tabHide.Name     = "tabHide";
     this.tabHide.Size     = new System.Drawing.Size(719, 286);
     this.tabHide.TabIndex = 0;
     this.tabHide.Text     = "Hide";
     //
     // rdoMsgText
     //
     this.rdoMsgText.Checked         = true;
     this.rdoMsgText.Location        = new System.Drawing.Point(31, 99);
     this.rdoMsgText.Name            = "rdoMsgText";
     this.rdoMsgText.Size            = new System.Drawing.Size(123, 29);
     this.rdoMsgText.TabIndex        = 8;
     this.rdoMsgText.TabStop         = true;
     this.rdoMsgText.Text            = "Hide Text";
     this.rdoMsgText.CheckedChanged += new System.EventHandler(this.rdoContent_CheckedChanged);
     //
     // btnMsgFile1
     //
     this.btnMsgFile1.Location = new System.Drawing.Point(594, 59);
     this.btnMsgFile1.Name     = "btnMsgFile1";
     this.btnMsgFile1.Size     = new System.Drawing.Size(102, 30);
     this.btnMsgFile1.TabIndex = 7;
     this.btnMsgFile1.Text     = "Browse...";
     this.btnMsgFile1.Click   += new System.EventHandler(this.btnMsgFile_Click);
     //
     // txtMsgFile
     //
     this.errorProvider.SetIconAlignment(this.txtMsgFile, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtMsgFile.Location     = new System.Drawing.Point(195, 59);
     this.txtMsgFile.Name         = "txtMsgFile";
     this.txtMsgFile.Size         = new System.Drawing.Size(382, 22);
     this.txtMsgFile.TabIndex     = 6;
     this.txtMsgFile.Text         = "";
     this.txtMsgFile.TextChanged += new System.EventHandler(this.textField_TextChanged);
     this.txtMsgFile.Enter       += new System.EventHandler(this.txtMsgFile_Enter);
     //
     // rdoMsgFile
     //
     this.rdoMsgFile.Location        = new System.Drawing.Point(31, 59);
     this.rdoMsgFile.Name            = "rdoMsgFile";
     this.rdoMsgFile.Size            = new System.Drawing.Size(174, 30);
     this.rdoMsgFile.TabIndex        = 5;
     this.rdoMsgFile.Text            = "Hide Content of File";
     this.rdoMsgFile.CheckedChanged += new System.EventHandler(this.rdoContent_CheckedChanged);
     //
     // tabExtract
     //
     this.tabExtract.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btnMessageDstFile,
         this.txtMessageDstFile,
         this.rdoMessageDisplay,
         this.rdoMessageDstFile,
         this.txtExtractedMessage,
         this.btnExtract
     });
     this.tabExtract.Location = new System.Drawing.Point(4, 25);
     this.tabExtract.Name     = "tabExtract";
     this.tabExtract.Size     = new System.Drawing.Size(719, 286);
     this.tabExtract.TabIndex = 1;
     this.tabExtract.Text     = "Extract";
     //
     // btnMessageDstFile
     //
     this.btnMessageDstFile.Location = new System.Drawing.Point(573, 20);
     this.btnMessageDstFile.Name     = "btnMessageDstFile";
     this.btnMessageDstFile.Size     = new System.Drawing.Size(103, 28);
     this.btnMessageDstFile.TabIndex = 12;
     this.btnMessageDstFile.Text     = "Browse...";
     this.btnMessageDstFile.Click   += new System.EventHandler(this.btnMessageDstFile_Click);
     //
     // txtMessageDstFile
     //
     this.errorProvider.SetIconAlignment(this.txtMessageDstFile, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtMessageDstFile.Location     = new System.Drawing.Point(184, 20);
     this.txtMessageDstFile.Name         = "txtMessageDstFile";
     this.txtMessageDstFile.Size         = new System.Drawing.Size(383, 22);
     this.txtMessageDstFile.TabIndex     = 11;
     this.txtMessageDstFile.Text         = "";
     this.txtMessageDstFile.TextChanged += new System.EventHandler(this.textField_TextChanged);
     this.txtMessageDstFile.Enter       += new System.EventHandler(this.txtMessageDstFile_Enter);
     //
     // rdoMessageDisplay
     //
     this.rdoMessageDisplay.Checked  = true;
     this.rdoMessageDisplay.Location = new System.Drawing.Point(31, 59);
     this.rdoMessageDisplay.Name     = "rdoMessageDisplay";
     this.rdoMessageDisplay.Size     = new System.Drawing.Size(143, 30);
     this.rdoMessageDisplay.TabIndex = 10;
     this.rdoMessageDisplay.TabStop  = true;
     this.rdoMessageDisplay.Text     = "Display Message";
     //
     // rdoMessageDstFile
     //
     this.rdoMessageDstFile.Location = new System.Drawing.Point(31, 16);
     this.rdoMessageDstFile.Name     = "rdoMessageDstFile";
     this.rdoMessageDstFile.Size     = new System.Drawing.Size(153, 29);
     this.rdoMessageDstFile.TabIndex = 9;
     this.rdoMessageDstFile.Text     = "Save Message as";
     //
     // txtExtractedMessage
     //
     this.errorProvider.SetIconAlignment(this.txtExtractedMessage, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtExtractedMessage.Location     = new System.Drawing.Point(184, 69);
     this.txtExtractedMessage.Multiline    = true;
     this.txtExtractedMessage.Name         = "txtExtractedMessage";
     this.txtExtractedMessage.Size         = new System.Drawing.Size(379, 119);
     this.txtExtractedMessage.TabIndex     = 7;
     this.txtExtractedMessage.Text         = "";
     this.txtExtractedMessage.TextChanged += new System.EventHandler(this.textField_TextChanged);
     this.txtExtractedMessage.Enter       += new System.EventHandler(this.txtExtractedMessage_Enter);
     //
     // btnExtract
     //
     this.btnExtract.Location = new System.Drawing.Point(297, 237);
     this.btnExtract.Name     = "btnExtract";
     this.btnExtract.Size     = new System.Drawing.Size(164, 30);
     this.btnExtract.TabIndex = 6;
     this.btnExtract.Text     = "Extract Message";
     this.btnExtract.Click   += new System.EventHandler(this.btnExtract_Click);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(68, 112);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(77, 31);
     this.label5.TabIndex = 2;
     this.label5.Text     = "Key File";
     //
     // btnKeyFile
     //
     this.btnKeyFile.Location = new System.Drawing.Point(529, 112);
     this.btnKeyFile.Name     = "btnKeyFile";
     this.btnKeyFile.Size     = new System.Drawing.Size(102, 27);
     this.btnKeyFile.TabIndex = 1;
     this.btnKeyFile.Text     = "Browse...";
     this.btnKeyFile.Click   += new System.EventHandler(this.btnKeyFile_Click);
     //
     // txtKeyFile
     //
     this.errorProvider.SetIconAlignment(this.txtKeyFile, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     this.txtKeyFile.Location     = new System.Drawing.Point(145, 112);
     this.txtKeyFile.Name         = "txtKeyFile";
     this.txtKeyFile.Size         = new System.Drawing.Size(382, 22);
     this.txtKeyFile.TabIndex     = 0;
     this.txtKeyFile.Text         = "";
     this.txtKeyFile.TextChanged += new System.EventHandler(this.textField_TextChanged);
     //
     // rdoSrcFile
     //
     this.rdoSrcFile.Location        = new System.Drawing.Point(51, 16);
     this.rdoSrcFile.Name            = "rdoSrcFile";
     this.rdoSrcFile.Size            = new System.Drawing.Size(94, 26);
     this.rdoSrcFile.TabIndex        = 6;
     this.rdoSrcFile.Text            = "Wave File";
     this.rdoSrcFile.CheckedChanged += new System.EventHandler(this.rdoCarrierWave_CheckedChanged);
     //
     // rdoRecord
     //
     this.rdoRecord.Checked         = true;
     this.rdoRecord.Location        = new System.Drawing.Point(51, 60);
     this.rdoRecord.Name            = "rdoRecord";
     this.rdoRecord.Size            = new System.Drawing.Size(222, 25);
     this.rdoRecord.TabIndex        = 6;
     this.rdoRecord.TabStop         = true;
     this.rdoRecord.Text            = "Record a Wave on the fly";
     this.rdoRecord.CheckedChanged += new System.EventHandler(this.rdoCarrierWave_CheckedChanged);
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(752, 503);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.rdoSrcFile,
         this.tabCtl,
         this.btnSrcFile,
         this.txtSrcFile,
         this.txtKeyFile,
         this.label5,
         this.btnKeyFile,
         this.rdoRecord
     });
     this.Name = "frmMain";
     this.Text = "SteganoWave";
     this.tabCtl.ResumeLayout(false);
     this.tabHide.ResumeLayout(false);
     this.tabExtract.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.statusBar1      = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel3 = new System.Windows.Forms.StatusBarPanel();
     this.mainMenu1       = new System.Windows.Forms.MainMenu();
     this.menuItem1       = new System.Windows.Forms.MenuItem();
     this.menuItem2       = new System.Windows.Forms.MenuItem();
     this.menuItem3       = new System.Windows.Forms.MenuItem();
     this.menuItem4       = new System.Windows.Forms.MenuItem();
     this.menuItem5       = new System.Windows.Forms.MenuItem();
     this.menuItem6       = new System.Windows.Forms.MenuItem();
     this.menuItem7       = new System.Windows.Forms.MenuItem();
     this.menuItem8       = new System.Windows.Forms.MenuItem();
     this.menuItem9       = new System.Windows.Forms.MenuItem();
     this.menuItem10      = new System.Windows.Forms.MenuItem();
     this.menuItem11      = new System.Windows.Forms.MenuItem();
     this.menuItem12      = new System.Windows.Forms.MenuItem();
     this.menuItem13      = new System.Windows.Forms.MenuItem();
     this.menuItem14      = new System.Windows.Forms.MenuItem();
     this.menuItem15      = new System.Windows.Forms.MenuItem();
     this.menuItem16      = new System.Windows.Forms.MenuItem();
     this.menuItem17      = new System.Windows.Forms.MenuItem();
     this.menuItem18      = new System.Windows.Forms.MenuItem();
     this.menuItem19      = new System.Windows.Forms.MenuItem();
     this.tabControl1     = new System.Windows.Forms.TabControl();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.button2         = new System.Windows.Forms.Button();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.button1         = new System.Windows.Forms.Button();
     this.textBox3        = new System.Windows.Forms.TextBox();
     this.label5          = new System.Windows.Forms.Label();
     this.label6          = new System.Windows.Forms.Label();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.label4          = new System.Windows.Forms.Label();
     this.label3          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.label1          = new System.Windows.Forms.Label();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.radioButton2    = new System.Windows.Forms.RadioButton();
     this.radioButton1    = new System.Windows.Forms.RadioButton();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.tabPage3        = new System.Windows.Forms.TabPage();
     this.tabPage4        = new System.Windows.Forms.TabPage();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 369);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel1,
         this.statusBarPanel2,
         this.statusBarPanel3
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(600, 32);
     this.statusBar1.TabIndex   = 0;
     this.statusBar1.Text       = "statusBar1";
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel1.Text     = "c:\\program files\\whatever\\somefile.dat";
     this.statusBarPanel1.Width    = 371;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanel2.Text     = "Login User = Admin";
     this.statusBarPanel2.Width    = 114;
     //
     // statusBarPanel3
     //
     this.statusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     this.statusBarPanel3.Text     = "10/12/02 3:53pm";
     this.statusBarPanel3.Width    = 99;
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem8,
         this.menuItem16,
         this.menuItem17
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2,
         this.menuItem3,
         this.menuItem4,
         this.menuItem5,
         this.menuItem6,
         this.menuItem7
     });
     this.menuItem1.Text = "&File";
     //
     // menuItem2
     //
     this.menuItem2.Index = 0;
     this.menuItem2.Text  = "&New";
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.Text  = "&Open";
     //
     // menuItem4
     //
     this.menuItem4.Index = 2;
     this.menuItem4.Text  = "&Save";
     //
     // menuItem5
     //
     this.menuItem5.Index = 3;
     this.menuItem5.Text  = "Save &As...";
     //
     // menuItem6
     //
     this.menuItem6.Index = 4;
     this.menuItem6.Text  = "-";
     //
     // menuItem7
     //
     this.menuItem7.Index = 5;
     this.menuItem7.Text  = "E&xit";
     //
     // menuItem8
     //
     this.menuItem8.Index = 1;
     this.menuItem8.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem9,
         this.menuItem10,
         this.menuItem11,
         this.menuItem12,
         this.menuItem13,
         this.menuItem14,
         this.menuItem15
     });
     this.menuItem8.Text = "&Edit";
     //
     // menuItem9
     //
     this.menuItem9.Index = 0;
     this.menuItem9.Text  = "&Undo";
     //
     // menuItem10
     //
     this.menuItem10.Index = 1;
     this.menuItem10.Text  = "-";
     //
     // menuItem11
     //
     this.menuItem11.Index = 2;
     this.menuItem11.Text  = "Cu&t";
     //
     // menuItem12
     //
     this.menuItem12.Index = 3;
     this.menuItem12.Text  = "&Copy";
     //
     // menuItem13
     //
     this.menuItem13.Index = 4;
     this.menuItem13.Text  = "&Paste";
     //
     // menuItem14
     //
     this.menuItem14.Index = 5;
     this.menuItem14.Text  = "-";
     //
     // menuItem15
     //
     this.menuItem15.Index = 6;
     this.menuItem15.Text  = "&Search";
     //
     // menuItem16
     //
     this.menuItem16.Index = 2;
     this.menuItem16.Text  = "&Tools";
     //
     // menuItem17
     //
     this.menuItem17.Index = 3;
     this.menuItem17.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem18,
         this.menuItem19
     });
     this.menuItem17.Text = "&Help";
     //
     // menuItem18
     //
     this.menuItem18.Index = 0;
     this.menuItem18.Text  = "&Help";
     //
     // menuItem19
     //
     this.menuItem19.Index = 1;
     this.menuItem19.Text  = "&About...";
     //
     // tabControl1
     //
     this.tabControl1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabPage1,
         this.tabPage2,
         this.tabPage3,
         this.tabPage4
     });
     this.tabControl1.Location      = new System.Drawing.Point(16, 16);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(552, 328);
     this.tabControl1.SizeMode      = System.Windows.Forms.TabSizeMode.Fixed;
     this.tabControl1.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.button2,
         this.groupBox1,
         this.label1,
         this.checkedListBox1,
         this.radioButton2,
         this.radioButton1
     });
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(544, 302);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Body Parts";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(32, 256);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(64, 24);
     this.button2.TabIndex = 7;
     this.button2.Text     = "&Delete";
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.button1,
         this.textBox3,
         this.label5,
         this.label6,
         this.textBox2,
         this.label4,
         this.label3,
         this.label2,
         this.textBox1
     });
     this.groupBox1.Location = new System.Drawing.Point(256, 64);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(264, 160);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Add New Item";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(176, 120);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(72, 24);
     this.button1.TabIndex = 14;
     this.button1.Text     = "&Apply";
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(72, 112);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(56, 20);
     this.textBox3.TabIndex = 13;
     this.textBox3.Text     = "";
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(56, 112);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(16, 16);
     this.label5.TabIndex  = 12;
     this.label5.Text      = "$";
     this.label5.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 112);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(40, 16);
     this.label6.TabIndex = 11;
     this.label6.Text     = "Price:";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(72, 80);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(56, 20);
     this.textBox2.TabIndex = 10;
     this.textBox2.Text     = "";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(56, 80);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(16, 16);
     this.label4.TabIndex  = 9;
     this.label4.Text      = "S";
     this.label4.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 80);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(40, 16);
     this.label3.TabIndex = 8;
     this.label3.Text     = "Code:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(192, 16);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Description";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(16, 40);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(200, 20);
     this.textBox1.TabIndex = 6;
     this.textBox1.Text     = "";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(24, 48);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(208, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Parts List";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // checkedListBox1
     //
     this.checkedListBox1.Items.AddRange(new object[] {
         "Door, Right Front",
         "Door, Left Rear",
         "Fender, Right Front",
         "Fender, Left Front",
         "Hood",
         "Trunk"
     });
     this.checkedListBox1.Location = new System.Drawing.Point(24, 64);
     this.checkedListBox1.Name     = "checkedListBox1";
     this.checkedListBox1.Size     = new System.Drawing.Size(208, 184);
     this.checkedListBox1.TabIndex = 2;
     //
     // radioButton2
     //
     this.radioButton2.Location = new System.Drawing.Point(192, 16);
     this.radioButton2.Name     = "radioButton2";
     this.radioButton2.Size     = new System.Drawing.Size(128, 16);
     this.radioButton2.TabIndex = 1;
     this.radioButton2.Text     = "Glass";
     //
     // radioButton1
     //
     this.radioButton1.Checked  = true;
     this.radioButton1.Location = new System.Drawing.Point(24, 16);
     this.radioButton1.Name     = "radioButton1";
     this.radioButton1.Size     = new System.Drawing.Size(128, 16);
     this.radioButton1.TabIndex = 0;
     this.radioButton1.TabStop  = true;
     this.radioButton1.Text     = "Sheet Metal";
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(544, 302);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Engine Parts";
     //
     // tabPage3
     //
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(544, 302);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Drive Train";
     //
     // tabPage4
     //
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(544, 302);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "Knobs/Lights etc";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(600, 401);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabControl1,
         this.statusBar1
     });
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu          = this.mainMenu1;
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Whatever Super Editor";
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.listView1        = new System.Windows.Forms.ListView();
     this.columnHeader1    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3    = new System.Windows.Forms.ColumnHeader();
     this.imageList1       = new System.Windows.Forms.ImageList(this.components);
     this.listView2        = new System.Windows.Forms.ListView();
     this.columnHeader2    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4    = new System.Windows.Forms.ColumnHeader();
     this.imageList2       = new System.Windows.Forms.ImageList(this.components);
     this.richTextBox1     = new System.Windows.Forms.RichTextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.button1          = new System.Windows.Forms.Button();
     this.btnLeft          = new System.Windows.Forms.Button();
     this.btnRight         = new System.Windows.Forms.Button();
     this.label3           = new System.Windows.Forms.Label();
     this.comboBox1        = new System.Windows.Forms.ComboBox();
     this.tabControl1      = new System.Windows.Forms.TabControl();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.txtSenha         = new System.Windows.Forms.TextBox();
     this.label4           = new System.Windows.Forms.Label();
     this.progressBar1     = new System.Windows.Forms.ProgressBar();
     this.tabPage2         = new System.Windows.Forms.TabPage();
     this.btnRemoveDir     = new System.Windows.Forms.Button();
     this.btnAddDir        = new System.Windows.Forms.Button();
     this.lbFolders        = new System.Windows.Forms.ListBox();
     this.tabPage3         = new System.Windows.Forms.TabPage();
     this.pictureBox1      = new System.Windows.Forms.PictureBox();
     this.label5           = new System.Windows.Forms.Label();
     this.txtSenhaConfirma = new System.Windows.Forms.TextBox();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.AllowDrop = true;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader3
     });
     this.listView1.FullRowSelect  = true;
     this.listView1.GridLines      = true;
     this.listView1.Location       = new System.Drawing.Point(8, 64);
     this.listView1.Name           = "listView1";
     this.listView1.Size           = new System.Drawing.Size(240, 224);
     this.listView1.SmallImageList = this.imageList1;
     this.listView1.Sorting        = System.Windows.Forms.SortOrder.Ascending;
     this.listView1.TabIndex       = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View          = System.Windows.Forms.View.Details;
     this.listView1.ItemActivate += new System.EventHandler(this.listView1_ItemActivate);
     this.listView1.ColumnClick  += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Nome";
     this.columnHeader1.Width = 140;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Tamanho";
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // listView2
     //
     this.listView2.AllowDrop = true;
     this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader2,
         this.columnHeader4
     });
     this.listView2.FullRowSelect  = true;
     this.listView2.GridLines      = true;
     this.listView2.Location       = new System.Drawing.Point(296, 64);
     this.listView2.Name           = "listView2";
     this.listView2.Size           = new System.Drawing.Size(240, 224);
     this.listView2.SmallImageList = this.imageList2;
     this.listView2.Sorting        = System.Windows.Forms.SortOrder.Ascending;
     this.listView2.TabIndex       = 0;
     this.listView2.UseCompatibleStateImageBehavior = false;
     this.listView2.View          = System.Windows.Forms.View.Details;
     this.listView2.ItemActivate += new System.EventHandler(this.listView2_ItemActivate);
     this.listView2.ColumnClick  += new System.Windows.Forms.ColumnClickEventHandler(this.listView2_ColumnClick);
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Nome";
     this.columnHeader2.Width = 140;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Tamanho";
     //
     // imageList2
     //
     this.imageList2.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList2.Images.SetKeyName(0, "");
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(8, 296);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.Size     = new System.Drawing.Size(528, 88);
     this.richTextBox1.TabIndex = 1;
     this.richTextBox1.Text     = "";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(200, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Arquivos Originais";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(296, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(216, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Arquivos Criptografados";
     //
     // button1
     //
     this.button1.BackgroundImage = global::CryptoSafe.Properties.Resources.refresh;
     this.button1.Location        = new System.Drawing.Point(261, 168);
     this.button1.Name            = "button1";
     this.button1.Size            = new System.Drawing.Size(22, 23);
     this.button1.TabIndex        = 3;
     this.button1.Click          += new System.EventHandler(this.button1_Click);
     //
     // btnLeft
     //
     this.btnLeft.Location = new System.Drawing.Point(256, 216);
     this.btnLeft.Name     = "btnLeft";
     this.btnLeft.Size     = new System.Drawing.Size(32, 23);
     this.btnLeft.TabIndex = 4;
     this.btnLeft.Text     = "<<";
     this.btnLeft.Click   += new System.EventHandler(this.btnLeft_Click);
     //
     // btnRight
     //
     this.btnRight.Location = new System.Drawing.Point(256, 112);
     this.btnRight.Name     = "btnRight";
     this.btnRight.Size     = new System.Drawing.Size(32, 23);
     this.btnRight.TabIndex = 4;
     this.btnRight.Text     = ">>";
     this.btnRight.Click   += new System.EventHandler(this.btnRight_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 5);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(96, 23);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Pasta Atual:";
     //
     // comboBox1
     //
     this.comboBox1.Location              = new System.Drawing.Point(81, 5);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(455, 21);
     this.comboBox1.TabIndex              = 6;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // 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(0, 0);
     this.tabControl1.Name                  = "tabControl1";
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(552, 432);
     this.tabControl1.TabIndex              = 8;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.txtSenhaConfirma);
     this.tabPage1.Controls.Add(this.label5);
     this.tabPage1.Controls.Add(this.txtSenha);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.progressBar1);
     this.tabPage1.Controls.Add(this.btnRight);
     this.tabPage1.Controls.Add(this.listView2);
     this.tabPage1.Controls.Add(this.comboBox1);
     this.tabPage1.Controls.Add(this.listView1);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.btnLeft);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.richTextBox1);
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(544, 406);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Arquivos";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // txtSenha
     //
     this.txtSenha.Location     = new System.Drawing.Point(81, 31);
     this.txtSenha.MaxLength    = 20;
     this.txtSenha.Name         = "txtSenha";
     this.txtSenha.PasswordChar = '*';
     this.txtSenha.Size         = new System.Drawing.Size(167, 20);
     this.txtSenha.TabIndex     = 9;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 31);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(96, 17);
     this.label4.TabIndex = 8;
     this.label4.Text     = "Senha:";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(16, 392);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(504, 8);
     this.progressBar1.TabIndex = 7;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.btnRemoveDir);
     this.tabPage2.Controls.Add(this.btnAddDir);
     this.tabPage2.Controls.Add(this.lbFolders);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(544, 406);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Pastas";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // btnRemoveDir
     //
     this.btnRemoveDir.Location = new System.Drawing.Point(74, 376);
     this.btnRemoveDir.Name     = "btnRemoveDir";
     this.btnRemoveDir.Size     = new System.Drawing.Size(62, 23);
     this.btnRemoveDir.TabIndex = 9;
     this.btnRemoveDir.Text     = "Remover";
     this.btnRemoveDir.Click   += new System.EventHandler(this.btnRemoveDir_Click_1);
     //
     // btnAddDir
     //
     this.btnAddDir.Location = new System.Drawing.Point(8, 376);
     this.btnAddDir.Name     = "btnAddDir";
     this.btnAddDir.Size     = new System.Drawing.Size(60, 23);
     this.btnAddDir.TabIndex = 8;
     this.btnAddDir.Text     = "Adicionar";
     this.btnAddDir.Click   += new System.EventHandler(this.btnAddDir_Click_1);
     //
     // lbFolders
     //
     this.lbFolders.Location = new System.Drawing.Point(0, 8);
     this.lbFolders.Name     = "lbFolders";
     this.lbFolders.Size     = new System.Drawing.Size(536, 355);
     this.lbFolders.TabIndex = 0;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.pictureBox1);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(544, 406);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "About";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // pictureBox1
     //
     this.pictureBox1.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.InitialImage = null;
     this.pictureBox1.Location     = new System.Drawing.Point(17, 140);
     this.pictureBox1.Name         = "pictureBox1";
     this.pictureBox1.Size         = new System.Drawing.Size(507, 89);
     this.pictureBox1.TabIndex     = 0;
     this.pictureBox1.TabStop      = false;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(295, 31);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(96, 17);
     this.label5.TabIndex = 10;
     this.label5.Text     = "Confirma Senha:";
     //
     // txtSenhaConfirma
     //
     this.txtSenhaConfirma.Location     = new System.Drawing.Point(390, 31);
     this.txtSenhaConfirma.MaxLength    = 20;
     this.txtSenhaConfirma.Name         = "txtSenhaConfirma";
     this.txtSenhaConfirma.PasswordChar = '*';
     this.txtSenhaConfirma.Size         = new System.Drawing.Size(146, 20);
     this.txtSenhaConfirma.TabIndex     = 11;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(554, 439);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "Form1";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Criptografia de Arquivos";
     this.Load           += new System.EventHandler(this.Form1_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Example #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frmflussoincassi_default));
     this.icons               = new System.Windows.Forms.ImageList(this.components);
     this.splitter1           = new System.Windows.Forms.Splitter();
     this.MetaDataDetail      = new System.Windows.Forms.TabControl();
     this.tabPrincipale       = new System.Windows.Forms.TabPage();
     this.btnEsitiSospesi     = new System.Windows.Forms.Button();
     this.gboxBill            = new System.Windows.Forms.GroupBox();
     this.btnBill             = new System.Windows.Forms.Button();
     this.txtBill             = new System.Windows.Forms.TextBox();
     this.txtImportoTotale    = new System.Windows.Forms.TextBox();
     this.labelImporto        = new System.Windows.Forms.Label();
     this.label2              = new System.Windows.Forms.Label();
     this.txtEsercizio        = new System.Windows.Forms.TextBox();
     this.label7              = new System.Windows.Forms.Label();
     this.txtDataIncasso      = new System.Windows.Forms.TextBox();
     this.chbElaborato        = new System.Windows.Forms.CheckBox();
     this.textBox1            = new System.Windows.Forms.TextBox();
     this.label1              = new System.Windows.Forms.Label();
     this.chbAttivo           = new System.Windows.Forms.CheckBox();
     this.gboxBilancio        = new System.Windows.Forms.GroupBox();
     this.dataGrid1           = new System.Windows.Forms.DataGrid();
     this.button2             = new System.Windows.Forms.Button();
     this.button3             = new System.Windows.Forms.Button();
     this.button1             = new System.Windows.Forms.Button();
     this.txtCausale          = new System.Windows.Forms.TextBox();
     this.lblCausale          = new System.Windows.Forms.Label();
     this.txtCodice           = new System.Windows.Forms.TextBox();
     this.lblCodiceFlusso     = new System.Windows.Forms.Label();
     this.tabPage1            = new System.Windows.Forms.TabPage();
     this.label4              = new System.Windows.Forms.Label();
     this.txtNomeFileRisposta = new System.Windows.Forms.TextBox();
     this.btnImportaFileEsito = new System.Windows.Forms.Button();
     this.imageList1          = new System.Windows.Forms.ImageList(this.components);
     this.openFileDialog1     = new System.Windows.Forms.OpenFileDialog();
     this.DS = new flussoincassi_default.vistaForm();
     this.MetaDataDetail.SuspendLayout();
     this.tabPrincipale.SuspendLayout();
     this.gboxBill.SuspendLayout();
     this.gboxBilancio.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.SuspendLayout();
     //
     // icons
     //
     this.icons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("icons.ImageStream")));
     this.icons.TransparentColor = System.Drawing.Color.Transparent;
     this.icons.Images.SetKeyName(0, "");
     this.icons.Images.SetKeyName(1, "");
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 602);
     this.splitter1.TabIndex = 4;
     this.splitter1.TabStop  = false;
     //
     // MetaDataDetail
     //
     this.MetaDataDetail.Controls.Add(this.tabPrincipale);
     this.MetaDataDetail.Controls.Add(this.tabPage1);
     this.MetaDataDetail.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.MetaDataDetail.ImageList     = this.imageList1;
     this.MetaDataDetail.Location      = new System.Drawing.Point(3, 0);
     this.MetaDataDetail.Name          = "MetaDataDetail";
     this.MetaDataDetail.SelectedIndex = 0;
     this.MetaDataDetail.Size          = new System.Drawing.Size(723, 602);
     this.MetaDataDetail.TabIndex      = 5;
     //
     // tabPrincipale
     //
     this.tabPrincipale.Controls.Add(this.btnEsitiSospesi);
     this.tabPrincipale.Controls.Add(this.gboxBill);
     this.tabPrincipale.Controls.Add(this.txtImportoTotale);
     this.tabPrincipale.Controls.Add(this.labelImporto);
     this.tabPrincipale.Controls.Add(this.label2);
     this.tabPrincipale.Controls.Add(this.txtEsercizio);
     this.tabPrincipale.Controls.Add(this.label7);
     this.tabPrincipale.Controls.Add(this.txtDataIncasso);
     this.tabPrincipale.Controls.Add(this.chbElaborato);
     this.tabPrincipale.Controls.Add(this.textBox1);
     this.tabPrincipale.Controls.Add(this.label1);
     this.tabPrincipale.Controls.Add(this.chbAttivo);
     this.tabPrincipale.Controls.Add(this.gboxBilancio);
     this.tabPrincipale.Controls.Add(this.txtCausale);
     this.tabPrincipale.Controls.Add(this.lblCausale);
     this.tabPrincipale.Controls.Add(this.txtCodice);
     this.tabPrincipale.Controls.Add(this.lblCodiceFlusso);
     this.tabPrincipale.Location = new System.Drawing.Point(4, 23);
     this.tabPrincipale.Name     = "tabPrincipale";
     this.tabPrincipale.Size     = new System.Drawing.Size(715, 575);
     this.tabPrincipale.TabIndex = 0;
     this.tabPrincipale.Text     = "Principale";
     this.tabPrincipale.UseVisualStyleBackColor = true;
     //
     // btnEsitiSospesi
     //
     this.btnEsitiSospesi.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEsitiSospesi.Location = new System.Drawing.Point(539, 207);
     this.btnEsitiSospesi.Name     = "btnEsitiSospesi";
     this.btnEsitiSospesi.Size     = new System.Drawing.Size(160, 35);
     this.btnEsitiSospesi.TabIndex = 133;
     this.btnEsitiSospesi.Tag      = "maindosearch.default.(to_complete=\'S\' and nbill is null)";
     this.btnEsitiSospesi.Text     = "Esiti sospesi";
     this.btnEsitiSospesi.UseVisualStyleBackColor = true;
     //
     // gboxBill
     //
     this.gboxBill.Controls.Add(this.btnBill);
     this.gboxBill.Controls.Add(this.txtBill);
     this.gboxBill.Location = new System.Drawing.Point(16, 187);
     this.gboxBill.Name     = "gboxBill";
     this.gboxBill.Size     = new System.Drawing.Size(360, 55);
     this.gboxBill.TabIndex = 132;
     this.gboxBill.TabStop  = false;
     this.gboxBill.Tag      = "AutoChoose.txtBill.entrata.(active=\'S\')";
     //
     // btnBill
     //
     this.btnBill.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)));
     this.btnBill.Location = new System.Drawing.Point(16, 18);
     this.btnBill.Name     = "btnBill";
     this.btnBill.Size     = new System.Drawing.Size(75, 23);
     this.btnBill.TabIndex = 1;
     this.btnBill.Tag      = "choose.bill.entrata.(billkind=\'C\')and(active=\'S\')";
     this.btnBill.Text     = "N° bolletta";
     this.btnBill.UseVisualStyleBackColor = true;
     //
     // txtBill
     //
     this.txtBill.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.txtBill.Location = new System.Drawing.Point(100, 20);
     this.txtBill.Name     = "txtBill";
     this.txtBill.Size     = new System.Drawing.Size(242, 20);
     this.txtBill.TabIndex = 0;
     this.txtBill.Tag      = "bill.nbill?flussoincassi.nbill";
     //
     // txtImportoTotale
     //
     this.txtImportoTotale.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtImportoTotale.Location  = new System.Drawing.Point(288, 148);
     this.txtImportoTotale.Name      = "txtImportoTotale";
     this.txtImportoTotale.Size      = new System.Drawing.Size(88, 20);
     this.txtImportoTotale.TabIndex  = 131;
     this.txtImportoTotale.Tag       = "flussoincassi.importo";
     this.txtImportoTotale.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelImporto
     //
     this.labelImporto.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelImporto.Location  = new System.Drawing.Point(286, 130);
     this.labelImporto.Name      = "labelImporto";
     this.labelImporto.Size      = new System.Drawing.Size(87, 16);
     this.labelImporto.TabIndex  = 130;
     this.labelImporto.Text      = "Importo Totale";
     this.labelImporto.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(113, 11);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(70, 16);
     this.label2.TabIndex  = 127;
     this.label2.Text      = "Data Incasso";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtEsercizio
     //
     this.txtEsercizio.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEsercizio.Location  = new System.Drawing.Point(16, 31);
     this.txtEsercizio.Name      = "txtEsercizio";
     this.txtEsercizio.Size      = new System.Drawing.Size(87, 20);
     this.txtEsercizio.TabIndex  = 126;
     this.txtEsercizio.Tag       = "flussoincassi.ayear";
     this.txtEsercizio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label7
     //
     this.label7.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location  = new System.Drawing.Point(16, 11);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(56, 16);
     this.label7.TabIndex  = 124;
     this.label7.Text      = "Esercizio";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtDataIncasso
     //
     this.txtDataIncasso.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDataIncasso.Location  = new System.Drawing.Point(110, 31);
     this.txtDataIncasso.Name      = "txtDataIncasso";
     this.txtDataIncasso.Size      = new System.Drawing.Size(121, 20);
     this.txtDataIncasso.TabIndex  = 125;
     this.txtDataIncasso.Tag       = "flussoincassi.dataincasso";
     this.txtDataIncasso.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // chbElaborato
     //
     this.chbElaborato.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chbElaborato.Location = new System.Drawing.Point(610, 147);
     this.chbElaborato.Name     = "chbElaborato";
     this.chbElaborato.Size     = new System.Drawing.Size(88, 25);
     this.chbElaborato.TabIndex = 26;
     this.chbElaborato.Tag      = "flussoincassi.elaborato:S:N";
     this.chbElaborato.Text     = "Elaborato";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(16, 149);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(267, 20);
     this.textBox1.TabIndex = 24;
     this.textBox1.Tag      = "flussoincassi.trn";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(16, 125);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 24);
     this.label1.TabIndex  = 25;
     this.label1.Text      = "TRN";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // chbAttivo
     //
     this.chbAttivo.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chbAttivo.Location = new System.Drawing.Point(539, 147);
     this.chbAttivo.Name     = "chbAttivo";
     this.chbAttivo.Size     = new System.Drawing.Size(66, 25);
     this.chbAttivo.TabIndex = 23;
     this.chbAttivo.Tag      = "flussoincassi.active:S:N";
     this.chbAttivo.Text     = "Attivo";
     //
     // gboxBilancio
     //
     this.gboxBilancio.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.gboxBilancio.Controls.Add(this.dataGrid1);
     this.gboxBilancio.Controls.Add(this.button2);
     this.gboxBilancio.Controls.Add(this.button3);
     this.gboxBilancio.Controls.Add(this.button1);
     this.gboxBilancio.Location = new System.Drawing.Point(16, 247);
     this.gboxBilancio.Name     = "gboxBilancio";
     this.gboxBilancio.Size     = new System.Drawing.Size(691, 316);
     this.gboxBilancio.TabIndex = 22;
     this.gboxBilancio.TabStop  = false;
     this.gboxBilancio.Text     = "Dettagli";
     //
     // dataGrid1
     //
     this.dataGrid1.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.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(104, 24);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(579, 284);
     this.dataGrid1.TabIndex        = 22;
     this.dataGrid1.Tag             = "flussoincassidetail.default.single";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(16, 56);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 20;
     this.button2.Tag      = "edit.single";
     this.button2.Text     = "Correggi";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(16, 88);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 21;
     this.button3.Tag      = "delete";
     this.button3.Text     = "Cancella";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(16, 24);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 19;
     this.button1.Tag      = "insert.single";
     this.button1.Text     = "Aggiungi";
     //
     // txtCausale
     //
     this.txtCausale.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCausale.Location  = new System.Drawing.Point(16, 80);
     this.txtCausale.Multiline = true;
     this.txtCausale.Name      = "txtCausale";
     this.txtCausale.Size      = new System.Drawing.Size(691, 42);
     this.txtCausale.TabIndex  = 4;
     this.txtCausale.Tag       = "flussoincassi.causale";
     //
     // lblCausale
     //
     this.lblCausale.Location  = new System.Drawing.Point(15, 56);
     this.lblCausale.Name      = "lblCausale";
     this.lblCausale.Size      = new System.Drawing.Size(88, 24);
     this.lblCausale.TabIndex  = 18;
     this.lblCausale.Text      = "Causale";
     this.lblCausale.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtCodice
     //
     this.txtCodice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCodice.Location = new System.Drawing.Point(239, 31);
     this.txtCodice.Name     = "txtCodice";
     this.txtCodice.Size     = new System.Drawing.Size(468, 20);
     this.txtCodice.TabIndex = 1;
     this.txtCodice.Tag      = "flussoincassi.codiceflusso";
     //
     // lblCodiceFlusso
     //
     this.lblCodiceFlusso.Location  = new System.Drawing.Point(239, 7);
     this.lblCodiceFlusso.Name      = "lblCodiceFlusso";
     this.lblCodiceFlusso.Size      = new System.Drawing.Size(160, 24);
     this.lblCodiceFlusso.TabIndex  = 15;
     this.lblCodiceFlusso.Text      = "Codice Flusso";
     this.lblCodiceFlusso.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.txtNomeFileRisposta);
     this.tabPage1.Controls.Add(this.btnImportaFileEsito);
     this.tabPage1.Location = new System.Drawing.Point(4, 23);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(715, 575);
     this.tabPage1.TabIndex = 1;
     this.tabPage1.Text     = "Esito";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(18, 29);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(288, 16);
     this.label4.TabIndex = 55;
     this.label4.Text     = "Importazione del file di rendicontazione";
     //
     // txtNomeFileRisposta
     //
     this.txtNomeFileRisposta.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNomeFileRisposta.Location = new System.Drawing.Point(21, 92);
     this.txtNomeFileRisposta.Name     = "txtNomeFileRisposta";
     this.txtNomeFileRisposta.ReadOnly = true;
     this.txtNomeFileRisposta.Size     = new System.Drawing.Size(567, 20);
     this.txtNomeFileRisposta.TabIndex = 54;
     //
     // btnImportaFileEsito
     //
     this.btnImportaFileEsito.Location = new System.Drawing.Point(21, 62);
     this.btnImportaFileEsito.Name     = "btnImportaFileEsito";
     this.btnImportaFileEsito.Size     = new System.Drawing.Size(196, 24);
     this.btnImportaFileEsito.TabIndex = 53;
     this.btnImportaFileEsito.Text     = "Seleziona File";
     this.btnImportaFileEsito.Click   += new System.EventHandler(this.btnImportaFileEsito_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     //
     // DS
     //
     this.DS.DataSetName        = "vistaForm";
     this.DS.EnforceConstraints = false;
     this.DS.Locale             = new System.Globalization.CultureInfo("en-US");
     //
     // Frmflussoincassi_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(726, 602);
     this.Controls.Add(this.MetaDataDetail);
     this.Controls.Add(this.splitter1);
     this.Name = "Frmflussoincassi_default";
     this.Text = "Frmflussoincassi_default";
     this.MetaDataDetail.ResumeLayout(false);
     this.tabPrincipale.ResumeLayout(false);
     this.tabPrincipale.PerformLayout();
     this.gboxBill.ResumeLayout(false);
     this.gboxBill.PerformLayout();
     this.gboxBilancio.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.ResumeLayout(false);
 }
Example #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ConfigureProjectForm));
     this.tabControl          = new System.Windows.Forms.TabControl();
     this.tpProjectInfo       = new System.Windows.Forms.TabPage();
     this.projectInfoControl1 = new MOG_ServerManager.MOG_ControlsLibrary.ProjectInfoControl();
     this.tpUsers             = new System.Windows.Forms.TabPage();
     this.userManager         = new MOGUserManager();
     this.tpClassifications   = new System.Windows.Forms.TabPage();
     this.assetClassificationConfigControl1 = new MOG_ServerManager.MOG_ControlsLibrary.AssetClassificationConfigControl();
     this.tpPlatforms          = new System.Windows.Forms.TabPage();
     this.platformEditor       = new MOGPlatformEditor();
     this.projectInfoControl   = new MOG_ServerManager.MOG_ControlsLibrary.ProjectInfoControl();
     this.btnBrowseProjectPath = new System.Windows.Forms.Button();
     this.btnClose             = new System.Windows.Forms.Button();
     this.imageList            = new System.Windows.Forms.ImageList(this.components);
     this.tabControl.SuspendLayout();
     this.tpProjectInfo.SuspendLayout();
     this.tpUsers.SuspendLayout();
     this.tpClassifications.SuspendLayout();
     this.tpPlatforms.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.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.tabControl.Controls.Add(this.tpProjectInfo);
     this.tabControl.Controls.Add(this.tpUsers);
     this.tabControl.Controls.Add(this.tpClassifications);
     this.tabControl.Controls.Add(this.tpPlatforms);
     this.tabControl.Location              = new System.Drawing.Point(8, 8);
     this.tabControl.Name                  = "tabControl";
     this.tabControl.SelectedIndex         = 0;
     this.tabControl.Size                  = new System.Drawing.Size(664, 450);
     this.tabControl.TabIndex              = 0;
     this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
     //
     // tpProjectInfo
     //
     this.tpProjectInfo.Controls.Add(this.projectInfoControl1);
     this.tpProjectInfo.Location = new System.Drawing.Point(4, 22);
     this.tpProjectInfo.Name     = "tpProjectInfo";
     this.tpProjectInfo.Size     = new System.Drawing.Size(656, 424);
     this.tpProjectInfo.TabIndex = 0;
     this.tpProjectInfo.Text     = "Project Info";
     //
     // projectInfoControl1
     //
     this.projectInfoControl1.AddAssetToPackageCommand = "";
     this.projectInfoControl1.Anchor               = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.projectInfoControl1.BuildTool            = "";
     this.projectInfoControl1.DeletePackageCommand = "";
     this.projectInfoControl1.ImmediateMode        = true;
     this.projectInfoControl1.Location             = new System.Drawing.Point(8, 136);
     this.projectInfoControl1.Name        = "projectInfoControl1";
     this.projectInfoControl1.PackageTool = "";
     this.projectInfoControl1.ProjectKey  = "";
     this.projectInfoControl1.ProjectName = "";
     this.projectInfoControl1.ProjectNameInSourceControl = "";
     this.projectInfoControl1.ProjectNameReadOnly        = true;
     this.projectInfoControl1.ProjectPath  = "";
     this.projectInfoControl1.ProjectsPath = "";
     this.projectInfoControl1.RemoveAssetFromPackageCommand = "";
     this.projectInfoControl1.Size     = new System.Drawing.Size(640, 104);
     this.projectInfoControl1.TabIndex = 0;
     //
     // tpUsers
     //
     this.tpUsers.Controls.Add(this.userManager);
     this.tpUsers.Location = new System.Drawing.Point(4, 22);
     this.tpUsers.Name     = "tpUsers";
     this.tpUsers.Size     = new System.Drawing.Size(656, 424);
     this.tpUsers.TabIndex = 1;
     this.tpUsers.Text     = "Users";
     //
     // userManager
     //
     this.userManager.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.userManager.Location = new System.Drawing.Point(8, 8);
     this.userManager.Name     = "userManager";
     this.userManager.Size     = new System.Drawing.Size(640, 408);
     this.userManager.TabIndex = 0;
     //
     // tpClassifications
     //
     this.tpClassifications.Controls.Add(this.assetClassificationConfigControl1);
     this.tpClassifications.Location = new System.Drawing.Point(4, 22);
     this.tpClassifications.Name     = "tpClassifications";
     this.tpClassifications.Size     = new System.Drawing.Size(656, 424);
     this.tpClassifications.TabIndex = 6;
     this.tpClassifications.Text     = "Classifications";
     //
     // assetClassificationConfigControl1
     //
     this.assetClassificationConfigControl1.AddClassificationMenuItemVisible = true;
     this.assetClassificationConfigControl1.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.assetClassificationConfigControl1.ConfigurationVisible = true;
     this.assetClassificationConfigControl1.ImmediateMode        = true;
     this.assetClassificationConfigControl1.Location             = new System.Drawing.Point(8, 8);
     this.assetClassificationConfigControl1.Name            = "assetClassificationConfigControl1";
     this.assetClassificationConfigControl1.ProjectRootPath = "";
     this.assetClassificationConfigControl1.RemoveClassificationMenuItemVisible = true;
     this.assetClassificationConfigControl1.ShowConfigurationMenuItemVisible    = true;
     this.assetClassificationConfigControl1.Size     = new System.Drawing.Size(640, 408);
     this.assetClassificationConfigControl1.TabIndex = 0;
     //
     // tpPlatforms
     //
     this.tpPlatforms.Controls.Add(this.platformEditor);
     this.tpPlatforms.Location = new System.Drawing.Point(4, 22);
     this.tpPlatforms.Name     = "tpPlatforms";
     this.tpPlatforms.Size     = new System.Drawing.Size(656, 424);
     this.tpPlatforms.TabIndex = 2;
     this.tpPlatforms.Text     = "Platforms";
     //
     // platformEditor
     //
     this.platformEditor.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.platformEditor.IconLocation = null;
     this.platformEditor.Location     = new System.Drawing.Point(8, 8);
     this.platformEditor.Name         = "platformEditor";
     this.platformEditor.Size         = new System.Drawing.Size(640, 408);
     this.platformEditor.TabIndex     = 0;
     //
     // projectInfoControl
     //
     this.projectInfoControl.AddAssetToPackageCommand = "";
     this.projectInfoControl.BuildTool            = "";
     this.projectInfoControl.DeletePackageCommand = "";
     this.projectInfoControl.ImmediateMode        = false;
     this.projectInfoControl.Location             = new System.Drawing.Point(0, 0);
     this.projectInfoControl.Name        = "projectInfoControl";
     this.projectInfoControl.PackageTool = "";
     this.projectInfoControl.ProjectKey  = "";
     this.projectInfoControl.ProjectName = "";
     this.projectInfoControl.ProjectNameInSourceControl = "";
     this.projectInfoControl.ProjectNameReadOnly        = false;
     this.projectInfoControl.ProjectPath  = "";
     this.projectInfoControl.ProjectsPath = "";
     this.projectInfoControl.RemoveAssetFromPackageCommand = "";
     this.projectInfoControl.Size     = new System.Drawing.Size(488, 104);
     this.projectInfoControl.TabIndex = 0;
     //
     // btnBrowseProjectPath
     //
     this.btnBrowseProjectPath.Location = new System.Drawing.Point(0, 0);
     this.btnBrowseProjectPath.Name     = "btnBrowseProjectPath";
     this.btnBrowseProjectPath.TabIndex = 0;
     //
     // btnClose
     //
     this.btnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.Location     = new System.Drawing.Point(584, 472);
     this.btnClose.Name         = "btnClose";
     this.btnClose.TabIndex     = 3;
     this.btnClose.Text         = "Close";
     this.btnClose.Click       += new System.EventHandler(this.btnClose_Click);
     //
     // imageList
     //
     this.imageList.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // ConfigureProjectForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnClose;
     this.ClientSize        = new System.Drawing.Size(682, 512);
     this.ControlBox        = false;
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.tabControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "ConfigureProjectForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Project Configuration";
     this.tabControl.ResumeLayout(false);
     this.tpProjectInfo.ResumeLayout(false);
     this.tpUsers.ResumeLayout(false);
     this.tpClassifications.ResumeLayout(false);
     this.tpPlatforms.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1    = new Infragistics.Win.UltraWinGrid.UltraGridBand("TrailerMoveTable", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Requested");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RequestedBy");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MoveFrom");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MoveTo");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Switcher");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadedWith");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ScheduledTime");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9  = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ActualTime");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TrailerLogTable_Id");
     Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
     this._lblCreatedDate   = new System.Windows.Forms.Label();
     this.dtpCreatedDate    = new System.Windows.Forms.DateTimePicker();
     this.txtCreatedBy      = new System.Windows.Forms.TextBox();
     this._lblCreatedBy     = new System.Windows.Forms.Label();
     this._lblTitle         = new System.Windows.Forms.Label();
     this._lblInCarrier     = new System.Windows.Forms.Label();
     this._lblInDriver      = new System.Windows.Forms.Label();
     this.txtInDriver       = new System.Windows.Forms.TextBox();
     this._lblComments      = new System.Windows.Forms.Label();
     this.txtComments       = new System.Windows.Forms.TextBox();
     this.cboInCarrier      = new System.Windows.Forms.ComboBox();
     this.tabMain           = new System.Windows.Forms.TabControl();
     this.tabIncoming       = new System.Windows.Forms.TabPage();
     this._lblInDate        = new System.Windows.Forms.Label();
     this.dtpInDate         = new System.Windows.Forms.DateTimePicker();
     this._lblInLoc         = new System.Windows.Forms.Label();
     this.txtInLoc          = new System.Windows.Forms.TextBox();
     this._lblInSeal        = new System.Windows.Forms.Label();
     this.txtInSeal         = new System.Windows.Forms.TextBox();
     this.tabMoves          = new System.Windows.Forms.TabPage();
     this.chkMoveInProgress = new System.Windows.Forms.CheckBox();
     this.chkLoadSheetReady = new System.Windows.Forms.CheckBox();
     this.grdMoves          = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.mMovesDS          = new Argix.Dispatch.DispatchDS();
     this.tabOutgoing       = new System.Windows.Forms.TabPage();
     this.chkTrailerOut     = new System.Windows.Forms.CheckBox();
     this._lblOutDate       = new System.Windows.Forms.Label();
     this.dtpOutDate        = new System.Windows.Forms.DateTimePicker();
     this._lblOutSeal       = new System.Windows.Forms.Label();
     this.txtOutSeal        = new System.Windows.Forms.TextBox();
     this._lblOutCarrier    = new System.Windows.Forms.Label();
     this.cboOutCarrier     = new System.Windows.Forms.ComboBox();
     this._lblOutDriver     = new System.Windows.Forms.Label();
     this.txtOutDriver      = new System.Windows.Forms.TextBox();
     this._lblTrailer       = new System.Windows.Forms.Label();
     this.txtTrailer        = new System.Windows.Forms.TextBox();
     this.tabMain.SuspendLayout();
     this.tabIncoming.SuspendLayout();
     this.tabMoves.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdMoves)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mMovesDS)).BeginInit();
     this.tabOutgoing.SuspendLayout();
     this.SuspendLayout();
     //
     // mToolTip
     //
     this.mToolTip.AutoPopDelay = 3000;
     this.mToolTip.InitialDelay = 500;
     this.mToolTip.ReshowDelay  = 1000;
     this.mToolTip.ShowAlways   = true;
     //
     // btnOK
     //
     this.btnOK.Name     = "btnOK";
     this.btnOK.TabIndex = 4;
     //
     // btnCancel
     //
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.TabIndex = 0;
     //
     // _lblCreatedDate
     //
     this._lblCreatedDate.Location  = new System.Drawing.Point(354, 60);
     this._lblCreatedDate.Name      = "_lblCreatedDate";
     this._lblCreatedDate.Size      = new System.Drawing.Size(96, 18);
     this._lblCreatedDate.TabIndex  = 131;
     this._lblCreatedDate.Text      = "Created: ";
     this._lblCreatedDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtpCreatedDate
     //
     this.dtpCreatedDate.CustomFormat  = "MMM dd, yyyy   hh:mm tt";
     this.dtpCreatedDate.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpCreatedDate.Location      = new System.Drawing.Point(459, 60);
     this.dtpCreatedDate.Name          = "dtpCreatedDate";
     this.dtpCreatedDate.ShowUpDown    = true;
     this.dtpCreatedDate.Size          = new System.Drawing.Size(192, 21);
     this.dtpCreatedDate.TabIndex      = 2;
     this.dtpCreatedDate.ValueChanged += new System.EventHandler(this.OnValidateForm);
     //
     // txtCreatedBy
     //
     this.txtCreatedBy.Location     = new System.Drawing.Point(135, 60);
     this.txtCreatedBy.Name         = "txtCreatedBy";
     this.txtCreatedBy.Size         = new System.Drawing.Size(192, 21);
     this.txtCreatedBy.TabIndex     = 1;
     this.txtCreatedBy.Text         = "";
     this.txtCreatedBy.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblCreatedBy
     //
     this._lblCreatedBy.Location  = new System.Drawing.Point(30, 60);
     this._lblCreatedBy.Name      = "_lblCreatedBy";
     this._lblCreatedBy.Size      = new System.Drawing.Size(96, 18);
     this._lblCreatedBy.TabIndex  = 128;
     this._lblCreatedBy.Text      = "Created By: ";
     this._lblCreatedBy.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _lblTitle
     //
     this._lblTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this._lblTitle.Font      = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this._lblTitle.Location  = new System.Drawing.Point(174, 6);
     this._lblTitle.Name      = "_lblTitle";
     this._lblTitle.Size      = new System.Drawing.Size(318, 32);
     this._lblTitle.TabIndex  = 127;
     this._lblTitle.Text      = "Trailer/Trailer Moves Log";
     this._lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // _lblInCarrier
     //
     this._lblInCarrier.Location  = new System.Drawing.Point(15, 51);
     this._lblInCarrier.Name      = "_lblInCarrier";
     this._lblInCarrier.Size      = new System.Drawing.Size(96, 18);
     this._lblInCarrier.TabIndex  = 138;
     this._lblInCarrier.Text      = "Carrier: ";
     this._lblInCarrier.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _lblInDriver
     //
     this._lblInDriver.Location  = new System.Drawing.Point(15, 81);
     this._lblInDriver.Name      = "_lblInDriver";
     this._lblInDriver.Size      = new System.Drawing.Size(96, 18);
     this._lblInDriver.TabIndex  = 137;
     this._lblInDriver.Text      = "Driver: ";
     this._lblInDriver.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtInDriver
     //
     this.txtInDriver.Location     = new System.Drawing.Point(123, 81);
     this.txtInDriver.Name         = "txtInDriver";
     this.txtInDriver.Size         = new System.Drawing.Size(192, 21);
     this.txtInDriver.TabIndex     = 0;
     this.txtInDriver.Text         = "";
     this.txtInDriver.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblComments
     //
     this._lblComments.Location  = new System.Drawing.Point(12, 333);
     this._lblComments.Name      = "_lblComments";
     this._lblComments.Size      = new System.Drawing.Size(114, 18);
     this._lblComments.TabIndex  = 129;
     this._lblComments.Text      = "Comments: ";
     this._lblComments.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtComments
     //
     this.txtComments.Location     = new System.Drawing.Point(135, 333);
     this.txtComments.Multiline    = true;
     this.txtComments.Name         = "txtComments";
     this.txtComments.Size         = new System.Drawing.Size(516, 69);
     this.txtComments.TabIndex     = 4;
     this.txtComments.Text         = "";
     this.txtComments.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // cboInCarrier
     //
     this.cboInCarrier.Location = new System.Drawing.Point(123, 51);
     this.cboInCarrier.Name     = "cboInCarrier";
     this.cboInCarrier.Size     = new System.Drawing.Size(192, 21);
     this.cboInCarrier.TabIndex = 1;
     this.cboInCarrier.SelectionChangeCommitted += new System.EventHandler(this.OnValidateForm);
     //
     // tabMain
     //
     this.tabMain.Controls.Add(this.tabIncoming);
     this.tabMain.Controls.Add(this.tabMoves);
     this.tabMain.Controls.Add(this.tabOutgoing);
     this.tabMain.Location      = new System.Drawing.Point(6, 123);
     this.tabMain.Name          = "tabMain";
     this.tabMain.SelectedIndex = 0;
     this.tabMain.Size          = new System.Drawing.Size(654, 201);
     this.tabMain.TabIndex      = 139;
     //
     // tabIncoming
     //
     this.tabIncoming.Controls.Add(this._lblInDate);
     this.tabIncoming.Controls.Add(this.dtpInDate);
     this.tabIncoming.Controls.Add(this._lblInLoc);
     this.tabIncoming.Controls.Add(this.txtInLoc);
     this.tabIncoming.Controls.Add(this._lblInSeal);
     this.tabIncoming.Controls.Add(this.txtInSeal);
     this.tabIncoming.Controls.Add(this._lblInCarrier);
     this.tabIncoming.Controls.Add(this.cboInCarrier);
     this.tabIncoming.Controls.Add(this._lblInDriver);
     this.tabIncoming.Controls.Add(this.txtInDriver);
     this.tabIncoming.Location = new System.Drawing.Point(4, 22);
     this.tabIncoming.Name     = "tabIncoming";
     this.tabIncoming.Size     = new System.Drawing.Size(646, 175);
     this.tabIncoming.TabIndex = 0;
     this.tabIncoming.Text     = "Incoming";
     //
     // _lblInDate
     //
     this._lblInDate.Location  = new System.Drawing.Point(15, 21);
     this._lblInDate.Name      = "_lblInDate";
     this._lblInDate.Size      = new System.Drawing.Size(96, 18);
     this._lblInDate.TabIndex  = 144;
     this._lblInDate.Text      = "Incoming:";
     this._lblInDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtpInDate
     //
     this.dtpInDate.CustomFormat  = "MMM dd, yyyy   hh:mm tt";
     this.dtpInDate.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpInDate.Location      = new System.Drawing.Point(123, 21);
     this.dtpInDate.Name          = "dtpInDate";
     this.dtpInDate.ShowUpDown    = true;
     this.dtpInDate.Size          = new System.Drawing.Size(192, 21);
     this.dtpInDate.TabIndex      = 143;
     this.dtpInDate.ValueChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblInLoc
     //
     this._lblInLoc.Location  = new System.Drawing.Point(15, 141);
     this._lblInLoc.Name      = "_lblInLoc";
     this._lblInLoc.Size      = new System.Drawing.Size(96, 18);
     this._lblInLoc.TabIndex  = 142;
     this._lblInLoc.Text      = "Door\\Yard Loc: ";
     this._lblInLoc.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtInLoc
     //
     this.txtInLoc.Location     = new System.Drawing.Point(123, 141);
     this.txtInLoc.Name         = "txtInLoc";
     this.txtInLoc.Size         = new System.Drawing.Size(192, 21);
     this.txtInLoc.TabIndex     = 141;
     this.txtInLoc.Text         = "";
     this.txtInLoc.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblInSeal
     //
     this._lblInSeal.Location  = new System.Drawing.Point(15, 111);
     this._lblInSeal.Name      = "_lblInSeal";
     this._lblInSeal.Size      = new System.Drawing.Size(96, 18);
     this._lblInSeal.TabIndex  = 140;
     this._lblInSeal.Text      = "Seal: ";
     this._lblInSeal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtInSeal
     //
     this.txtInSeal.Location     = new System.Drawing.Point(123, 111);
     this.txtInSeal.Name         = "txtInSeal";
     this.txtInSeal.Size         = new System.Drawing.Size(192, 21);
     this.txtInSeal.TabIndex     = 139;
     this.txtInSeal.Text         = "";
     this.txtInSeal.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // tabMoves
     //
     this.tabMoves.Controls.Add(this.chkMoveInProgress);
     this.tabMoves.Controls.Add(this.chkLoadSheetReady);
     this.tabMoves.Controls.Add(this.grdMoves);
     this.tabMoves.Location = new System.Drawing.Point(4, 22);
     this.tabMoves.Name     = "tabMoves";
     this.tabMoves.Size     = new System.Drawing.Size(646, 175);
     this.tabMoves.TabIndex = 1;
     this.tabMoves.Text     = "Moves";
     //
     // chkMoveInProgress
     //
     this.chkMoveInProgress.BackColor       = System.Drawing.SystemColors.InactiveCaption;
     this.chkMoveInProgress.ForeColor       = System.Drawing.SystemColors.InactiveCaptionText;
     this.chkMoveInProgress.Location        = new System.Drawing.Point(486, 6);
     this.chkMoveInProgress.Name            = "chkMoveInProgress";
     this.chkMoveInProgress.Size            = new System.Drawing.Size(144, 16);
     this.chkMoveInProgress.TabIndex        = 157;
     this.chkMoveInProgress.Text            = "Move In Progress?";
     this.chkMoveInProgress.CheckedChanged += new System.EventHandler(this.OnValidateForm);
     //
     // chkLoadSheetReady
     //
     this.chkLoadSheetReady.Location        = new System.Drawing.Point(6, 153);
     this.chkLoadSheetReady.Name            = "chkLoadSheetReady";
     this.chkLoadSheetReady.Size            = new System.Drawing.Size(192, 21);
     this.chkLoadSheetReady.TabIndex        = 156;
     this.chkLoadSheetReady.Text            = "Load Sheet Ready?";
     this.chkLoadSheetReady.CheckedChanged += new System.EventHandler(this.OnValidateForm);
     //
     // grdMoves
     //
     this.grdMoves.DataMember                 = "TrailerLogTable.TrailerLogTable_TrailerMoveTable";
     this.grdMoves.DataSource                 = this.mMovesDS;
     appearance1.BackColor                    = System.Drawing.SystemColors.Window;
     appearance1.FontData.Name                = "Verdana";
     appearance1.FontData.SizeInPoints        = 8F;
     appearance1.ForeColor                    = System.Drawing.SystemColors.WindowText;
     appearance1.TextHAlign                   = Infragistics.Win.HAlign.Left;
     this.grdMoves.DisplayLayout.Appearance   = appearance1;
     ultraGridColumn1.Header.VisiblePosition  = 0;
     ultraGridColumn1.Hidden                  = true;
     ultraGridColumn2.Format                  = "MM/dd/yyyy HH:mm tt";
     ultraGridColumn2.Header.VisiblePosition  = 1;
     ultraGridColumn2.Width                   = 120;
     ultraGridColumn3.Header.Caption          = "Requested By";
     ultraGridColumn3.Header.VisiblePosition  = 2;
     ultraGridColumn3.Width                   = 96;
     ultraGridColumn4.Header.Caption          = "Move From";
     ultraGridColumn4.Header.VisiblePosition  = 3;
     ultraGridColumn4.Width                   = 96;
     ultraGridColumn5.Header.Caption          = "Move To";
     ultraGridColumn5.Header.VisiblePosition  = 4;
     ultraGridColumn5.Width                   = 96;
     ultraGridColumn6.Header.Caption          = "Moved By";
     ultraGridColumn6.Header.VisiblePosition  = 5;
     ultraGridColumn6.Width                   = 96;
     ultraGridColumn7.Header.Caption          = "Loaded With";
     ultraGridColumn7.Header.VisiblePosition  = 6;
     ultraGridColumn7.Width                   = 96;
     ultraGridColumn8.Format                  = "HH:mm tt";
     ultraGridColumn8.Header.Caption          = "Time Allotted";
     ultraGridColumn8.Header.VisiblePosition  = 7;
     ultraGridColumn8.Width                   = 96;
     ultraGridColumn9.Format                  = "HH:mm tt";
     ultraGridColumn9.Header.Caption          = "Time Spent";
     ultraGridColumn9.Header.VisiblePosition  = 8;
     ultraGridColumn9.Width                   = 96;
     ultraGridColumn10.Header.VisiblePosition = 9;
     ultraGridColumn10.Hidden                 = true;
     ultraGridBand1.Columns.AddRange(new object[] {
         ultraGridColumn1,
         ultraGridColumn2,
         ultraGridColumn3,
         ultraGridColumn4,
         ultraGridColumn5,
         ultraGridColumn6,
         ultraGridColumn7,
         ultraGridColumn8,
         ultraGridColumn9,
         ultraGridColumn10
     });
     this.grdMoves.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     appearance2.BackColor                                  = System.Drawing.SystemColors.InactiveCaption;
     appearance2.FontData.BoldAsString                      = "True";
     appearance2.FontData.Name                              = "Verdana";
     appearance2.FontData.SizeInPoints                      = 8F;
     appearance2.ForeColor                                  = System.Drawing.SystemColors.InactiveCaptionText;
     appearance2.TextHAlign                                 = Infragistics.Win.HAlign.Left;
     this.grdMoves.DisplayLayout.CaptionAppearance          = appearance2;
     this.grdMoves.DisplayLayout.Override.AllowAddNew       = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.grdMoves.DisplayLayout.Override.AllowDelete       = Infragistics.Win.DefaultableBoolean.False;
     this.grdMoves.DisplayLayout.Override.AllowUpdate       = Infragistics.Win.DefaultableBoolean.False;
     this.grdMoves.DisplayLayout.Override.CellClickAction   = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     appearance3.BackColor                                  = System.Drawing.SystemColors.Control;
     appearance3.FontData.BoldAsString                      = "True";
     appearance3.FontData.Name                              = "Verdana";
     appearance3.FontData.SizeInPoints                      = 8F;
     appearance3.TextHAlign                                 = Infragistics.Win.HAlign.Left;
     this.grdMoves.DisplayLayout.Override.HeaderAppearance  = appearance3;
     this.grdMoves.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortSingle;
     this.grdMoves.DisplayLayout.Override.MaxSelectedRows   = 1;
     appearance4.BorderColor                                = System.Drawing.SystemColors.ControlLight;
     this.grdMoves.DisplayLayout.Override.RowAppearance     = appearance4;
     this.grdMoves.DisplayLayout.Override.RowSelectors      = Infragistics.Win.DefaultableBoolean.False;
     this.grdMoves.DisplayLayout.Override.SelectTypeRow     = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.grdMoves.DisplayLayout.ScrollBounds               = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.grdMoves.DisplayLayout.ScrollStyle                = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.grdMoves.DisplayLayout.TabNavigation              = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.grdMoves.DisplayLayout.ViewStyle                  = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.grdMoves.Location                                 = new System.Drawing.Point(0, 3);
     this.grdMoves.Name                = "grdMoves";
     this.grdMoves.Size                = new System.Drawing.Size(639, 144);
     this.grdMoves.SupportThemes       = false;
     this.grdMoves.TabIndex            = 0;
     this.grdMoves.Text                = "Moves";
     this.grdMoves.AfterRowUpdate     += new Infragistics.Win.UltraWinGrid.RowEventHandler(this.OnRowChanged);
     this.grdMoves.CellChange         += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.OnCellChanged);
     this.grdMoves.AfterCellUpdate    += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.OnCellChanged);
     this.grdMoves.BeforeCellActivate += new Infragistics.Win.UltraWinGrid.CancelableCellEventHandler(this.OnCellActivating);
     //
     // mMovesDS
     //
     this.mMovesDS.DataSetName = "DispatchDS";
     this.mMovesDS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // tabOutgoing
     //
     this.tabOutgoing.Controls.Add(this.chkTrailerOut);
     this.tabOutgoing.Controls.Add(this._lblOutDate);
     this.tabOutgoing.Controls.Add(this.dtpOutDate);
     this.tabOutgoing.Controls.Add(this._lblOutSeal);
     this.tabOutgoing.Controls.Add(this.txtOutSeal);
     this.tabOutgoing.Controls.Add(this._lblOutCarrier);
     this.tabOutgoing.Controls.Add(this.cboOutCarrier);
     this.tabOutgoing.Controls.Add(this._lblOutDriver);
     this.tabOutgoing.Controls.Add(this.txtOutDriver);
     this.tabOutgoing.Location = new System.Drawing.Point(4, 22);
     this.tabOutgoing.Name     = "tabOutgoing";
     this.tabOutgoing.Size     = new System.Drawing.Size(646, 175);
     this.tabOutgoing.TabIndex = 2;
     this.tabOutgoing.Text     = "Outgoing";
     //
     // chkTrailerOut
     //
     this.chkTrailerOut.Location        = new System.Drawing.Point(447, 141);
     this.chkTrailerOut.Name            = "chkTrailerOut";
     this.chkTrailerOut.Size            = new System.Drawing.Size(192, 21);
     this.chkTrailerOut.TabIndex        = 155;
     this.chkTrailerOut.Text            = "Trailer completed and out?";
     this.chkTrailerOut.CheckedChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblOutDate
     //
     this._lblOutDate.Location  = new System.Drawing.Point(15, 21);
     this._lblOutDate.Name      = "_lblOutDate";
     this._lblOutDate.Size      = new System.Drawing.Size(96, 18);
     this._lblOutDate.TabIndex  = 154;
     this._lblOutDate.Text      = "Outgoing:";
     this._lblOutDate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtpOutDate
     //
     this.dtpOutDate.CustomFormat  = "MMM dd, yyyy   hh:mm tt";
     this.dtpOutDate.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpOutDate.Location      = new System.Drawing.Point(123, 21);
     this.dtpOutDate.Name          = "dtpOutDate";
     this.dtpOutDate.ShowUpDown    = true;
     this.dtpOutDate.Size          = new System.Drawing.Size(192, 21);
     this.dtpOutDate.TabIndex      = 153;
     this.dtpOutDate.ValueChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblOutSeal
     //
     this._lblOutSeal.Location  = new System.Drawing.Point(15, 111);
     this._lblOutSeal.Name      = "_lblOutSeal";
     this._lblOutSeal.Size      = new System.Drawing.Size(96, 18);
     this._lblOutSeal.TabIndex  = 150;
     this._lblOutSeal.Text      = "Seal: ";
     this._lblOutSeal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtOutSeal
     //
     this.txtOutSeal.Location     = new System.Drawing.Point(123, 111);
     this.txtOutSeal.Name         = "txtOutSeal";
     this.txtOutSeal.Size         = new System.Drawing.Size(192, 21);
     this.txtOutSeal.TabIndex     = 149;
     this.txtOutSeal.Text         = "";
     this.txtOutSeal.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblOutCarrier
     //
     this._lblOutCarrier.Location  = new System.Drawing.Point(15, 51);
     this._lblOutCarrier.Name      = "_lblOutCarrier";
     this._lblOutCarrier.Size      = new System.Drawing.Size(96, 18);
     this._lblOutCarrier.TabIndex  = 148;
     this._lblOutCarrier.Text      = "Carrier: ";
     this._lblOutCarrier.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // cboOutCarrier
     //
     this.cboOutCarrier.Location = new System.Drawing.Point(123, 51);
     this.cboOutCarrier.Name     = "cboOutCarrier";
     this.cboOutCarrier.Size     = new System.Drawing.Size(192, 21);
     this.cboOutCarrier.TabIndex = 146;
     this.cboOutCarrier.SelectionChangeCommitted += new System.EventHandler(this.OnValidateForm);
     //
     // _lblOutDriver
     //
     this._lblOutDriver.Location  = new System.Drawing.Point(15, 81);
     this._lblOutDriver.Name      = "_lblOutDriver";
     this._lblOutDriver.Size      = new System.Drawing.Size(96, 18);
     this._lblOutDriver.TabIndex  = 147;
     this._lblOutDriver.Text      = "Driver: ";
     this._lblOutDriver.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtOutDriver
     //
     this.txtOutDriver.Location     = new System.Drawing.Point(123, 81);
     this.txtOutDriver.Name         = "txtOutDriver";
     this.txtOutDriver.Size         = new System.Drawing.Size(192, 21);
     this.txtOutDriver.TabIndex     = 145;
     this.txtOutDriver.Text         = "";
     this.txtOutDriver.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // _lblTrailer
     //
     this._lblTrailer.Location  = new System.Drawing.Point(54, 90);
     this._lblTrailer.Name      = "_lblTrailer";
     this._lblTrailer.Size      = new System.Drawing.Size(72, 18);
     this._lblTrailer.TabIndex  = 146;
     this._lblTrailer.Text      = "Trailer#: ";
     this._lblTrailer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtTrailer
     //
     this.txtTrailer.Location     = new System.Drawing.Point(135, 93);
     this.txtTrailer.Name         = "txtTrailer";
     this.txtTrailer.Size         = new System.Drawing.Size(192, 21);
     this.txtTrailer.TabIndex     = 145;
     this.txtTrailer.Text         = "";
     this.txtTrailer.TextChanged += new System.EventHandler(this.OnValidateForm);
     //
     // dlgTrailerEntry
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(664, 446);
     this.Controls.Add(this.tabMain);
     this.Controls.Add(this._lblCreatedDate);
     this.Controls.Add(this.dtpCreatedDate);
     this.Controls.Add(this.txtCreatedBy);
     this.Controls.Add(this._lblCreatedBy);
     this.Controls.Add(this._lblTitle);
     this.Controls.Add(this.txtComments);
     this.Controls.Add(this._lblComments);
     this.Controls.Add(this._lblTrailer);
     this.Controls.Add(this.txtTrailer);
     this.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Name     = "dlgTrailerEntry";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.OnFormClosing);
     this.Load    += new System.EventHandler(this.OnFormLoad);
     this.Controls.SetChildIndex(this.txtTrailer, 0);
     this.Controls.SetChildIndex(this._lblTrailer, 0);
     this.Controls.SetChildIndex(this._lblComments, 0);
     this.Controls.SetChildIndex(this.txtComments, 0);
     this.Controls.SetChildIndex(this.btnOK, 0);
     this.Controls.SetChildIndex(this.btnCancel, 0);
     this.Controls.SetChildIndex(this._lblTitle, 0);
     this.Controls.SetChildIndex(this._lblCreatedBy, 0);
     this.Controls.SetChildIndex(this.txtCreatedBy, 0);
     this.Controls.SetChildIndex(this.dtpCreatedDate, 0);
     this.Controls.SetChildIndex(this._lblCreatedDate, 0);
     this.Controls.SetChildIndex(this.tabMain, 0);
     this.tabMain.ResumeLayout(false);
     this.tabIncoming.ResumeLayout(false);
     this.tabMoves.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdMoves)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mMovesDS)).EndInit();
     this.tabOutgoing.ResumeLayout(false);
     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()
 {
     this.tcEHP      = new Oranikle.Studio.Controls.CtrlStyledTab();
     this.tpDesign   = new System.Windows.Forms.TabPage();
     this.tpEditor   = new System.Windows.Forms.TabPage();
     this.tbEditor   = new System.Windows.Forms.RichTextBox();
     this.tpBrowser  = new System.Windows.Forms.TabPage();
     this.rdlPreview = new Oranikle.Report.Viewer.RdlViewer();
     this.tcEHP.SuspendLayout();
     this.tpEditor.SuspendLayout();
     this.tpBrowser.SuspendLayout();
     this.SuspendLayout();
     //
     // tcEHP
     //
     this.tcEHP.Alignment   = System.Windows.Forms.TabAlignment.Bottom;
     this.tcEHP.BorderColor = System.Drawing.Color.DarkGray;
     this.tcEHP.Controls.Add(this.tpDesign);
     this.tcEHP.Controls.Add(this.tpEditor);
     this.tcEHP.Controls.Add(this.tpBrowser);
     this.tcEHP.Dock                   = System.Windows.Forms.DockStyle.Fill;
     this.tcEHP.DontSlantMiddle        = false;
     this.tcEHP.LeftSpacing            = 0;
     this.tcEHP.Location               = new System.Drawing.Point(0, 0);
     this.tcEHP.myBackColor            = System.Drawing.Color.Transparent;
     this.tcEHP.Name                   = "tcEHP";
     this.tcEHP.SelectedIndex          = 0;
     this.tcEHP.ShowToolTips           = true;
     this.tcEHP.Size                   = new System.Drawing.Size(488, 376);
     this.tcEHP.SizeMode               = System.Windows.Forms.TabSizeMode.Fixed;
     this.tcEHP.TabFont                = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tcEHP.TabIndex               = 0;
     this.tcEHP.TabSlant               = 2;
     this.tcEHP.TabStop                = false;
     this.tcEHP.TabTextColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tcEHP.TabTextHAlignment      = System.Drawing.StringAlignment.Near;
     this.tcEHP.TabTextVAlignment      = System.Drawing.StringAlignment.Center;
     this.tcEHP.TagPageSelectedColor   = System.Drawing.Color.White;
     this.tcEHP.TagPageUnselectedColor = System.Drawing.Color.LightGray;
     this.tcEHP.SelectedIndexChanged  += new System.EventHandler(this.tcEHP_SelectedIndexChanged);
     //
     // tpDesign
     //
     this.tpDesign.BackColor = System.Drawing.Color.White;
     this.tpDesign.Location  = new System.Drawing.Point(4, 4);
     this.tpDesign.Name      = "tpDesign";
     this.tpDesign.Size      = new System.Drawing.Size(480, 347);
     this.tpDesign.TabIndex  = 3;
     this.tpDesign.Tag       = "design";
     this.tpDesign.Text      = "Designer";
     //
     // tpEditor
     //
     this.tpEditor.BackColor = System.Drawing.Color.White;
     this.tpEditor.Controls.Add(this.tbEditor);
     this.tpEditor.Location    = new System.Drawing.Point(4, 4);
     this.tpEditor.Name        = "tpEditor";
     this.tpEditor.Size        = new System.Drawing.Size(480, 347);
     this.tpEditor.TabIndex    = 0;
     this.tpEditor.Tag         = "edit";
     this.tpEditor.Text        = "Code";
     this.tpEditor.ToolTipText = "Edit Report Syntax";
     //
     // tbEditor
     //
     this.tbEditor.AcceptsTab    = true;
     this.tbEditor.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.tbEditor.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tbEditor.HideSelection = false;
     this.tbEditor.Location      = new System.Drawing.Point(0, 0);
     this.tbEditor.Name          = "tbEditor";
     this.tbEditor.Size          = new System.Drawing.Size(480, 347);
     this.tbEditor.TabIndex      = 0;
     this.tbEditor.Text          = "";
     this.tbEditor.WordWrap      = false;
     this.tbEditor.TextChanged  += new System.EventHandler(this.tbEditor_TextChanged);
     //
     // tpBrowser
     //
     this.tpBrowser.BackColor = System.Drawing.Color.White;
     this.tpBrowser.Controls.Add(this.rdlPreview);
     this.tpBrowser.Location = new System.Drawing.Point(4, 4);
     this.tpBrowser.Name     = "tpBrowser";
     this.tpBrowser.Size     = new System.Drawing.Size(480, 347);
     this.tpBrowser.TabIndex = 2;
     this.tpBrowser.Tag      = "preview";
     this.tpBrowser.Text     = "Preview";
     //
     // rdlPreview
     //
     this.rdlPreview.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.rdlPreview.Dock                   = System.Windows.Forms.DockStyle.Fill;
     this.rdlPreview.Folder                 = null;
     this.rdlPreview.HighlightAll           = false;
     this.rdlPreview.HighlightAllColor      = System.Drawing.Color.Fuchsia;
     this.rdlPreview.HighlightCaseSensitive = false;
     this.rdlPreview.HighlightItemColor     = System.Drawing.Color.Aqua;
     this.rdlPreview.HighlightPageItem      = null;
     this.rdlPreview.HighlightText          = null;
     this.rdlPreview.Location               = new System.Drawing.Point(0, 0);
     this.rdlPreview.Name                   = "rdlPreview";
     this.rdlPreview.PageCurrent            = 1;
     this.rdlPreview.Parameters             = null;
     this.rdlPreview.ReportName             = null;
     this.rdlPreview.ScrollMode             = Oranikle.Report.Viewer.ScrollModeEnum.Continuous;
     this.rdlPreview.SelectTool             = false;
     this.rdlPreview.ShowFindPanel          = false;
     this.rdlPreview.ShowParameterPanel     = true;
     this.rdlPreview.ShowWaitDialog         = true;
     this.rdlPreview.Size                   = new System.Drawing.Size(480, 347);
     this.rdlPreview.SourceFile             = null;
     this.rdlPreview.SourceRdl              = null;
     this.rdlPreview.TabIndex               = 0;
     this.rdlPreview.Text                   = "rdlViewer1";
     this.rdlPreview.UseTrueMargins         = true;
     this.rdlPreview.Zoom                   = 0.5495112F;
     this.rdlPreview.ZoomMode               = Oranikle.Report.Viewer.ZoomEnum.FitWidth;
     this.rdlPreview.Click                 += new System.EventHandler(this.rdlPreview_Click);
     //
     // RdlEditPreview
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.Controls.Add(this.tcEHP);
     this.Name = "RdlEditPreview";
     this.Size = new System.Drawing.Size(488, 376);
     this.tcEHP.ResumeLayout(false);
     this.tpEditor.ResumeLayout(false);
     this.tpBrowser.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
     this.listView1              = new System.Windows.Forms.ListView();
     this.StingId                = new System.Windows.Forms.ColumnHeader();
     this.String                 = new System.Windows.Forms.ColumnHeader();
     this.Original               = new System.Windows.Forms.ColumnHeader();
     this.tabControl1            = new System.Windows.Forms.TabControl();
     this.tabPage1               = new System.Windows.Forms.TabPage();
     this.tabPage2               = new System.Windows.Forms.TabPage();
     this.listView2              = 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.tabPage3               = new System.Windows.Forms.TabPage();
     this.listView3              = new System.Windows.Forms.ListView();
     this.columnHeader4          = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5          = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6          = new System.Windows.Forms.ColumnHeader();
     this.mainMenu1              = new System.Windows.Forms.MainMenu();
     this.menuItemFile           = new System.Windows.Forms.MenuItem();
     this.menuItemNew            = new System.Windows.Forms.MenuItem();
     this.menuItem7              = new System.Windows.Forms.MenuItem();
     this.menuItemOpen           = new System.Windows.Forms.MenuItem();
     this.menuItem2              = new System.Windows.Forms.MenuItem();
     this.menuItemSave           = new System.Windows.Forms.MenuItem();
     this.menuItem4              = new System.Windows.Forms.MenuItem();
     this.menuItemLanguageFolder = new System.Windows.Forms.MenuItem();
     this.menuItem3              = new System.Windows.Forms.MenuItem();
     this.menuItemExit           = new System.Windows.Forms.MenuItem();
     this.menuItemEdit           = new System.Windows.Forms.MenuItem();
     this.menuItemFind           = new System.Windows.Forms.MenuItem();
     this.menuItemFindNext       = new System.Windows.Forms.MenuItem();
     this.menuItem6              = new System.Windows.Forms.MenuItem();
     this.menuItemLanguageInfo   = new System.Windows.Forms.MenuItem();
     this.menuItemOptions        = new System.Windows.Forms.MenuItem();
     this.menuItemUserName       = new System.Windows.Forms.MenuItem();
     this.menuItemTools          = new System.Windows.Forms.MenuItem();
     this.menuItemValidate       = new System.Windows.Forms.MenuItem();
     this.menuItemConvert        = new System.Windows.Forms.MenuItem();
     this.menuItem1              = new System.Windows.Forms.MenuItem();
     this.menuItemHelp           = new System.Windows.Forms.MenuItem();
     this.menuItem8              = new System.Windows.Forms.MenuItem();
     this.menuItemAbout          = new System.Windows.Forms.MenuItem();
     this.folderBrowserDialog1   = new System.Windows.Forms.FolderBrowserDialog();
     this.openFileDialog1        = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1        = new System.Windows.Forms.SaveFileDialog();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.StingId,
         this.String,
         this.Original
     });
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines     = true;
     this.listView1.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listView1.HideSelection = false;
     this.listView1.LabelWrap     = false;
     this.listView1.Location      = new System.Drawing.Point(0, 0);
     this.listView1.MultiSelect   = false;
     this.listView1.Name          = "listView1";
     this.listView1.Size          = new System.Drawing.Size(696, 360);
     this.listView1.TabIndex      = 0;
     this.listView1.View          = System.Windows.Forms.View.Details;
     this.listView1.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.listView_KeyPress);
     this.listView1.DoubleClick  += new System.EventHandler(this.listView_DoubleClick);
     //
     // StingId
     //
     this.StingId.Text  = "String Id";
     this.StingId.Width = 59;
     //
     // String
     //
     this.String.Text  = "String";
     this.String.Width = 308;
     //
     // Original
     //
     this.Original.Text  = "Original";
     this.Original.Width = 308;
     //
     // tabControl1
     //
     this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.ItemSize      = new System.Drawing.Size(55, 21);
     this.tabControl1.Location      = new System.Drawing.Point(8, 8);
     this.tabControl1.Multiline     = true;
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(704, 392);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage1.Controls.Add(this.listView1);
     this.tabPage1.Location = new System.Drawing.Point(4, 25);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(696, 363);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "All Strings";
     //
     // tabPage2
     //
     this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage2.Controls.Add(this.listView2);
     this.tabPage2.Location = new System.Drawing.Point(4, 25);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(696, 363);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Untranslated";
     //
     // listView2
     //
     this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3
     });
     this.listView2.FullRowSelect = true;
     this.listView2.GridLines     = true;
     this.listView2.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listView2.HideSelection = false;
     this.listView2.LabelWrap     = false;
     this.listView2.Location      = new System.Drawing.Point(0, 0);
     this.listView2.MultiSelect   = false;
     this.listView2.Name          = "listView2";
     this.listView2.Size          = new System.Drawing.Size(696, 360);
     this.listView2.TabIndex      = 1;
     this.listView2.View          = System.Windows.Forms.View.Details;
     this.listView2.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.listView_KeyPress);
     this.listView2.DoubleClick  += new System.EventHandler(this.listView_DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "String Id";
     this.columnHeader1.Width = 59;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "String";
     this.columnHeader2.Width = 308;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Original";
     this.columnHeader3.Width = 308;
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage3.Controls.Add(this.listView3);
     this.tabPage3.Location = new System.Drawing.Point(4, 25);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(696, 363);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Changed";
     //
     // listView3
     //
     this.listView3.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6
     });
     this.listView3.FullRowSelect = true;
     this.listView3.GridLines     = true;
     this.listView3.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listView3.HideSelection = false;
     this.listView3.LabelWrap     = false;
     this.listView3.Location      = new System.Drawing.Point(0, 0);
     this.listView3.MultiSelect   = false;
     this.listView3.Name          = "listView3";
     this.listView3.Size          = new System.Drawing.Size(696, 360);
     this.listView3.TabIndex      = 1;
     this.listView3.View          = System.Windows.Forms.View.Details;
     this.listView3.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.listView_KeyPress);
     this.listView3.DoubleClick  += new System.EventHandler(this.listView_DoubleClick);
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "String Id";
     this.columnHeader4.Width = 59;
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "String";
     this.columnHeader5.Width = 308;
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "Original";
     this.columnHeader6.Width = 308;
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFile,
         this.menuItemEdit,
         this.menuItemOptions,
         this.menuItemTools,
         this.menuItem1
     });
     //
     // menuItemFile
     //
     this.menuItemFile.Index = 0;
     this.menuItemFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemNew,
         this.menuItem7,
         this.menuItemOpen,
         this.menuItem2,
         this.menuItemSave,
         this.menuItem4,
         this.menuItemLanguageFolder,
         this.menuItem3,
         this.menuItemExit
     });
     this.menuItemFile.Text = "&File";
     //
     // menuItemNew
     //
     this.menuItemNew.Index    = 0;
     this.menuItemNew.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
     this.menuItemNew.Text     = "&New Language...";
     this.menuItemNew.Click   += new System.EventHandler(this.menuItemNew_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 1;
     this.menuItem7.Text  = "-";
     //
     // menuItemOpen
     //
     this.menuItemOpen.Index    = 2;
     this.menuItemOpen.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.menuItemOpen.Text     = "&Open Language...";
     this.menuItemOpen.Click   += new System.EventHandler(this.menuItemOpen_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 3;
     this.menuItem2.Text  = "-";
     //
     // menuItemSave
     //
     this.menuItemSave.Index    = 4;
     this.menuItemSave.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
     this.menuItemSave.Text     = "&Save";
     this.menuItemSave.Click   += new System.EventHandler(this.menuItemSave_Click);
     //
     // menuItem4
     //
     this.menuItem4.Index = 5;
     this.menuItem4.Text  = "-";
     //
     // menuItemLanguageFolder
     //
     this.menuItemLanguageFolder.Index  = 6;
     this.menuItemLanguageFolder.Text   = "Set &Language Folder...";
     this.menuItemLanguageFolder.Click += new System.EventHandler(this.menuItemLanguageFolder_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 7;
     this.menuItem3.Text  = "-";
     //
     // menuItemExit
     //
     this.menuItemExit.Index    = 8;
     this.menuItemExit.Shortcut = System.Windows.Forms.Shortcut.AltF4;
     this.menuItemExit.Text     = "&Exit";
     this.menuItemExit.Click   += new System.EventHandler(this.menuItemExit_Click);
     //
     // menuItemEdit
     //
     this.menuItemEdit.Index = 1;
     this.menuItemEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemFind,
         this.menuItemFindNext,
         this.menuItem6,
         this.menuItemLanguageInfo
     });
     this.menuItemEdit.Text = "&Edit";
     //
     // menuItemFind
     //
     this.menuItemFind.Index    = 0;
     this.menuItemFind.Shortcut = System.Windows.Forms.Shortcut.CtrlF;
     this.menuItemFind.Text     = "&Find...";
     this.menuItemFind.Click   += new System.EventHandler(this.menuItemFind_Click);
     //
     // menuItemFindNext
     //
     this.menuItemFindNext.Enabled  = false;
     this.menuItemFindNext.Index    = 1;
     this.menuItemFindNext.Shortcut = System.Windows.Forms.Shortcut.F3;
     this.menuItemFindNext.Text     = "Find &Next";
     this.menuItemFindNext.Click   += new System.EventHandler(this.menuItemFindNext_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 2;
     this.menuItem6.Text  = "-";
     //
     // menuItemLanguageInfo
     //
     this.menuItemLanguageInfo.Index  = 3;
     this.menuItemLanguageInfo.Text   = "Language &Settings...";
     this.menuItemLanguageInfo.Click += new System.EventHandler(this.menuItemLanguageInfo_Click);
     //
     // menuItemOptions
     //
     this.menuItemOptions.Index = 2;
     this.menuItemOptions.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemUserName
     });
     this.menuItemOptions.Text = "&Options";
     //
     // menuItemUserName
     //
     this.menuItemUserName.Index  = 0;
     this.menuItemUserName.Text   = "&Translator Name...";
     this.menuItemUserName.Click += new System.EventHandler(this.menuItemUserName_Click);
     //
     // menuItemTools
     //
     this.menuItemTools.Index = 3;
     this.menuItemTools.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemValidate,
         this.menuItemConvert
     });
     this.menuItemTools.Text = "&Tools";
     //
     // menuItemValidate
     //
     this.menuItemValidate.Index  = 0;
     this.menuItemValidate.Text   = "&Validate Language File...";
     this.menuItemValidate.Click += new System.EventHandler(this.menuItemValidateFile_Click);
     //
     // menuItemConvert
     //
     this.menuItemConvert.Index  = 1;
     this.menuItemConvert.Text   = "&Convert Language File...";
     this.menuItemConvert.Click += new System.EventHandler(this.menuItemConvert_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 4;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemHelp,
         this.menuItem8,
         this.menuItemAbout
     });
     this.menuItem1.Text = "&?";
     //
     // menuItemHelp
     //
     this.menuItemHelp.Index  = 0;
     this.menuItemHelp.Text   = "&Help...";
     this.menuItemHelp.Click += new System.EventHandler(this.menuItemHelp_Click);
     //
     // menuItem8
     //
     this.menuItem8.Index = 1;
     this.menuItem8.Text  = "-";
     //
     // menuItemAbout
     //
     this.menuItemAbout.Index  = 2;
     this.menuItemAbout.Text   = "&About...";
     this.menuItemAbout.Click += new System.EventHandler(this.menuItemAbout_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.DefaultExt = "xml";
     this.openFileDialog1.FileName   = "strings.xml";
     this.openFileDialog1.Filter     = "Language File|strings.xml|All Files|*.*";
     this.openFileDialog1.Title      = "Choose the language file";
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.FileName = "strings.xml";
     this.saveFileDialog1.Filter   = "Language File|strings.xml|All Files|*.*";
     this.saveFileDialog1.Title    = "Save converted file as";
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(722, 411);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Menu            = this.mainMenu1;
     this.Name            = "MainForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Team XBMC Translator";
     this.Load           += new System.EventHandler(this.MainForm_Load);
     this.Closing        += new CancelEventHandler(MainForm_Closing);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #41
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSrChart));
     this.groupBox3           = new System.Windows.Forms.GroupBox();
     this.cmbCountry          = new System.Windows.Forms.ComboBox();
     this.label2              = new System.Windows.Forms.Label();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.button1             = new System.Windows.Forms.Button();
     this.cmbType             = new System.Windows.Forms.ComboBox();
     this.label4              = new System.Windows.Forms.Label();
     this.label3              = new System.Windows.Forms.Label();
     this.btnPrint            = new System.Windows.Forms.Button();
     this.dtTo                = new System.Windows.Forms.DateTimePicker();
     this.label1              = new System.Windows.Forms.Label();
     this.dtFrom              = new System.Windows.Forms.DateTimePicker();
     this.btnExit             = new System.Windows.Forms.Button();
     this.btnDisp             = new System.Windows.Forms.Button();
     this.tabChart            = new System.Windows.Forms.TabControl();
     this.tabPage1            = new System.Windows.Forms.TabPage();
     this.zedGraphControl1    = new ZedGraph.ZedGraphControl();
     this.lblInfo             = new System.Windows.Forms.Label();
     this.printDocument1      = new System.Drawing.Printing.PrintDocument();
     this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.trvDep              = new System.Windows.Forms.TreeView();
     this.numStart            = new System.Windows.Forms.NumericUpDown();
     this.numEnd              = new System.Windows.Forms.NumericUpDown();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabChart.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numStart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numEnd)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.cmbCountry);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(200, 48);
     this.groupBox3.TabIndex = 7;
     this.groupBox3.TabStop  = false;
     //
     // cmbCountry
     //
     this.cmbCountry.Location              = new System.Drawing.Point(84, 13);
     this.cmbCountry.Name                  = "cmbCountry";
     this.cmbCountry.Size                  = new System.Drawing.Size(108, 20);
     this.cmbCountry.TabIndex              = 3;
     this.cmbCountry.SelectedIndexChanged += new System.EventHandler(this.cmbCountry_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(4, 13);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(68, 23);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "所属乡镇:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.numEnd);
     this.groupBox2.Controls.Add(this.numStart);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.cmbType);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.btnPrint);
     this.groupBox2.Controls.Add(this.dtTo);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.dtFrom);
     this.groupBox2.Controls.Add(this.btnExit);
     this.groupBox2.Controls.Add(this.btnDisp);
     this.groupBox2.Location = new System.Drawing.Point(208, 0);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(808, 48);
     this.groupBox2.TabIndex = 6;
     this.groupBox2.TabStop  = false;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(616, 16);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(64, 23);
     this.button1.TabIndex = 11;
     this.button1.Text     = "日统计值图表";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // cmbType
     //
     this.cmbType.Location = new System.Drawing.Point(448, 16);
     this.cmbType.Name     = "cmbType";
     this.cmbType.Size     = new System.Drawing.Size(96, 20);
     this.cmbType.TabIndex = 10;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(376, 16);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(72, 23);
     this.label4.TabIndex  = 9;
     this.label4.Text      = "数据类型:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 16);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(72, 23);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "时间范围:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnPrint
     //
     this.btnPrint.Location = new System.Drawing.Point(680, 16);
     this.btnPrint.Name     = "btnPrint";
     this.btnPrint.Size     = new System.Drawing.Size(64, 23);
     this.btnPrint.TabIndex = 7;
     this.btnPrint.Text     = "打印";
     this.btnPrint.Click   += new System.EventHandler(this.btnPrint_Click);
     //
     // dtTo
     //
     this.dtTo.Location = new System.Drawing.Point(248, 17);
     this.dtTo.Name     = "dtTo";
     this.dtTo.Size     = new System.Drawing.Size(96, 21);
     this.dtTo.TabIndex = 4;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(216, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(32, 23);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "至:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dtFrom
     //
     this.dtFrom.Location = new System.Drawing.Point(88, 16);
     this.dtFrom.Name     = "dtFrom";
     this.dtFrom.Size     = new System.Drawing.Size(96, 21);
     this.dtFrom.TabIndex = 2;
     //
     // btnExit
     //
     this.btnExit.Location = new System.Drawing.Point(744, 16);
     this.btnExit.Name     = "btnExit";
     this.btnExit.Size     = new System.Drawing.Size(56, 23);
     this.btnExit.TabIndex = 1;
     this.btnExit.Text     = "退出";
     this.btnExit.Click   += new System.EventHandler(this.btnExit_Click);
     //
     // btnDisp
     //
     this.btnDisp.Location = new System.Drawing.Point(552, 16);
     this.btnDisp.Name     = "btnDisp";
     this.btnDisp.Size     = new System.Drawing.Size(64, 23);
     this.btnDisp.TabIndex = 0;
     this.btnDisp.Text     = "明细图表";
     this.btnDisp.Click   += new System.EventHandler(this.btnDisp_Click);
     //
     // tabChart
     //
     this.tabChart.Controls.Add(this.tabPage1);
     this.tabChart.Location              = new System.Drawing.Point(208, 56);
     this.tabChart.Name                  = "tabChart";
     this.tabChart.SelectedIndex         = 0;
     this.tabChart.Size                  = new System.Drawing.Size(808, 496);
     this.tabChart.TabIndex              = 5;
     this.tabChart.SelectedIndexChanged += new System.EventHandler(this.tabChart_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage1.Controls.Add(this.zedGraphControl1);
     this.tabPage1.Controls.Add(this.lblInfo);
     this.tabPage1.Location = new System.Drawing.Point(4, 21);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(800, 471);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "历史曲线";
     //
     // zedGraphControl1
     //
     this.zedGraphControl1.BackColor              = System.Drawing.SystemColors.Window;
     this.zedGraphControl1.Dock                   = System.Windows.Forms.DockStyle.Fill;
     this.zedGraphControl1.IsAutoScrollRange      = false;
     this.zedGraphControl1.IsEnableHPan           = true;
     this.zedGraphControl1.IsEnableHZoom          = true;
     this.zedGraphControl1.IsEnableVPan           = true;
     this.zedGraphControl1.IsEnableVZoom          = true;
     this.zedGraphControl1.IsPrintFillPage        = true;
     this.zedGraphControl1.IsPrintKeepAspectRatio = true;
     this.zedGraphControl1.IsScrollY2             = false;
     this.zedGraphControl1.IsShowContextMenu      = true;
     this.zedGraphControl1.IsShowCopyMessage      = true;
     this.zedGraphControl1.IsShowCursorValues     = false;
     this.zedGraphControl1.IsShowHScrollBar       = false;
     this.zedGraphControl1.IsShowPointValues      = false;
     this.zedGraphControl1.IsShowVScrollBar       = false;
     this.zedGraphControl1.IsZoomOnMouseCenter    = false;
     this.zedGraphControl1.Location               = new System.Drawing.Point(0, 0);
     this.zedGraphControl1.Name                   = "zedGraphControl1";
     this.zedGraphControl1.PanButtons             = System.Windows.Forms.MouseButtons.Left;
     this.zedGraphControl1.PanButtons2            = System.Windows.Forms.MouseButtons.Middle;
     this.zedGraphControl1.PanModifierKeys2       = System.Windows.Forms.Keys.None;
     this.zedGraphControl1.PointDateFormat        = "g";
     this.zedGraphControl1.PointValueFormat       = "G";
     this.zedGraphControl1.ScrollMaxX             = 0;
     this.zedGraphControl1.ScrollMaxY             = 0;
     this.zedGraphControl1.ScrollMaxY2            = 0;
     this.zedGraphControl1.ScrollMinX             = 0;
     this.zedGraphControl1.ScrollMinY             = 0;
     this.zedGraphControl1.ScrollMinY2            = 0;
     this.zedGraphControl1.Size                   = new System.Drawing.Size(800, 471);
     this.zedGraphControl1.TabIndex               = 1;
     this.zedGraphControl1.ZoomButtons            = System.Windows.Forms.MouseButtons.Left;
     this.zedGraphControl1.ZoomButtons2           = System.Windows.Forms.MouseButtons.None;
     this.zedGraphControl1.ZoomModifierKeys       = System.Windows.Forms.Keys.None;
     this.zedGraphControl1.ZoomModifierKeys2      = System.Windows.Forms.Keys.None;
     this.zedGraphControl1.ZoomStepFraction       = 0.1;
     //
     // lblInfo
     //
     this.lblInfo.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.lblInfo.Location  = new System.Drawing.Point(16, 16);
     this.lblInfo.Name      = "lblInfo";
     this.lblInfo.Size      = new System.Drawing.Size(440, 16);
     this.lblInfo.TabIndex  = 0;
     this.lblInfo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // printPreviewDialog1
     //
     this.printPreviewDialog1.AutoScrollMargin  = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.ClientSize        = new System.Drawing.Size(400, 300);
     this.printPreviewDialog1.Enabled           = true;
     this.printPreviewDialog1.Icon            = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
     this.printPreviewDialog1.Location        = new System.Drawing.Point(17, 17);
     this.printPreviewDialog1.MinimumSize     = new System.Drawing.Size(375, 250);
     this.printPreviewDialog1.Name            = "printPreviewDialog1";
     this.printPreviewDialog1.TransparencyKey = System.Drawing.Color.Empty;
     this.printPreviewDialog1.Visible         = false;
     this.printPreviewDialog1.Load           += new System.EventHandler(this.printPreviewDialog1_Load);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.trvDep);
     this.groupBox1.Location = new System.Drawing.Point(0, 48);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(200, 496);
     this.groupBox1.TabIndex = 4;
     this.groupBox1.TabStop  = false;
     //
     // trvDep
     //
     this.trvDep.ImageIndex         = -1;
     this.trvDep.Location           = new System.Drawing.Point(8, 16);
     this.trvDep.Name               = "trvDep";
     this.trvDep.SelectedImageIndex = -1;
     this.trvDep.Size               = new System.Drawing.Size(184, 472);
     this.trvDep.TabIndex           = 0;
     //
     // numStart
     //
     this.numStart.Location = new System.Drawing.Point(184, 17);
     this.numStart.Maximum  = new System.Decimal(new int[] {
         23,
         0,
         0,
         0
     });
     this.numStart.Name     = "numStart";
     this.numStart.Size     = new System.Drawing.Size(32, 21);
     this.numStart.TabIndex = 12;
     this.numStart.Value    = new System.Decimal(new int[] {
         8,
         0,
         0,
         0
     });
     //
     // numEnd
     //
     this.numEnd.Location = new System.Drawing.Point(344, 17);
     this.numEnd.Maximum  = new System.Decimal(new int[] {
         23,
         0,
         0,
         0
     });
     this.numEnd.Name     = "numEnd";
     this.numEnd.Size     = new System.Drawing.Size(32, 21);
     this.numEnd.TabIndex = 13;
     this.numEnd.Value    = new System.Decimal(new int[] {
         8,
         0,
         0,
         0
     });
     //
     // frmSrChart
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1016, 558);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.tabChart);
     this.Controls.Add(this.groupBox1);
     this.Name    = "frmSrChart";
     this.Text    = "数据图表";
     this.Resize += new System.EventHandler(this.frmSrChart_Resize);
     this.Load   += new System.EventHandler(this.frmSrChart_Load);
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.tabChart.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numStart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numEnd)).EndInit();
     this.ResumeLayout(false);
 }
Example #42
0
    //

    private void InitializeComponent()
    {
        System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMain));

        this.mnuMain = new System.Windows.Forms.MainMenu();

        this.mnuFile = new System.Windows.Forms.MenuItem();

        this.mnuExit = new System.Windows.Forms.MenuItem();

        this.mnuHelp = new System.Windows.Forms.MenuItem();

        this.mnuAbout = new System.Windows.Forms.MenuItem();

        this.lstProcessesAddItem = new System.Windows.Forms.ListBox();

        this.TabControl1 = new System.Windows.Forms.TabControl();

        this.TabPage1 = new System.Windows.Forms.TabPage();

        this.lblFileName1 = new System.Windows.Forms.Label();

        this.btnFill1 = new System.Windows.Forms.Button();

        this.TabPage3 = new System.Windows.Forms.TabPage();

        this.lblFileInfo = new System.Windows.Forms.Label();

        this.btnFill3 = new System.Windows.Forms.Button();

        this.lstFiles = new System.Windows.Forms.ListBox();

        this.TabPage4 = new System.Windows.Forms.TabPage();

        this.lstSelectedItems = new System.Windows.Forms.ListBox();

        this.lstSelected = new System.Windows.Forms.ListBox();

        this.btnFill4 = new System.Windows.Forms.Button();

        this.cboSelectionMode = new System.Windows.Forms.ComboBox();

        this.Label1 = new System.Windows.Forms.Label();

        this.lstMultiSelect = new System.Windows.Forms.ListBox();

        this.TabPage2 = new System.Windows.Forms.TabPage();

        this.lblFileName2 = new System.Windows.Forms.Label();

        this.btnFill2 = new System.Windows.Forms.Button();

        this.lstProcessesDataSource = new System.Windows.Forms.ListBox();

        this.TabPage5 = new System.Windows.Forms.TabPage();

        this.Label5 = new System.Windows.Forms.Label();

        this.lblResults = new System.Windows.Forms.Label();

        this.nudDropDownItems = new System.Windows.Forms.NumericUpDown();

        this.Label4 = new System.Windows.Forms.Label();

        this.btnFill5 = new System.Windows.Forms.Button();

        this.nudDropDownWidth = new System.Windows.Forms.NumericUpDown();

        this.Label3 = new System.Windows.Forms.Label();

        this.Label2 = new System.Windows.Forms.Label();

        this.cboDropDownStyle = new System.Windows.Forms.ComboBox();

        this.cboDemo = new System.Windows.Forms.ComboBox();

        this.TabControl1.SuspendLayout();

        this.TabPage1.SuspendLayout();

        this.TabPage3.SuspendLayout();

        this.TabPage4.SuspendLayout();

        this.TabPage2.SuspendLayout();

        this.TabPage5.SuspendLayout();

        ((System.ComponentModel.ISupportInitialize)(this.nudDropDownItems)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.nudDropDownWidth)).BeginInit();
        this.SuspendLayout();

        //

        //mnuMain

        //

        this.mnuMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.mnuFile, this.mnuHelp });

        //

        //mnuFile

        //

        this.mnuFile.Index = 0;

        this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.mnuExit });

        this.mnuFile.Text = "&File";

        //

        //mnuExit

        //

        this.mnuExit.Index = 0;

        this.mnuExit.Text = "E&xit";

        //

        //mnuHelp

        //

        this.mnuHelp.Index = 1;

        this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.mnuAbout });

        this.mnuHelp.Text = "&Help";

        //

        //mnuAbout

        //

        this.mnuAbout.Index = 0;

        this.mnuAbout.Text = "Text Comes from AssemblyInfo";

        //

        //lstProcessesAddItem

        //

        this.lstProcessesAddItem.Location = new System.Drawing.Point(8, 8);

        this.lstProcessesAddItem.Name = "lstProcessesAddItem";

        this.lstProcessesAddItem.Size = new System.Drawing.Size(232, 173);

        this.lstProcessesAddItem.TabIndex = 0;

        //

        //TabControl1

        //

        this.TabControl1.Controls.AddRange(new System.Windows.Forms.Control[] { this.TabPage1, this.TabPage3, this.TabPage4, this.TabPage2, this.TabPage5 });

        this.TabControl1.ItemSize = new System.Drawing.Size(59, 18);

        this.TabControl1.Location = new System.Drawing.Point(8, 8);

        this.TabControl1.Name = "TabControl1";

        this.TabControl1.SelectedIndex = 0;

        this.TabControl1.Size = new System.Drawing.Size(528, 264);

        this.TabControl1.TabIndex = 1;

        //

        //TabPage1

        //

        this.TabPage1.Controls.AddRange(new System.Windows.Forms.Control[] { this.lblFileName1, this.btnFill1, this.lstProcessesAddItem });

        this.TabPage1.Location = new System.Drawing.Point(4, 22);

        this.TabPage1.Name = "TabPage1";

        this.TabPage1.Size = new System.Drawing.Size(520, 238);

        this.TabPage1.TabIndex = 0;

        this.TabPage1.Text = "Add Items";

        //

        //lblFileName1

        //

        this.lblFileName1.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.lblFileName1.Location = new System.Drawing.Point(8, 184);

        this.lblFileName1.Name = "lblFileName1";

        this.lblFileName1.Size = new System.Drawing.Size(504, 48);

        this.lblFileName1.TabIndex = 2;

        //

        //btnFill1

        //

        this.btnFill1.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.btnFill1.Location = new System.Drawing.Point(250, 8);

        this.btnFill1.Name = "btnFill1";

        this.btnFill1.TabIndex = 1;

        this.btnFill1.Text = "Fill";

        //

        //TabPage3

        //

        this.TabPage3.Controls.AddRange(new System.Windows.Forms.Control[] { this.lblFileInfo, this.btnFill3, this.lstFiles });

        this.TabPage3.Location = new System.Drawing.Point(4, 22);

        this.TabPage3.Name = "TabPage3";

        this.TabPage3.Size = new System.Drawing.Size(520, 238);

        this.TabPage3.TabIndex = 2;

        this.TabPage3.Text = "Bind to DataTable";

        //

        //lblFileInfo

        //

        this.lblFileInfo.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.lblFileInfo.Location = new System.Drawing.Point(8, 208);

        this.lblFileInfo.Name = "lblFileInfo";

        this.lblFileInfo.Size = new System.Drawing.Size(504, 23);

        this.lblFileInfo.TabIndex = 8;

        //

        //btnFill3

        //

        this.btnFill3.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.btnFill3.Location = new System.Drawing.Point(250, 8);

        this.btnFill3.Name = "btnFill3";

        this.btnFill3.TabIndex = 7;

        this.btnFill3.Text = "Fill";

        //

        //lstFiles

        //

        this.lstFiles.Location = new System.Drawing.Point(8, 8);

        this.lstFiles.Name = "lstFiles";

        this.lstFiles.Size = new System.Drawing.Size(232, 186);

        this.lstFiles.TabIndex = 6;

        //

        //TabPage4

        //

        this.TabPage4.Controls.AddRange(new System.Windows.Forms.Control[] { this.lstSelectedItems, this.lstSelected, this.btnFill4, this.cboSelectionMode, this.Label1, this.lstMultiSelect });

        this.TabPage4.Location = new System.Drawing.Point(4, 22);

        this.TabPage4.Name = "TabPage4";

        this.TabPage4.Size = new System.Drawing.Size(520, 238);

        this.TabPage4.TabIndex = 3;

        this.TabPage4.Text = "Selection Mode";

        //

        //lstSelectedItems

        //

        this.lstSelectedItems.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;

        this.lstSelectedItems.Location = new System.Drawing.Point(320, 64);

        this.lstSelectedItems.Name = "lstSelectedItems";

        this.lstSelectedItems.SelectionMode = System.Windows.Forms.SelectionMode.None;

        this.lstSelectedItems.Size = new System.Drawing.Size(192, 106);

        this.lstSelectedItems.TabIndex = 10;

        //

        //lstSelected

        //

        this.lstSelected.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;

        this.lstSelected.Location = new System.Drawing.Point(250, 64);

        this.lstSelected.Name = "lstSelected";

        this.lstSelected.SelectionMode = System.Windows.Forms.SelectionMode.None;

        this.lstSelected.Size = new System.Drawing.Size(64, 106);

        this.lstSelected.TabIndex = 9;

        //

        //btnFill4

        //

        this.btnFill4.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.btnFill4.Location = new System.Drawing.Point(250, 8);

        this.btnFill4.Name = "btnFill4";

        this.btnFill4.TabIndex = 8;

        this.btnFill4.Text = "Fill";

        //

        //cboSelectionMode

        //

        this.cboSelectionMode.ItemHeight = 13;

        this.cboSelectionMode.Items.AddRange(new Object[] { "One", "MultiSimple", "MultiExtended" });

        this.cboSelectionMode.Location = new System.Drawing.Point(8, 176);

        this.cboSelectionMode.Name = "cboSelectionMode";

        this.cboSelectionMode.Size = new System.Drawing.Size(232, 21);

        this.cboSelectionMode.TabIndex = 4;

        //

        //Label1

        //

        this.Label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.Label1.Location = new System.Drawing.Point(250, 40);

        this.Label1.Name = "Label1";

        this.Label1.TabIndex = 3;

        this.Label1.Text = "You selected:";

        //

        //lstMultiSelect

        //

        this.lstMultiSelect.Location = new System.Drawing.Point(8, 8);

        this.lstMultiSelect.Name = "lstMultiSelect";

        this.lstMultiSelect.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;

        this.lstMultiSelect.Size = new System.Drawing.Size(232, 160);

        this.lstMultiSelect.TabIndex = 1;

        //

        //TabPage2

        //

        this.TabPage2.Controls.AddRange(new System.Windows.Forms.Control[] { this.lblFileName2, this.btnFill2, this.lstProcessesDataSource });

        this.TabPage2.Location = new System.Drawing.Point(4, 22);

        this.TabPage2.Name = "TabPage2";

        this.TabPage2.Size = new System.Drawing.Size(520, 238);

        this.TabPage2.TabIndex = 1;

        this.TabPage2.Text = "Bind to Array";

        //

        //lblFileName2

        //

        this.lblFileName2.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.lblFileName2.Location = new System.Drawing.Point(8, 184);

        this.lblFileName2.Name = "lblFileName2";

        this.lblFileName2.Size = new System.Drawing.Size(504, 48);

        this.lblFileName2.TabIndex = 5;

        //

        //btnFill2

        //

        this.btnFill2.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.btnFill2.Location = new System.Drawing.Point(250, 8);

        this.btnFill2.Name = "btnFill2";

        this.btnFill2.TabIndex = 4;

        this.btnFill2.Text = "Fill";

        //

        //lstProcessesDataSource

        //

        this.lstProcessesDataSource.Location = new System.Drawing.Point(8, 8);

        this.lstProcessesDataSource.Name = "lstProcessesDataSource";

        this.lstProcessesDataSource.Size = new System.Drawing.Size(232, 173);

        this.lstProcessesDataSource.TabIndex = 3;

        //

        //TabPage5

        //

        this.TabPage5.Controls.AddRange(new System.Windows.Forms.Control[] { this.Label5, this.lblResults, this.nudDropDownItems, this.Label4, this.btnFill5, this.nudDropDownWidth, this.Label3, this.Label2, this.cboDropDownStyle, this.cboDemo });

        this.TabPage5.Location = new System.Drawing.Point(4, 22);

        this.TabPage5.Name = "TabPage5";

        this.TabPage5.Size = new System.Drawing.Size(520, 238);

        this.TabPage5.TabIndex = 4;

        this.TabPage5.Text = "ComboBox";

        //

        //Label5

        //

        this.Label5.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.Label5.Location = new System.Drawing.Point(256, 136);

        this.Label5.Name = "Label5";

        this.Label5.Size = new System.Drawing.Size(120, 23);

        this.Label5.TabIndex = 8;

        this.Label5.Text = "Selected Value";

        this.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;

        //

        //lblResults

        //

        this.lblResults.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;

        this.lblResults.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.lblResults.Location = new System.Drawing.Point(384, 136);

        this.lblResults.Name = "lblResults";

        this.lblResults.Size = new System.Drawing.Size(48, 23);

        this.lblResults.TabIndex = 9;

        //

        //nudDropDownItems

        //

        this.nudDropDownItems.Location = new System.Drawing.Point(384, 104);

        this.nudDropDownItems.Maximum = new Decimal(new int[] { 20, 0, 0, 0 });

        this.nudDropDownItems.Minimum = new Decimal(new int[] { 2, 0, 0, 0 });

        this.nudDropDownItems.Name = "nudDropDownItems";

        this.nudDropDownItems.Size = new System.Drawing.Size(64, 20);

        this.nudDropDownItems.TabIndex = 7;

        this.nudDropDownItems.Value = new Decimal(new int[] { 20, 0, 0, 0 });

        //

        //Label4

        //

        this.Label4.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.Label4.Location = new System.Drawing.Point(256, 104);

        this.Label4.Name = "Label4";

        this.Label4.Size = new System.Drawing.Size(120, 23);

        this.Label4.TabIndex = 6;

        this.Label4.Text = "MaxDropDownItems";

        this.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;

        //

        //btnFill5

        //

        this.btnFill5.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.btnFill5.Location = new System.Drawing.Point(250, 8);

        this.btnFill5.Name = "btnFill5";

        this.btnFill5.TabIndex = 1;

        this.btnFill5.Text = "Fill";

        //

        //nudDropDownWidth

        //

        this.nudDropDownWidth.Location = new System.Drawing.Point(384, 72);

        this.nudDropDownWidth.Maximum = new Decimal(new int[] { 400, 0, 0, 0 });

        this.nudDropDownWidth.Minimum = new Decimal(new int[] { 50, 0, 0, 0 });

        this.nudDropDownWidth.Name = "nudDropDownWidth";

        this.nudDropDownWidth.Size = new System.Drawing.Size(64, 20);

        this.nudDropDownWidth.TabIndex = 5;

        this.nudDropDownWidth.Value = new Decimal(new int[] { 100, 0, 0, 0 });

        //

        //Label3

        //

        this.Label3.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.Label3.Location = new System.Drawing.Point(256, 72);

        this.Label3.Name = "Label3";

        this.Label3.Size = new System.Drawing.Size(120, 23);

        this.Label3.TabIndex = 4;

        this.Label3.Text = "DropDownWidth";

        this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;

        //

        //Label2

        //

        this.Label2.ImeMode = System.Windows.Forms.ImeMode.NoControl;

        this.Label2.Location = new System.Drawing.Point(256, 40);

        this.Label2.Name = "Label2";

        this.Label2.Size = new System.Drawing.Size(120, 23);

        this.Label2.TabIndex = 2;

        this.Label2.Text = "DropDownStyle";

        this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;

        //

        //cboDropDownStyle

        //

        this.cboDropDownStyle.ItemHeight = 13;

        this.cboDropDownStyle.Location = new System.Drawing.Point(384, 40);

        this.cboDropDownStyle.Name = "cboDropDownStyle";

        this.cboDropDownStyle.Size = new System.Drawing.Size(96, 21);

        this.cboDropDownStyle.TabIndex = 3;

        //

        //cboDemo

        //

        this.cboDemo.DropDownWidth = 200;

        this.cboDemo.ItemHeight = 13;

        this.cboDemo.Location = new System.Drawing.Point(8, 8);

        this.cboDemo.MaxDropDownItems = 10;

        this.cboDemo.Name = "cboDemo";

        this.cboDemo.Size = new System.Drawing.Size(200, 21);

        this.cboDemo.TabIndex = 0;

        //

        //frmMain

        //

        this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);

        this.ClientSize = new System.Drawing.Size(546, 275);

        this.Controls.AddRange(new System.Windows.Forms.Control[] { this.TabControl1 });

        this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;

        this.Icon          = (System.Drawing.Icon)resources.GetObject("$this.Icon");
        this.MaximizeBox   = false;
        this.Menu          = this.mnuMain;
        this.Name          = "frmMain";
        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        this.Text          = "Title Comes from Assembly Info";

        this.TabControl1.ResumeLayout(false);

        this.TabPage1.ResumeLayout(false);

        this.TabPage3.ResumeLayout(false);

        this.TabPage4.ResumeLayout(false);

        this.TabPage2.ResumeLayout(false);

        this.TabPage5.ResumeLayout(false);

        ((System.ComponentModel.ISupportInitialize)(this.nudDropDownItems)).EndInit();

        ((System.ComponentModel.ISupportInitialize)(this.nudDropDownWidth)).EndInit();

        this.ResumeLayout(false);

        this.mnuAbout.Click += new EventHandler(mnuAbout_Click);
        this.mnuExit.Click  += new EventHandler(mnuExit_Click);
        this.btnFill1.Click += new EventHandler(btnFill1_Click);
        this.lstProcessesAddItem.SelectedIndexChanged += new EventHandler(lstProcessesAddItem_SelectedIndexChanged);
        this.btnFill2.Click += new EventHandler(btnFill2_Click);
        this.btnFill3.Click += new EventHandler(btnFill3_Click);
        this.btnFill4.Click += new EventHandler(btnFill4_Click);
        this.btnFill5.Click += new EventHandler(btnFill5_Click);
        this.lstFiles.SelectedIndexChanged         += new EventHandler(lstFiles_SelectedIndexChanged);
        this.cboSelectionMode.SelectedIndexChanged += new EventHandler(cboSelectionMode_SelectedIndexChanged);
        this.lstMultiSelect.SelectedIndexChanged   += new EventHandler(lstMultiSelect_SelectedIndexChanged);
        this.cboDemo.SelectedIndexChanged          += new EventHandler(cboDemo_SelectedIndexChanged);
        this.cboDropDownStyle.SelectedIndexChanged += new EventHandler(cboDropDownStyle_SelectedIndexChanged);
        this.nudDropDownItems.ValueChanged         += new EventHandler(nudDropDownItems_ValueChanged);
        this.nudDropDownWidth.ValueChanged         += new EventHandler(nudDropDownWidth_ValueChanged);
        this.TabControl1.SelectedIndexChanged      += new EventHandler(TabControl1_SelectedIndexChanged);
    }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolBar1    = new System.Windows.Forms.ToolBar();
     this.panel1      = new System.Windows.Forms.Panel();
     this.panel3      = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1    = new System.Windows.Forms.TabPage();
     this.tabPage2    = new System.Windows.Forms.TabPage();
     this.splitter1   = new System.Windows.Forms.Splitter();
     this.panel2      = new System.Windows.Forms.Panel();
     this.treeView1   = new System.Windows.Forms.TreeView();
     this.mainMenu1   = new System.Windows.Forms.MainMenu();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolBar1
     //
     this.toolBar1.DropDownArrows = true;
     this.toolBar1.Location       = new System.Drawing.Point(0, 0);
     this.toolBar1.Name           = "toolBar1";
     this.toolBar1.ShowToolTips   = true;
     this.toolBar1.Size           = new System.Drawing.Size(472, 42);
     this.toolBar1.TabIndex       = 1;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.splitter1);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 42);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(472, 246);
     this.panel1.TabIndex = 2;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.tabControl1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(147, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(325, 246);
     this.panel3.TabIndex = 2;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     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(325, 246);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(317, 220);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "tabPage1";
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(317, 220);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "tabPage2";
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(144, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 246);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.treeView1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(144, 246);
     this.panel2.TabIndex = 0;
     //
     // treeView1
     //
     this.treeView1.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.ImageIndex         = -1;
     this.treeView1.Location           = new System.Drawing.Point(0, 0);
     this.treeView1.Name               = "treeView1";
     this.treeView1.SelectedImageIndex = -1;
     this.treeView1.Size               = new System.Drawing.Size(144, 246);
     this.treeView1.TabIndex           = 0;
     //
     // frmDBExploer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(472, 286);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.toolBar1);
     this.Menu = this.mainMenu1;
     this.Name = "frmDBExploer";
     this.Text = "frmDBExploer";
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     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()
 {
     this.cancelButton         = new System.Windows.Forms.ButtonEx();
     this.okButton             = new System.Windows.Forms.ButtonEx();
     this.autoIDBox            = new System.Windows.Forms.CheckBoxEx();
     this.idTextBox            = new System.Windows.Forms.TextBoxEx();
     this.tabControl           = new System.Windows.Forms.TabControl();
     this.swfTabPage           = new System.Windows.Forms.TabPage();
     this.specifySharepointBox = new System.Windows.Forms.CheckBoxEx();
     this.addPreloaderButton   = new System.Windows.Forms.RadioButton();
     this.explainLink          = new System.Windows.Forms.LinkLabel();
     this.sharepointTextBox    = new System.Windows.Forms.TextBoxEx();
     this.sharedLibraryButton  = new System.Windows.Forms.RadioButton();
     this.addLibraryButton     = new System.Windows.Forms.RadioButton();
     this.swcTabPage           = new System.Windows.Forms.TabPage();
     this.swcIncOption         = new System.Windows.Forms.RadioButton();
     this.swcExtOption         = new System.Windows.Forms.RadioButton();
     this.swcLibOption         = new System.Windows.Forms.RadioButton();
     this.fontTabPage          = new System.Windows.Forms.TabPage();
     this.charactersTextBox    = new System.Windows.Forms.TextBoxEx();
     this.embedTheseButton     = new System.Windows.Forms.RadioButton();
     this.embedAllButton       = new System.Windows.Forms.RadioButton();
     this.advancedTabPage      = new System.Windows.Forms.TabPage();
     this.browseButton         = new System.Windows.Forms.ButtonEx();
     this.updatedTextBox       = new System.Windows.Forms.TextBoxEx();
     this.keepUpdatedBox       = new System.Windows.Forms.CheckBoxEx();
     this.bitmapLinkageBox     = new System.Windows.Forms.CheckBoxEx();
     this.tabControl.SuspendLayout();
     this.swfTabPage.SuspendLayout();
     this.swcTabPage.SuspendLayout();
     this.fontTabPage.SuspendLayout();
     this.advancedTabPage.SuspendLayout();
     this.SuspendLayout();
     //
     // cancelButton
     //
     this.cancelButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.cancelButton.Location     = new System.Drawing.Point(239, 202);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(75, 21);
     this.cancelButton.TabIndex     = 2;
     this.cancelButton.Text         = "&Cancel";
     this.cancelButton.Click       += new System.EventHandler(this.cancelButton_Click);
     //
     // okButton
     //
     this.okButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.okButton.Location  = new System.Drawing.Point(156, 202);
     this.okButton.Name      = "okButton";
     this.okButton.Size      = new System.Drawing.Size(75, 21);
     this.okButton.TabIndex  = 1;
     this.okButton.Text      = "&OK";
     this.okButton.Click    += new System.EventHandler(this.okButton_Click);
     //
     // autoIDBox
     //
     this.autoIDBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.autoIDBox.Checked         = true;
     this.autoIDBox.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.autoIDBox.Location        = new System.Drawing.Point(16, 73);
     this.autoIDBox.Name            = "autoIDBox";
     this.autoIDBox.Size            = new System.Drawing.Size(266, 18);
     this.autoIDBox.TabIndex        = 0;
     this.autoIDBox.Text            = "Auto-generate &ID for attachMovie():";
     this.autoIDBox.CheckedChanged += new System.EventHandler(this.autoIDBox_CheckedChanged);
     //
     // idTextBox
     //
     this.idTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.idTextBox.Enabled      = false;
     this.idTextBox.Location     = new System.Drawing.Point(34, 94);
     this.idTextBox.Name         = "idTextBox";
     this.idTextBox.Size         = new System.Drawing.Size(248, 20);
     this.idTextBox.TabIndex     = 1;
     this.idTextBox.Text         = "Library.WorkerGuy.png";
     this.idTextBox.TextChanged += new System.EventHandler(this.idTextBox_TextChanged);
     //
     // tabControl
     //
     this.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.tabControl.Controls.Add(this.swfTabPage);
     this.tabControl.Controls.Add(this.swcTabPage);
     this.tabControl.Controls.Add(this.fontTabPage);
     this.tabControl.Controls.Add(this.advancedTabPage);
     this.tabControl.Location      = new System.Drawing.Point(10, 11);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(306, 185);
     this.tabControl.TabIndex      = 0;
     //
     // swfTabPage
     //
     this.swfTabPage.Controls.Add(this.specifySharepointBox);
     this.swfTabPage.Controls.Add(this.addPreloaderButton);
     this.swfTabPage.Controls.Add(this.explainLink);
     this.swfTabPage.Controls.Add(this.sharepointTextBox);
     this.swfTabPage.Controls.Add(this.sharedLibraryButton);
     this.swfTabPage.Controls.Add(this.addLibraryButton);
     this.swfTabPage.Location = new System.Drawing.Point(4, 22);
     this.swfTabPage.Name     = "swfTabPage";
     this.swfTabPage.Size     = new System.Drawing.Size(298, 159);
     this.swfTabPage.TabIndex = 2;
     this.swfTabPage.Text     = "SWF File";
     this.swfTabPage.UseVisualStyleBackColor = true;
     //
     // specifySharepointBox
     //
     this.specifySharepointBox.Anchor    = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.specifySharepointBox.BackColor = System.Drawing.Color.Transparent;
     this.specifySharepointBox.Location  = new System.Drawing.Point(35, 81);
     this.specifySharepointBox.Name      = "specifySharepointBox";
     this.specifySharepointBox.Size      = new System.Drawing.Size(197, 18);
     this.specifySharepointBox.TabIndex  = 3;
     this.specifySharepointBox.Text      = "&Specify sharepoint ID:";
     this.specifySharepointBox.UseVisualStyleBackColor = false;
     this.specifySharepointBox.CheckedChanged         += new System.EventHandler(this.specifySharepointBox_CheckedChanged);
     //
     // addPreloaderButton
     //
     this.addPreloaderButton.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.addPreloaderButton.Location        = new System.Drawing.Point(16, 36);
     this.addPreloaderButton.Name            = "addPreloaderButton";
     this.addPreloaderButton.Size            = new System.Drawing.Size(184, 16);
     this.addPreloaderButton.TabIndex        = 1;
     this.addPreloaderButton.Text            = " Add as &preloader";
     this.addPreloaderButton.CheckedChanged += new System.EventHandler(this.addPreloaderButton_CheckedChanged);
     //
     // explainLink
     //
     this.explainLink.Location     = new System.Drawing.Point(155, 8);
     this.explainLink.Name         = "explainLink";
     this.explainLink.Size         = new System.Drawing.Size(136, 16);
     this.explainLink.TabIndex     = 5;
     this.explainLink.TabStop      = true;
     this.explainLink.Text         = "Explain these options";
     this.explainLink.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this.explainLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.explainLink_LinkClicked);
     //
     // sharepointTextBox
     //
     this.sharepointTextBox.Enabled      = false;
     this.sharepointTextBox.Location     = new System.Drawing.Point(35, 102);
     this.sharepointTextBox.Name         = "sharepointTextBox";
     this.sharepointTextBox.Size         = new System.Drawing.Size(197, 20);
     this.sharepointTextBox.TabIndex     = 4;
     this.sharepointTextBox.TextChanged += new System.EventHandler(this.sharepointTextBox_TextChanged);
     //
     // sharedLibraryButton
     //
     this.sharedLibraryButton.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.sharedLibraryButton.Location        = new System.Drawing.Point(16, 57);
     this.sharedLibraryButton.Name            = "sharedLibraryButton";
     this.sharedLibraryButton.Size            = new System.Drawing.Size(224, 16);
     this.sharedLibraryButton.TabIndex        = 2;
     this.sharedLibraryButton.Text            = " Load at &runtime (shared library)";
     this.sharedLibraryButton.CheckedChanged += new System.EventHandler(this.sharedLibraryButton_CheckedChanged);
     //
     // addLibraryButton
     //
     this.addLibraryButton.Checked         = true;
     this.addLibraryButton.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.addLibraryButton.Location        = new System.Drawing.Point(16, 16);
     this.addLibraryButton.Name            = "addLibraryButton";
     this.addLibraryButton.Size            = new System.Drawing.Size(112, 16);
     this.addLibraryButton.TabIndex        = 0;
     this.addLibraryButton.TabStop         = true;
     this.addLibraryButton.Text            = " Add to &library";
     this.addLibraryButton.CheckedChanged += new System.EventHandler(this.addLibraryButton_CheckedChanged);
     //
     // swcTabPage
     //
     this.swcTabPage.Controls.Add(this.swcIncOption);
     this.swcTabPage.Controls.Add(this.swcExtOption);
     this.swcTabPage.Controls.Add(this.swcLibOption);
     this.swcTabPage.Location = new System.Drawing.Point(4, 22);
     this.swcTabPage.Name     = "swcTabPage";
     this.swcTabPage.Padding  = new System.Windows.Forms.Padding(3);
     this.swcTabPage.Size     = new System.Drawing.Size(298, 159);
     this.swcTabPage.TabIndex = 3;
     this.swcTabPage.Text     = "SWC File";
     this.swcTabPage.UseVisualStyleBackColor = true;
     //
     // swcIncOption
     //
     this.swcIncOption.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.swcIncOption.Location        = new System.Drawing.Point(16, 36);
     this.swcIncOption.Name            = "swcIncOption";
     this.swcIncOption.Size            = new System.Drawing.Size(250, 16);
     this.swcIncOption.TabIndex        = 4;
     this.swcIncOption.Text            = "&Included library (include completely)";
     this.swcIncOption.CheckedChanged += new System.EventHandler(this.swcLibOption_CheckedChanged);
     //
     // swcExtOption
     //
     this.swcExtOption.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.swcExtOption.Location        = new System.Drawing.Point(16, 57);
     this.swcExtOption.Name            = "swcExtOption";
     this.swcExtOption.Size            = new System.Drawing.Size(250, 16);
     this.swcExtOption.TabIndex        = 5;
     this.swcExtOption.Text            = "&External library (not included)";
     this.swcExtOption.CheckedChanged += new System.EventHandler(this.swcLibOption_CheckedChanged);
     //
     // swcLibOption
     //
     this.swcLibOption.Checked         = true;
     this.swcLibOption.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.swcLibOption.Location        = new System.Drawing.Point(16, 16);
     this.swcLibOption.Name            = "swcLibOption";
     this.swcLibOption.Size            = new System.Drawing.Size(250, 16);
     this.swcLibOption.TabIndex        = 3;
     this.swcLibOption.TabStop         = true;
     this.swcLibOption.Text            = "&Library (include referenced classes)";
     this.swcLibOption.CheckedChanged += new System.EventHandler(this.swcLibOption_CheckedChanged);
     //
     // fontTabPage
     //
     this.fontTabPage.Controls.Add(this.charactersTextBox);
     this.fontTabPage.Controls.Add(this.embedTheseButton);
     this.fontTabPage.Controls.Add(this.embedAllButton);
     this.fontTabPage.Location = new System.Drawing.Point(4, 22);
     this.fontTabPage.Name     = "fontTabPage";
     this.fontTabPage.Size     = new System.Drawing.Size(298, 159);
     this.fontTabPage.TabIndex = 1;
     this.fontTabPage.Text     = "Font";
     this.fontTabPage.UseVisualStyleBackColor = true;
     //
     // charactersTextBox
     //
     this.charactersTextBox.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.charactersTextBox.Location     = new System.Drawing.Point(35, 64);
     this.charactersTextBox.Multiline    = true;
     this.charactersTextBox.Name         = "charactersTextBox";
     this.charactersTextBox.Size         = new System.Drawing.Size(247, 79);
     this.charactersTextBox.TabIndex     = 2;
     this.charactersTextBox.TextChanged += new System.EventHandler(this.charactersTextBox_TextChanged);
     //
     // embedTheseButton
     //
     this.embedTheseButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.embedTheseButton.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.embedTheseButton.Location        = new System.Drawing.Point(16, 36);
     this.embedTheseButton.Name            = "embedTheseButton";
     this.embedTheseButton.Size            = new System.Drawing.Size(266, 16);
     this.embedTheseButton.TabIndex        = 1;
     this.embedTheseButton.Text            = " Embed &these characters:";
     this.embedTheseButton.CheckedChanged += new System.EventHandler(this.embedTheseButton_CheckedChanged);
     //
     // embedAllButton
     //
     this.embedAllButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.embedAllButton.Checked         = true;
     this.embedAllButton.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.embedAllButton.Location        = new System.Drawing.Point(16, 16);
     this.embedAllButton.Name            = "embedAllButton";
     this.embedAllButton.Size            = new System.Drawing.Size(258, 16);
     this.embedAllButton.TabIndex        = 0;
     this.embedAllButton.TabStop         = true;
     this.embedAllButton.Text            = " Embed &all characters";
     this.embedAllButton.CheckedChanged += new System.EventHandler(this.embedAllButton_CheckedChanged);
     //
     // advancedTabPage
     //
     this.advancedTabPage.Controls.Add(this.bitmapLinkageBox);
     this.advancedTabPage.Controls.Add(this.browseButton);
     this.advancedTabPage.Controls.Add(this.updatedTextBox);
     this.advancedTabPage.Controls.Add(this.keepUpdatedBox);
     this.advancedTabPage.Controls.Add(this.autoIDBox);
     this.advancedTabPage.Controls.Add(this.idTextBox);
     this.advancedTabPage.Location = new System.Drawing.Point(4, 22);
     this.advancedTabPage.Name     = "advancedTabPage";
     this.advancedTabPage.Size     = new System.Drawing.Size(298, 159);
     this.advancedTabPage.TabIndex = 0;
     this.advancedTabPage.Text     = "Advanced";
     this.advancedTabPage.UseVisualStyleBackColor = true;
     //
     // browseButton
     //
     this.browseButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.browseButton.Location  = new System.Drawing.Point(210, 35);
     this.browseButton.Name      = "browseButton";
     this.browseButton.Size      = new System.Drawing.Size(72, 21);
     this.browseButton.TabIndex  = 4;
     this.browseButton.Text      = "&Browse...";
     this.browseButton.Click    += new System.EventHandler(this.browseButton_Click);
     //
     // updatedTextBox
     //
     this.updatedTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.updatedTextBox.Enabled      = false;
     this.updatedTextBox.Location     = new System.Drawing.Point(34, 37);
     this.updatedTextBox.Name         = "updatedTextBox";
     this.updatedTextBox.Size         = new System.Drawing.Size(170, 20);
     this.updatedTextBox.TabIndex     = 3;
     this.updatedTextBox.TextChanged += new System.EventHandler(this.updatedTextBox_TextChanged);
     //
     // keepUpdatedBox
     //
     this.keepUpdatedBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.keepUpdatedBox.Location        = new System.Drawing.Point(16, 16);
     this.keepUpdatedBox.Name            = "keepUpdatedBox";
     this.keepUpdatedBox.Size            = new System.Drawing.Size(266, 18);
     this.keepUpdatedBox.TabIndex        = 2;
     this.keepUpdatedBox.Text            = "&Keep updated by copying source file:";
     this.keepUpdatedBox.CheckedChanged += new System.EventHandler(this.keepUpdatedBox_CheckedChanged);
     //
     // bitmapLinkageBox
     //
     this.bitmapLinkageBox.AutoSize = true;
     this.bitmapLinkageBox.Location = new System.Drawing.Point(16, 125);
     this.bitmapLinkageBox.Name     = "bitmapLinkageBox";
     this.bitmapLinkageBox.Size     = new System.Drawing.Size(174, 17);
     this.bitmapLinkageBox.TabIndex = 5;
     this.bitmapLinkageBox.Text     = "Embed as Bitmap instead of Clip";
     this.bitmapLinkageBox.UseVisualStyleBackColor = true;
     //
     // LibraryAssetDialog
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(324, 235);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "LibraryAssetDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Library Asset Properties";
     this.tabControl.ResumeLayout(false);
     this.swfTabPage.ResumeLayout(false);
     this.swfTabPage.PerformLayout();
     this.swcTabPage.ResumeLayout(false);
     this.fontTabPage.ResumeLayout(false);
     this.fontTabPage.PerformLayout();
     this.advancedTabPage.ResumeLayout(false);
     this.advancedTabPage.PerformLayout();
     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()
 {
     this.tabControl         = new System.Windows.Forms.TabControl();
     this.errorTab           = new System.Windows.Forms.TabPage();
     this.errorDisplay       = new NUnit.UiKit.ErrorDisplay();
     this.notRunTab          = new System.Windows.Forms.TabPage();
     this.notRunTree         = new NUnit.UiKit.NotRunTree();
     this.copyDetailMenuItem = new System.Windows.Forms.MenuItem();
     this.tabControl.SuspendLayout();
     this.errorTab.SuspendLayout();
     this.notRunTab.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     this.tabControl.Controls.Add(this.errorTab);
     this.tabControl.Controls.Add(this.notRunTab);
     this.tabControl.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Location              = new System.Drawing.Point(0, 0);
     this.tabControl.Name                  = "tabControl";
     this.tabControl.SelectedIndex         = 0;
     this.tabControl.Size                  = new System.Drawing.Size(488, 280);
     this.tabControl.TabIndex              = 3;
     this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
     //
     // errorTab
     //
     this.errorTab.Controls.Add(this.errorDisplay);
     this.errorTab.ForeColor = System.Drawing.SystemColors.ControlText;
     this.errorTab.Location  = new System.Drawing.Point(4, 4);
     this.errorTab.Name      = "errorTab";
     this.errorTab.Size      = new System.Drawing.Size(480, 254);
     this.errorTab.TabIndex  = 0;
     this.errorTab.Text      = "Errors and Failures";
     //
     // errorDisplay
     //
     this.errorDisplay.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.errorDisplay.Location = new System.Drawing.Point(0, 0);
     this.errorDisplay.Name     = "errorDisplay";
     this.errorDisplay.Size     = new System.Drawing.Size(480, 254);
     this.errorDisplay.TabIndex = 0;
     //
     // notRunTab
     //
     this.notRunTab.Controls.Add(this.notRunTree);
     this.notRunTab.ForeColor = System.Drawing.SystemColors.ControlText;
     this.notRunTab.Location  = new System.Drawing.Point(4, 4);
     this.notRunTab.Name      = "notRunTab";
     this.notRunTab.Size      = new System.Drawing.Size(480, 254);
     this.notRunTab.TabIndex  = 1;
     this.notRunTab.Text      = "Tests Not Run";
     this.notRunTab.Visible   = false;
     //
     // notRunTree
     //
     this.notRunTree.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.notRunTree.ImageIndex         = -1;
     this.notRunTree.Indent             = 19;
     this.notRunTree.Location           = new System.Drawing.Point(0, 0);
     this.notRunTree.Name               = "notRunTree";
     this.notRunTree.SelectedImageIndex = -1;
     this.notRunTree.Size               = new System.Drawing.Size(480, 254);
     this.notRunTree.TabIndex           = 0;
     //
     // copyDetailMenuItem
     //
     this.copyDetailMenuItem.Index = -1;
     this.copyDetailMenuItem.Text  = "Copy";
     //
     // ResultTabs
     //
     this.Controls.Add(this.tabControl);
     this.Name = "ResultTabs";
     this.Size = new System.Drawing.Size(488, 280);
     this.tabControl.ResumeLayout(false);
     this.errorTab.ResumeLayout(false);
     this.notRunTab.ResumeLayout(false);
     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.C_Panel        = new System.Windows.Forms.Panel();
     this.C_PBPreview    = new System.Windows.Forms.PictureBox();
     this.splitter1      = new System.Windows.Forms.Splitter();
     this.C_TabAxes      = new System.Windows.Forms.TabControl();
     this.C_TabPageX     = new System.Windows.Forms.TabPage();
     this.C_PropertyGrid = new System.Windows.Forms.PropertyGrid();
     this.C_TabPageY     = new System.Windows.Forms.TabPage();
     this.C_Panel.SuspendLayout();
     this.C_TabAxes.SuspendLayout();
     this.C_TabPageX.SuspendLayout();
     this.SuspendLayout();
     //
     // C_Panel
     //
     this.C_Panel.Controls.Add(this.C_PBPreview);
     this.C_Panel.Controls.Add(this.splitter1);
     this.C_Panel.Controls.Add(this.C_TabAxes);
     this.C_Panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.C_Panel.Location = new System.Drawing.Point(0, 0);
     this.C_Panel.Name     = "C_Panel";
     this.C_Panel.Size     = new System.Drawing.Size(680, 364);
     this.C_Panel.TabIndex = 0;
     //
     // C_PBPreview
     //
     this.C_PBPreview.BackColor = System.Drawing.Color.White;
     this.C_PBPreview.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.C_PBPreview.Location  = new System.Drawing.Point(0, 0);
     this.C_PBPreview.Name      = "C_PBPreview";
     this.C_PBPreview.Size      = new System.Drawing.Size(477, 364);
     this.C_PBPreview.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.C_PBPreview.TabIndex  = 0;
     this.C_PBPreview.TabStop   = false;
     this.C_PBPreview.Paint    += new System.Windows.Forms.PaintEventHandler(this.C_PBPreview_Paint);
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.splitter1.Location = new System.Drawing.Point(477, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 364);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // C_TabAxes
     //
     this.C_TabAxes.Controls.Add(this.C_TabPageX);
     this.C_TabAxes.Controls.Add(this.C_TabPageY);
     this.C_TabAxes.Dock                  = System.Windows.Forms.DockStyle.Right;
     this.C_TabAxes.Location              = new System.Drawing.Point(480, 0);
     this.C_TabAxes.Name                  = "C_TabAxes";
     this.C_TabAxes.SelectedIndex         = 0;
     this.C_TabAxes.Size                  = new System.Drawing.Size(200, 364);
     this.C_TabAxes.TabIndex              = 2;
     this.C_TabAxes.SelectedIndexChanged += new System.EventHandler(this.C_TabAxes_SelectedIndexChanged);
     //
     // C_TabPageX
     //
     this.C_TabPageX.Controls.Add(this.C_PropertyGrid);
     this.C_TabPageX.Location = new System.Drawing.Point(4, 23);
     this.C_TabPageX.Name     = "C_TabPageX";
     this.C_TabPageX.Size     = new System.Drawing.Size(192, 337);
     this.C_TabPageX.TabIndex = 0;
     this.C_TabPageX.Text     = "Axis X";
     //
     // C_PropertyGrid
     //
     this.C_PropertyGrid.CommandsVisibleIfAvailable = true;
     this.C_PropertyGrid.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.C_PropertyGrid.LargeButtons          = false;
     this.C_PropertyGrid.LineColor             = System.Drawing.SystemColors.ScrollBar;
     this.C_PropertyGrid.Location              = new System.Drawing.Point(0, 0);
     this.C_PropertyGrid.Name                  = "C_PropertyGrid";
     this.C_PropertyGrid.Size                  = new System.Drawing.Size(192, 337);
     this.C_PropertyGrid.TabIndex              = 0;
     this.C_PropertyGrid.Text                  = "PropertyGrid";
     this.C_PropertyGrid.ViewBackColor         = System.Drawing.SystemColors.Window;
     this.C_PropertyGrid.ViewForeColor         = System.Drawing.SystemColors.WindowText;
     this.C_PropertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.C_PropertyGrid_PropertyValueChanged);
     //
     // C_TabPageY
     //
     this.C_TabPageY.Location = new System.Drawing.Point(4, 23);
     this.C_TabPageY.Name     = "C_TabPageY";
     this.C_TabPageY.Size     = new System.Drawing.Size(192, 337);
     this.C_TabPageY.TabIndex = 1;
     this.C_TabPageY.Text     = "Axis Y";
     //
     // ConfigChartExAxes
     //
     this.Controls.Add(this.C_Panel);
     this.Name   = "ConfigChartExAxes";
     this.Size   = new System.Drawing.Size(680, 364);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.ConfigChartExChartType_Paint);
     this.C_Panel.ResumeLayout(false);
     this.C_TabAxes.ResumeLayout(false);
     this.C_TabPageX.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #47
0
        public void Initialize()
        {
            this.tabControl     = new System.Windows.Forms.TabControl();
            this.designFields   = new System.Windows.Forms.TabPage();
            this.databaseFields = new System.Windows.Forms.TabPage();

            this.treeControl      = new System.Windows.Forms.Button();
            this.buttonControl    = new System.Windows.Forms.Button();
            this.textBoxControl   = new System.Windows.Forms.Button();
            this.labelControl     = new System.Windows.Forms.Button();
            this.connectorControl = new System.Windows.Forms.Button();
            this.tableControl     = new System.Windows.Forms.Button();
            this.frameControl     = new System.Windows.Forms.Button();
            this.multiTabControl  = new System.Windows.Forms.Button();

            this.tabControl.SuspendLayout();
            this.designFields.SuspendLayout();
            this.databaseFields.SuspendLayout();

            // tabControl
            //
            this.tabControl.Controls.Add(this.designFields);
            this.tabControl.Controls.Add(this.databaseFields);
            this.tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location      = new System.Drawing.Point(0, 0);
            this.tabControl.Name          = "tabControl";
            this.tabControl.SelectedIndex = 0;
            this.tabControl.Size          = new System.Drawing.Size(217, 526);
            this.tabControl.TabIndex      = 0;
            // tableControl
            //
            this.tableControl.AllowDrop = true;
            this.tableControl.Location  = new System.Drawing.Point(6, 15);
            this.tableControl.Name      = "tableControl";
            this.tableControl.Size      = new System.Drawing.Size(94, 37);
            this.tableControl.TabIndex  = 1;
            this.tableControl.Text      = "Table";
            this.tableControl.UseVisualStyleBackColor = true;
            //
            // frameControl
            //
            this.frameControl.AllowDrop = true;
            this.frameControl.Location  = new System.Drawing.Point(3, 3);
            this.frameControl.Name      = "frameControl";
            this.frameControl.Size      = new System.Drawing.Size(75, 37);
            this.frameControl.TabIndex  = 0;
            this.frameControl.Text      = "Frame";
            this.frameControl.UseVisualStyleBackColor = true;
            //
            //
            // treeControl
            //
            this.treeControl.Location = new System.Drawing.Point(3, 114);
            this.treeControl.Name     = "treeControl";
            this.treeControl.Size     = new System.Drawing.Size(75, 37);
            this.treeControl.TabIndex = 4;
            this.treeControl.Text     = "Tree";
            this.treeControl.UseVisualStyleBackColor = true;
            //
            // buttonControl
            //
            this.buttonControl.Location = new System.Drawing.Point(100, 60);
            this.buttonControl.Name     = "buttonControl";
            this.buttonControl.Size     = new System.Drawing.Size(75, 37);
            this.buttonControl.TabIndex = 3;
            this.buttonControl.Text     = "Button";
            this.buttonControl.UseVisualStyleBackColor = true;
            //
            // textBoxControl
            //
            this.textBoxControl.Location = new System.Drawing.Point(3, 60);
            this.textBoxControl.Name     = "textBoxControl";
            this.textBoxControl.Size     = new System.Drawing.Size(75, 37);
            this.textBoxControl.TabIndex = 2;
            this.textBoxControl.Text     = "TextBox";
            this.textBoxControl.UseVisualStyleBackColor = true;
            //
            // labelControl
            //
            this.labelControl.Location = new System.Drawing.Point(100, 6);
            this.labelControl.Name     = "labelControl";
            this.labelControl.Size     = new System.Drawing.Size(75, 37);
            this.labelControl.TabIndex = 1;
            this.labelControl.Text     = "Label";
            this.labelControl.UseVisualStyleBackColor = true;
            //
            //
            // multiTabControl
            //
            this.multiTabControl.Location = new System.Drawing.Point(100, 114);
            this.multiTabControl.Name     = "multiTabControl";
            this.multiTabControl.Size     = new System.Drawing.Size(75, 37);
            this.multiTabControl.TabIndex = 5;
            this.multiTabControl.Text     = "MultiTab";
            this.multiTabControl.UseVisualStyleBackColor = true;
            //
            // designFields
            //
            this.designFields.Controls.Add(this.treeControl);
            this.designFields.Controls.Add(this.buttonControl);
            this.designFields.Controls.Add(this.textBoxControl);
            this.designFields.Controls.Add(this.labelControl);
            this.designFields.Controls.Add(this.frameControl);
            this.designFields.Controls.Add(this.multiTabControl);
            this.designFields.Location = new System.Drawing.Point(4, 25);
            this.designFields.Name     = "designFields";
            this.designFields.Padding  = new System.Windows.Forms.Padding(3);
            this.designFields.Size     = new System.Drawing.Size(209, 497);
            this.designFields.TabIndex = 0;
            this.designFields.Text     = "Design Fields";
            this.designFields.UseVisualStyleBackColor = true;

            //
            // databaseFields
            //
            this.databaseFields.Controls.Add(this.connectorControl);
            this.databaseFields.Controls.Add(this.tableControl);
            this.databaseFields.Location = new System.Drawing.Point(4, 25);
            this.databaseFields.Name     = "databaseFields";
            this.databaseFields.Padding  = new System.Windows.Forms.Padding(3);
            this.databaseFields.Size     = new System.Drawing.Size(209, 497);
            this.databaseFields.TabIndex = 1;
            this.databaseFields.Text     = "Database Fields";
            this.databaseFields.UseVisualStyleBackColor = true;
            //
            // connectorControl
            //
            this.connectorControl.AllowDrop = true;
            this.connectorControl.Location  = new System.Drawing.Point(8, 58);
            this.connectorControl.Name      = "connectorControl";
            this.connectorControl.Size      = new System.Drawing.Size(92, 37);
            this.connectorControl.TabIndex  = 2;
            this.connectorControl.Text      = "Connector";
            this.connectorControl.UseVisualStyleBackColor = true;


            this.Controls.Add(this.tabControl);
            this.tabControl.ResumeLayout(false);
            this.designFields.ResumeLayout(false);
            this.databaseFields.ResumeLayout(false);
            this.PerformLayout();


            RegisterDragDrop();
        }
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()
 {
     this.tabs                = new System.Windows.Forms.TabControl();
     this.testPage            = new System.Windows.Forms.TabPage();
     this.testPanel           = new System.Windows.Forms.Panel();
     this.treePanel           = new System.Windows.Forms.Panel();
     this.tests               = new NUnit.UiKit.TestSuiteTreeView();
     this.buttonPanel         = new System.Windows.Forms.Panel();
     this.checkFailedButton   = new System.Windows.Forms.Button();
     this.clearAllButton      = new System.Windows.Forms.Button();
     this.categoryPage        = new System.Windows.Forms.TabPage();
     this.categoryPanel       = new System.Windows.Forms.Panel();
     this.categoryButtonPanel = new System.Windows.Forms.Panel();
     this.removeCategory      = new System.Windows.Forms.Button();
     this.addCategory         = new System.Windows.Forms.Button();
     this.selectedCategories  = new System.Windows.Forms.GroupBox();
     this.selectedList        = new System.Windows.Forms.ListBox();
     this.excludeCheckbox     = new System.Windows.Forms.CheckBox();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.availableList       = new System.Windows.Forms.ListBox();
     this.tabs.SuspendLayout();
     this.testPage.SuspendLayout();
     this.testPanel.SuspendLayout();
     this.treePanel.SuspendLayout();
     this.buttonPanel.SuspendLayout();
     this.categoryPage.SuspendLayout();
     this.categoryPanel.SuspendLayout();
     this.categoryButtonPanel.SuspendLayout();
     this.selectedCategories.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // tabs
     //
     this.tabs.Alignment = System.Windows.Forms.TabAlignment.Left;
     this.tabs.Controls.Add(this.testPage);
     this.tabs.Controls.Add(this.categoryPage);
     this.tabs.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabs.Location      = new System.Drawing.Point(0, 0);
     this.tabs.Multiline     = true;
     this.tabs.Name          = "tabs";
     this.tabs.SelectedIndex = 0;
     this.tabs.Size          = new System.Drawing.Size(248, 496);
     this.tabs.TabIndex      = 0;
     //
     // testPage
     //
     this.testPage.Controls.Add(this.testPanel);
     this.testPage.Location = new System.Drawing.Point(25, 4);
     this.testPage.Name     = "testPage";
     this.testPage.Size     = new System.Drawing.Size(219, 488);
     this.testPage.TabIndex = 0;
     this.testPage.Text     = "Tests";
     //
     // testPanel
     //
     this.testPanel.Controls.Add(this.treePanel);
     this.testPanel.Controls.Add(this.buttonPanel);
     this.testPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.testPanel.Location = new System.Drawing.Point(0, 0);
     this.testPanel.Name     = "testPanel";
     this.testPanel.Size     = new System.Drawing.Size(219, 488);
     this.testPanel.TabIndex = 0;
     //
     // treePanel
     //
     this.treePanel.Controls.Add(this.tests);
     this.treePanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treePanel.Location = new System.Drawing.Point(0, 0);
     this.treePanel.Name     = "treePanel";
     this.treePanel.Size     = new System.Drawing.Size(219, 448);
     this.treePanel.TabIndex = 0;
     //
     // tests
     //
     this.tests.AllowDrop          = true;
     this.tests.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tests.HideSelection      = false;
     this.tests.Location           = new System.Drawing.Point(0, 0);
     this.tests.Name               = "tests";
     this.tests.Size               = new System.Drawing.Size(219, 448);
     this.tests.TabIndex           = 0;
     this.tests.CheckBoxesChanged += new System.EventHandler(this.tests_CheckBoxesChanged);
     //
     // buttonPanel
     //
     this.buttonPanel.Controls.Add(this.checkFailedButton);
     this.buttonPanel.Controls.Add(this.clearAllButton);
     this.buttonPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.buttonPanel.Location = new System.Drawing.Point(0, 448);
     this.buttonPanel.Name     = "buttonPanel";
     this.buttonPanel.Size     = new System.Drawing.Size(219, 40);
     this.buttonPanel.TabIndex = 1;
     //
     // checkFailedButton
     //
     this.checkFailedButton.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.checkFailedButton.Location = new System.Drawing.Point(117, 8);
     this.checkFailedButton.Name     = "checkFailedButton";
     this.checkFailedButton.Size     = new System.Drawing.Size(96, 23);
     this.checkFailedButton.TabIndex = 1;
     this.checkFailedButton.Text     = "Check Failed";
     this.checkFailedButton.Click   += new System.EventHandler(this.checkFailedButton_Click);
     //
     // clearAllButton
     //
     this.clearAllButton.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.clearAllButton.Location = new System.Drawing.Point(13, 8);
     this.clearAllButton.Name     = "clearAllButton";
     this.clearAllButton.Size     = new System.Drawing.Size(96, 23);
     this.clearAllButton.TabIndex = 0;
     this.clearAllButton.Text     = "Clear All";
     this.clearAllButton.Click   += new System.EventHandler(this.clearAllButton_Click);
     //
     // categoryPage
     //
     this.categoryPage.Controls.Add(this.categoryPanel);
     this.categoryPage.Location = new System.Drawing.Point(25, 4);
     this.categoryPage.Name     = "categoryPage";
     this.categoryPage.Size     = new System.Drawing.Size(219, 488);
     this.categoryPage.TabIndex = 1;
     this.categoryPage.Text     = "Categories";
     //
     // categoryPanel
     //
     this.categoryPanel.Controls.Add(this.categoryButtonPanel);
     this.categoryPanel.Controls.Add(this.selectedCategories);
     this.categoryPanel.Controls.Add(this.groupBox1);
     this.categoryPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.categoryPanel.Location = new System.Drawing.Point(0, 0);
     this.categoryPanel.Name     = "categoryPanel";
     this.categoryPanel.Size     = new System.Drawing.Size(219, 488);
     this.categoryPanel.TabIndex = 0;
     //
     // categoryButtonPanel
     //
     this.categoryButtonPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.categoryButtonPanel.Controls.Add(this.removeCategory);
     this.categoryButtonPanel.Controls.Add(this.addCategory);
     this.categoryButtonPanel.Location = new System.Drawing.Point(8, 280);
     this.categoryButtonPanel.Name     = "categoryButtonPanel";
     this.categoryButtonPanel.Size     = new System.Drawing.Size(203, 40);
     this.categoryButtonPanel.TabIndex = 1;
     //
     // removeCategory
     //
     this.removeCategory.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.removeCategory.Location = new System.Drawing.Point(109, 8);
     this.removeCategory.Name     = "removeCategory";
     this.removeCategory.TabIndex = 1;
     this.removeCategory.Text     = "Remove";
     this.removeCategory.Click   += new System.EventHandler(this.removeCategory_Click);
     //
     // addCategory
     //
     this.addCategory.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.addCategory.Location = new System.Drawing.Point(21, 8);
     this.addCategory.Name     = "addCategory";
     this.addCategory.TabIndex = 0;
     this.addCategory.Text     = "Add";
     this.addCategory.Click   += new System.EventHandler(this.addCategory_Click);
     //
     // selectedCategories
     //
     this.selectedCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.selectedCategories.Controls.Add(this.selectedList);
     this.selectedCategories.Controls.Add(this.excludeCheckbox);
     this.selectedCategories.Location = new System.Drawing.Point(8, 328);
     this.selectedCategories.Name     = "selectedCategories";
     this.selectedCategories.Size     = new System.Drawing.Size(203, 144);
     this.selectedCategories.TabIndex = 2;
     this.selectedCategories.TabStop  = false;
     this.selectedCategories.Text     = "Selected Categories";
     //
     // selectedList
     //
     this.selectedList.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.selectedList.ItemHeight    = 16;
     this.selectedList.Location      = new System.Drawing.Point(8, 16);
     this.selectedList.Name          = "selectedList";
     this.selectedList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.selectedList.Size          = new System.Drawing.Size(187, 84);
     this.selectedList.TabIndex      = 0;
     this.selectedList.DoubleClick  += new System.EventHandler(this.removeCategory_Click);
     //
     // excludeCheckbox
     //
     this.excludeCheckbox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.excludeCheckbox.Location        = new System.Drawing.Point(8, 120);
     this.excludeCheckbox.Name            = "excludeCheckbox";
     this.excludeCheckbox.Size            = new System.Drawing.Size(179, 16);
     this.excludeCheckbox.TabIndex        = 1;
     this.excludeCheckbox.Text            = "Exclude these categories";
     this.excludeCheckbox.CheckedChanged += new System.EventHandler(this.excludeCheckbox_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.Controls.Add(this.availableList);
     this.groupBox1.Location = new System.Drawing.Point(8, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(203, 272);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Available Categories";
     //
     // availableList
     //
     this.availableList.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.availableList.ItemHeight    = 16;
     this.availableList.Location      = new System.Drawing.Point(8, 24);
     this.availableList.Name          = "availableList";
     this.availableList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.availableList.Size          = new System.Drawing.Size(187, 244);
     this.availableList.TabIndex      = 0;
     this.availableList.DoubleClick  += new System.EventHandler(this.addCategory_Click);
     //
     // TestTree
     //
     this.Controls.Add(this.tabs);
     this.Name = "TestTree";
     this.Size = new System.Drawing.Size(248, 496);
     this.tabs.ResumeLayout(false);
     this.testPage.ResumeLayout(false);
     this.testPanel.ResumeLayout(false);
     this.treePanel.ResumeLayout(false);
     this.buttonPanel.ResumeLayout(false);
     this.categoryPage.ResumeLayout(false);
     this.categoryPanel.ResumeLayout(false);
     this.categoryButtonPanel.ResumeLayout(false);
     this.selectedCategories.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ProjectEditor));
     this.fileNameHeader           = new System.Windows.Forms.ColumnHeader();
     this.fullPathHeader           = new System.Windows.Forms.ColumnHeader();
     this.closeButton              = new System.Windows.Forms.Button();
     this.helpProvider1            = new System.Windows.Forms.HelpProvider();
     this.label5                   = new System.Windows.Forms.Label();
     this.projectPathLabel         = new CP.Windows.Forms.ExpandingLabel();
     this.label8                   = new System.Windows.Forms.Label();
     this.projectBaseTextBox       = new System.Windows.Forms.TextBox();
     this.projectTabControl        = new System.Windows.Forms.TabControl();
     this.generalTabPage           = new System.Windows.Forms.TabPage();
     this.autoBinPathRadioButton   = new System.Windows.Forms.RadioButton();
     this.manualBinPathRadioButton = new System.Windows.Forms.RadioButton();
     this.noBinPathRadioButton     = new System.Windows.Forms.RadioButton();
     this.configBaseBrowseButton   = new System.Windows.Forms.Button();
     this.privateBinPathTextBox    = new System.Windows.Forms.TextBox();
     this.label6                   = new System.Windows.Forms.Label();
     this.configFileTextBox        = new System.Windows.Forms.TextBox();
     this.label4                   = new System.Windows.Forms.Label();
     this.applicationBaseTextBox   = new System.Windows.Forms.TextBox();
     this.label3                   = new System.Windows.Forms.Label();
     this.assemblyTabPage          = new System.Windows.Forms.TabPage();
     this.assemblyPathTextBox      = new System.Windows.Forms.TextBox();
     this.label2                   = new System.Windows.Forms.Label();
     this.assemblyListBox          = new System.Windows.Forms.ListBox();
     this.addAssemblyButton        = new System.Windows.Forms.Button();
     this.removeAssemblyButton     = new System.Windows.Forms.Button();
     this.editConfigsButton        = new System.Windows.Forms.Button();
     this.configComboBox           = new System.Windows.Forms.ComboBox();
     this.label1                   = new System.Windows.Forms.Label();
     this.projectBaseBrowseButton  = new System.Windows.Forms.Button();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.assemblyPathBrowseButton = new System.Windows.Forms.Button();
     this.projectTabControl.SuspendLayout();
     this.generalTabPage.SuspendLayout();
     this.assemblyTabPage.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // fileNameHeader
     //
     this.fileNameHeader.Text  = "File Name";
     this.fileNameHeader.Width = 100;
     //
     // fullPathHeader
     //
     this.fullPathHeader.Text  = "Full Path";
     this.fullPathHeader.Width = 256;
     //
     // closeButton
     //
     this.closeButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.closeButton.Location     = new System.Drawing.Point(408, 415);
     this.closeButton.Name         = "closeButton";
     this.helpProvider1.SetShowHelp(this.closeButton, false);
     this.closeButton.Size     = new System.Drawing.Size(104, 23);
     this.closeButton.TabIndex = 6;
     this.closeButton.Text     = "Close";
     this.closeButton.Click   += new System.EventHandler(this.closeButton_Click);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(24, 8);
     this.label5.Name     = "label5";
     this.helpProvider1.SetShowHelp(this.label5, false);
     this.label5.Size     = new System.Drawing.Size(88, 16);
     this.label5.TabIndex = 0;
     this.label5.Text     = "Project Path:";
     //
     // projectPathLabel
     //
     this.projectPathLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.projectPathLabel.Location = new System.Drawing.Point(128, 8);
     this.projectPathLabel.Name     = "projectPathLabel";
     this.helpProvider1.SetShowHelp(this.projectPathLabel, false);
     this.projectPathLabel.Size     = new System.Drawing.Size(394, 16);
     this.projectPathLabel.TabIndex = 1;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(24, 37);
     this.label8.Name     = "label8";
     this.helpProvider1.SetShowHelp(this.label8, false);
     this.label8.Size     = new System.Drawing.Size(120, 16);
     this.label8.TabIndex = 7;
     this.label8.Text     = "Project Base:";
     //
     // projectBaseTextBox
     //
     this.helpProvider1.SetHelpString(this.projectBaseTextBox, "The ApplicationBase for the project. Defaults to the location of the project file" +
                                      ".");
     this.projectBaseTextBox.Location = new System.Drawing.Point(125, 37);
     this.projectBaseTextBox.Name     = "projectBaseTextBox";
     this.helpProvider1.SetShowHelp(this.projectBaseTextBox, true);
     this.projectBaseTextBox.Size        = new System.Drawing.Size(339, 22);
     this.projectBaseTextBox.TabIndex    = 8;
     this.projectBaseTextBox.Text        = "";
     this.projectBaseTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.projectBaseTextBox_Validating);
     this.projectBaseTextBox.Validated  += new System.EventHandler(this.projectBaseTextBox_Validated);
     //
     // projectTabControl
     //
     this.projectTabControl.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.projectTabControl.Controls.Add(this.generalTabPage);
     this.projectTabControl.Controls.Add(this.assemblyTabPage);
     this.projectTabControl.ItemSize      = new System.Drawing.Size(49, 18);
     this.projectTabControl.Location      = new System.Drawing.Point(8, 64);
     this.projectTabControl.Name          = "projectTabControl";
     this.projectTabControl.SelectedIndex = 0;
     this.helpProvider1.SetShowHelp(this.projectTabControl, false);
     this.projectTabControl.Size     = new System.Drawing.Size(488, 264);
     this.projectTabControl.TabIndex = 9;
     //
     // generalTabPage
     //
     this.generalTabPage.Controls.Add(this.autoBinPathRadioButton);
     this.generalTabPage.Controls.Add(this.manualBinPathRadioButton);
     this.generalTabPage.Controls.Add(this.noBinPathRadioButton);
     this.generalTabPage.Controls.Add(this.configBaseBrowseButton);
     this.generalTabPage.Controls.Add(this.privateBinPathTextBox);
     this.generalTabPage.Controls.Add(this.label6);
     this.generalTabPage.Controls.Add(this.configFileTextBox);
     this.generalTabPage.Controls.Add(this.label4);
     this.generalTabPage.Controls.Add(this.applicationBaseTextBox);
     this.generalTabPage.Controls.Add(this.label3);
     this.generalTabPage.Location = new System.Drawing.Point(4, 22);
     this.generalTabPage.Name     = "generalTabPage";
     this.helpProvider1.SetShowHelp(this.generalTabPage, false);
     this.generalTabPage.Size     = new System.Drawing.Size(480, 238);
     this.generalTabPage.TabIndex = 0;
     this.generalTabPage.Text     = "General";
     //
     // autoBinPathRadioButton
     //
     this.autoBinPathRadioButton.Location = new System.Drawing.Point(32, 96);
     this.autoBinPathRadioButton.Name     = "autoBinPathRadioButton";
     this.helpProvider1.SetShowHelp(this.autoBinPathRadioButton, false);
     this.autoBinPathRadioButton.Size            = new System.Drawing.Size(328, 24);
     this.autoBinPathRadioButton.TabIndex        = 10;
     this.autoBinPathRadioButton.Text            = "Use automatically generated path";
     this.autoBinPathRadioButton.CheckedChanged += new System.EventHandler(this.autoBinPathRadioButton_CheckedChanged);
     //
     // manualBinPathRadioButton
     //
     this.manualBinPathRadioButton.Location = new System.Drawing.Point(32, 128);
     this.manualBinPathRadioButton.Name     = "manualBinPathRadioButton";
     this.helpProvider1.SetShowHelp(this.manualBinPathRadioButton, false);
     this.manualBinPathRadioButton.TabIndex        = 9;
     this.manualBinPathRadioButton.Text            = "Use this path:";
     this.manualBinPathRadioButton.CheckedChanged += new System.EventHandler(this.manualBinPathRadioButton_CheckedChanged);
     //
     // noBinPathRadioButton
     //
     this.noBinPathRadioButton.Location = new System.Drawing.Point(32, 160);
     this.noBinPathRadioButton.Name     = "noBinPathRadioButton";
     this.helpProvider1.SetShowHelp(this.noBinPathRadioButton, false);
     this.noBinPathRadioButton.Size            = new System.Drawing.Size(424, 24);
     this.noBinPathRadioButton.TabIndex        = 8;
     this.noBinPathRadioButton.Text            = "None - or specified in Configuration File";
     this.noBinPathRadioButton.CheckedChanged += new System.EventHandler(this.noBinPathRadioButton_CheckedChanged);
     //
     // configBaseBrowseButton
     //
     this.configBaseBrowseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.configBaseBrowseButton, "Browse to locate ApplicationBase directory.");
     this.configBaseBrowseButton.Image    = ((System.Drawing.Image)(resources.GetObject("configBaseBrowseButton.Image")));
     this.configBaseBrowseButton.Location = new System.Drawing.Point(448, 8);
     this.configBaseBrowseButton.Name     = "configBaseBrowseButton";
     this.helpProvider1.SetShowHelp(this.configBaseBrowseButton, true);
     this.configBaseBrowseButton.Size     = new System.Drawing.Size(24, 24);
     this.configBaseBrowseButton.TabIndex = 7;
     this.configBaseBrowseButton.Click   += new System.EventHandler(this.configBaseBrowseButton_Click);
     //
     // privateBinPathTextBox
     //
     this.privateBinPathTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.privateBinPathTextBox, "Path searched when probing for private asemblies. Directories must be descendants" +
                                      " of the ApplicationBase.");
     this.privateBinPathTextBox.Location = new System.Drawing.Point(136, 128);
     this.privateBinPathTextBox.Name     = "privateBinPathTextBox";
     this.helpProvider1.SetShowHelp(this.privateBinPathTextBox, true);
     this.privateBinPathTextBox.Size        = new System.Drawing.Size(336, 22);
     this.privateBinPathTextBox.TabIndex    = 5;
     this.privateBinPathTextBox.Text        = "";
     this.privateBinPathTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.privateBinPathTextBox_Validating);
     this.privateBinPathTextBox.Validated  += new System.EventHandler(this.privateBinPathTextBox_Validated);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(16, 72);
     this.label6.Name     = "label6";
     this.helpProvider1.SetShowHelp(this.label6, false);
     this.label6.Size     = new System.Drawing.Size(97, 18);
     this.label6.TabIndex = 4;
     this.label6.Text     = "PrivateBinPath:";
     //
     // configFileTextBox
     //
     this.configFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.configFileTextBox, "Configuration file to use when loading assemblies if it exists. Defaults to <proj" +
                                      "ectname>.config. Must be located in the ApplicationBase directory.");
     this.configFileTextBox.Location = new System.Drawing.Point(176, 40);
     this.configFileTextBox.Name     = "configFileTextBox";
     this.helpProvider1.SetShowHelp(this.configFileTextBox, true);
     this.configFileTextBox.Size        = new System.Drawing.Size(296, 22);
     this.configFileTextBox.TabIndex    = 3;
     this.configFileTextBox.Text        = "";
     this.configFileTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.configFileTextBox_Validating);
     this.configFileTextBox.Validated  += new System.EventHandler(this.configFileTextBox_Validated);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(16, 40);
     this.label4.Name     = "label4";
     this.helpProvider1.SetShowHelp(this.label4, false);
     this.label4.Size     = new System.Drawing.Size(153, 18);
     this.label4.TabIndex = 2;
     this.label4.Text     = "Configuration File Name:";
     //
     // applicationBaseTextBox
     //
     this.applicationBaseTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.applicationBaseTextBox, "The ApplicationBase for this configuration. May be absolute or relative to the pr" +
                                      "oject base. Defaults to the project base if not set.");
     this.applicationBaseTextBox.Location = new System.Drawing.Point(128, 8);
     this.applicationBaseTextBox.Name     = "applicationBaseTextBox";
     this.helpProvider1.SetShowHelp(this.applicationBaseTextBox, true);
     this.applicationBaseTextBox.Size        = new System.Drawing.Size(304, 22);
     this.applicationBaseTextBox.TabIndex    = 1;
     this.applicationBaseTextBox.Text        = "";
     this.applicationBaseTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.applicationBaseTextBox_Validating);
     this.applicationBaseTextBox.Validated  += new System.EventHandler(this.applicationBaseTextBox_Validated);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(16, 8);
     this.label3.Name     = "label3";
     this.helpProvider1.SetShowHelp(this.label3, false);
     this.label3.Size     = new System.Drawing.Size(105, 18);
     this.label3.TabIndex = 0;
     this.label3.Text     = "ApplicationBase:";
     //
     // assemblyTabPage
     //
     this.assemblyTabPage.Controls.Add(this.assemblyPathBrowseButton);
     this.assemblyTabPage.Controls.Add(this.assemblyPathTextBox);
     this.assemblyTabPage.Controls.Add(this.label2);
     this.assemblyTabPage.Controls.Add(this.assemblyListBox);
     this.assemblyTabPage.Controls.Add(this.addAssemblyButton);
     this.assemblyTabPage.Controls.Add(this.removeAssemblyButton);
     this.assemblyTabPage.Location = new System.Drawing.Point(4, 22);
     this.assemblyTabPage.Name     = "assemblyTabPage";
     this.helpProvider1.SetShowHelp(this.assemblyTabPage, false);
     this.assemblyTabPage.Size     = new System.Drawing.Size(480, 238);
     this.assemblyTabPage.TabIndex = 1;
     this.assemblyTabPage.Text     = "Assemblies";
     this.assemblyTabPage.Visible  = false;
     //
     // assemblyPathTextBox
     //
     this.assemblyPathTextBox.Location    = new System.Drawing.Point(16, 168);
     this.assemblyPathTextBox.Name        = "assemblyPathTextBox";
     this.assemblyPathTextBox.Size        = new System.Drawing.Size(416, 22);
     this.assemblyPathTextBox.TabIndex    = 8;
     this.assemblyPathTextBox.Text        = "";
     this.assemblyPathTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.assemblyPathTextBox_Validating);
     this.assemblyPathTextBox.Validated  += new System.EventHandler(this.assemblyPathTextBox_Validated);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 144);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(128, 16);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Assembly Path:";
     //
     // assemblyListBox
     //
     this.helpProvider1.SetHelpString(this.assemblyListBox, "Checked assemblies will have tests loaded in the UI. Tests (if any) in unchecked " +
                                      "assemblies will not be loaded. All listed assemblies are watched for changes and" +
                                      " used in determining the PrivateBinPath.");
     this.assemblyListBox.ItemHeight = 16;
     this.assemblyListBox.Location   = new System.Drawing.Point(16, 16);
     this.assemblyListBox.Name       = "assemblyListBox";
     this.helpProvider1.SetShowHelp(this.assemblyListBox, true);
     this.assemblyListBox.Size                  = new System.Drawing.Size(368, 116);
     this.assemblyListBox.TabIndex              = 6;
     this.assemblyListBox.SelectedIndexChanged += new System.EventHandler(this.assemblyListBox_SelectedIndexChanged);
     //
     // addAssemblyButton
     //
     this.addAssemblyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.addAssemblyButton, "Add an assembly to this configuration.");
     this.addAssemblyButton.Location = new System.Drawing.Point(392, 24);
     this.addAssemblyButton.Name     = "addAssemblyButton";
     this.helpProvider1.SetShowHelp(this.addAssemblyButton, true);
     this.addAssemblyButton.Size     = new System.Drawing.Size(80, 23);
     this.addAssemblyButton.TabIndex = 2;
     this.addAssemblyButton.Text     = "&Add...";
     this.addAssemblyButton.Click   += new System.EventHandler(this.addAssemblyButton_Click);
     //
     // removeAssemblyButton
     //
     this.removeAssemblyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.removeAssemblyButton, "Remove the selected assembly from the configuration.");
     this.removeAssemblyButton.Location = new System.Drawing.Point(392, 56);
     this.removeAssemblyButton.Name     = "removeAssemblyButton";
     this.helpProvider1.SetShowHelp(this.removeAssemblyButton, true);
     this.removeAssemblyButton.Size     = new System.Drawing.Size(80, 23);
     this.removeAssemblyButton.TabIndex = 5;
     this.removeAssemblyButton.Text     = "&Remove";
     this.removeAssemblyButton.Click   += new System.EventHandler(this.removeAssemblyButton_Click);
     //
     // editConfigsButton
     //
     this.editConfigsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.editConfigsButton, "Add, remove or rename configurations.");
     this.editConfigsButton.Location = new System.Drawing.Point(385, 24);
     this.editConfigsButton.Name     = "editConfigsButton";
     this.helpProvider1.SetShowHelp(this.editConfigsButton, true);
     this.editConfigsButton.Size     = new System.Drawing.Size(104, 23);
     this.editConfigsButton.TabIndex = 8;
     this.editConfigsButton.Text     = "&Edit Configs...";
     this.editConfigsButton.Click   += new System.EventHandler(this.editConfigsButton_Click);
     //
     // configComboBox
     //
     this.configComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.configComboBox, "Select the configuration to edit");
     this.configComboBox.ItemHeight = 16;
     this.configComboBox.Location   = new System.Drawing.Point(120, 24);
     this.configComboBox.Name       = "configComboBox";
     this.helpProvider1.SetShowHelp(this.configComboBox, true);
     this.configComboBox.Size                  = new System.Drawing.Size(256, 24);
     this.configComboBox.TabIndex              = 7;
     this.configComboBox.SelectedIndexChanged += new System.EventHandler(this.configComboBox_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 32);
     this.label1.Name     = "label1";
     this.helpProvider1.SetShowHelp(this.label1, false);
     this.label1.Size     = new System.Drawing.Size(88, 16);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Configuration:";
     //
     // projectBaseBrowseButton
     //
     this.projectBaseBrowseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.projectBaseBrowseButton, "Browse to locate ApplicationBase directory.");
     this.projectBaseBrowseButton.Image    = ((System.Drawing.Image)(resources.GetObject("projectBaseBrowseButton.Image")));
     this.projectBaseBrowseButton.Location = new System.Drawing.Point(472, 40);
     this.projectBaseBrowseButton.Name     = "projectBaseBrowseButton";
     this.helpProvider1.SetShowHelp(this.projectBaseBrowseButton, true);
     this.projectBaseBrowseButton.Size     = new System.Drawing.Size(24, 24);
     this.projectBaseBrowseButton.TabIndex = 10;
     this.projectBaseBrowseButton.Click   += new System.EventHandler(this.projectBaseBrowseButton_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.SystemColors.Control;
     this.groupBox1.Controls.Add(this.projectTabControl);
     this.groupBox1.Controls.Add(this.editConfigsButton);
     this.groupBox1.Controls.Add(this.configComboBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(16, 72);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(505, 336);
     this.groupBox1.TabIndex = 9;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Configuration Properties";
     //
     // assemblyPathBrowseButton
     //
     this.assemblyPathBrowseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.helpProvider1.SetHelpString(this.assemblyPathBrowseButton, "Browse to locate ApplicationBase directory.");
     this.assemblyPathBrowseButton.Image    = ((System.Drawing.Image)(resources.GetObject("assemblyPathBrowseButton.Image")));
     this.assemblyPathBrowseButton.Location = new System.Drawing.Point(448, 168);
     this.assemblyPathBrowseButton.Name     = "assemblyPathBrowseButton";
     this.helpProvider1.SetShowHelp(this.assemblyPathBrowseButton, true);
     this.assemblyPathBrowseButton.Size     = new System.Drawing.Size(24, 24);
     this.assemblyPathBrowseButton.TabIndex = 11;
     this.assemblyPathBrowseButton.Click   += new System.EventHandler(this.assemblyPathBrowseButton_Click);
     //
     // ProjectEditor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(537, 442);
     this.Controls.Add(this.projectBaseBrowseButton);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.projectBaseTextBox);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.projectPathLabel);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.closeButton);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.HelpButton      = true;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(376, 400);
     this.Name            = "ProjectEditor";
     this.helpProvider1.SetShowHelp(this, false);
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "NUnit Test Project Editor";
     this.TransparencyKey = System.Drawing.Color.Green;
     this.Load           += new System.EventHandler(this.ProjectEditor_Load);
     this.projectTabControl.ResumeLayout(false);
     this.generalTabPage.ResumeLayout(false);
     this.assemblyTabPage.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.mainMenu1            = new System.Windows.Forms.MainMenu(this.components);
     this.menuFile             = new System.Windows.Forms.MenuItem();
     this.menuOpenDoc          = new System.Windows.Forms.MenuItem();
     this.menuNewDoc           = new System.Windows.Forms.MenuItem();
     this.menuSaveDoc          = new System.Windows.Forms.MenuItem();
     this.menuSaveAsDoc        = new System.Windows.Forms.MenuItem();
     this.menuSeparator        = new System.Windows.Forms.MenuItem();
     this.menuAppExit          = new System.Windows.Forms.MenuItem();
     this.statusBar1           = new System.Windows.Forms.StatusBar();
     this.statusBarXYUnits     = new System.Windows.Forms.StatusBarPanel();
     this.axToolbarControl1    = new ESRI.ArcGIS.Controls.AxToolbarControl();
     this.axTOCControl1        = new ESRI.ArcGIS.Controls.AxTOCControl();
     this.tabControl1          = new System.Windows.Forms.TabControl();
     this.tabPage1             = new System.Windows.Forms.TabPage();
     this.axLicenseControl1    = new ESRI.ArcGIS.Controls.AxLicenseControl();
     this.axMapControl1        = new ESRI.ArcGIS.Controls.AxMapControl();
     this.tabPage2             = new System.Windows.Forms.TabPage();
     this.axPageLayoutControl1 = new ESRI.ArcGIS.Controls.AxPageLayoutControl();
     this.axToolbarControl2    = new ESRI.ArcGIS.Controls.AxToolbarControl();
     this.splitter1            = new System.Windows.Forms.Splitter();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarXYUnits)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axToolbarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axTOCControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axLicenseControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axMapControl1)).BeginInit();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axPageLayoutControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axToolbarControl2)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuFile
     });
     //
     // menuFile
     //
     this.menuFile.Index = 0;
     this.menuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuOpenDoc,
         this.menuNewDoc,
         this.menuSaveDoc,
         this.menuSaveAsDoc,
         this.menuSeparator,
         this.menuAppExit
     });
     this.menuFile.Text = "File";
     //
     // menuOpenDoc
     //
     this.menuOpenDoc.Index  = 0;
     this.menuOpenDoc.Text   = "Open...";
     this.menuOpenDoc.Click += new System.EventHandler(this.menuOpenDoc_Click);
     //
     // menuNewDoc
     //
     this.menuNewDoc.Index  = 1;
     this.menuNewDoc.Text   = "New...";
     this.menuNewDoc.Click += new System.EventHandler(this.menuNewDoc_Click);
     //
     // menuSaveDoc
     //
     this.menuSaveDoc.Index  = 2;
     this.menuSaveDoc.Text   = "Save";
     this.menuSaveDoc.Click += new System.EventHandler(this.menuSaveDoc_Click);
     //
     // menuSaveAsDoc
     //
     this.menuSaveAsDoc.Index  = 3;
     this.menuSaveAsDoc.Text   = "Save As...";
     this.menuSaveAsDoc.Click += new System.EventHandler(this.menuSaveAsDoc_Click);
     //
     // menuSeparator
     //
     this.menuSeparator.Index = 4;
     this.menuSeparator.Text  = "-";
     //
     // menuAppExit
     //
     this.menuAppExit.Index  = 5;
     this.menuAppExit.Text   = "Exit";
     this.menuAppExit.Click += new System.EventHandler(this.menuAppExit_Click);
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 544);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarXYUnits
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(784, 22);
     this.statusBar1.TabIndex   = 5;
     //
     // statusBarXYUnits
     //
     this.statusBarXYUnits.Name  = "statusBarXYUnits";
     this.statusBarXYUnits.Width = 200;
     //
     // axToolbarControl1
     //
     this.axToolbarControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.axToolbarControl1.Location = new System.Drawing.Point(0, 0);
     this.axToolbarControl1.Name     = "axToolbarControl1";
     this.axToolbarControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axToolbarControl1.OcxState")));
     this.axToolbarControl1.Size     = new System.Drawing.Size(784, 28);
     this.axToolbarControl1.TabIndex = 7;
     //
     // axTOCControl1
     //
     this.axTOCControl1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.axTOCControl1.Location = new System.Drawing.Point(0, 28);
     this.axTOCControl1.Name     = "axTOCControl1";
     this.axTOCControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axTOCControl1.OcxState")));
     this.axTOCControl1.Size     = new System.Drawing.Size(200, 516);
     this.axTOCControl1.TabIndex = 8;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location              = new System.Drawing.Point(200, 28);
     this.tabControl1.Name                  = "tabControl1";
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(584, 488);
     this.tabControl1.TabIndex              = 9;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.axLicenseControl1);
     this.tabPage1.Controls.Add(this.axMapControl1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(576, 462);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Map";
     //
     // axLicenseControl1
     //
     this.axLicenseControl1.Enabled  = true;
     this.axLicenseControl1.Location = new System.Drawing.Point(210, 220);
     this.axLicenseControl1.Name     = "axLicenseControl1";
     this.axLicenseControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axLicenseControl1.OcxState")));
     this.axLicenseControl1.Size     = new System.Drawing.Size(32, 32);
     this.axLicenseControl1.TabIndex = 1;
     //
     // axMapControl1
     //
     this.axMapControl1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.axMapControl1.Location     = new System.Drawing.Point(0, 0);
     this.axMapControl1.Name         = "axMapControl1";
     this.axMapControl1.OcxState     = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMapControl1.OcxState")));
     this.axMapControl1.Size         = new System.Drawing.Size(576, 462);
     this.axMapControl1.TabIndex     = 0;
     this.axMapControl1.OnMouseMove += new ESRI.ArcGIS.Controls.IMapControlEvents2_Ax_OnMouseMoveEventHandler(this.axMapControl1_OnMouseMove);
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.axPageLayoutControl1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(576, 462);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Layout";
     //
     // axPageLayoutControl1
     //
     this.axPageLayoutControl1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.axPageLayoutControl1.Location     = new System.Drawing.Point(0, 0);
     this.axPageLayoutControl1.Name         = "axPageLayoutControl1";
     this.axPageLayoutControl1.OcxState     = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axPageLayoutControl1.OcxState")));
     this.axPageLayoutControl1.Size         = new System.Drawing.Size(576, 462);
     this.axPageLayoutControl1.TabIndex     = 0;
     this.axPageLayoutControl1.OnMouseMove += new ESRI.ArcGIS.Controls.IPageLayoutControlEvents_Ax_OnMouseMoveEventHandler(this.axPageLayoutControl1_OnMouseMove);
     //
     // axToolbarControl2
     //
     this.axToolbarControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.axToolbarControl2.Location = new System.Drawing.Point(200, 516);
     this.axToolbarControl2.Name     = "axToolbarControl2";
     this.axToolbarControl2.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axToolbarControl2.OcxState")));
     this.axToolbarControl2.Size     = new System.Drawing.Size(584, 28);
     this.axToolbarControl2.TabIndex = 10;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(200, 28);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 488);
     this.splitter1.TabIndex = 11;
     this.splitter1.TabStop  = false;
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(784, 566);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.axToolbarControl2);
     this.Controls.Add(this.axTOCControl1);
     this.Controls.Add(this.axToolbarControl1);
     this.Controls.Add(this.statusBar1);
     this.Menu  = this.mainMenu1;
     this.Name  = "frmMain";
     this.Text  = "Map & PageLayout synchronization";
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarXYUnits)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axToolbarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axTOCControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axLicenseControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axMapControl1)).EndInit();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axPageLayoutControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axToolbarControl2)).EndInit();
     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()
 {
     this.tabControl1        = new System.Windows.Forms.TabControl();
     this.tabProperties      = new System.Windows.Forms.TabPage();
     this.labelTitle         = new System.Windows.Forms.Label();
     this.textBoxTitle       = new System.Windows.Forms.TextBox();
     this.tabCode            = new System.Windows.Forms.TabPage();
     this.tabInterface       = new System.Windows.Forms.TabPage();
     this.labelTemplateTitle = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabProperties.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabProperties);
     this.tabControl1.Controls.Add(this.tabCode);
     this.tabControl1.Controls.Add(this.tabInterface);
     this.tabControl1.Location      = new System.Drawing.Point(0, 32);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(536, 312);
     this.tabControl1.TabIndex      = 0;
     //
     // tabProperties
     //
     this.tabProperties.Controls.Add(this.labelTitle);
     this.tabProperties.Controls.Add(this.textBoxTitle);
     this.tabProperties.Location = new System.Drawing.Point(4, 22);
     this.tabProperties.Name     = "tabProperties";
     this.tabProperties.Size     = new System.Drawing.Size(528, 286);
     this.tabProperties.TabIndex = 0;
     this.tabProperties.Text     = "Properties";
     //
     // labelTitle
     //
     this.labelTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.labelTitle.Location  = new System.Drawing.Point(16, 8);
     this.labelTitle.Name      = "labelTitle";
     this.labelTitle.Size      = new System.Drawing.Size(496, 24);
     this.labelTitle.TabIndex  = 1;
     this.labelTitle.Text      = "Template Name";
     this.labelTitle.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textBoxTitle
     //
     this.textBoxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxTitle.Location = new System.Drawing.Point(16, 32);
     this.textBoxTitle.Name     = "textBoxTitle";
     this.textBoxTitle.Size     = new System.Drawing.Size(496, 20);
     this.textBoxTitle.TabIndex = 0;
     this.textBoxTitle.Text     = "";
     //
     // tabCode
     //
     this.tabCode.DockPadding.Top = 6;
     this.tabCode.Location        = new System.Drawing.Point(4, 22);
     this.tabCode.Name            = "tabCode";
     this.tabCode.Size            = new System.Drawing.Size(528, 286);
     this.tabCode.TabIndex        = 1;
     this.tabCode.Text            = "Template Code";
     //
     // tabInterface
     //
     this.tabInterface.DockPadding.Top = 6;
     this.tabInterface.Location        = new System.Drawing.Point(4, 22);
     this.tabInterface.Name            = "tabInterface";
     this.tabInterface.Size            = new System.Drawing.Size(528, 286);
     this.tabInterface.TabIndex        = 2;
     this.tabInterface.Text            = "Interface Code";
     //
     // labelTemplateTitle
     //
     this.labelTemplateTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.labelTemplateTitle.Location  = new System.Drawing.Point(0, 0);
     this.labelTemplateTitle.Name      = "labelTemplateTitle";
     this.labelTemplateTitle.Size      = new System.Drawing.Size(536, 23);
     this.labelTemplateTitle.TabIndex  = 0;
     this.labelTemplateTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TemplateEditorForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(536, 342);
     this.Controls.Add(this.labelTemplateTitle);
     this.Controls.Add(this.tabControl1);
     this.Name  = "TemplateEditorForm";
     this.Text  = "TemplateEditorForm";
     this.Load += new System.EventHandler(this.TemplateEditorForm_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabProperties.ResumeLayout(false);
     this.ResumeLayout(false);
 }
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.panel1                    = new System.Windows.Forms.Panel();
     this.btnCancel                 = new System.Windows.Forms.Button();
     this.btnOK                     = new System.Windows.Forms.Button();
     this.tabMainControl            = new System.Windows.Forms.TabControl();
     this.tabOptions                = new System.Windows.Forms.TabPage();
     this.label1                    = new System.Windows.Forms.Label();
     this.comboPriority             = new System.Windows.Forms.ComboBox();
     this.chkProcessOnLoad          = new System.Windows.Forms.CheckBox();
     this.chkAutoSaveLog            = new System.Windows.Forms.CheckBox();
     this.chkRememberWindowSettings = new System.Windows.Forms.CheckBox();
     this.chkConfirmExit            = new System.Windows.Forms.CheckBox();
     this.tabAssociations           = new System.Windows.Forms.TabPage();
     this.btnSetAssociations        = new System.Windows.Forms.Button();
     this.btnRemoveAssociations     = new System.Windows.Forms.Button();
     this.listExtensions            = new System.Windows.Forms.ListView();
     this.colExtension              = new System.Windows.Forms.ColumnHeader();
     this.panel1.SuspendLayout();
     this.tabMainControl.SuspendLayout();
     this.tabOptions.SuspendLayout();
     this.tabAssociations.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnCancel);
     this.panel1.Controls.Add(this.btnOK);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 151);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(314, 32);
     this.panel1.TabIndex = 1;
     //
     // btnCancel
     //
     this.btnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(236, 4);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.TabIndex     = 1;
     this.btnCancel.Text         = "&Cancel";
     //
     // btnOK
     //
     this.btnOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location     = new System.Drawing.Point(156, 4);
     this.btnOK.Name         = "btnOK";
     this.btnOK.TabIndex     = 0;
     this.btnOK.Text         = "&OK";
     //
     // tabMainControl
     //
     this.tabMainControl.Controls.Add(this.tabOptions);
     this.tabMainControl.Controls.Add(this.tabAssociations);
     this.tabMainControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabMainControl.ItemSize      = new System.Drawing.Size(48, 18);
     this.tabMainControl.Location      = new System.Drawing.Point(0, 0);
     this.tabMainControl.Name          = "tabMainControl";
     this.tabMainControl.SelectedIndex = 0;
     this.tabMainControl.Size          = new System.Drawing.Size(314, 151);
     this.tabMainControl.TabIndex      = 2;
     //
     // tabOptions
     //
     this.tabOptions.Controls.Add(this.label1);
     this.tabOptions.Controls.Add(this.comboPriority);
     this.tabOptions.Controls.Add(this.chkProcessOnLoad);
     this.tabOptions.Controls.Add(this.chkAutoSaveLog);
     this.tabOptions.Controls.Add(this.chkRememberWindowSettings);
     this.tabOptions.Controls.Add(this.chkConfirmExit);
     this.tabOptions.Location = new System.Drawing.Point(4, 22);
     this.tabOptions.Name     = "tabOptions";
     this.tabOptions.Size     = new System.Drawing.Size(306, 125);
     this.tabOptions.TabIndex = 0;
     this.tabOptions.Text     = "Options";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 100);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(152, 20);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "Process lists with a priorty of:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboPriority
     //
     this.comboPriority.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboPriority.ItemHeight    = 13;
     this.comboPriority.Location      = new System.Drawing.Point(160, 100);
     this.comboPriority.Name          = "comboPriority";
     this.comboPriority.Size          = new System.Drawing.Size(96, 21);
     this.comboPriority.TabIndex      = 10;
     //
     // chkProcessOnLoad
     //
     this.chkProcessOnLoad.Location = new System.Drawing.Point(8, 76);
     this.chkProcessOnLoad.Name     = "chkProcessOnLoad";
     this.chkProcessOnLoad.Size     = new System.Drawing.Size(292, 20);
     this.chkProcessOnLoad.TabIndex = 9;
     this.chkProcessOnLoad.Text     = "Immediately process lists loaded from command line";
     //
     // chkAutoSaveLog
     //
     this.chkAutoSaveLog.Location = new System.Drawing.Point(8, 52);
     this.chkAutoSaveLog.Name     = "chkAutoSaveLog";
     this.chkAutoSaveLog.Size     = new System.Drawing.Size(292, 20);
     this.chkAutoSaveLog.TabIndex = 8;
     this.chkAutoSaveLog.Text     = "Automatically save processing log";
     //
     // chkRememberWindowSettings
     //
     this.chkRememberWindowSettings.Location = new System.Drawing.Point(8, 28);
     this.chkRememberWindowSettings.Name     = "chkRememberWindowSettings";
     this.chkRememberWindowSettings.Size     = new System.Drawing.Size(292, 20);
     this.chkRememberWindowSettings.TabIndex = 7;
     this.chkRememberWindowSettings.Text     = "Remember window positions and sizes";
     //
     // chkConfirmExit
     //
     this.chkConfirmExit.Location = new System.Drawing.Point(8, 4);
     this.chkConfirmExit.Name     = "chkConfirmExit";
     this.chkConfirmExit.Size     = new System.Drawing.Size(292, 20);
     this.chkConfirmExit.TabIndex = 6;
     this.chkConfirmExit.Text     = "Confirm application exit during processing";
     //
     // tabAssociations
     //
     this.tabAssociations.Controls.Add(this.btnSetAssociations);
     this.tabAssociations.Controls.Add(this.btnRemoveAssociations);
     this.tabAssociations.Controls.Add(this.listExtensions);
     this.tabAssociations.Location = new System.Drawing.Point(4, 22);
     this.tabAssociations.Name     = "tabAssociations";
     this.tabAssociations.Size     = new System.Drawing.Size(306, 125);
     this.tabAssociations.TabIndex = 1;
     this.tabAssociations.Text     = "File Associations";
     //
     // btnSetAssociations
     //
     this.btnSetAssociations.Location = new System.Drawing.Point(120, 8);
     this.btnSetAssociations.Name     = "btnSetAssociations";
     this.btnSetAssociations.Size     = new System.Drawing.Size(124, 23);
     this.btnSetAssociations.TabIndex = 1;
     this.btnSetAssociations.Text     = "Set Associations";
     //
     // btnRemoveAssociations
     //
     this.btnRemoveAssociations.Location = new System.Drawing.Point(120, 36);
     this.btnRemoveAssociations.Name     = "btnRemoveAssociations";
     this.btnRemoveAssociations.Size     = new System.Drawing.Size(124, 23);
     this.btnRemoveAssociations.TabIndex = 2;
     this.btnRemoveAssociations.Text     = "Remove Associations";
     //
     // listExtensions
     //
     this.listExtensions.CheckBoxes = true;
     this.listExtensions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colExtension
     });
     this.listExtensions.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.listExtensions.Location    = new System.Drawing.Point(8, 8);
     this.listExtensions.Name        = "listExtensions";
     this.listExtensions.Size        = new System.Drawing.Size(108, 112);
     this.listExtensions.TabIndex    = 0;
     this.listExtensions.View        = System.Windows.Forms.View.Details;
     //
     // colExtension
     //
     this.colExtension.Text  = "Extension";
     this.colExtension.Width = 89;
     //
     // FrmOptions
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnOK;
     this.ClientSize        = new System.Drawing.Size(314, 183);
     this.Controls.Add(this.tabMainControl);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FrmOptions";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Program Options";
     this.panel1.ResumeLayout(false);
     this.tabMainControl.ResumeLayout(false);
     this.tabOptions.ResumeLayout(false);
     this.tabAssociations.ResumeLayout(false);
     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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FilesUploadForm));
     this.textBox_TotalSentFrom                             = new System.Windows.Forms.TextBox();
     this.label_TotalSentFrom                               = new System.Windows.Forms.Label();
     this.textBox_TotalBytesSent                            = new System.Windows.Forms.TextBox();
     this.label_TotalBytesSent                              = new System.Windows.Forms.Label();
     this.textBox_SentFrom                                  = new System.Windows.Forms.TextBox();
     this.label_SentFrom                                    = new System.Windows.Forms.Label();
     this.textBox_BytesSent                                 = new System.Windows.Forms.TextBox();
     this.label_BytesSent                                   = new System.Windows.Forms.Label();
     this.label_FilesUploadForm_NumberFrom                  = new System.Windows.Forms.Label();
     this.label_FilesUploadForm_UploadedFiles               = new System.Windows.Forms.Label();
     this.textBox_FilesUploadForm_TotalFilesNum             = new System.Windows.Forms.TextBox();
     this.textBox_FilesUploadForm_CurrentFileNum            = new System.Windows.Forms.TextBox();
     this.label_FilesUploadForm_TotalUploadingProgress      = new System.Windows.Forms.Label();
     this.label_FilesUploadForm_CurrentUploadedFileProgress = new System.Windows.Forms.Label();
     this.textBox_FilesUploadForm_RemoteFolder              = new System.Windows.Forms.TextBox();
     this.label_FilesUploadForm_RemoteFolder                = new System.Windows.Forms.Label();
     this.label_FilesUploadForm_CurrentFileName             = new System.Windows.Forms.Label();
     this.textBox_FilesUploadForm_CurrentFileName           = new System.Windows.Forms.TextBox();
     this.progressBar_FilesUploadForm_TotalUploaded         = new System.Windows.Forms.ProgressBar();
     this.button_FilesUploadForm_StopUpload                 = new System.Windows.Forms.Button();
     this.progressBar_FileUploadForm_CurrentFileUploaded    = new System.Windows.Forms.ProgressBar();
     this.comboBox_FilesUploadForm_SegmentSize              = new System.Windows.Forms.ComboBox();
     this.label_FilesUploadForm_SegmentSize                 = new System.Windows.Forms.Label();
     this.button_FilesUploadForm_PauseUpload                = new System.Windows.Forms.Button();
     this.pictureBox_FilesUploadForm_HorLine2               = new System.Windows.Forms.PictureBox();
     this.button_FilesUploadForm_Details                    = new System.Windows.Forms.Button();
     this.tabControl_FilesUploadForm_Tasks                  = new System.Windows.Forms.TabControl();
     this.tabPage_Tasks = new System.Windows.Forms.TabPage();
     this.listView_FilesUploadForm_Tasks             = new System.Windows.Forms.ListView();
     this.columnHeader_TasksTabPage_TasksDescription = new System.Windows.Forms.ColumnHeader();
     this.columnHeader_TasksTabPage_Time             = new System.Windows.Forms.ColumnHeader();
     this.imageList_Tasks = new System.Windows.Forms.ImageList(this.components);
     this.tabPage_Errors  = new System.Windows.Forms.TabPage();
     this.listView_FilesUploadForm_Errors             = new System.Windows.Forms.ListView();
     this.columnHeader_ErrorsTabPage_ErrorDescription = new System.Windows.Forms.ColumnHeader();
     this.columnHeader_ErrorsTabPage_Time             = new System.Windows.Forms.ColumnHeader();
     this.pictureBox_FilesUploadForm_HorLine1         = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_FilesUploadForm_HorLine2)).BeginInit();
     this.tabControl_FilesUploadForm_Tasks.SuspendLayout();
     this.tabPage_Tasks.SuspendLayout();
     this.tabPage_Errors.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_FilesUploadForm_HorLine1)).BeginInit();
     this.SuspendLayout();
     //
     // textBox_TotalSentFrom
     //
     this.textBox_TotalSentFrom.Location = new System.Drawing.Point(384, 72);
     this.textBox_TotalSentFrom.Name     = "textBox_TotalSentFrom";
     this.textBox_TotalSentFrom.ReadOnly = true;
     this.textBox_TotalSentFrom.Size     = new System.Drawing.Size(104, 20);
     this.textBox_TotalSentFrom.TabIndex = 41;
     //
     // label_TotalSentFrom
     //
     this.label_TotalSentFrom.Location = new System.Drawing.Point(350, 80);
     this.label_TotalSentFrom.Name     = "label_TotalSentFrom";
     this.label_TotalSentFrom.Size     = new System.Drawing.Size(32, 16);
     this.label_TotalSentFrom.TabIndex = 40;
     //
     // textBox_TotalBytesSent
     //
     this.textBox_TotalBytesSent.Location = new System.Drawing.Point(240, 72);
     this.textBox_TotalBytesSent.Name     = "textBox_TotalBytesSent";
     this.textBox_TotalBytesSent.ReadOnly = true;
     this.textBox_TotalBytesSent.Size     = new System.Drawing.Size(104, 20);
     this.textBox_TotalBytesSent.TabIndex = 39;
     //
     // label_TotalBytesSent
     //
     this.label_TotalBytesSent.Location = new System.Drawing.Point(128, 80);
     this.label_TotalBytesSent.Name     = "label_TotalBytesSent";
     this.label_TotalBytesSent.Size     = new System.Drawing.Size(104, 16);
     this.label_TotalBytesSent.TabIndex = 38;
     //
     // textBox_SentFrom
     //
     this.textBox_SentFrom.Location = new System.Drawing.Point(384, 16);
     this.textBox_SentFrom.Name     = "textBox_SentFrom";
     this.textBox_SentFrom.ReadOnly = true;
     this.textBox_SentFrom.Size     = new System.Drawing.Size(104, 20);
     this.textBox_SentFrom.TabIndex = 37;
     //
     // label_SentFrom
     //
     this.label_SentFrom.Location = new System.Drawing.Point(352, 24);
     this.label_SentFrom.Name     = "label_SentFrom";
     this.label_SentFrom.Size     = new System.Drawing.Size(34, 16);
     this.label_SentFrom.TabIndex = 36;
     //
     // textBox_BytesSent
     //
     this.textBox_BytesSent.Location = new System.Drawing.Point(240, 16);
     this.textBox_BytesSent.Name     = "textBox_BytesSent";
     this.textBox_BytesSent.ReadOnly = true;
     this.textBox_BytesSent.Size     = new System.Drawing.Size(104, 20);
     this.textBox_BytesSent.TabIndex = 35;
     //
     // label_BytesSent
     //
     this.label_BytesSent.Location = new System.Drawing.Point(128, 24);
     this.label_BytesSent.Name     = "label_BytesSent";
     this.label_BytesSent.Size     = new System.Drawing.Size(104, 16);
     this.label_BytesSent.TabIndex = 34;
     //
     // label_FilesUploadForm_NumberFrom
     //
     this.label_FilesUploadForm_NumberFrom.Location = new System.Drawing.Point(248, 232);
     this.label_FilesUploadForm_NumberFrom.Name     = "label_FilesUploadForm_NumberFrom";
     this.label_FilesUploadForm_NumberFrom.Size     = new System.Drawing.Size(32, 16);
     this.label_FilesUploadForm_NumberFrom.TabIndex = 33;
     //
     // label_FilesUploadForm_UploadedFiles
     //
     this.label_FilesUploadForm_UploadedFiles.Location = new System.Drawing.Point(14, 232);
     this.label_FilesUploadForm_UploadedFiles.Name     = "label_FilesUploadForm_UploadedFiles";
     this.label_FilesUploadForm_UploadedFiles.Size     = new System.Drawing.Size(146, 16);
     this.label_FilesUploadForm_UploadedFiles.TabIndex = 32;
     //
     // textBox_FilesUploadForm_TotalFilesNum
     //
     this.textBox_FilesUploadForm_TotalFilesNum.Location = new System.Drawing.Point(312, 224);
     this.textBox_FilesUploadForm_TotalFilesNum.Name     = "textBox_FilesUploadForm_TotalFilesNum";
     this.textBox_FilesUploadForm_TotalFilesNum.ReadOnly = true;
     this.textBox_FilesUploadForm_TotalFilesNum.Size     = new System.Drawing.Size(48, 20);
     this.textBox_FilesUploadForm_TotalFilesNum.TabIndex = 31;
     //
     // textBox_FilesUploadForm_CurrentFileNum
     //
     this.textBox_FilesUploadForm_CurrentFileNum.Location = new System.Drawing.Point(168, 224);
     this.textBox_FilesUploadForm_CurrentFileNum.Name     = "textBox_FilesUploadForm_CurrentFileNum";
     this.textBox_FilesUploadForm_CurrentFileNum.ReadOnly = true;
     this.textBox_FilesUploadForm_CurrentFileNum.Size     = new System.Drawing.Size(48, 20);
     this.textBox_FilesUploadForm_CurrentFileNum.TabIndex = 30;
     //
     // label_FilesUploadForm_TotalUploadingProgress
     //
     this.label_FilesUploadForm_TotalUploadingProgress.Location = new System.Drawing.Point(16, 80);
     this.label_FilesUploadForm_TotalUploadingProgress.Name     = "label_FilesUploadForm_TotalUploadingProgress";
     this.label_FilesUploadForm_TotalUploadingProgress.Size     = new System.Drawing.Size(114, 16);
     this.label_FilesUploadForm_TotalUploadingProgress.TabIndex = 29;
     //
     // label_FilesUploadForm_CurrentUploadedFileProgress
     //
     this.label_FilesUploadForm_CurrentUploadedFileProgress.Location = new System.Drawing.Point(16, 24);
     this.label_FilesUploadForm_CurrentUploadedFileProgress.Name     = "label_FilesUploadForm_CurrentUploadedFileProgress";
     this.label_FilesUploadForm_CurrentUploadedFileProgress.Size     = new System.Drawing.Size(106, 16);
     this.label_FilesUploadForm_CurrentUploadedFileProgress.TabIndex = 28;
     //
     // textBox_FilesUploadForm_RemoteFolder
     //
     this.textBox_FilesUploadForm_RemoteFolder.Location = new System.Drawing.Point(168, 192);
     this.textBox_FilesUploadForm_RemoteFolder.Name     = "textBox_FilesUploadForm_RemoteFolder";
     this.textBox_FilesUploadForm_RemoteFolder.ReadOnly = true;
     this.textBox_FilesUploadForm_RemoteFolder.Size     = new System.Drawing.Size(192, 20);
     this.textBox_FilesUploadForm_RemoteFolder.TabIndex = 27;
     //
     // label_FilesUploadForm_RemoteFolder
     //
     this.label_FilesUploadForm_RemoteFolder.Location = new System.Drawing.Point(14, 200);
     this.label_FilesUploadForm_RemoteFolder.Name     = "label_FilesUploadForm_RemoteFolder";
     this.label_FilesUploadForm_RemoteFolder.Size     = new System.Drawing.Size(146, 16);
     this.label_FilesUploadForm_RemoteFolder.TabIndex = 26;
     //
     // label_FilesUploadForm_CurrentFileName
     //
     this.label_FilesUploadForm_CurrentFileName.Location = new System.Drawing.Point(14, 160);
     this.label_FilesUploadForm_CurrentFileName.Name     = "label_FilesUploadForm_CurrentFileName";
     this.label_FilesUploadForm_CurrentFileName.Size     = new System.Drawing.Size(146, 24);
     this.label_FilesUploadForm_CurrentFileName.TabIndex = 25;
     //
     // textBox_FilesUploadForm_CurrentFileName
     //
     this.textBox_FilesUploadForm_CurrentFileName.Location = new System.Drawing.Point(168, 160);
     this.textBox_FilesUploadForm_CurrentFileName.Name     = "textBox_FilesUploadForm_CurrentFileName";
     this.textBox_FilesUploadForm_CurrentFileName.ReadOnly = true;
     this.textBox_FilesUploadForm_CurrentFileName.Size     = new System.Drawing.Size(192, 20);
     this.textBox_FilesUploadForm_CurrentFileName.TabIndex = 24;
     //
     // progressBar_FilesUploadForm_TotalUploaded
     //
     this.progressBar_FilesUploadForm_TotalUploaded.Location = new System.Drawing.Point(16, 104);
     this.progressBar_FilesUploadForm_TotalUploaded.Name     = "progressBar_FilesUploadForm_TotalUploaded";
     this.progressBar_FilesUploadForm_TotalUploaded.Size     = new System.Drawing.Size(472, 16);
     this.progressBar_FilesUploadForm_TotalUploaded.TabIndex = 23;
     //
     // button_FilesUploadForm_StopUpload
     //
     this.button_FilesUploadForm_StopUpload.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.button_FilesUploadForm_StopUpload.Location  = new System.Drawing.Point(376, 192);
     this.button_FilesUploadForm_StopUpload.Name      = "button_FilesUploadForm_StopUpload";
     this.button_FilesUploadForm_StopUpload.Size      = new System.Drawing.Size(56, 23);
     this.button_FilesUploadForm_StopUpload.TabIndex  = 22;
     this.button_FilesUploadForm_StopUpload.Click    += new System.EventHandler(this.button_FilesUploadForm_StopUpload_Click);
     //
     // progressBar_FileUploadForm_CurrentFileUploaded
     //
     this.progressBar_FileUploadForm_CurrentFileUploaded.Location = new System.Drawing.Point(16, 48);
     this.progressBar_FileUploadForm_CurrentFileUploaded.Name     = "progressBar_FileUploadForm_CurrentFileUploaded";
     this.progressBar_FileUploadForm_CurrentFileUploaded.Size     = new System.Drawing.Size(472, 16);
     this.progressBar_FileUploadForm_CurrentFileUploaded.TabIndex = 21;
     //
     // comboBox_FilesUploadForm_SegmentSize
     //
     this.comboBox_FilesUploadForm_SegmentSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox_FilesUploadForm_SegmentSize.Items.AddRange(new object[] {
         "1024",
         "2048",
         "4096",
         "8192",
         "16384",
         "32768",
         "65536",
         "131072"
     });
     this.comboBox_FilesUploadForm_SegmentSize.Location = new System.Drawing.Point(376, 160);
     this.comboBox_FilesUploadForm_SegmentSize.Name     = "comboBox_FilesUploadForm_SegmentSize";
     this.comboBox_FilesUploadForm_SegmentSize.Size     = new System.Drawing.Size(112, 21);
     this.comboBox_FilesUploadForm_SegmentSize.TabIndex = 42;
     //
     // label_FilesUploadForm_SegmentSize
     //
     this.label_FilesUploadForm_SegmentSize.Location = new System.Drawing.Point(376, 144);
     this.label_FilesUploadForm_SegmentSize.Name     = "label_FilesUploadForm_SegmentSize";
     this.label_FilesUploadForm_SegmentSize.Size     = new System.Drawing.Size(112, 16);
     this.label_FilesUploadForm_SegmentSize.TabIndex = 43;
     //
     // button_FilesUploadForm_PauseUpload
     //
     this.button_FilesUploadForm_PauseUpload.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.button_FilesUploadForm_PauseUpload.Location  = new System.Drawing.Point(432, 192);
     this.button_FilesUploadForm_PauseUpload.Name      = "button_FilesUploadForm_PauseUpload";
     this.button_FilesUploadForm_PauseUpload.Size      = new System.Drawing.Size(56, 23);
     this.button_FilesUploadForm_PauseUpload.TabIndex  = 44;
     this.button_FilesUploadForm_PauseUpload.Click    += new System.EventHandler(this.button_FilesUploadForm_PauseUpload_Click);
     //
     // pictureBox_FilesUploadForm_HorLine2
     //
     this.pictureBox_FilesUploadForm_HorLine2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox_FilesUploadForm_HorLine2.Image")));
     this.pictureBox_FilesUploadForm_HorLine2.Location = new System.Drawing.Point(16, 264);
     this.pictureBox_FilesUploadForm_HorLine2.Name     = "pictureBox_FilesUploadForm_HorLine2";
     this.pictureBox_FilesUploadForm_HorLine2.Size     = new System.Drawing.Size(472, 2);
     this.pictureBox_FilesUploadForm_HorLine2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox_FilesUploadForm_HorLine2.TabIndex = 47;
     this.pictureBox_FilesUploadForm_HorLine2.TabStop  = false;
     //
     // button_FilesUploadForm_Details
     //
     this.button_FilesUploadForm_Details.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.button_FilesUploadForm_Details.Location  = new System.Drawing.Point(376, 223);
     this.button_FilesUploadForm_Details.Name      = "button_FilesUploadForm_Details";
     this.button_FilesUploadForm_Details.Size      = new System.Drawing.Size(112, 21);
     this.button_FilesUploadForm_Details.TabIndex  = 46;
     this.button_FilesUploadForm_Details.Text      = "Details >>";
     this.button_FilesUploadForm_Details.Click    += new System.EventHandler(this.button_FilesUploadForm_Details_Click);
     //
     // tabControl_FilesUploadForm_Tasks
     //
     this.tabControl_FilesUploadForm_Tasks.Controls.Add(this.tabPage_Tasks);
     this.tabControl_FilesUploadForm_Tasks.Controls.Add(this.tabPage_Errors);
     this.tabControl_FilesUploadForm_Tasks.Location      = new System.Drawing.Point(16, 288);
     this.tabControl_FilesUploadForm_Tasks.Multiline     = true;
     this.tabControl_FilesUploadForm_Tasks.Name          = "tabControl_FilesUploadForm_Tasks";
     this.tabControl_FilesUploadForm_Tasks.SelectedIndex = 0;
     this.tabControl_FilesUploadForm_Tasks.Size          = new System.Drawing.Size(472, 216);
     this.tabControl_FilesUploadForm_Tasks.TabIndex      = 45;
     //
     // tabPage_Tasks
     //
     this.tabPage_Tasks.Controls.Add(this.listView_FilesUploadForm_Tasks);
     this.tabPage_Tasks.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Tasks.Name     = "tabPage_Tasks";
     this.tabPage_Tasks.Size     = new System.Drawing.Size(464, 190);
     this.tabPage_Tasks.TabIndex = 2;
     this.tabPage_Tasks.Text     = "Tasks";
     //
     // listView_FilesUploadForm_Tasks
     //
     this.listView_FilesUploadForm_Tasks.AllowColumnReorder = true;
     this.listView_FilesUploadForm_Tasks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader_TasksTabPage_TasksDescription,
         this.columnHeader_TasksTabPage_Time
     });
     this.listView_FilesUploadForm_Tasks.FullRowSelect  = true;
     this.listView_FilesUploadForm_Tasks.Location       = new System.Drawing.Point(8, 8);
     this.listView_FilesUploadForm_Tasks.Name           = "listView_FilesUploadForm_Tasks";
     this.listView_FilesUploadForm_Tasks.Size           = new System.Drawing.Size(448, 176);
     this.listView_FilesUploadForm_Tasks.SmallImageList = this.imageList_Tasks;
     this.listView_FilesUploadForm_Tasks.TabIndex       = 1;
     this.listView_FilesUploadForm_Tasks.UseCompatibleStateImageBehavior = false;
     this.listView_FilesUploadForm_Tasks.View = System.Windows.Forms.View.Details;
     //
     // columnHeader_TasksTabPage_TasksDescription
     //
     this.columnHeader_TasksTabPage_TasksDescription.Text  = "Task description";
     this.columnHeader_TasksTabPage_TasksDescription.Width = 350;
     //
     // columnHeader_TasksTabPage_Time
     //
     this.columnHeader_TasksTabPage_Time.Text  = "Time";
     this.columnHeader_TasksTabPage_Time.Width = 73;
     //
     // imageList_Tasks
     //
     this.imageList_Tasks.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_Tasks.ImageStream")));
     this.imageList_Tasks.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList_Tasks.Images.SetKeyName(0, "");
     this.imageList_Tasks.Images.SetKeyName(1, "");
     //
     // tabPage_Errors
     //
     this.tabPage_Errors.Controls.Add(this.listView_FilesUploadForm_Errors);
     this.tabPage_Errors.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Errors.Name     = "tabPage_Errors";
     this.tabPage_Errors.Size     = new System.Drawing.Size(464, 190);
     this.tabPage_Errors.TabIndex = 1;
     this.tabPage_Errors.Text     = "Errors";
     //
     // listView_FilesUploadForm_Errors
     //
     this.listView_FilesUploadForm_Errors.AllowColumnReorder = true;
     this.listView_FilesUploadForm_Errors.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader_ErrorsTabPage_ErrorDescription,
         this.columnHeader_ErrorsTabPage_Time
     });
     this.listView_FilesUploadForm_Errors.FullRowSelect  = true;
     this.listView_FilesUploadForm_Errors.Location       = new System.Drawing.Point(8, 8);
     this.listView_FilesUploadForm_Errors.Name           = "listView_FilesUploadForm_Errors";
     this.listView_FilesUploadForm_Errors.Size           = new System.Drawing.Size(448, 176);
     this.listView_FilesUploadForm_Errors.SmallImageList = this.imageList_Tasks;
     this.listView_FilesUploadForm_Errors.TabIndex       = 0;
     this.listView_FilesUploadForm_Errors.UseCompatibleStateImageBehavior = false;
     this.listView_FilesUploadForm_Errors.View = System.Windows.Forms.View.Details;
     //
     // columnHeader_ErrorsTabPage_ErrorDescription
     //
     this.columnHeader_ErrorsTabPage_ErrorDescription.Text  = "Error description";
     this.columnHeader_ErrorsTabPage_ErrorDescription.Width = 350;
     //
     // columnHeader_ErrorsTabPage_Time
     //
     this.columnHeader_ErrorsTabPage_Time.Text  = "Time";
     this.columnHeader_ErrorsTabPage_Time.Width = 73;
     //
     // pictureBox_FilesUploadForm_HorLine1
     //
     this.pictureBox_FilesUploadForm_HorLine1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox_FilesUploadForm_HorLine1.Image")));
     this.pictureBox_FilesUploadForm_HorLine1.Location = new System.Drawing.Point(16, 136);
     this.pictureBox_FilesUploadForm_HorLine1.Name     = "pictureBox_FilesUploadForm_HorLine1";
     this.pictureBox_FilesUploadForm_HorLine1.Size     = new System.Drawing.Size(472, 2);
     this.pictureBox_FilesUploadForm_HorLine1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox_FilesUploadForm_HorLine1.TabIndex = 48;
     this.pictureBox_FilesUploadForm_HorLine1.TabStop  = false;
     //
     // FilesUploadForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(502, 278);
     this.ControlBox        = false;
     this.Controls.Add(this.pictureBox_FilesUploadForm_HorLine1);
     this.Controls.Add(this.pictureBox_FilesUploadForm_HorLine2);
     this.Controls.Add(this.button_FilesUploadForm_Details);
     this.Controls.Add(this.tabControl_FilesUploadForm_Tasks);
     this.Controls.Add(this.button_FilesUploadForm_PauseUpload);
     this.Controls.Add(this.label_FilesUploadForm_SegmentSize);
     this.Controls.Add(this.comboBox_FilesUploadForm_SegmentSize);
     this.Controls.Add(this.textBox_FilesUploadForm_CurrentFileName);
     this.Controls.Add(this.textBox_TotalSentFrom);
     this.Controls.Add(this.textBox_TotalBytesSent);
     this.Controls.Add(this.textBox_SentFrom);
     this.Controls.Add(this.textBox_BytesSent);
     this.Controls.Add(this.textBox_FilesUploadForm_TotalFilesNum);
     this.Controls.Add(this.textBox_FilesUploadForm_CurrentFileNum);
     this.Controls.Add(this.textBox_FilesUploadForm_RemoteFolder);
     this.Controls.Add(this.label_TotalSentFrom);
     this.Controls.Add(this.label_TotalBytesSent);
     this.Controls.Add(this.label_SentFrom);
     this.Controls.Add(this.label_BytesSent);
     this.Controls.Add(this.label_FilesUploadForm_NumberFrom);
     this.Controls.Add(this.label_FilesUploadForm_UploadedFiles);
     this.Controls.Add(this.label_FilesUploadForm_TotalUploadingProgress);
     this.Controls.Add(this.label_FilesUploadForm_CurrentUploadedFileProgress);
     this.Controls.Add(this.label_FilesUploadForm_RemoteFolder);
     this.Controls.Add(this.label_FilesUploadForm_CurrentFileName);
     this.Controls.Add(this.progressBar_FilesUploadForm_TotalUploaded);
     this.Controls.Add(this.button_FilesUploadForm_StopUpload);
     this.Controls.Add(this.progressBar_FileUploadForm_CurrentFileUploaded);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MaximumSize     = new System.Drawing.Size(504, 280);
     this.MinimumSize     = new System.Drawing.Size(504, 280);
     this.Name            = "FilesUploadForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Shown          += new System.EventHandler(this.FilesUploadForm_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_FilesUploadForm_HorLine2)).EndInit();
     this.tabControl_FilesUploadForm_Tasks.ResumeLayout(false);
     this.tabPage_Tasks.ResumeLayout(false);
     this.tabPage_Errors.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_FilesUploadForm_HorLine1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(DCMCompareForm));
     this.mainMenu1                    = new System.Windows.Forms.MainMenu();
     this.MenuItem_File                = new System.Windows.Forms.MenuItem();
     this.MenuItemCompare              = new System.Windows.Forms.MenuItem();
     this.MenuItemCompareFilter        = new System.Windows.Forms.MenuItem();
     this.MenuItemCompareNoFilter      = new System.Windows.Forms.MenuItem();
     this.menuItemCompareAgain         = new System.Windows.Forms.MenuItem();
     this.menuItemCompareAgainFilter   = new System.Windows.Forms.MenuItem();
     this.menuItemCompareAgainNoFilter = new System.Windows.Forms.MenuItem();
     this.MenuItem_FileExit            = new System.Windows.Forms.MenuItem();
     this.MenuItem_Help                = new System.Windows.Forms.MenuItem();
     this.MenuItem_AboutDCMCompare     = new System.Windows.Forms.MenuItem();
     this.TabControl                   = new System.Windows.Forms.TabControl();
     this.TabCompareDetailResults      = new System.Windows.Forms.TabPage();
     this.dvtkWebBrowser               = new DvtkApplicationLayer.UserInterfaces.DvtkWebBrowserNew();
     this.TabComparisonFilter          = new System.Windows.Forms.TabPage();
     this.panel1 = new System.Windows.Forms.Panel();
     this.buttonAddSeqItemAttr = new System.Windows.Forms.Button();
     this.buttonAddAttr        = new System.Windows.Forms.Button();
     this.buttonRemoveAttr     = new System.Windows.Forms.Button();
     this.panel2                    = new System.Windows.Forms.Panel();
     this.listBoxFilterAttr         = new System.Windows.Forms.ListBox();
     this.label2                    = new System.Windows.Forms.Label();
     this.statusBarCompare          = new System.Windows.Forms.StatusBar();
     this.statusBarPanel            = new DCMCompare.StatusBarProgressPanel();
     this.checkBoxFilterGroupLength = new System.Windows.Forms.CheckBox();
     this.TabControl.SuspendLayout();
     this.TabCompareDetailResults.SuspendLayout();
     this.TabComparisonFilter.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.MenuItem_File,
         this.MenuItem_Help
     });
     //
     // MenuItem_File
     //
     this.MenuItem_File.Index = 0;
     this.MenuItem_File.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.MenuItemCompare,
         this.menuItemCompareAgain,
         this.MenuItem_FileExit
     });
     this.MenuItem_File.Text = "File";
     //
     // MenuItemCompare
     //
     this.MenuItemCompare.Index = 0;
     this.MenuItemCompare.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.MenuItemCompareFilter,
         this.MenuItemCompareNoFilter
     });
     this.MenuItemCompare.Text = "&Compare";
     //
     // MenuItemCompareFilter
     //
     this.MenuItemCompareFilter.Index  = 0;
     this.MenuItemCompareFilter.Text   = "With Filter";
     this.MenuItemCompareFilter.Click += new System.EventHandler(this.MenuItemCompareFilter_Click);
     //
     // MenuItemCompareNoFilter
     //
     this.MenuItemCompareNoFilter.Index  = 1;
     this.MenuItemCompareNoFilter.Text   = "Without Filter";
     this.MenuItemCompareNoFilter.Click += new System.EventHandler(this.MenuItemCompareNoFilter_Click);
     //
     // menuItemCompareAgain
     //
     this.menuItemCompareAgain.Index = 1;
     this.menuItemCompareAgain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemCompareAgainFilter,
         this.menuItemCompareAgainNoFilter
     });
     this.menuItemCompareAgain.Text = "&Compare Again";
     //
     // menuItemCompareAgainFilter
     //
     this.menuItemCompareAgainFilter.Index  = 0;
     this.menuItemCompareAgainFilter.Text   = "With Filter";
     this.menuItemCompareAgainFilter.Click += new System.EventHandler(this.menuItemCompareAgainFilter_Click);
     //
     // menuItemCompareAgainNoFilter
     //
     this.menuItemCompareAgainNoFilter.Index  = 1;
     this.menuItemCompareAgainNoFilter.Text   = "Without Filter";
     this.menuItemCompareAgainNoFilter.Click += new System.EventHandler(this.menuItemCompareAgainNoFilter_Click);
     //
     // MenuItem_FileExit
     //
     this.MenuItem_FileExit.Index  = 2;
     this.MenuItem_FileExit.Text   = "&Exit";
     this.MenuItem_FileExit.Click += new System.EventHandler(this.MenuItem_FileExit_Click);
     //
     // MenuItem_Help
     //
     this.MenuItem_Help.Index = 1;
     this.MenuItem_Help.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.MenuItem_AboutDCMCompare
     });
     this.MenuItem_Help.Text = "Help";
     //
     // MenuItem_AboutDCMCompare
     //
     this.MenuItem_AboutDCMCompare.Index  = 0;
     this.MenuItem_AboutDCMCompare.Text   = "About DCM Compare";
     this.MenuItem_AboutDCMCompare.Click += new System.EventHandler(this.MenuItem_AboutDCMCompare_Click);
     //
     // TabControl
     //
     this.TabControl.Controls.Add(this.TabCompareDetailResults);
     this.TabControl.Controls.Add(this.TabComparisonFilter);
     this.TabControl.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.TabControl.Location              = new System.Drawing.Point(0, 0);
     this.TabControl.Name                  = "TabControl";
     this.TabControl.SelectedIndex         = 0;
     this.TabControl.Size                  = new System.Drawing.Size(760, 544);
     this.TabControl.TabIndex              = 0;
     this.TabControl.SelectedIndexChanged += new System.EventHandler(this.TabControl_SelectedIndexChanged);
     //
     // TabCompareDetailResults
     //
     this.TabCompareDetailResults.AutoScroll = true;
     this.TabCompareDetailResults.Controls.Add(this.dvtkWebBrowser);
     this.TabCompareDetailResults.Location = new System.Drawing.Point(4, 22);
     this.TabCompareDetailResults.Name     = "TabCompareDetailResults";
     this.TabCompareDetailResults.Size     = new System.Drawing.Size(752, 518);
     this.TabCompareDetailResults.TabIndex = 0;
     this.TabCompareDetailResults.Text     = "Compare Results Overview";
     //
     // dvtkWebBrowser
     //
     this.dvtkWebBrowser.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dvtkWebBrowser.Location = new System.Drawing.Point(0, 0);
     this.dvtkWebBrowser.Name     = "dvtkWebBrowser";
     this.dvtkWebBrowser.Size     = new System.Drawing.Size(752, 518);
     this.dvtkWebBrowser.TabIndex = 0;
     this.dvtkWebBrowser.XmlStyleSheetFullFileName = "";
     //
     // TabComparisonFilter
     //
     this.TabComparisonFilter.Controls.Add(this.panel1);
     this.TabComparisonFilter.Controls.Add(this.panel2);
     this.TabComparisonFilter.Location = new System.Drawing.Point(4, 22);
     this.TabComparisonFilter.Name     = "TabComparisonFilter";
     this.TabComparisonFilter.Size     = new System.Drawing.Size(752, 518);
     this.TabComparisonFilter.TabIndex = 1;
     this.TabComparisonFilter.Text     = "Comparison Filter";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.buttonAddSeqItemAttr);
     this.panel1.Controls.Add(this.buttonAddAttr);
     this.panel1.Controls.Add(this.buttonRemoveAttr);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 430);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(752, 88);
     this.panel1.TabIndex = 6;
     //
     // buttonAddSeqItemAttr
     //
     this.buttonAddSeqItemAttr.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.buttonAddSeqItemAttr.Location = new System.Drawing.Point(256, 24);
     this.buttonAddSeqItemAttr.Name     = "buttonAddSeqItemAttr";
     this.buttonAddSeqItemAttr.Size     = new System.Drawing.Size(176, 23);
     this.buttonAddSeqItemAttr.TabIndex = 6;
     this.buttonAddSeqItemAttr.Text     = "Add Sequence Item Attribute";
     this.buttonAddSeqItemAttr.Click   += new System.EventHandler(this.buttonAddSeqItemAttr_Click);
     //
     // buttonAddAttr
     //
     this.buttonAddAttr.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonAddAttr.Location = new System.Drawing.Point(104, 24);
     this.buttonAddAttr.Name     = "buttonAddAttr";
     this.buttonAddAttr.Size     = new System.Drawing.Size(104, 23);
     this.buttonAddAttr.TabIndex = 4;
     this.buttonAddAttr.Text     = "Add Attribute";
     this.buttonAddAttr.Click   += new System.EventHandler(this.buttonAddAttr_Click);
     //
     // buttonRemoveAttr
     //
     this.buttonRemoveAttr.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRemoveAttr.Location = new System.Drawing.Point(464, 24);
     this.buttonRemoveAttr.Name     = "buttonRemoveAttr";
     this.buttonRemoveAttr.Size     = new System.Drawing.Size(152, 23);
     this.buttonRemoveAttr.TabIndex = 5;
     this.buttonRemoveAttr.Text     = "Remove Selected Attribute";
     this.buttonRemoveAttr.Click   += new System.EventHandler(this.buttonRemoveAttr_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.checkBoxFilterGroupLength);
     this.panel2.Controls.Add(this.listBoxFilterAttr);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(752, 432);
     this.panel2.TabIndex = 5;
     //
     // listBoxFilterAttr
     //
     this.listBoxFilterAttr.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.listBoxFilterAttr.Location = new System.Drawing.Point(0, 25);
     this.listBoxFilterAttr.Name     = "listBoxFilterAttr";
     this.listBoxFilterAttr.Size     = new System.Drawing.Size(752, 407);
     this.listBoxFilterAttr.TabIndex = 3;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(0, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(112, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Filter attributes List:";
     //
     // statusBarCompare
     //
     this.statusBarCompare.Location = new System.Drawing.Point(0, 544);
     this.statusBarCompare.Name     = "statusBarCompare";
     this.statusBarCompare.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel
     });
     this.statusBarCompare.ShowPanels = true;
     this.statusBarCompare.Size       = new System.Drawing.Size(760, 22);
     this.statusBarCompare.SizingGrip = false;
     this.statusBarCompare.TabIndex   = 1;
     //
     // statusBarPanel
     //
     this.statusBarPanel.Style = System.Windows.Forms.StatusBarPanelStyle.OwnerDraw;
     this.statusBarPanel.Width = 500;
     //
     // checkBoxFilterGroupLength
     //
     this.checkBoxFilterGroupLength.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBoxFilterGroupLength.Location        = new System.Drawing.Point(568, 0);
     this.checkBoxFilterGroupLength.Name            = "checkBoxFilterGroupLength";
     this.checkBoxFilterGroupLength.Size            = new System.Drawing.Size(176, 24);
     this.checkBoxFilterGroupLength.TabIndex        = 4;
     this.checkBoxFilterGroupLength.Text            = "Filter Group Length Attributes";
     this.checkBoxFilterGroupLength.CheckedChanged += new System.EventHandler(this.checkBoxFilterGroupLength_CheckedChanged);
     //
     // DCMCompareForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(760, 566);
     this.Controls.Add(this.TabControl);
     this.Controls.Add(this.statusBarCompare);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu          = this.mainMenu1;
     this.MinimumSize   = new System.Drawing.Size(760, 600);
     this.Name          = "DCMCompareForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "DCM Compare";
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.DCMCompareForm_Closing);
     this.Load         += new System.EventHandler(this.DCMCompareForm_Load);
     this.TabControl.ResumeLayout(false);
     this.TabCompareDetailResults.ResumeLayout(false);
     this.TabComparisonFilter.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel)).EndInit();
     this.ResumeLayout(false);
 }
Example #55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tcFRG         = new Oranikle.Studio.Controls.CtrlStyledTab();
     this.tabFind       = new System.Windows.Forms.TabPage();
     this.btnCancel     = new Oranikle.Studio.Controls.StyledButton();
     this.btnNext       = new Oranikle.Studio.Controls.StyledButton();
     this.chkCase       = new Oranikle.Studio.Controls.StyledCheckBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.radioUp       = new System.Windows.Forms.RadioButton();
     this.radioDown     = new System.Windows.Forms.RadioButton();
     this.label1        = new System.Windows.Forms.Label();
     this.txtFind       = new Oranikle.Studio.Controls.CustomTextControl();
     this.tabReplace    = new System.Windows.Forms.TabPage();
     this.bCloseReplace = new Oranikle.Studio.Controls.StyledButton();
     this.btnFindNext   = new Oranikle.Studio.Controls.StyledButton();
     this.chkMatchCase  = new Oranikle.Studio.Controls.StyledCheckBox();
     this.btnReplaceAll = new Oranikle.Studio.Controls.StyledButton();
     this.btnReplace    = new Oranikle.Studio.Controls.StyledButton();
     this.txtFindR      = new Oranikle.Studio.Controls.CustomTextControl();
     this.label3        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.txtReplace    = new Oranikle.Studio.Controls.CustomTextControl();
     this.tabGoTo       = new System.Windows.Forms.TabPage();
     this.bCloseGoto    = new Oranikle.Studio.Controls.StyledButton();
     this.txtLine       = new Oranikle.Studio.Controls.CustomTextControl();
     this.label4        = new System.Windows.Forms.Label();
     this.btnGoto       = new Oranikle.Studio.Controls.StyledButton();
     this.tcFRG.SuspendLayout();
     this.tabFind.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabReplace.SuspendLayout();
     this.tabGoTo.SuspendLayout();
     this.SuspendLayout();
     //
     // tcFRG
     //
     this.tcFRG.BorderColor = System.Drawing.Color.DarkGray;
     this.tcFRG.Controls.Add(this.tabFind);
     this.tcFRG.Controls.Add(this.tabReplace);
     this.tcFRG.Controls.Add(this.tabGoTo);
     this.tcFRG.DontSlantMiddle        = false;
     this.tcFRG.LeftSpacing            = 0;
     this.tcFRG.Location               = new System.Drawing.Point(8, 8);
     this.tcFRG.myBackColor            = System.Drawing.Color.Transparent;
     this.tcFRG.Name                   = "tcFRG";
     this.tcFRG.SelectedIndex          = 0;
     this.tcFRG.Size                   = new System.Drawing.Size(432, 192);
     this.tcFRG.SizeMode               = System.Windows.Forms.TabSizeMode.Fixed;
     this.tcFRG.TabFont                = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tcFRG.TabIndex               = 0;
     this.tcFRG.TabSlant               = 2;
     this.tcFRG.TabStop                = false;
     this.tcFRG.TabTextColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tcFRG.TabTextHAlignment      = System.Drawing.StringAlignment.Near;
     this.tcFRG.TabTextVAlignment      = System.Drawing.StringAlignment.Center;
     this.tcFRG.TagPageSelectedColor   = System.Drawing.Color.White;
     this.tcFRG.TagPageUnselectedColor = System.Drawing.Color.LightGray;
     this.tcFRG.Enter                 += new System.EventHandler(this.tcFRG_Enter);
     this.tcFRG.SelectedIndexChanged  += new System.EventHandler(this.tcFRG_SelectedIndexChanged);
     //
     // tabFind
     //
     this.tabFind.BackColor = System.Drawing.Color.White;
     this.tabFind.Controls.Add(this.btnCancel);
     this.tabFind.Controls.Add(this.btnNext);
     this.tabFind.Controls.Add(this.chkCase);
     this.tabFind.Controls.Add(this.groupBox1);
     this.tabFind.Controls.Add(this.label1);
     this.tabFind.Controls.Add(this.txtFind);
     this.tabFind.Location = new System.Drawing.Point(4, 25);
     this.tabFind.Name     = "tabFind";
     this.tabFind.Size     = new System.Drawing.Size(424, 163);
     this.tabFind.TabIndex = 0;
     this.tabFind.Tag      = "find";
     this.tabFind.Text     = "Find";
     //
     // btnCancel
     //
     this.btnCancel.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.btnCancel.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.btnCancel.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.btnCancel.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancel.Font                    = new System.Drawing.Font("Arial", 9F);
     this.btnCancel.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.btnCancel.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.Location                = new System.Drawing.Point(344, 128);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.OverriddenSize          = null;
     this.btnCancel.Size                    = new System.Drawing.Size(75, 21);
     this.btnCancel.TabIndex                = 3;
     this.btnCancel.Text                    = "Close";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // btnNext
     //
     this.btnNext.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.btnNext.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.btnNext.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.btnNext.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.btnNext.Enabled                 = false;
     this.btnNext.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnNext.Font                    = new System.Drawing.Font("Arial", 9F);
     this.btnNext.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.btnNext.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnNext.Location                = new System.Drawing.Point(344, 16);
     this.btnNext.Name                    = "btnNext";
     this.btnNext.OverriddenSize          = null;
     this.btnNext.Size                    = new System.Drawing.Size(75, 21);
     this.btnNext.TabIndex                = 1;
     this.btnNext.Text                    = "Find Next";
     this.btnNext.UseVisualStyleBackColor = true;
     this.btnNext.Click                  += new System.EventHandler(this.btnNext_Click);
     //
     // chkCase
     //
     this.chkCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.chkCase.ForeColor = System.Drawing.Color.Black;
     this.chkCase.Location  = new System.Drawing.Point(208, 72);
     this.chkCase.Name      = "chkCase";
     this.chkCase.Size      = new System.Drawing.Size(88, 24);
     this.chkCase.TabIndex  = 2;
     this.chkCase.Text      = "Match Case";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioUp);
     this.groupBox1.Controls.Add(this.radioDown);
     this.groupBox1.Location = new System.Drawing.Point(16, 48);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(176, 64);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Search Direction";
     //
     // radioUp
     //
     this.radioUp.Location        = new System.Drawing.Point(16, 24);
     this.radioUp.Name            = "radioUp";
     this.radioUp.Size            = new System.Drawing.Size(56, 24);
     this.radioUp.TabIndex        = 0;
     this.radioUp.Text            = "Up";
     this.radioUp.CheckedChanged += new System.EventHandler(this.radioUp_CheckedChanged);
     //
     // radioDown
     //
     this.radioDown.Location = new System.Drawing.Point(104, 24);
     this.radioDown.Name     = "radioDown";
     this.radioDown.Size     = new System.Drawing.Size(56, 24);
     this.radioDown.TabIndex = 1;
     this.radioDown.Text     = "Down";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(76, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Find";
     //
     // txtFind
     //
     this.txtFind.AddX                        = 0;
     this.txtFind.AddY                        = 0;
     this.txtFind.AllowSpace                  = false;
     this.txtFind.BorderColor                 = System.Drawing.Color.LightGray;
     this.txtFind.BorderStyle                 = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFind.ChangeVisibility            = false;
     this.txtFind.ChildControl                = null;
     this.txtFind.ConvertEnterToTab           = true;
     this.txtFind.ConvertEnterToTabForDialogs = false;
     this.txtFind.Decimals                    = 0;
     this.txtFind.DisplayList                 = new object[0];
     this.txtFind.HitText                     = Oranikle.Studio.Controls.HitText.String;
     this.txtFind.Location                    = new System.Drawing.Point(96, 16);
     this.txtFind.Name                        = "txtFind";
     this.txtFind.OnDropDownCloseFocus        = true;
     this.txtFind.SelectType                  = 0;
     this.txtFind.Size                        = new System.Drawing.Size(216, 20);
     this.txtFind.TabIndex                    = 0;
     this.txtFind.UseValueForChildsVisibilty  = false;
     this.txtFind.Value                       = true;
     this.txtFind.TextChanged                += new System.EventHandler(this.txtFind_TextChanged);
     //
     // tabReplace
     //
     this.tabReplace.BackColor = System.Drawing.Color.White;
     this.tabReplace.Controls.Add(this.bCloseReplace);
     this.tabReplace.Controls.Add(this.btnFindNext);
     this.tabReplace.Controls.Add(this.chkMatchCase);
     this.tabReplace.Controls.Add(this.btnReplaceAll);
     this.tabReplace.Controls.Add(this.btnReplace);
     this.tabReplace.Controls.Add(this.txtFindR);
     this.tabReplace.Controls.Add(this.label3);
     this.tabReplace.Controls.Add(this.label2);
     this.tabReplace.Controls.Add(this.txtReplace);
     this.tabReplace.Location = new System.Drawing.Point(4, 25);
     this.tabReplace.Name     = "tabReplace";
     this.tabReplace.Size     = new System.Drawing.Size(424, 163);
     this.tabReplace.TabIndex = 1;
     this.tabReplace.Tag      = "replace";
     this.tabReplace.Text     = "Replace";
     //
     // bCloseReplace
     //
     this.bCloseReplace.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.bCloseReplace.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.bCloseReplace.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.bCloseReplace.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.bCloseReplace.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.bCloseReplace.Font                    = new System.Drawing.Font("Arial", 9F);
     this.bCloseReplace.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.bCloseReplace.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.bCloseReplace.Location                = new System.Drawing.Point(344, 128);
     this.bCloseReplace.Name                    = "bCloseReplace";
     this.bCloseReplace.OverriddenSize          = null;
     this.bCloseReplace.Size                    = new System.Drawing.Size(75, 21);
     this.bCloseReplace.TabIndex                = 6;
     this.bCloseReplace.Text                    = "Close";
     this.bCloseReplace.UseVisualStyleBackColor = true;
     this.bCloseReplace.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // btnFindNext
     //
     this.btnFindNext.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.btnFindNext.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.btnFindNext.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.btnFindNext.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.btnFindNext.Enabled                 = false;
     this.btnFindNext.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnFindNext.Font                    = new System.Drawing.Font("Arial", 9F);
     this.btnFindNext.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.btnFindNext.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnFindNext.Location                = new System.Drawing.Point(344, 16);
     this.btnFindNext.Name                    = "btnFindNext";
     this.btnFindNext.OverriddenSize          = null;
     this.btnFindNext.Size                    = new System.Drawing.Size(75, 21);
     this.btnFindNext.TabIndex                = 3;
     this.btnFindNext.Text                    = "FindNext";
     this.btnFindNext.UseVisualStyleBackColor = true;
     this.btnFindNext.Click                  += new System.EventHandler(this.btnFindNext_Click);
     //
     // chkMatchCase
     //
     this.chkMatchCase.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.chkMatchCase.ForeColor = System.Drawing.Color.Black;
     this.chkMatchCase.Location  = new System.Drawing.Point(8, 88);
     this.chkMatchCase.Name      = "chkMatchCase";
     this.chkMatchCase.Size      = new System.Drawing.Size(104, 24);
     this.chkMatchCase.TabIndex  = 2;
     this.chkMatchCase.Text      = "Match Case";
     //
     // btnReplaceAll
     //
     this.btnReplaceAll.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.btnReplaceAll.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.btnReplaceAll.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.btnReplaceAll.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.btnReplaceAll.Enabled                 = false;
     this.btnReplaceAll.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnReplaceAll.Font                    = new System.Drawing.Font("Arial", 9F);
     this.btnReplaceAll.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.btnReplaceAll.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnReplaceAll.Location                = new System.Drawing.Point(344, 80);
     this.btnReplaceAll.Name                    = "btnReplaceAll";
     this.btnReplaceAll.OverriddenSize          = null;
     this.btnReplaceAll.Size                    = new System.Drawing.Size(75, 21);
     this.btnReplaceAll.TabIndex                = 5;
     this.btnReplaceAll.Text                    = "ReplaceAll";
     this.btnReplaceAll.UseVisualStyleBackColor = true;
     this.btnReplaceAll.Click                  += new System.EventHandler(this.btnReplaceAll_Click);
     //
     // btnReplace
     //
     this.btnReplace.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.btnReplace.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.btnReplace.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.btnReplace.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.btnReplace.Enabled                 = false;
     this.btnReplace.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnReplace.Font                    = new System.Drawing.Font("Arial", 9F);
     this.btnReplace.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.btnReplace.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnReplace.Location                = new System.Drawing.Point(344, 48);
     this.btnReplace.Name                    = "btnReplace";
     this.btnReplace.OverriddenSize          = null;
     this.btnReplace.Size                    = new System.Drawing.Size(75, 21);
     this.btnReplace.TabIndex                = 4;
     this.btnReplace.Text                    = "Replace";
     this.btnReplace.UseVisualStyleBackColor = true;
     this.btnReplace.Click                  += new System.EventHandler(this.btnReplace_Click);
     //
     // txtFindR
     //
     this.txtFindR.AddX                        = 0;
     this.txtFindR.AddY                        = 0;
     this.txtFindR.AllowSpace                  = false;
     this.txtFindR.BorderColor                 = System.Drawing.Color.LightGray;
     this.txtFindR.BorderStyle                 = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFindR.ChangeVisibility            = false;
     this.txtFindR.ChildControl                = null;
     this.txtFindR.ConvertEnterToTab           = true;
     this.txtFindR.ConvertEnterToTabForDialogs = false;
     this.txtFindR.Decimals                    = 0;
     this.txtFindR.DisplayList                 = new object[0];
     this.txtFindR.HitText                     = Oranikle.Studio.Controls.HitText.String;
     this.txtFindR.Location                    = new System.Drawing.Point(96, 16);
     this.txtFindR.Name                        = "txtFindR";
     this.txtFindR.OnDropDownCloseFocus        = true;
     this.txtFindR.SelectType                  = 0;
     this.txtFindR.Size                        = new System.Drawing.Size(224, 20);
     this.txtFindR.TabIndex                    = 0;
     this.txtFindR.UseValueForChildsVisibilty  = false;
     this.txtFindR.Value                       = true;
     this.txtFindR.TextChanged                += new System.EventHandler(this.txtFindR_TextChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(14, 16);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(76, 23);
     this.label3.TabIndex = 0;
     this.label3.Text     = "Find";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(14, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(76, 23);
     this.label2.TabIndex = 5;
     this.label2.Text     = "Replace With";
     //
     // txtReplace
     //
     this.txtReplace.AddX                        = 0;
     this.txtReplace.AddY                        = 0;
     this.txtReplace.AllowSpace                  = false;
     this.txtReplace.BorderColor                 = System.Drawing.Color.LightGray;
     this.txtReplace.BorderStyle                 = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtReplace.ChangeVisibility            = false;
     this.txtReplace.ChildControl                = null;
     this.txtReplace.ConvertEnterToTab           = true;
     this.txtReplace.ConvertEnterToTabForDialogs = false;
     this.txtReplace.Decimals                    = 0;
     this.txtReplace.DisplayList                 = new object[0];
     this.txtReplace.HitText                     = Oranikle.Studio.Controls.HitText.String;
     this.txtReplace.Location                    = new System.Drawing.Point(96, 56);
     this.txtReplace.Name                        = "txtReplace";
     this.txtReplace.OnDropDownCloseFocus        = true;
     this.txtReplace.SelectType                  = 0;
     this.txtReplace.Size                        = new System.Drawing.Size(224, 20);
     this.txtReplace.TabIndex                    = 1;
     this.txtReplace.UseValueForChildsVisibilty  = false;
     this.txtReplace.Value                       = true;
     //
     // tabGoTo
     //
     this.tabGoTo.BackColor = System.Drawing.Color.White;
     this.tabGoTo.Controls.Add(this.bCloseGoto);
     this.tabGoTo.Controls.Add(this.txtLine);
     this.tabGoTo.Controls.Add(this.label4);
     this.tabGoTo.Controls.Add(this.btnGoto);
     this.tabGoTo.Location = new System.Drawing.Point(4, 25);
     this.tabGoTo.Name     = "tabGoTo";
     this.tabGoTo.Size     = new System.Drawing.Size(424, 163);
     this.tabGoTo.TabIndex = 2;
     this.tabGoTo.Tag      = "goto";
     this.tabGoTo.Text     = "GoTo";
     //
     // bCloseGoto
     //
     this.bCloseGoto.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.bCloseGoto.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.bCloseGoto.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.bCloseGoto.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.bCloseGoto.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.bCloseGoto.Font                    = new System.Drawing.Font("Arial", 9F);
     this.bCloseGoto.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.bCloseGoto.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.bCloseGoto.Location                = new System.Drawing.Point(344, 128);
     this.bCloseGoto.Name                    = "bCloseGoto";
     this.bCloseGoto.OverriddenSize          = null;
     this.bCloseGoto.Size                    = new System.Drawing.Size(75, 21);
     this.bCloseGoto.TabIndex                = 2;
     this.bCloseGoto.Text                    = "Close";
     this.bCloseGoto.UseVisualStyleBackColor = true;
     this.bCloseGoto.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // txtLine
     //
     this.txtLine.AddX                        = 0;
     this.txtLine.AddY                        = 0;
     this.txtLine.AllowSpace                  = false;
     this.txtLine.BorderColor                 = System.Drawing.Color.LightGray;
     this.txtLine.BorderStyle                 = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtLine.ChangeVisibility            = false;
     this.txtLine.ChildControl                = null;
     this.txtLine.ConvertEnterToTab           = true;
     this.txtLine.ConvertEnterToTabForDialogs = false;
     this.txtLine.Decimals                    = 0;
     this.txtLine.DisplayList                 = new object[0];
     this.txtLine.HitText                     = Oranikle.Studio.Controls.HitText.String;
     this.txtLine.Location                    = new System.Drawing.Point(96, 16);
     this.txtLine.Name                        = "txtLine";
     this.txtLine.OnDropDownCloseFocus        = true;
     this.txtLine.SelectType                  = 0;
     this.txtLine.Size                        = new System.Drawing.Size(100, 20);
     this.txtLine.TabIndex                    = 0;
     this.txtLine.UseValueForChildsVisibilty  = false;
     this.txtLine.Value                       = true;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 16);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 23);
     this.label4.TabIndex = 2;
     this.label4.Text     = "Line Number";
     //
     // btnGoto
     //
     this.btnGoto.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))));
     this.btnGoto.BackColor2              = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(225)))), ((int)(((byte)(225)))));
     this.btnGoto.BackFillMode            = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.btnGoto.BorderColor             = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.btnGoto.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.btnGoto.Font                    = new System.Drawing.Font("Arial", 9F);
     this.btnGoto.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))));
     this.btnGoto.ImageAlign              = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGoto.Location                = new System.Drawing.Point(344, 16);
     this.btnGoto.Name                    = "btnGoto";
     this.btnGoto.OverriddenSize          = null;
     this.btnGoto.Size                    = new System.Drawing.Size(75, 21);
     this.btnGoto.TabIndex                = 1;
     this.btnGoto.Text                    = "GoTo";
     this.btnGoto.UseVisualStyleBackColor = true;
     this.btnGoto.Click                  += new System.EventHandler(this.btnGoto_Click);
     //
     // FindTab
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(241)))), ((int)(((byte)(249)))));
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(445, 206);
     this.Controls.Add(this.tcFRG);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FindTab";
     this.Text            = "Find";
     this.TopMost         = true;
     this.tcFRG.ResumeLayout(false);
     this.tabFind.ResumeLayout(false);
     this.tabFind.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.tabReplace.ResumeLayout(false);
     this.tabReplace.PerformLayout();
     this.tabGoTo.ResumeLayout(false);
     this.tabGoTo.PerformLayout();
     this.ResumeLayout(false);
 }
Example #56
0
 private void InitializeComponent()
 {
     this.txtAircraftType = new System.Windows.Forms.TextBox();
     this.lblAircraftType = new System.Windows.Forms.Label();
     this.tpImage         = new System.Windows.Forms.TabPage();
     this.txtDates        = new System.Windows.Forms.TextBox();
     this.lblDates        = new System.Windows.Forms.Label();
     this.tpKits          = new System.Windows.Forms.TabPage();
     this.tpDecalSets     = new System.Windows.Forms.TabPage();
     this.gbKits          = new System.Windows.Forms.GroupBox();
     this.txtKits         = new System.Windows.Forms.TextBox();
     this.gbDecalSets     = new System.Windows.Forms.GroupBox();
     this.txtDecalSets    = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize) this.sbpPosition).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpStatus).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpMessage).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpTime).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpEndBorder).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpFilter).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpMode).BeginInit();
     this.tpNotes.SuspendLayout();
     this.tpGeneral.SuspendLayout();
     this.tcMain.SuspendLayout();
     this.gbGeneral.SuspendLayout();
     this.tpKits.SuspendLayout();
     this.tpDecalSets.SuspendLayout();
     this.gbKits.SuspendLayout();
     this.gbDecalSets.SuspendLayout();
     this.SuspendLayout();
     //
     //lblPurchased
     //
     this.lblPurchased.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.lblPurchased.Location = new System.Drawing.Point(20, 212);
     this.lblPurchased.Name     = "lblPurchased";
     this.lblPurchased.TabIndex = 13;
     this.lblPurchased.Visible  = false;
     //
     //btnLast
     //
     this.btnLast.Location = new System.Drawing.Point(639, 328);
     this.btnLast.Name     = "btnLast";
     this.btnLast.TabIndex = 4;
     //
     //btnFirst
     //
     this.btnFirst.Location = new System.Drawing.Point(8, 328);
     this.btnFirst.Name     = "btnFirst";
     this.btnFirst.TabIndex = 0;
     //
     //btnNext
     //
     this.btnNext.Location = new System.Drawing.Point(612, 328);
     this.btnNext.Name     = "btnNext";
     this.btnNext.TabIndex = 3;
     //
     //btnPrev
     //
     this.btnPrev.Location = new System.Drawing.Point(36, 328);
     this.btnPrev.Name     = "btnPrev";
     this.btnPrev.TabIndex = 1;
     //
     //sbpPosition
     //
     this.sbpPosition.Text  = "";
     this.sbpPosition.Width = 10;
     //
     //sbpStatus
     //
     this.sbpStatus.Text  = "Filter Off";
     this.sbpStatus.Width = 74;
     //
     //sbpMessage
     //
     this.sbpMessage.Text  = "";
     this.sbpMessage.Width = 476;
     //
     //sbpTime
     //
     this.sbpTime.Text  = "10:31 PM";
     this.sbpTime.Width = 79;
     //
     //lblID
     //
     this.lblID.Location = new System.Drawing.Point(12, 367);
     this.lblID.Name     = "lblID";
     //
     //btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(508, 364);
     this.btnOK.Name     = "btnOK";
     this.btnOK.TabIndex = 20;
     //
     //btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(589, 364);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.TabIndex = 22;
     //
     //lblInventoried
     //
     this.lblInventoried.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.lblInventoried.Location = new System.Drawing.Point(256, 212);
     this.lblInventoried.Name     = "lblInventoried";
     this.lblInventoried.TabIndex = 15;
     this.lblInventoried.Visible  = false;
     //
     //lblLocation
     //
     this.lblLocation.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.lblLocation.Location = new System.Drawing.Point(20, 216);
     this.lblLocation.Name     = "lblLocation";
     this.lblLocation.TabIndex = 7;
     this.lblLocation.Visible  = false;
     //
     //lblAlphaSort
     //
     this.lblAlphaSort.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.lblAlphaSort.Location = new System.Drawing.Point(16, 212);
     this.lblAlphaSort.Name     = "lblAlphaSort";
     this.lblAlphaSort.TabIndex = 11;
     this.lblAlphaSort.Visible  = false;
     //
     //lblPrice
     //
     this.lblPrice.Location = new System.Drawing.Point(252, 216);
     this.lblPrice.Name     = "lblPrice";
     this.lblPrice.TabIndex = 9;
     this.lblPrice.Visible  = false;
     //
     //btnExit
     //
     this.btnExit.Location = new System.Drawing.Point(589, 364);
     this.btnExit.Name     = "btnExit";
     this.btnExit.TabIndex = 21;
     //
     //sbpFilter
     //
     this.sbpFilter.Text  = "";
     this.sbpFilter.Width = 10;
     //
     //sbpMode
     //
     this.sbpMode.Text  = "";
     this.sbpMode.Width = 10;
     //
     //pbGeneral2
     //
     this.pbGeneral2.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.pbGeneral2.Location = new System.Drawing.Point(616, 142);
     this.pbGeneral2.Name     = "pbGeneral2";
     this.pbGeneral2.Size     = new System.Drawing.Size(125, 67);
     this.pbGeneral2.Visible  = false;
     //
     //hsbGeneral
     //
     this.hsbGeneral.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.hsbGeneral.Location = new System.Drawing.Point(616, 214);
     this.hsbGeneral.Name     = "hsbGeneral";
     this.hsbGeneral.Size     = new System.Drawing.Size(124, 17);
     this.hsbGeneral.Visible  = false;
     //
     //sbStatus
     //
     this.sbStatus.Location = new System.Drawing.Point(0, 397);
     this.sbStatus.Name     = "sbStatus";
     this.sbStatus.Size     = new System.Drawing.Size(676, 22);
     //
     //txtAlphaSort
     //
     this.txtAlphaSort.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.txtAlphaSort.Location = new System.Drawing.Point(92, 212);
     this.txtAlphaSort.Name     = "txtAlphaSort";
     //
     //chkWishList
     //
     this.chkWishList.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.chkWishList.Location = new System.Drawing.Point(484, 212);
     this.chkWishList.Name     = "chkWishList";
     this.chkWishList.TabIndex = 17;
     this.chkWishList.Visible  = false;
     //
     //dtpPurchased
     //
     this.dtpPurchased.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.dtpPurchased.Location = new System.Drawing.Point(100, 212);
     this.dtpPurchased.Name     = "dtpPurchased";
     this.dtpPurchased.TabIndex = 14;
     this.dtpPurchased.Visible  = false;
     //
     //dtpInventoried
     //
     this.dtpInventoried.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.dtpInventoried.Location = new System.Drawing.Point(340, 212);
     this.dtpInventoried.Name     = "dtpInventoried";
     this.dtpInventoried.TabIndex = 16;
     this.dtpInventoried.Visible  = false;
     //
     //pbGeneral
     //
     this.pbGeneral.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.pbGeneral.Location = new System.Drawing.Point(616, 142);
     this.pbGeneral.Name     = "pbGeneral";
     this.pbGeneral.Size     = new System.Drawing.Size(125, 67);
     this.pbGeneral.Visible  = false;
     //
     //txtCaption
     //
     this.txtCaption.Location = new System.Drawing.Point(64, 328);
     this.txtCaption.Name     = "txtCaption";
     this.txtCaption.Size     = new System.Drawing.Size(544, 24);
     this.txtCaption.TabIndex = 2;
     //
     //tpNotes
     //
     this.tpNotes.Name = "tpNotes";
     this.tpNotes.Size = new System.Drawing.Size(648, 255);
     //
     //tpGeneral
     //
     this.tpGeneral.Name = "tpGeneral";
     this.tpGeneral.Size = new System.Drawing.Size(648, 255);
     //
     //tcMain
     //
     this.tcMain.Controls.Add(this.tpImage);
     this.tcMain.Controls.Add(this.tpKits);
     this.tcMain.Controls.Add(this.tpDecalSets);
     this.tcMain.Name = "tcMain";
     this.tcMain.Size = new System.Drawing.Size(656, 284);
     this.tcMain.Controls.SetChildIndex(this.tpDecalSets, 0);
     this.tcMain.Controls.SetChildIndex(this.tpKits, 0);
     this.tcMain.Controls.SetChildIndex(this.tpImage, 0);
     this.tcMain.Controls.SetChildIndex(this.tpNotes, 0);
     this.tcMain.Controls.SetChildIndex(this.tpGeneral, 0);
     //
     //gbGeneral
     //
     this.gbGeneral.Controls.Add(this.txtDates);
     this.gbGeneral.Controls.Add(this.lblDates);
     this.gbGeneral.Controls.Add(this.lblAircraftType);
     this.gbGeneral.Controls.Add(this.txtAircraftType);
     this.gbGeneral.Name = "gbGeneral";
     this.gbGeneral.Size = new System.Drawing.Size(636, 244);
     this.gbGeneral.Controls.SetChildIndex(this.lblAlphaSort, 0);
     this.gbGeneral.Controls.SetChildIndex(this.txtAlphaSort, 0);
     this.gbGeneral.Controls.SetChildIndex(this.lblLocation, 0);
     this.gbGeneral.Controls.SetChildIndex(this.cbLocation, 0);
     this.gbGeneral.Controls.SetChildIndex(this.dtpInventoried, 0);
     this.gbGeneral.Controls.SetChildIndex(this.lblInventoried, 0);
     this.gbGeneral.Controls.SetChildIndex(this.dtpPurchased, 0);
     this.gbGeneral.Controls.SetChildIndex(this.lblPurchased, 0);
     this.gbGeneral.Controls.SetChildIndex(this.chkWishList, 0);
     this.gbGeneral.Controls.SetChildIndex(this.pbGeneral, 0);
     this.gbGeneral.Controls.SetChildIndex(this.lblPrice, 0);
     this.gbGeneral.Controls.SetChildIndex(this.txtPrice, 0);
     this.gbGeneral.Controls.SetChildIndex(this.cbAlphaSort, 0);
     this.gbGeneral.Controls.SetChildIndex(this.hsbGeneral, 0);
     this.gbGeneral.Controls.SetChildIndex(this.pbGeneral2, 0);
     this.gbGeneral.Controls.SetChildIndex(this.txtAircraftType, 0);
     this.gbGeneral.Controls.SetChildIndex(this.lblAircraftType, 0);
     this.gbGeneral.Controls.SetChildIndex(this.lblDates, 0);
     this.gbGeneral.Controls.SetChildIndex(this.txtDates, 0);
     //
     //cbAlphaSort
     //
     this.cbAlphaSort.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.cbAlphaSort.Location = new System.Drawing.Point(96, 212);
     this.cbAlphaSort.Name     = "cbAlphaSort";
     this.cbAlphaSort.Size     = new System.Drawing.Size(516, 24);
     this.cbAlphaSort.TabIndex = 12;
     this.cbAlphaSort.Visible  = false;
     //
     //txtPrice
     //
     this.txtPrice.Location = new System.Drawing.Point(296, 212);
     this.txtPrice.Name     = "txtPrice";
     this.txtPrice.TabIndex = 10;
     this.txtPrice.Visible  = false;
     //
     //rtfNotes
     //
     this.rtfNotes.Name = "rtfNotes";
     this.rtfNotes.Size = new System.Drawing.Size(628, 203);
     this.ttBase.SetToolTip(this.rtfNotes, "Description of Class");
     //
     //txtID
     //
     this.txtID.Location = new System.Drawing.Point(40, 368);
     this.txtID.Name     = "txtID";
     //
     //cbLocation
     //
     this.cbLocation.Anchor   = (System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left);
     this.cbLocation.Location = new System.Drawing.Point(92, 212);
     this.cbLocation.Name     = "cbLocation";
     this.cbLocation.Size     = new System.Drawing.Size(516, 24);
     this.cbLocation.TabIndex = 8;
     this.cbLocation.Visible  = false;
     //
     //txtAircraftType
     //
     this.txtAircraftType.Anchor   = (System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.txtAircraftType.Location = new System.Drawing.Point(108, 48);
     this.txtAircraftType.Name     = "txtAircraftType";
     this.txtAircraftType.Size     = new System.Drawing.Size(496, 23);
     this.txtAircraftType.TabIndex = 2;
     this.txtAircraftType.Tag      = "Required";
     this.txtAircraftType.Text     = "txtAircraftType";
     this.ttBase.SetToolTip(this.txtAircraftType, "Aircraft type flown during this period");
     //
     //lblAircraftType
     //
     this.lblAircraftType.AutoSize = true;
     this.lblAircraftType.Location = new System.Drawing.Point(9, 50);
     this.lblAircraftType.Name     = "lblAircraftType";
     this.lblAircraftType.Size     = new System.Drawing.Size(91, 19);
     this.lblAircraftType.TabIndex = 0;
     this.lblAircraftType.Text     = "Aircraft Type";
     //
     //tpImage
     //
     this.tpImage.Location = new System.Drawing.Point(4, 25);
     this.tpImage.Name     = "tpImage";
     this.tpImage.Size     = new System.Drawing.Size(648, 255);
     this.tpImage.TabIndex = 5;
     this.tpImage.Text     = "Image";
     //
     //txtDates
     //
     this.txtDates.Location = new System.Drawing.Point(108, 20);
     this.txtDates.Name     = "txtDates";
     this.txtDates.Size     = new System.Drawing.Size(224, 23);
     this.txtDates.TabIndex = 1;
     this.txtDates.Tag      = "Required";
     this.txtDates.Text     = "txtDates";
     this.ttBase.SetToolTip(this.txtDates, "Period in which this aircraft was in service with the Blue Angels");
     //
     //lblDates
     //
     this.lblDates.AutoSize = true;
     this.lblDates.Location = new System.Drawing.Point(57, 22);
     this.lblDates.Name     = "lblDates";
     this.lblDates.Size     = new System.Drawing.Size(43, 19);
     this.lblDates.TabIndex = 4;
     this.lblDates.Text     = "Dates";
     //
     //tpKits
     //
     this.tpKits.Controls.Add(this.gbKits);
     this.tpKits.Location = new System.Drawing.Point(4, 25);
     this.tpKits.Name     = "tpKits";
     this.tpKits.Size     = new System.Drawing.Size(648, 255);
     this.tpKits.TabIndex = 6;
     this.tpKits.Text     = "Kits";
     //
     //tpDecalSets
     //
     this.tpDecalSets.Controls.Add(this.gbDecalSets);
     this.tpDecalSets.Location = new System.Drawing.Point(4, 25);
     this.tpDecalSets.Name     = "tpDecalSets";
     this.tpDecalSets.Size     = new System.Drawing.Size(648, 255);
     this.tpDecalSets.TabIndex = 7;
     this.tpDecalSets.Text     = "Decal Sets";
     //
     //gbKits
     //
     this.gbKits.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.gbKits.Controls.Add(this.txtKits);
     this.gbKits.Location = new System.Drawing.Point(4, 4);
     this.gbKits.Name     = "gbKits";
     this.gbKits.Size     = new System.Drawing.Size(640, 244);
     this.gbKits.TabIndex = 0;
     this.gbKits.TabStop  = false;
     //
     //txtKits
     //
     this.txtKits.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.txtKits.Location  = new System.Drawing.Point(4, 16);
     this.txtKits.Multiline = true;
     this.txtKits.Name      = "txtKits";
     this.txtKits.Size      = new System.Drawing.Size(632, 224);
     this.txtKits.TabIndex  = 0;
     this.txtKits.Text      = "txtKits";
     this.ttBase.SetToolTip(this.txtKits, "Model Kits commercially available for this aircraft");
     //
     //gbDecalSets
     //
     this.gbDecalSets.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.gbDecalSets.Controls.Add(this.txtDecalSets);
     this.gbDecalSets.Location = new System.Drawing.Point(4, 4);
     this.gbDecalSets.Name     = "gbDecalSets";
     this.gbDecalSets.Size     = new System.Drawing.Size(640, 244);
     this.gbDecalSets.TabIndex = 1;
     this.gbDecalSets.TabStop  = false;
     //
     //txtDecalSets
     //
     this.txtDecalSets.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.txtDecalSets.Location  = new System.Drawing.Point(4, 19);
     this.txtDecalSets.Multiline = true;
     this.txtDecalSets.Name      = "txtDecalSets";
     this.txtDecalSets.Size      = new System.Drawing.Size(632, 221);
     this.txtDecalSets.TabIndex  = 0;
     this.txtDecalSets.Text      = "txtDecalSets";
     this.ttBase.SetToolTip(this.txtDecalSets, "Decal Sets commercially available for kits for this aircraft");
     //
     //frmBlueAngelsHistory
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(676, 419);
     this.MinimumSize       = new System.Drawing.Size(this.Width, this.Height);
     this.Name = "frmBlueAngelsHistory";
     this.Text = "frmBlueAngelsHistory";
     ((System.ComponentModel.ISupportInitialize) this.sbpPosition).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpStatus).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpMessage).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpTime).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpEndBorder).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpFilter).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.sbpMode).EndInit();
     this.tpNotes.ResumeLayout(false);
     this.tpGeneral.ResumeLayout(false);
     this.tcMain.ResumeLayout(false);
     this.gbGeneral.ResumeLayout(false);
     this.tpKits.ResumeLayout(false);
     this.tpDecalSets.ResumeLayout(false);
     this.gbKits.ResumeLayout(false);
     this.gbDecalSets.ResumeLayout(false);
     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()
 {
     this.TabSettings        = new System.Windows.Forms.TabControl();
     this.TabListingAnalyzer = new System.Windows.Forms.TabPage();
     this.TxtItemID          = new System.Windows.Forms.TextBox();
     this.LblItemID          = new System.Windows.Forms.Label();
     this.GrpListingTips     = new System.Windows.Forms.GroupBox();
     this.LstTips            = new System.Windows.Forms.ListView();
     this.ClmID                  = new System.Windows.Forms.ColumnHeader();
     this.ClmPriority            = new System.Windows.Forms.ColumnHeader();
     this.ClmMessage             = new System.Windows.Forms.ColumnHeader();
     this.ClmFieldID             = new System.Windows.Forms.ColumnHeader();
     this.ClmFieldTip            = new System.Windows.Forms.ColumnHeader();
     this.ClmFieldText           = new System.Windows.Forms.ColumnHeader();
     this.ClmHelpURL             = new System.Windows.Forms.ColumnHeader();
     this.BtnListingAnalyzer     = new System.Windows.Forms.Button();
     this.CboListingFlow         = new System.Windows.Forms.ComboBox();
     this.LblListingFlow         = new System.Windows.Forms.Label();
     this.TabProductPricing      = new System.Windows.Forms.TabPage();
     this.GrpResult              = new System.Windows.Forms.GroupBox();
     this.TxtAverageStartPrice   = new System.Windows.Forms.TextBox();
     this.TxtAverageSoldPrice    = new System.Windows.Forms.TextBox();
     this.LblAverageStartPrice   = new System.Windows.Forms.Label();
     this.LblAverageSoldPrice    = new System.Windows.Forms.Label();
     this.TxtCatalogTitle        = new System.Windows.Forms.TextBox();
     this.LblCatalogTitle        = new System.Windows.Forms.Label();
     this.TxtExternalProductID   = new System.Windows.Forms.TextBox();
     this.BtnProductPricing      = new System.Windows.Forms.Button();
     this.LblExternalProductID   = new System.Windows.Forms.Label();
     this.TabSuggestedAttributes = new System.Windows.Forms.TabPage();
     this.GrpSuggestedProducts   = new System.Windows.Forms.GroupBox();
     this.lstProduct             = new System.Windows.Forms.ListView();
     this.ClmTitle               = new System.Windows.Forms.ColumnHeader();
     this.ClmInfoID              = new System.Windows.Forms.ColumnHeader();
     this.ClmAvgStartPrice       = new System.Windows.Forms.ColumnHeader();
     this.ClmAvgSoldPrice        = new System.Windows.Forms.ColumnHeader();
     this.GrpSuggestedAttr       = new System.Windows.Forms.GroupBox();
     this.LstAttr                = new System.Windows.Forms.ListView();
     this.ClmCSID                = new System.Windows.Forms.ColumnHeader();
     this.ClmVersion             = new System.Windows.Forms.ColumnHeader();
     this.ClmNoOfAttr            = new System.Windows.Forms.ColumnHeader();
     this.TxtQuery               = new System.Windows.Forms.TextBox();
     this.LblQuery               = new System.Windows.Forms.Label();
     this.BtnSuggestedAttr       = new System.Windows.Forms.Button();
     this.TxtTitle               = new System.Windows.Forms.TextBox();
     this.LblTitle               = new System.Windows.Forms.Label();
     this.TxtReservePrice        = new System.Windows.Forms.TextBox();
     this.LblReservePrice        = new System.Windows.Forms.Label();
     this.TxtStartPrice          = new System.Windows.Forms.TextBox();
     this.LblStartPrice          = new System.Windows.Forms.Label();
     this.TxtPrimaryCategory     = new System.Windows.Forms.TextBox();
     this.LblPrimaryCategory     = new System.Windows.Forms.Label();
     this.TxtSecondaryCategory   = new System.Windows.Forms.TextBox();
     this.LblSecondaryCategory   = new System.Windows.Forms.Label();
     this.TxtBuyItNowPrice       = new System.Windows.Forms.TextBox();
     this.LblBuyItNowPrice       = new System.Windows.Forms.Label();
     this.BtnGetCategories       = new System.Windows.Forms.Button();
     this.label1                 = new System.Windows.Forms.Label();
     this.BtnGetItem             = new System.Windows.Forms.Button();
     this.TabSettings.SuspendLayout();
     this.TabListingAnalyzer.SuspendLayout();
     this.GrpListingTips.SuspendLayout();
     this.TabProductPricing.SuspendLayout();
     this.GrpResult.SuspendLayout();
     this.TabSuggestedAttributes.SuspendLayout();
     this.GrpSuggestedProducts.SuspendLayout();
     this.GrpSuggestedAttr.SuspendLayout();
     this.SuspendLayout();
     //
     // TabSettings
     //
     this.TabSettings.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.TabListingAnalyzer,
         this.TabProductPricing,
         this.TabSuggestedAttributes
     });
     this.TabSettings.Location      = new System.Drawing.Point(40, 168);
     this.TabSettings.Name          = "TabSettings";
     this.TabSettings.SelectedIndex = 0;
     this.TabSettings.Size          = new System.Drawing.Size(560, 372);
     this.TabSettings.TabIndex      = 41;
     //
     // TabListingAnalyzer
     //
     this.TabListingAnalyzer.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.TxtItemID,
         this.LblItemID,
         this.GrpListingTips,
         this.BtnListingAnalyzer,
         this.CboListingFlow,
         this.LblListingFlow
     });
     this.TabListingAnalyzer.Location = new System.Drawing.Point(4, 22);
     this.TabListingAnalyzer.Name     = "TabListingAnalyzer";
     this.TabListingAnalyzer.Size     = new System.Drawing.Size(552, 346);
     this.TabListingAnalyzer.TabIndex = 0;
     this.TabListingAnalyzer.Text     = "Listing Analyzer";
     //
     // TxtItemID
     //
     this.TxtItemID.Location = new System.Drawing.Point(384, 16);
     this.TxtItemID.Name     = "TxtItemID";
     this.TxtItemID.Size     = new System.Drawing.Size(144, 20);
     this.TxtItemID.TabIndex = 85;
     this.TxtItemID.Text     = "";
     this.TxtItemID.Visible  = false;
     //
     // LblItemID
     //
     this.LblItemID.Location = new System.Drawing.Point(320, 16);
     this.LblItemID.Name     = "LblItemID";
     this.LblItemID.Size     = new System.Drawing.Size(48, 23);
     this.LblItemID.TabIndex = 84;
     this.LblItemID.Text     = "Item ID:";
     this.LblItemID.Visible  = false;
     //
     // GrpListingTips
     //
     this.GrpListingTips.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.LstTips
     });
     this.GrpListingTips.Location = new System.Drawing.Point(16, 96);
     this.GrpListingTips.Name     = "GrpListingTips";
     this.GrpListingTips.Size     = new System.Drawing.Size(520, 216);
     this.GrpListingTips.TabIndex = 65;
     this.GrpListingTips.TabStop  = false;
     this.GrpListingTips.Text     = "Listing Tips";
     //
     // LstTips
     //
     this.LstTips.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ClmID,
         this.ClmFieldID,
         this.ClmPriority,
         this.ClmMessage,
         this.ClmFieldTip,
         this.ClmFieldText,
         this.ClmHelpURL
     });
     this.LstTips.GridLines             = true;
     this.LstTips.Location              = new System.Drawing.Point(16, 24);
     this.LstTips.Name                  = "LstTips";
     this.LstTips.Size                  = new System.Drawing.Size(496, 176);
     this.LstTips.TabIndex              = 13;
     this.LstTips.View                  = System.Windows.Forms.View.Details;
     this.LstTips.SelectedIndexChanged += new System.EventHandler(this.LstTips_SelectedIndexChanged);
     //
     // ClmID
     //
     this.ClmID.Text  = "ID";
     this.ClmID.Width = 40;
     //
     // ClmPriority
     //
     this.ClmPriority.Text      = "Priority";
     this.ClmPriority.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClmPriority.Width     = 50;
     //
     // ClmMessage
     //
     this.ClmMessage.Text      = "Message";
     this.ClmMessage.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClmMessage.Width     = 100;
     //
     // ClmFieldID
     //
     this.ClmFieldID.Text      = "Field ID";
     this.ClmFieldID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClmFieldID.Width     = 53;
     //
     // ClmFieldTip
     //
     this.ClmFieldTip.Text      = "Field Tip";
     this.ClmFieldTip.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClmFieldTip.Width     = 86;
     //
     // ClmFieldText
     //
     this.ClmFieldText.Text      = "Field Text";
     this.ClmFieldText.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // ClmHelpURL
     //
     this.ClmHelpURL.Text      = "Help URL";
     this.ClmHelpURL.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClmHelpURL.Width     = 95;
     //
     // BtnListingAnalyzer
     //
     this.BtnListingAnalyzer.Location = new System.Drawing.Point(120, 56);
     this.BtnListingAnalyzer.Name     = "BtnListingAnalyzer";
     this.BtnListingAnalyzer.Size     = new System.Drawing.Size(176, 23);
     this.BtnListingAnalyzer.TabIndex = 64;
     this.BtnListingAnalyzer.Text     = "Run Listing Analyzer Engine";
     this.BtnListingAnalyzer.Click   += new System.EventHandler(this.BtnListingAnalyzer_Click);
     //
     // CboListingFlow
     //
     this.CboListingFlow.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CboListingFlow.Location              = new System.Drawing.Point(112, 16);
     this.CboListingFlow.Name                  = "CboListingFlow";
     this.CboListingFlow.Size                  = new System.Drawing.Size(176, 21);
     this.CboListingFlow.TabIndex              = 58;
     this.CboListingFlow.SelectedIndexChanged += new System.EventHandler(this.CboListingFlow_SelectedIndexChanged);
     //
     // LblListingFlow
     //
     this.LblListingFlow.Location = new System.Drawing.Point(24, 16);
     this.LblListingFlow.Name     = "LblListingFlow";
     this.LblListingFlow.Size     = new System.Drawing.Size(72, 23);
     this.LblListingFlow.TabIndex = 0;
     this.LblListingFlow.Text     = "Listing Flow:";
     //
     // TabProductPricing
     //
     this.TabProductPricing.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.GrpResult,
         this.TxtExternalProductID,
         this.BtnProductPricing,
         this.LblExternalProductID
     });
     this.TabProductPricing.Location = new System.Drawing.Point(4, 22);
     this.TabProductPricing.Name     = "TabProductPricing";
     this.TabProductPricing.Size     = new System.Drawing.Size(552, 346);
     this.TabProductPricing.TabIndex = 3;
     this.TabProductPricing.Text     = "Product Pricing";
     this.TabProductPricing.Visible  = false;
     //
     // GrpResult
     //
     this.GrpResult.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.TxtAverageStartPrice,
         this.TxtAverageSoldPrice,
         this.LblAverageStartPrice,
         this.LblAverageSoldPrice,
         this.TxtCatalogTitle,
         this.LblCatalogTitle
     });
     this.GrpResult.Location = new System.Drawing.Point(16, 112);
     this.GrpResult.Name     = "GrpResult";
     this.GrpResult.Size     = new System.Drawing.Size(520, 224);
     this.GrpResult.TabIndex = 67;
     this.GrpResult.TabStop  = false;
     this.GrpResult.Text     = "Result";
     //
     // TxtAverageStartPrice
     //
     this.TxtAverageStartPrice.Location = new System.Drawing.Point(192, 68);
     this.TxtAverageStartPrice.Name     = "TxtAverageStartPrice";
     this.TxtAverageStartPrice.Size     = new System.Drawing.Size(256, 20);
     this.TxtAverageStartPrice.TabIndex = 23;
     this.TxtAverageStartPrice.Text     = "";
     //
     // TxtAverageSoldPrice
     //
     this.TxtAverageSoldPrice.Location = new System.Drawing.Point(192, 104);
     this.TxtAverageSoldPrice.Name     = "TxtAverageSoldPrice";
     this.TxtAverageSoldPrice.Size     = new System.Drawing.Size(256, 20);
     this.TxtAverageSoldPrice.TabIndex = 65;
     this.TxtAverageSoldPrice.Text     = "";
     //
     // LblAverageStartPrice
     //
     this.LblAverageStartPrice.Location = new System.Drawing.Point(80, 68);
     this.LblAverageStartPrice.Name     = "LblAverageStartPrice";
     this.LblAverageStartPrice.Size     = new System.Drawing.Size(200, 16);
     this.LblAverageStartPrice.TabIndex = 24;
     this.LblAverageStartPrice.Text     = "Average Start Price:";
     //
     // LblAverageSoldPrice
     //
     this.LblAverageSoldPrice.Location = new System.Drawing.Point(80, 104);
     this.LblAverageSoldPrice.Name     = "LblAverageSoldPrice";
     this.LblAverageSoldPrice.Size     = new System.Drawing.Size(200, 16);
     this.LblAverageSoldPrice.TabIndex = 66;
     this.LblAverageSoldPrice.Text     = "Average Sold Price:";
     //
     // TxtCatalogTitle
     //
     this.TxtCatalogTitle.Location = new System.Drawing.Point(192, 32);
     this.TxtCatalogTitle.Name     = "TxtCatalogTitle";
     this.TxtCatalogTitle.Size     = new System.Drawing.Size(256, 20);
     this.TxtCatalogTitle.TabIndex = 2;
     this.TxtCatalogTitle.Text     = "";
     //
     // LblCatalogTitle
     //
     this.LblCatalogTitle.Location = new System.Drawing.Point(80, 32);
     this.LblCatalogTitle.Name     = "LblCatalogTitle";
     this.LblCatalogTitle.Size     = new System.Drawing.Size(192, 16);
     this.LblCatalogTitle.TabIndex = 22;
     this.LblCatalogTitle.Text     = "Catalog Title:";
     //
     // TxtExternalProductID
     //
     this.TxtExternalProductID.Location = new System.Drawing.Point(216, 16);
     this.TxtExternalProductID.Name     = "TxtExternalProductID";
     this.TxtExternalProductID.Size     = new System.Drawing.Size(208, 20);
     this.TxtExternalProductID.TabIndex = 64;
     this.TxtExternalProductID.Text     = "79328:2:1431:561576419:57669919:391bc1eb4871c4a4e930a52fca6eccfd:1:1:1:1348602270" +
                                          "";
     //
     // BtnProductPricing
     //
     this.BtnProductPricing.Location = new System.Drawing.Point(168, 56);
     this.BtnProductPricing.Name     = "BtnProductPricing";
     this.BtnProductPricing.Size     = new System.Drawing.Size(168, 23);
     this.BtnProductPricing.TabIndex = 63;
     this.BtnProductPricing.Text     = "Run Product Pricing Engine";
     this.BtnProductPricing.Click   += new System.EventHandler(this.BtnProductPricing_Click);
     //
     // LblExternalProductID
     //
     this.LblExternalProductID.Location = new System.Drawing.Point(104, 16);
     this.LblExternalProductID.Name     = "LblExternalProductID";
     this.LblExternalProductID.Size     = new System.Drawing.Size(112, 16);
     this.LblExternalProductID.TabIndex = 20;
     this.LblExternalProductID.Text     = "External Product ID:";
     //
     // TabSuggestedAttributes
     //
     this.TabSuggestedAttributes.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.GrpSuggestedProducts,
         this.GrpSuggestedAttr,
         this.TxtQuery,
         this.LblQuery,
         this.BtnSuggestedAttr
     });
     this.TabSuggestedAttributes.Location = new System.Drawing.Point(4, 22);
     this.TabSuggestedAttributes.Name     = "TabSuggestedAttributes";
     this.TabSuggestedAttributes.Size     = new System.Drawing.Size(552, 346);
     this.TabSuggestedAttributes.TabIndex = 1;
     this.TabSuggestedAttributes.Text     = "Suggested Attributes";
     this.TabSuggestedAttributes.Visible  = false;
     //
     // GrpSuggestedProducts
     //
     this.GrpSuggestedProducts.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.lstProduct
     });
     this.GrpSuggestedProducts.Location = new System.Drawing.Point(280, 88);
     this.GrpSuggestedProducts.Name     = "GrpSuggestedProducts";
     this.GrpSuggestedProducts.Size     = new System.Drawing.Size(256, 240);
     this.GrpSuggestedProducts.TabIndex = 75;
     this.GrpSuggestedProducts.TabStop  = false;
     this.GrpSuggestedProducts.Text     = "Suggested Products";
     //
     // lstProduct
     //
     this.lstProduct.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ClmTitle,
         this.ClmInfoID,
         this.ClmAvgStartPrice,
         this.ClmAvgSoldPrice
     });
     this.lstProduct.GridLines = true;
     this.lstProduct.Location  = new System.Drawing.Point(16, 24);
     this.lstProduct.Name      = "lstProduct";
     this.lstProduct.Size      = new System.Drawing.Size(224, 200);
     this.lstProduct.TabIndex  = 15;
     this.lstProduct.View      = System.Windows.Forms.View.Details;
     //
     // ClmTitle
     //
     this.ClmTitle.Text  = "Title";
     this.ClmTitle.Width = 40;
     //
     // ClmInfoID
     //
     this.ClmInfoID.Text  = "Info ID";
     this.ClmInfoID.Width = 50;
     //
     // ClmAvgStartPrice
     //
     this.ClmAvgStartPrice.Text  = "Avg Start Price";
     this.ClmAvgStartPrice.Width = 70;
     //
     // ClmAvgSoldPrice
     //
     this.ClmAvgSoldPrice.Text  = "Avg Sold Price";
     this.ClmAvgSoldPrice.Width = 70;
     //
     // GrpSuggestedAttr
     //
     this.GrpSuggestedAttr.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.LstAttr
     });
     this.GrpSuggestedAttr.Location = new System.Drawing.Point(16, 88);
     this.GrpSuggestedAttr.Name     = "GrpSuggestedAttr";
     this.GrpSuggestedAttr.Size     = new System.Drawing.Size(256, 240);
     this.GrpSuggestedAttr.TabIndex = 74;
     this.GrpSuggestedAttr.TabStop  = false;
     this.GrpSuggestedAttr.Text     = "Suggested Attributes   ";
     //
     // LstAttr
     //
     this.LstAttr.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ClmCSID,
         this.ClmVersion,
         this.ClmNoOfAttr
     });
     this.LstAttr.GridLines = true;
     this.LstAttr.Location  = new System.Drawing.Point(16, 24);
     this.LstAttr.Name      = "LstAttr";
     this.LstAttr.Size      = new System.Drawing.Size(224, 200);
     this.LstAttr.TabIndex  = 16;
     this.LstAttr.View      = System.Windows.Forms.View.Details;
     //
     // ClmCSID
     //
     this.ClmCSID.Text = "CSID";
     //
     // ClmVersion
     //
     this.ClmVersion.Text  = "Version";
     this.ClmVersion.Width = 50;
     //
     // ClmNoOfAttr
     //
     this.ClmNoOfAttr.Text  = "# of Attributes";
     this.ClmNoOfAttr.Width = 110;
     //
     // TxtQuery
     //
     this.TxtQuery.Location = new System.Drawing.Point(192, 16);
     this.TxtQuery.Name     = "TxtQuery";
     this.TxtQuery.Size     = new System.Drawing.Size(178, 20);
     this.TxtQuery.TabIndex = 73;
     this.TxtQuery.Text     = "DELL Inspiron";
     //
     // LblQuery
     //
     this.LblQuery.Location = new System.Drawing.Point(136, 16);
     this.LblQuery.Name     = "LblQuery";
     this.LblQuery.Size     = new System.Drawing.Size(48, 23);
     this.LblQuery.TabIndex = 72;
     this.LblQuery.Text     = "Query:";
     //
     // BtnSuggestedAttr
     //
     this.BtnSuggestedAttr.Location = new System.Drawing.Point(184, 56);
     this.BtnSuggestedAttr.Name     = "BtnSuggestedAttr";
     this.BtnSuggestedAttr.Size     = new System.Drawing.Size(184, 24);
     this.BtnSuggestedAttr.TabIndex = 70;
     this.BtnSuggestedAttr.Text     = "Run Suggested Attributes Engine";
     this.BtnSuggestedAttr.Click   += new System.EventHandler(this.BtnSuggestedAttr_Click);
     //
     // TxtTitle
     //
     this.TxtTitle.Location     = new System.Drawing.Point(80, 40);
     this.TxtTitle.Name         = "TxtTitle";
     this.TxtTitle.Size         = new System.Drawing.Size(208, 20);
     this.TxtTitle.TabIndex     = 75;
     this.TxtTitle.Text         = "DELL new";
     this.TxtTitle.TextChanged += new System.EventHandler(this.TxtTitle_TextChanged);
     //
     // LblTitle
     //
     this.LblTitle.Location = new System.Drawing.Point(40, 39);
     this.LblTitle.Name     = "LblTitle";
     this.LblTitle.Size     = new System.Drawing.Size(32, 23);
     this.LblTitle.TabIndex = 74;
     this.LblTitle.Text     = "Title:";
     //
     // TxtReservePrice
     //
     this.TxtReservePrice.Location = new System.Drawing.Point(512, 73);
     this.TxtReservePrice.Name     = "TxtReservePrice";
     this.TxtReservePrice.Size     = new System.Drawing.Size(72, 20);
     this.TxtReservePrice.TabIndex = 77;
     this.TxtReservePrice.Text     = "1000";
     //
     // LblReservePrice
     //
     this.LblReservePrice.Location = new System.Drawing.Point(392, 72);
     this.LblReservePrice.Name     = "LblReservePrice";
     this.LblReservePrice.Size     = new System.Drawing.Size(96, 23);
     this.LblReservePrice.TabIndex = 76;
     this.LblReservePrice.Text     = "Reserve Price:";
     //
     // TxtStartPrice
     //
     this.TxtStartPrice.Location = new System.Drawing.Point(512, 40);
     this.TxtStartPrice.Name     = "TxtStartPrice";
     this.TxtStartPrice.Size     = new System.Drawing.Size(72, 20);
     this.TxtStartPrice.TabIndex = 79;
     this.TxtStartPrice.Text     = "1";
     //
     // LblStartPrice
     //
     this.LblStartPrice.Location = new System.Drawing.Point(392, 39);
     this.LblStartPrice.Name     = "LblStartPrice";
     this.LblStartPrice.Size     = new System.Drawing.Size(96, 23);
     this.LblStartPrice.TabIndex = 78;
     this.LblStartPrice.Text     = "Start Price:";
     //
     // TxtPrimaryCategory
     //
     this.TxtPrimaryCategory.Location = new System.Drawing.Point(168, 72);
     this.TxtPrimaryCategory.Name     = "TxtPrimaryCategory";
     this.TxtPrimaryCategory.Size     = new System.Drawing.Size(72, 20);
     this.TxtPrimaryCategory.TabIndex = 81;
     this.TxtPrimaryCategory.Text     = "80208";
     //
     // LblPrimaryCategory
     //
     this.LblPrimaryCategory.Location = new System.Drawing.Point(40, 72);
     this.LblPrimaryCategory.Name     = "LblPrimaryCategory";
     this.LblPrimaryCategory.Size     = new System.Drawing.Size(112, 23);
     this.LblPrimaryCategory.TabIndex = 80;
     this.LblPrimaryCategory.Text     = "Primary Category:";
     //
     // TxtSecondaryCategory
     //
     this.TxtSecondaryCategory.Location = new System.Drawing.Point(168, 104);
     this.TxtSecondaryCategory.Name     = "TxtSecondaryCategory";
     this.TxtSecondaryCategory.Size     = new System.Drawing.Size(72, 20);
     this.TxtSecondaryCategory.TabIndex = 85;
     this.TxtSecondaryCategory.Text     = "";
     //
     // LblSecondaryCategory
     //
     this.LblSecondaryCategory.Location = new System.Drawing.Point(40, 104);
     this.LblSecondaryCategory.Name     = "LblSecondaryCategory";
     this.LblSecondaryCategory.Size     = new System.Drawing.Size(112, 23);
     this.LblSecondaryCategory.TabIndex = 84;
     this.LblSecondaryCategory.Text     = "Secondary Category:";
     //
     // TxtBuyItNowPrice
     //
     this.TxtBuyItNowPrice.Location = new System.Drawing.Point(512, 104);
     this.TxtBuyItNowPrice.Name     = "TxtBuyItNowPrice";
     this.TxtBuyItNowPrice.Size     = new System.Drawing.Size(72, 20);
     this.TxtBuyItNowPrice.TabIndex = 83;
     this.TxtBuyItNowPrice.Text     = "3000";
     //
     // LblBuyItNowPrice
     //
     this.LblBuyItNowPrice.Location = new System.Drawing.Point(392, 103);
     this.LblBuyItNowPrice.Name     = "LblBuyItNowPrice";
     this.LblBuyItNowPrice.Size     = new System.Drawing.Size(96, 23);
     this.LblBuyItNowPrice.TabIndex = 82;
     this.LblBuyItNowPrice.Text     = "Buy It Now Price:";
     //
     // BtnGetCategories
     //
     this.BtnGetCategories.Location = new System.Drawing.Point(256, 72);
     this.BtnGetCategories.Name     = "BtnGetCategories";
     this.BtnGetCategories.Size     = new System.Drawing.Size(96, 23);
     this.BtnGetCategories.TabIndex = 86;
     this.BtnGetCategories.Text     = "GetCategories ...";
     this.BtnGetCategories.Click   += new System.EventHandler(this.BtnGetCategories_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(136, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(200, 23);
     this.label1.TabIndex = 87;
     this.label1.Text     = "Use GetItem to get some item data:";
     //
     // BtnGetItem
     //
     this.BtnGetItem.Location = new System.Drawing.Point(368, 8);
     this.BtnGetItem.Name     = "BtnGetItem";
     this.BtnGetItem.Size     = new System.Drawing.Size(96, 23);
     this.BtnGetItem.TabIndex = 88;
     this.BtnGetItem.Text     = "GetItem";
     //
     // FrmGetItemRecommendations
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 553);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.BtnGetItem,
         this.label1,
         this.BtnGetCategories,
         this.TxtSecondaryCategory,
         this.LblSecondaryCategory,
         this.TxtBuyItNowPrice,
         this.LblBuyItNowPrice,
         this.TxtPrimaryCategory,
         this.LblPrimaryCategory,
         this.TxtStartPrice,
         this.LblStartPrice,
         this.TxtReservePrice,
         this.LblReservePrice,
         this.TxtTitle,
         this.LblTitle,
         this.TabSettings
     });
     this.Name  = "FrmGetItemRecommendations";
     this.Text  = "FrmGetItemRecommendations";
     this.Load += new System.EventHandler(this.FrmGetItemRecommendations_Load);
     this.TabSettings.ResumeLayout(false);
     this.TabListingAnalyzer.ResumeLayout(false);
     this.GrpListingTips.ResumeLayout(false);
     this.TabProductPricing.ResumeLayout(false);
     this.GrpResult.ResumeLayout(false);
     this.TabSuggestedAttributes.ResumeLayout(false);
     this.GrpSuggestedProducts.ResumeLayout(false);
     this.GrpSuggestedAttr.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.optionsTabControl              = new System.Windows.Forms.TabControl();
     this.displayTabPage                 = new System.Windows.Forms.TabPage();
     this.previewMovesCheckBox           = new System.Windows.Forms.CheckBox();
     this.moveIndicatorColorButton       = new System.Windows.Forms.Button();
     this.moveIndicatorColorPanel        = new System.Windows.Forms.Panel();
     this.moveIndicatorColorLabel        = new System.Windows.Forms.Label();
     this.animateMovesCheckBox           = new System.Windows.Forms.CheckBox();
     this.validColorButton               = new System.Windows.Forms.Button();
     this.validColorPanel                = new System.Windows.Forms.Panel();
     this.validColorLabel                = new System.Windows.Forms.Label();
     this.activeColorButton              = new System.Windows.Forms.Button();
     this.activeColorPanel               = new System.Windows.Forms.Panel();
     this.activeColorLabel               = new System.Windows.Forms.Label();
     this.boardColorButton               = new System.Windows.Forms.Button();
     this.boardColorPanel                = new System.Windows.Forms.Panel();
     this.boardColorLabel                = new System.Windows.Forms.Label();
     this.showValidMovesCheckBox         = new System.Windows.Forms.CheckBox();
     this.playersTabPage                 = new System.Windows.Forms.TabPage();
     this.whitePlayerPanel               = new System.Windows.Forms.Panel();
     this.whitePlayerUserRadioButton     = new System.Windows.Forms.RadioButton();
     this.whitePlayerComputerRadioButton = new System.Windows.Forms.RadioButton();
     this.whitePlayerLabel               = new System.Windows.Forms.Label();
     this.blackPlayerPanel               = new System.Windows.Forms.Panel();
     this.blackPlayerUserRadioButton     = new System.Windows.Forms.RadioButton();
     this.blackPlayerComputerRadioButton = new System.Windows.Forms.RadioButton();
     this.blackPlayerLabel               = new System.Windows.Forms.Label();
     this.firstMovePanel                 = new System.Windows.Forms.Panel();
     this.firstMoveWhiteRadioButton      = new System.Windows.Forms.RadioButton();
     this.firstMoveBlackRadioButton      = new System.Windows.Forms.RadioButton();
     this.firstMoveLabel                 = new System.Windows.Forms.Label();
     this.okButton              = new System.Windows.Forms.Button();
     this.cancelButton          = new System.Windows.Forms.Button();
     this.restoreDefaultsButton = new System.Windows.Forms.Button();
     this.optionsTabControl.SuspendLayout();
     this.displayTabPage.SuspendLayout();
     this.playersTabPage.SuspendLayout();
     this.whitePlayerPanel.SuspendLayout();
     this.blackPlayerPanel.SuspendLayout();
     this.firstMovePanel.SuspendLayout();
     this.SuspendLayout();
     //
     // optionsTabControl
     //
     this.optionsTabControl.Controls.Add(this.displayTabPage);
     this.optionsTabControl.Controls.Add(this.playersTabPage);
     this.optionsTabControl.Location      = new System.Drawing.Point(10, 18);
     this.optionsTabControl.Name          = "optionsTabControl";
     this.optionsTabControl.SelectedIndex = 0;
     this.optionsTabControl.Size          = new System.Drawing.Size(345, 250);
     this.optionsTabControl.TabIndex      = 0;
     //
     // displayTabPage
     //
     this.displayTabPage.Controls.Add(this.previewMovesCheckBox);
     this.displayTabPage.Controls.Add(this.moveIndicatorColorButton);
     this.displayTabPage.Controls.Add(this.moveIndicatorColorPanel);
     this.displayTabPage.Controls.Add(this.moveIndicatorColorLabel);
     this.displayTabPage.Controls.Add(this.animateMovesCheckBox);
     this.displayTabPage.Controls.Add(this.validColorButton);
     this.displayTabPage.Controls.Add(this.validColorPanel);
     this.displayTabPage.Controls.Add(this.validColorLabel);
     this.displayTabPage.Controls.Add(this.activeColorButton);
     this.displayTabPage.Controls.Add(this.activeColorPanel);
     this.displayTabPage.Controls.Add(this.activeColorLabel);
     this.displayTabPage.Controls.Add(this.boardColorButton);
     this.displayTabPage.Controls.Add(this.boardColorPanel);
     this.displayTabPage.Controls.Add(this.boardColorLabel);
     this.displayTabPage.Controls.Add(this.showValidMovesCheckBox);
     this.displayTabPage.Location = new System.Drawing.Point(4, 25);
     this.displayTabPage.Name     = "displayTabPage";
     this.displayTabPage.Size     = new System.Drawing.Size(337, 221);
     this.displayTabPage.TabIndex = 0;
     this.displayTabPage.Text     = "Display";
     //
     // previewMovesCheckBox
     //
     this.previewMovesCheckBox.Location = new System.Drawing.Point(173, 12);
     this.previewMovesCheckBox.Name     = "previewMovesCheckBox";
     this.previewMovesCheckBox.Size     = new System.Drawing.Size(125, 27);
     this.previewMovesCheckBox.TabIndex = 1;
     this.previewMovesCheckBox.Text     = "Preview moves";
     //
     // moveIndicatorColorButton
     //
     this.moveIndicatorColorButton.Location = new System.Drawing.Point(210, 181);
     this.moveIndicatorColorButton.Name     = "moveIndicatorColorButton";
     this.moveIndicatorColorButton.Size     = new System.Drawing.Size(90, 27);
     this.moveIndicatorColorButton.TabIndex = 14;
     this.moveIndicatorColorButton.Text     = "Select...";
     this.moveIndicatorColorButton.Click   += new System.EventHandler(this.moveIndicatorColorButton_Click);
     //
     // moveIndicatorColorPanel
     //
     this.moveIndicatorColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.moveIndicatorColorPanel.Location    = new System.Drawing.Point(172, 185);
     this.moveIndicatorColorPanel.Name        = "moveIndicatorColorPanel";
     this.moveIndicatorColorPanel.Size        = new System.Drawing.Size(19, 18);
     this.moveIndicatorColorPanel.TabIndex    = 13;
     //
     // moveIndicatorColorLabel
     //
     this.moveIndicatorColorLabel.AutoSize = true;
     this.moveIndicatorColorLabel.Location = new System.Drawing.Point(32, 187);
     this.moveIndicatorColorLabel.Name     = "moveIndicatorColorLabel";
     this.moveIndicatorColorLabel.Size     = new System.Drawing.Size(139, 17);
     this.moveIndicatorColorLabel.TabIndex = 12;
     this.moveIndicatorColorLabel.Text     = "Move indicator color:";
     //
     // animateMovesCheckBox
     //
     this.animateMovesCheckBox.Location = new System.Drawing.Point(19, 39);
     this.animateMovesCheckBox.Name     = "animateMovesCheckBox";
     this.animateMovesCheckBox.Size     = new System.Drawing.Size(125, 28);
     this.animateMovesCheckBox.TabIndex = 2;
     this.animateMovesCheckBox.Text     = "Animate moves";
     //
     // validColorButton
     //
     this.validColorButton.Location = new System.Drawing.Point(210, 107);
     this.validColorButton.Name     = "validColorButton";
     this.validColorButton.Size     = new System.Drawing.Size(90, 27);
     this.validColorButton.TabIndex = 8;
     this.validColorButton.Text     = "Select...";
     this.validColorButton.Click   += new System.EventHandler(this.validColorButton_Click);
     //
     // validColorPanel
     //
     this.validColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.validColorPanel.Location    = new System.Drawing.Point(172, 111);
     this.validColorPanel.Name        = "validColorPanel";
     this.validColorPanel.Size        = new System.Drawing.Size(19, 18);
     this.validColorPanel.TabIndex    = 7;
     //
     // validColorLabel
     //
     this.validColorLabel.AutoSize = true;
     this.validColorLabel.Location = new System.Drawing.Point(54, 113);
     this.validColorLabel.Name     = "validColorLabel";
     this.validColorLabel.Size     = new System.Drawing.Size(116, 17);
     this.validColorLabel.TabIndex = 6;
     this.validColorLabel.Text     = "Valid move color:";
     //
     // activeColorButton
     //
     this.activeColorButton.Location = new System.Drawing.Point(210, 144);
     this.activeColorButton.Name     = "activeColorButton";
     this.activeColorButton.Size     = new System.Drawing.Size(90, 27);
     this.activeColorButton.TabIndex = 11;
     this.activeColorButton.Text     = "Select...";
     this.activeColorButton.Click   += new System.EventHandler(this.activeColorButton_Click);
     //
     // activeColorPanel
     //
     this.activeColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.activeColorPanel.Location    = new System.Drawing.Point(172, 148);
     this.activeColorPanel.Name        = "activeColorPanel";
     this.activeColorPanel.Size        = new System.Drawing.Size(19, 18);
     this.activeColorPanel.TabIndex    = 10;
     //
     // activeColorLabel
     //
     this.activeColorLabel.AutoSize = true;
     this.activeColorLabel.Location = new System.Drawing.Point(38, 150);
     this.activeColorLabel.Name     = "activeColorLabel";
     this.activeColorLabel.Size     = new System.Drawing.Size(133, 17);
     this.activeColorLabel.TabIndex = 9;
     this.activeColorLabel.Text     = "Active square color:";
     //
     // boardColorButton
     //
     this.boardColorButton.Location = new System.Drawing.Point(210, 70);
     this.boardColorButton.Name     = "boardColorButton";
     this.boardColorButton.Size     = new System.Drawing.Size(90, 27);
     this.boardColorButton.TabIndex = 5;
     this.boardColorButton.Text     = "Select...";
     this.boardColorButton.Click   += new System.EventHandler(this.boardColorButton_Click);
     //
     // boardColorPanel
     //
     this.boardColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.boardColorPanel.Location    = new System.Drawing.Point(172, 74);
     this.boardColorPanel.Name        = "boardColorPanel";
     this.boardColorPanel.Size        = new System.Drawing.Size(19, 18);
     this.boardColorPanel.TabIndex    = 4;
     //
     // boardColorLabel
     //
     this.boardColorLabel.AutoSize = true;
     this.boardColorLabel.Location = new System.Drawing.Point(85, 76);
     this.boardColorLabel.Name     = "boardColorLabel";
     this.boardColorLabel.Size     = new System.Drawing.Size(85, 17);
     this.boardColorLabel.TabIndex = 3;
     this.boardColorLabel.Text     = "Board color:";
     //
     // showValidMovesCheckBox
     //
     this.showValidMovesCheckBox.Location = new System.Drawing.Point(19, 12);
     this.showValidMovesCheckBox.Name     = "showValidMovesCheckBox";
     this.showValidMovesCheckBox.Size     = new System.Drawing.Size(144, 27);
     this.showValidMovesCheckBox.TabIndex = 0;
     this.showValidMovesCheckBox.Text     = "Show valid moves";
     //
     // playersTabPage
     //
     this.playersTabPage.Controls.Add(this.whitePlayerPanel);
     this.playersTabPage.Controls.Add(this.blackPlayerPanel);
     this.playersTabPage.Controls.Add(this.firstMovePanel);
     this.playersTabPage.Location = new System.Drawing.Point(4, 25);
     this.playersTabPage.Name     = "playersTabPage";
     this.playersTabPage.Size     = new System.Drawing.Size(337, 221);
     this.playersTabPage.TabIndex = 1;
     this.playersTabPage.Text     = "Players";
     //
     // whitePlayerPanel
     //
     this.whitePlayerPanel.Controls.Add(this.whitePlayerUserRadioButton);
     this.whitePlayerPanel.Controls.Add(this.whitePlayerComputerRadioButton);
     this.whitePlayerPanel.Controls.Add(this.whitePlayerLabel);
     this.whitePlayerPanel.Location = new System.Drawing.Point(48, 147);
     this.whitePlayerPanel.Name     = "whitePlayerPanel";
     this.whitePlayerPanel.Size     = new System.Drawing.Size(240, 64);
     this.whitePlayerPanel.TabIndex = 5;
     //
     // whitePlayerUserRadioButton
     //
     this.whitePlayerUserRadioButton.Location = new System.Drawing.Point(106, 37);
     this.whitePlayerUserRadioButton.Name     = "whitePlayerUserRadioButton";
     this.whitePlayerUserRadioButton.Size     = new System.Drawing.Size(124, 28);
     this.whitePlayerUserRadioButton.TabIndex = 1;
     this.whitePlayerUserRadioButton.Text     = "User";
     //
     // whitePlayerComputerRadioButton
     //
     this.whitePlayerComputerRadioButton.Location = new System.Drawing.Point(106, 9);
     this.whitePlayerComputerRadioButton.Name     = "whitePlayerComputerRadioButton";
     this.whitePlayerComputerRadioButton.Size     = new System.Drawing.Size(124, 28);
     this.whitePlayerComputerRadioButton.TabIndex = 0;
     this.whitePlayerComputerRadioButton.Text     = "Computer";
     //
     // whitePlayerLabel
     //
     this.whitePlayerLabel.AutoSize = true;
     this.whitePlayerLabel.Location = new System.Drawing.Point(10, 14);
     this.whitePlayerLabel.Name     = "whitePlayerLabel";
     this.whitePlayerLabel.Size     = new System.Drawing.Size(91, 17);
     this.whitePlayerLabel.TabIndex = 4;
     this.whitePlayerLabel.Text     = "White player:";
     //
     // blackPlayerPanel
     //
     this.blackPlayerPanel.Controls.Add(this.blackPlayerUserRadioButton);
     this.blackPlayerPanel.Controls.Add(this.blackPlayerComputerRadioButton);
     this.blackPlayerPanel.Controls.Add(this.blackPlayerLabel);
     this.blackPlayerPanel.Location = new System.Drawing.Point(48, 77);
     this.blackPlayerPanel.Name     = "blackPlayerPanel";
     this.blackPlayerPanel.Size     = new System.Drawing.Size(240, 65);
     this.blackPlayerPanel.TabIndex = 3;
     //
     // blackPlayerUserRadioButton
     //
     this.blackPlayerUserRadioButton.Location = new System.Drawing.Point(106, 37);
     this.blackPlayerUserRadioButton.Name     = "blackPlayerUserRadioButton";
     this.blackPlayerUserRadioButton.Size     = new System.Drawing.Size(124, 28);
     this.blackPlayerUserRadioButton.TabIndex = 1;
     this.blackPlayerUserRadioButton.Text     = "User";
     //
     // blackPlayerComputerRadioButton
     //
     this.blackPlayerComputerRadioButton.Location = new System.Drawing.Point(106, 9);
     this.blackPlayerComputerRadioButton.Name     = "blackPlayerComputerRadioButton";
     this.blackPlayerComputerRadioButton.Size     = new System.Drawing.Size(124, 28);
     this.blackPlayerComputerRadioButton.TabIndex = 0;
     this.blackPlayerComputerRadioButton.Text     = "Computer";
     //
     // blackPlayerLabel
     //
     this.blackPlayerLabel.AutoSize = true;
     this.blackPlayerLabel.Location = new System.Drawing.Point(11, 14);
     this.blackPlayerLabel.Name     = "blackPlayerLabel";
     this.blackPlayerLabel.Size     = new System.Drawing.Size(89, 17);
     this.blackPlayerLabel.TabIndex = 2;
     this.blackPlayerLabel.Text     = "Black player:";
     //
     // firstMovePanel
     //
     this.firstMovePanel.Controls.Add(this.firstMoveWhiteRadioButton);
     this.firstMovePanel.Controls.Add(this.firstMoveBlackRadioButton);
     this.firstMovePanel.Controls.Add(this.firstMoveLabel);
     this.firstMovePanel.Location = new System.Drawing.Point(48, 8);
     this.firstMovePanel.Name     = "firstMovePanel";
     this.firstMovePanel.Size     = new System.Drawing.Size(240, 65);
     this.firstMovePanel.TabIndex = 1;
     //
     // firstMoveWhiteRadioButton
     //
     this.firstMoveWhiteRadioButton.Location = new System.Drawing.Point(106, 37);
     this.firstMoveWhiteRadioButton.Name     = "firstMoveWhiteRadioButton";
     this.firstMoveWhiteRadioButton.Size     = new System.Drawing.Size(124, 28);
     this.firstMoveWhiteRadioButton.TabIndex = 1;
     this.firstMoveWhiteRadioButton.Text     = "White";
     //
     // firstMoveBlackRadioButton
     //
     this.firstMoveBlackRadioButton.Location = new System.Drawing.Point(106, 9);
     this.firstMoveBlackRadioButton.Name     = "firstMoveBlackRadioButton";
     this.firstMoveBlackRadioButton.Size     = new System.Drawing.Size(124, 28);
     this.firstMoveBlackRadioButton.TabIndex = 0;
     this.firstMoveBlackRadioButton.Text     = "Black";
     //
     // firstMoveLabel
     //
     this.firstMoveLabel.AutoSize = true;
     this.firstMoveLabel.Location = new System.Drawing.Point(22, 14);
     this.firstMoveLabel.Name     = "firstMoveLabel";
     this.firstMoveLabel.Size     = new System.Drawing.Size(77, 17);
     this.firstMoveLabel.TabIndex = 0;
     this.firstMoveLabel.Text     = "First move:";
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location     = new System.Drawing.Point(163, 277);
     this.okButton.Name         = "okButton";
     this.okButton.Size         = new System.Drawing.Size(90, 26);
     this.okButton.TabIndex     = 1;
     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(265, 277);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(90, 26);
     this.cancelButton.TabIndex     = 2;
     this.cancelButton.Text         = "Cancel";
     //
     // restoreDefaultsButton
     //
     this.restoreDefaultsButton.Location = new System.Drawing.Point(10, 277);
     this.restoreDefaultsButton.Name     = "restoreDefaultsButton";
     this.restoreDefaultsButton.Size     = new System.Drawing.Size(115, 26);
     this.restoreDefaultsButton.TabIndex = 3;
     this.restoreDefaultsButton.Text     = "Restore Defaults";
     this.restoreDefaultsButton.Click   += new System.EventHandler(this.restoreDefaultsButton_Click);
     //
     // OptionsDialog
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(361, 307);
     this.ControlBox        = false;
     this.Controls.Add(this.restoreDefaultsButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.optionsTabControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "OptionsDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Options";
     this.optionsTabControl.ResumeLayout(false);
     this.displayTabPage.ResumeLayout(false);
     this.displayTabPage.PerformLayout();
     this.playersTabPage.ResumeLayout(false);
     this.whitePlayerPanel.ResumeLayout(false);
     this.whitePlayerPanel.PerformLayout();
     this.blackPlayerPanel.ResumeLayout(false);
     this.blackPlayerPanel.PerformLayout();
     this.firstMovePanel.ResumeLayout(false);
     this.firstMovePanel.PerformLayout();
     this.ResumeLayout(false);
 }
Example #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tcEHP      = new System.Windows.Forms.TabControl();
     this.tpDesign   = new System.Windows.Forms.TabPage();
     this.tpEditor   = new System.Windows.Forms.TabPage();
     this.tbEditor   = new System.Windows.Forms.RichTextBox();
     this.pbLines    = new DesignEditLines();
     this.tpBrowser  = new System.Windows.Forms.TabPage();
     this.rdlPreview = new fyiReporting.RdlViewer.RdlViewer();
     this.tcEHP.SuspendLayout();
     this.tpEditor.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbLines)).BeginInit();
     this.tpBrowser.SuspendLayout();
     this.SuspendLayout();
     //
     // tcEHP
     //
     this.tcEHP.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     this.tcEHP.Controls.Add(this.tpDesign);
     this.tcEHP.Controls.Add(this.tpEditor);
     this.tcEHP.Controls.Add(this.tpBrowser);
     this.tcEHP.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.tcEHP.Location              = new System.Drawing.Point(0, 0);
     this.tcEHP.Name                  = "tcEHP";
     this.tcEHP.SelectedIndex         = 0;
     this.tcEHP.ShowToolTips          = true;
     this.tcEHP.Size                  = new System.Drawing.Size(488, 376);
     this.tcEHP.TabIndex              = 0;
     this.tcEHP.SelectedIndexChanged += new System.EventHandler(this.tcEHP_SelectedIndexChanged);
     //
     // tpDesign
     //
     this.tpDesign.Location = new System.Drawing.Point(4, 4);
     this.tpDesign.Name     = "tpDesign";
     this.tpDesign.Size     = new System.Drawing.Size(480, 350);
     this.tpDesign.TabIndex = 3;
     this.tpDesign.Tag      = "design";
     this.tpDesign.Text     = "Designer";
     //
     // tpEditor
     //
     this.tpEditor.Controls.Add(this.tbEditor);
     this.tpEditor.Controls.Add(this.pbLines);
     this.tpEditor.Location    = new System.Drawing.Point(4, 4);
     this.tpEditor.Name        = "tpEditor";
     this.tpEditor.Size        = new System.Drawing.Size(480, 350);
     this.tpEditor.TabIndex    = 0;
     this.tpEditor.Tag         = "edit";
     this.tpEditor.Text        = "RDL Text";
     this.tpEditor.ToolTipText = "Edit Report Syntax";
     //
     // tbEditor
     //
     this.tbEditor.AcceptsTab    = true;
     this.tbEditor.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.tbEditor.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tbEditor.HideSelection = false;
     this.tbEditor.Location      = new System.Drawing.Point(32, 0);
     this.tbEditor.Name          = "tbEditor";
     this.tbEditor.Size          = new System.Drawing.Size(448, 350);
     this.tbEditor.TabIndex      = 0;
     this.tbEditor.Text          = "";
     this.tbEditor.WordWrap      = false;
     this.tbEditor.TextChanged  += new System.EventHandler(this.tbEditor_TextChanged);
     //
     // pbLines
     //
     this.pbLines.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pbLines.Location = new System.Drawing.Point(0, 0);
     this.pbLines.Name     = "pbLines";
     this.pbLines.Size     = new System.Drawing.Size(32, 350);
     this.pbLines.TabIndex = 1;
     this.pbLines.TabStop  = false;
     //
     // tpBrowser
     //
     this.tpBrowser.Controls.Add(this.rdlPreview);
     this.tpBrowser.Location = new System.Drawing.Point(4, 4);
     this.tpBrowser.Name     = "tpBrowser";
     this.tpBrowser.Size     = new System.Drawing.Size(480, 350);
     this.tpBrowser.TabIndex = 2;
     this.tpBrowser.Tag      = "preview";
     this.tpBrowser.Text     = "Preview";
     //
     // rdlPreview
     //
     this.rdlPreview.Cursor             = System.Windows.Forms.Cursors.Default;
     this.rdlPreview.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.rdlPreview.Folder             = null;
     this.rdlPreview.Location           = new System.Drawing.Point(0, 0);
     this.rdlPreview.Name               = "rdlPreview";
     this.rdlPreview.PageCurrent        = 1;
     this.rdlPreview.Parameters         = null;
     this.rdlPreview.ReportName         = null;
     this.rdlPreview.ScrollMode         = fyiReporting.RdlViewer.ScrollModeEnum.Continuous;
     this.rdlPreview.ShowParameterPanel = true;
     this.rdlPreview.Size               = new System.Drawing.Size(480, 350);
     this.rdlPreview.SourceFile         = null;
     this.rdlPreview.SourceRdl          = null;
     this.rdlPreview.TabIndex           = 0;
     this.rdlPreview.Text               = "rdlViewer1";
     this.rdlPreview.Zoom               = 0.5474582F;
     this.rdlPreview.ZoomMode           = fyiReporting.RdlViewer.ZoomEnum.FitWidth;
     //
     // RdlEditPreview
     //
     this.Controls.Add(this.tcEHP);
     this.Name = "RdlEditPreview";
     this.Size = new System.Drawing.Size(488, 376);
     this.tcEHP.ResumeLayout(false);
     this.tpEditor.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pbLines)).EndInit();
     this.tpBrowser.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #60
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(EpsonCleanForm));
     this.tabControl1                    = new System.Windows.Forms.TabControl();
     this.tabPageCleanParameter1         = new System.Windows.Forms.TabPage();
     this.allwinCleanControl1            = new BYHXPrinterManager.Setting.AllwinCleanControl();
     this.tabPageCleanParameter2         = new System.Windows.Forms.TabPage();
     this.micolor_CleanParameterControl1 = new EpsonControlLibrary.Micolor_CleanParameterControl();
     this.tabControl1.SuspendLayout();
     this.tabPageCleanParameter1.SuspendLayout();
     this.tabPageCleanParameter2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.AccessibleDescription = resources.GetString("tabControl1.AccessibleDescription");
     this.tabControl1.AccessibleName        = resources.GetString("tabControl1.AccessibleName");
     this.tabControl1.Alignment             = ((System.Windows.Forms.TabAlignment)(resources.GetObject("tabControl1.Alignment")));
     this.tabControl1.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("tabControl1.Anchor")));
     this.tabControl1.Appearance      = ((System.Windows.Forms.TabAppearance)(resources.GetObject("tabControl1.Appearance")));
     this.tabControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabControl1.BackgroundImage")));
     this.tabControl1.Controls.Add(this.tabPageCleanParameter1);
     this.tabControl1.Controls.Add(this.tabPageCleanParameter2);
     this.tabControl1.Dock          = ((System.Windows.Forms.DockStyle)(resources.GetObject("tabControl1.Dock")));
     this.tabControl1.Enabled       = ((bool)(resources.GetObject("tabControl1.Enabled")));
     this.tabControl1.Font          = ((System.Drawing.Font)(resources.GetObject("tabControl1.Font")));
     this.tabControl1.ImeMode       = ((System.Windows.Forms.ImeMode)(resources.GetObject("tabControl1.ImeMode")));
     this.tabControl1.ItemSize      = ((System.Drawing.Size)(resources.GetObject("tabControl1.ItemSize")));
     this.tabControl1.Location      = ((System.Drawing.Point)(resources.GetObject("tabControl1.Location")));
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.Padding       = ((System.Drawing.Point)(resources.GetObject("tabControl1.Padding")));
     this.tabControl1.RightToLeft   = ((System.Windows.Forms.RightToLeft)(resources.GetObject("tabControl1.RightToLeft")));
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.ShowToolTips  = ((bool)(resources.GetObject("tabControl1.ShowToolTips")));
     this.tabControl1.Size          = ((System.Drawing.Size)(resources.GetObject("tabControl1.Size")));
     this.tabControl1.TabIndex      = ((int)(resources.GetObject("tabControl1.TabIndex")));
     this.tabControl1.Text          = resources.GetString("tabControl1.Text");
     this.tabControl1.Visible       = ((bool)(resources.GetObject("tabControl1.Visible")));
     //
     // tabPageCleanParameter1
     //
     this.tabPageCleanParameter1.AccessibleDescription = resources.GetString("tabPageCleanParameter1.AccessibleDescription");
     this.tabPageCleanParameter1.AccessibleName        = resources.GetString("tabPageCleanParameter1.AccessibleName");
     this.tabPageCleanParameter1.Anchor            = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("tabPageCleanParameter1.Anchor")));
     this.tabPageCleanParameter1.AutoScroll        = ((bool)(resources.GetObject("tabPageCleanParameter1.AutoScroll")));
     this.tabPageCleanParameter1.AutoScrollMargin  = ((System.Drawing.Size)(resources.GetObject("tabPageCleanParameter1.AutoScrollMargin")));
     this.tabPageCleanParameter1.AutoScrollMinSize = ((System.Drawing.Size)(resources.GetObject("tabPageCleanParameter1.AutoScrollMinSize")));
     this.tabPageCleanParameter1.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("tabPageCleanParameter1.BackgroundImage")));
     this.tabPageCleanParameter1.Controls.Add(this.allwinCleanControl1);
     this.tabPageCleanParameter1.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("tabPageCleanParameter1.Dock")));
     this.tabPageCleanParameter1.Enabled     = ((bool)(resources.GetObject("tabPageCleanParameter1.Enabled")));
     this.tabPageCleanParameter1.Font        = ((System.Drawing.Font)(resources.GetObject("tabPageCleanParameter1.Font")));
     this.tabPageCleanParameter1.ImageIndex  = ((int)(resources.GetObject("tabPageCleanParameter1.ImageIndex")));
     this.tabPageCleanParameter1.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("tabPageCleanParameter1.ImeMode")));
     this.tabPageCleanParameter1.Location    = ((System.Drawing.Point)(resources.GetObject("tabPageCleanParameter1.Location")));
     this.tabPageCleanParameter1.Name        = "tabPageCleanParameter1";
     this.tabPageCleanParameter1.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("tabPageCleanParameter1.RightToLeft")));
     this.tabPageCleanParameter1.Size        = ((System.Drawing.Size)(resources.GetObject("tabPageCleanParameter1.Size")));
     this.tabPageCleanParameter1.TabIndex    = ((int)(resources.GetObject("tabPageCleanParameter1.TabIndex")));
     this.tabPageCleanParameter1.Text        = resources.GetString("tabPageCleanParameter1.Text");
     this.tabPageCleanParameter1.ToolTipText = resources.GetString("tabPageCleanParameter1.ToolTipText");
     this.tabPageCleanParameter1.Visible     = ((bool)(resources.GetObject("tabPageCleanParameter1.Visible")));
     //
     // allwinCleanControl1
     //
     this.allwinCleanControl1.AccessibleDescription = resources.GetString("allwinCleanControl1.AccessibleDescription");
     this.allwinCleanControl1.AccessibleName        = resources.GetString("allwinCleanControl1.AccessibleName");
     this.allwinCleanControl1.Anchor            = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("allwinCleanControl1.Anchor")));
     this.allwinCleanControl1.AutoScroll        = ((bool)(resources.GetObject("allwinCleanControl1.AutoScroll")));
     this.allwinCleanControl1.AutoScrollMargin  = ((System.Drawing.Size)(resources.GetObject("allwinCleanControl1.AutoScrollMargin")));
     this.allwinCleanControl1.AutoScrollMinSize = ((System.Drawing.Size)(resources.GetObject("allwinCleanControl1.AutoScrollMinSize")));
     this.allwinCleanControl1.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("allwinCleanControl1.BackgroundImage")));
     this.allwinCleanControl1.Dock              = ((System.Windows.Forms.DockStyle)(resources.GetObject("allwinCleanControl1.Dock")));
     this.allwinCleanControl1.Enabled           = ((bool)(resources.GetObject("allwinCleanControl1.Enabled")));
     this.allwinCleanControl1.Font              = ((System.Drawing.Font)(resources.GetObject("allwinCleanControl1.Font")));
     this.allwinCleanControl1.GrouperTitleStyle = null;
     this.allwinCleanControl1.ImeMode           = ((System.Windows.Forms.ImeMode)(resources.GetObject("allwinCleanControl1.ImeMode")));
     this.allwinCleanControl1.Location          = ((System.Drawing.Point)(resources.GetObject("allwinCleanControl1.Location")));
     this.allwinCleanControl1.Name              = "allwinCleanControl1";
     this.allwinCleanControl1.RightToLeft       = ((System.Windows.Forms.RightToLeft)(resources.GetObject("allwinCleanControl1.RightToLeft")));
     this.allwinCleanControl1.Size              = ((System.Drawing.Size)(resources.GetObject("allwinCleanControl1.Size")));
     this.allwinCleanControl1.TabIndex          = ((int)(resources.GetObject("allwinCleanControl1.TabIndex")));
     this.allwinCleanControl1.Visible           = ((bool)(resources.GetObject("allwinCleanControl1.Visible")));
     //
     // tabPageCleanParameter2
     //
     this.tabPageCleanParameter2.AccessibleDescription = resources.GetString("tabPageCleanParameter2.AccessibleDescription");
     this.tabPageCleanParameter2.AccessibleName        = resources.GetString("tabPageCleanParameter2.AccessibleName");
     this.tabPageCleanParameter2.Anchor            = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("tabPageCleanParameter2.Anchor")));
     this.tabPageCleanParameter2.AutoScroll        = ((bool)(resources.GetObject("tabPageCleanParameter2.AutoScroll")));
     this.tabPageCleanParameter2.AutoScrollMargin  = ((System.Drawing.Size)(resources.GetObject("tabPageCleanParameter2.AutoScrollMargin")));
     this.tabPageCleanParameter2.AutoScrollMinSize = ((System.Drawing.Size)(resources.GetObject("tabPageCleanParameter2.AutoScrollMinSize")));
     this.tabPageCleanParameter2.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("tabPageCleanParameter2.BackgroundImage")));
     this.tabPageCleanParameter2.Controls.Add(this.micolor_CleanParameterControl1);
     this.tabPageCleanParameter2.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("tabPageCleanParameter2.Dock")));
     this.tabPageCleanParameter2.Enabled     = ((bool)(resources.GetObject("tabPageCleanParameter2.Enabled")));
     this.tabPageCleanParameter2.Font        = ((System.Drawing.Font)(resources.GetObject("tabPageCleanParameter2.Font")));
     this.tabPageCleanParameter2.ImageIndex  = ((int)(resources.GetObject("tabPageCleanParameter2.ImageIndex")));
     this.tabPageCleanParameter2.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("tabPageCleanParameter2.ImeMode")));
     this.tabPageCleanParameter2.Location    = ((System.Drawing.Point)(resources.GetObject("tabPageCleanParameter2.Location")));
     this.tabPageCleanParameter2.Name        = "tabPageCleanParameter2";
     this.tabPageCleanParameter2.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("tabPageCleanParameter2.RightToLeft")));
     this.tabPageCleanParameter2.Size        = ((System.Drawing.Size)(resources.GetObject("tabPageCleanParameter2.Size")));
     this.tabPageCleanParameter2.TabIndex    = ((int)(resources.GetObject("tabPageCleanParameter2.TabIndex")));
     this.tabPageCleanParameter2.Text        = resources.GetString("tabPageCleanParameter2.Text");
     this.tabPageCleanParameter2.ToolTipText = resources.GetString("tabPageCleanParameter2.ToolTipText");
     this.tabPageCleanParameter2.Visible     = ((bool)(resources.GetObject("tabPageCleanParameter2.Visible")));
     //
     // micolor_CleanParameterControl1
     //
     this.micolor_CleanParameterControl1.AccessibleDescription = resources.GetString("micolor_CleanParameterControl1.AccessibleDescription");
     this.micolor_CleanParameterControl1.AccessibleName        = resources.GetString("micolor_CleanParameterControl1.AccessibleName");
     this.micolor_CleanParameterControl1.Anchor            = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("micolor_CleanParameterControl1.Anchor")));
     this.micolor_CleanParameterControl1.AutoScroll        = ((bool)(resources.GetObject("micolor_CleanParameterControl1.AutoScroll")));
     this.micolor_CleanParameterControl1.AutoScrollMargin  = ((System.Drawing.Size)(resources.GetObject("micolor_CleanParameterControl1.AutoScrollMargin")));
     this.micolor_CleanParameterControl1.AutoScrollMinSize = ((System.Drawing.Size)(resources.GetObject("micolor_CleanParameterControl1.AutoScrollMinSize")));
     this.micolor_CleanParameterControl1.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("micolor_CleanParameterControl1.BackgroundImage")));
     this.micolor_CleanParameterControl1.CleanWay          = BYHXPrinterManager.EpsonAutoCleanWay.Strong;
     this.micolor_CleanParameterControl1.Dock              = ((System.Windows.Forms.DockStyle)(resources.GetObject("micolor_CleanParameterControl1.Dock")));
     this.micolor_CleanParameterControl1.Enabled           = ((bool)(resources.GetObject("micolor_CleanParameterControl1.Enabled")));
     this.micolor_CleanParameterControl1.Font              = ((System.Drawing.Font)(resources.GetObject("micolor_CleanParameterControl1.Font")));
     this.micolor_CleanParameterControl1.GrouperTitleStyle = null;
     this.micolor_CleanParameterControl1.ImeMode           = ((System.Windows.Forms.ImeMode)(resources.GetObject("micolor_CleanParameterControl1.ImeMode")));
     this.micolor_CleanParameterControl1.Location          = ((System.Drawing.Point)(resources.GetObject("micolor_CleanParameterControl1.Location")));
     this.micolor_CleanParameterControl1.Name              = "micolor_CleanParameterControl1";
     this.micolor_CleanParameterControl1.RightToLeft       = ((System.Windows.Forms.RightToLeft)(resources.GetObject("micolor_CleanParameterControl1.RightToLeft")));
     this.micolor_CleanParameterControl1.Size              = ((System.Drawing.Size)(resources.GetObject("micolor_CleanParameterControl1.Size")));
     this.micolor_CleanParameterControl1.TabIndex          = ((int)(resources.GetObject("micolor_CleanParameterControl1.TabIndex")));
     this.micolor_CleanParameterControl1.Visible           = ((bool)(resources.GetObject("micolor_CleanParameterControl1.Visible")));
     //
     // EpsonCleanForm
     //
     this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
     this.AccessibleName        = resources.GetString("$this.AccessibleName");
     this.AutoScaleBaseSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScaleBaseSize")));
     this.AutoScroll            = ((bool)(resources.GetObject("$this.AutoScroll")));
     this.AutoScrollMargin      = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMargin")));
     this.AutoScrollMinSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMinSize")));
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize            = ((System.Drawing.Size)(resources.GetObject("$this.ClientSize")));
     this.Controls.Add(this.tabControl1);
     this.Enabled       = ((bool)(resources.GetObject("$this.Enabled")));
     this.Font          = ((System.Drawing.Font)(resources.GetObject("$this.Font")));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.ImeMode       = ((System.Windows.Forms.ImeMode)(resources.GetObject("$this.ImeMode")));
     this.Location      = ((System.Drawing.Point)(resources.GetObject("$this.Location")));
     this.MaximumSize   = ((System.Drawing.Size)(resources.GetObject("$this.MaximumSize")));
     this.MinimumSize   = ((System.Drawing.Size)(resources.GetObject("$this.MinimumSize")));
     this.Name          = "EpsonCleanForm";
     this.RightToLeft   = ((System.Windows.Forms.RightToLeft)(resources.GetObject("$this.RightToLeft")));
     this.StartPosition = ((System.Windows.Forms.FormStartPosition)(resources.GetObject("$this.StartPosition")));
     this.Text          = resources.GetString("$this.Text");
     this.tabControl1.ResumeLayout(false);
     this.tabPageCleanParameter1.ResumeLayout(false);
     this.tabPageCleanParameter2.ResumeLayout(false);
     this.ResumeLayout(false);
 }