Esempio n. 1
1
        /// <summary>
        /// This method is required for Windows Forms designer support.
        /// Do not change the method contents inside the source code editor. The Forms designer might
        /// not be able to load this method if it was changed manually.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.mainPanel = new System.Windows.Forms.Panel();
            this.SuspendLayout();
            // 
            // mainPanel
            // 
            this.mainPanel.AutoSize = true;
            this.mainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.mainPanel.Location = new System.Drawing.Point(0, 0);
            this.mainPanel.Name = "mainPanel";
            this.mainPanel.Size = new System.Drawing.Size(784, 562);
            this.mainPanel.TabIndex = 0;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.mainPanel);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(640, 600);
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Бойцовский клуб";
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.TextPanel = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // TextPanel
     //
     this.TextPanel.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.TextPanel.Location = new System.Drawing.Point(0, 0);
     this.TextPanel.Margin = new System.Windows.Forms.Padding(0);
     this.TextPanel.Name = "TextPanel";
     this.TextPanel.Size = new System.Drawing.Size(357, 176);
     this.TextPanel.TabIndex = 0;
     this.TextPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.TextPanel_Paint);
     //
     // TextControl
     //
     this.AutoScroll = true;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.TextPanel);
     this.Name = "TextControl";
     this.Size = new System.Drawing.Size(374, 176);
     this.ResumeLayout(false);
 }
Esempio n. 3
0
        public DrawForm()
            : base()
        {
            Load += (s, e) =>
            {
                var p = new System.Windows.Forms.Panel();
                p.Dock = System.Windows.Forms.DockStyle.Fill;
                Controls.Add(p);

                typeof(System.Windows.Forms.Panel).InvokeMember("DoubleBuffered",
                    BindingFlags.SetProperty | BindingFlags.Instance | BindingFlags.NonPublic,
                    null, p, new object[] { true });

                var bmp = new System.Drawing.Bitmap(1024, 1024);
                p.Paint += (_, pe) =>
                {
                    pe.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
                    pe.Graphics.DrawImage(bmp, System.Drawing.Point.Empty);
                };
                Graphics = System.Drawing.Graphics.FromImage(bmp);

                var t = new Thread(new ThreadStart(
                    delegate
                    {
                        while (true)
                        {
                            p.Invalidate();
                            p.Update();
                            System.Threading.Thread.Sleep(250);
                        }
                    }));
                t.IsBackground = true;
                t.Start();
            };
        }
Esempio n. 4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.graphicsPanel = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // graphicsPanel
     //
     this.graphicsPanel.Location = new System.Drawing.Point(26, 30);
     this.graphicsPanel.Name = "graphicsPanel";
     this.graphicsPanel.Size = new System.Drawing.Size(73, 71);
     this.graphicsPanel.TabIndex = 0;
     this.graphicsPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.graphicsPanel_Paint);
     //
     // ImageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(153, 113);
     this.Controls.Add(this.graphicsPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Name = "ImageForm";
     this.Text = "ImageForm";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ImageForm_FormClosing);
     this.ResumeLayout(false);
 }
Esempio n. 5
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CollapsiblePanel));
     this.headerPanel = new System.Windows.Forms.Panel();
     this.btnExpand = new System.Windows.Forms.Button();
     this.btnCollapse = new System.Windows.Forms.Button();
     this.lblHeaderText = new System.Windows.Forms.Label();
     this.contentPanel = new System.Windows.Forms.Panel();
     this.headerPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // headerPanel
     //
     this.headerPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.headerPanel.Controls.Add(this.btnExpand);
     this.headerPanel.Controls.Add(this.btnCollapse);
     this.headerPanel.Controls.Add(this.lblHeaderText);
     resources.ApplyResources(this.headerPanel, "headerPanel");
     this.headerPanel.Name = "headerPanel";
     //
     // btnExpand
     //
     resources.ApplyResources(this.btnExpand, "btnExpand");
     this.btnExpand.BackgroundImage = global::Maestro.Shared.UI.Properties.Resources.plus_white;
     this.btnExpand.FlatAppearance.BorderSize = 0;
     this.btnExpand.Name = "btnExpand";
     this.btnExpand.UseVisualStyleBackColor = true;
     this.btnExpand.Click += new System.EventHandler(this.btnExpand_Click);
     //
     // btnCollapse
     //
     resources.ApplyResources(this.btnCollapse, "btnCollapse");
     this.btnCollapse.BackgroundImage = global::Maestro.Shared.UI.Properties.Resources.minus_white;
     this.btnCollapse.FlatAppearance.BorderSize = 0;
     this.btnCollapse.Name = "btnCollapse";
     this.btnCollapse.UseVisualStyleBackColor = true;
     this.btnCollapse.Click += new System.EventHandler(this.btnCollapse_Click);
     //
     // lblHeaderText
     //
     this.lblHeaderText.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblHeaderText, "lblHeaderText");
     this.lblHeaderText.Name = "lblHeaderText";
     //
     // contentPanel
     //
     this.contentPanel.BackColor = System.Drawing.SystemColors.Control;
     resources.ApplyResources(this.contentPanel, "contentPanel");
     this.contentPanel.Name = "contentPanel";
     //
     // CollapsiblePanel
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.contentPanel);
     this.Controls.Add(this.headerPanel);
     this.Name = "CollapsiblePanel";
     resources.ApplyResources(this, "$this");
     this.headerPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 //public virtual void DrawEffectImage(BitmapSource current, BitmapSource next, EffectingPanel effectingPanel)
 public virtual void DrawEffectImage(ImageBrush currentImage, ImageBrush nextImage, 
     ref System.Windows.Forms.Panel nextPanel, ref Canvas canvas)
 {
     this.nextPanel = nextPanel;
     this.canvas = canvas;
     this.nextImage = nextImage;
 }
Esempio n. 7
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1 = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Margin = new System.Windows.Forms.Padding(2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(142, 487);
     this.panel1.TabIndex = 1;
     //
     // NavBar
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(232)))), ((int)(((byte)(241)))));
     this.Controls.Add(this.panel1);
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "NavBar";
     this.Size = new System.Drawing.Size(142, 487);
     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.panelContainer = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // panelContainer
     //
     this.panelContainer.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.panelContainer.Location = new System.Drawing.Point( 108, 7 );
     this.panelContainer.Name = "panelContainer";
     this.panelContainer.Size = new System.Drawing.Size( 561, 415 );
     this.panelContainer.TabIndex = 0;
     //
     // WhidbeyTabControl
     //
     this.Controls.Add( this.panelContainer );
     this.Name = "WhidbeyTabControl";
     this.Size = new System.Drawing.Size( 676, 429 );
     this.MouseLeave += new System.EventHandler( this.WhidbeyTabControl_MouseLeave );
     this.MouseMove += new System.Windows.Forms.MouseEventHandler( this.WhidbeyTabControl_MouseMove );
     this.MouseUp += new System.Windows.Forms.MouseEventHandler( this.WhidbeyTabControl_MouseUp );
     this.KeyDown += new System.Windows.Forms.KeyEventHandler( this.WhidbeyTabControl_KeyDown );
     this.ResumeLayout( false );
 }
Esempio n. 9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlGrid = new System.Windows.Forms.Panel();
     this.tbGrid = new QX.GenFramework.BseControl.CommonToolBar();
     this.SuspendLayout();
     //
     // pnlGrid
     //
     this.pnlGrid.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.pnlGrid.Location = new System.Drawing.Point(0, 44);
     this.pnlGrid.Name = "pnlGrid";
     this.pnlGrid.Size = new System.Drawing.Size(847, 453);
     this.pnlGrid.TabIndex = 10;
     //
     // tbGrid
     //
     this.tbGrid.Dock = System.Windows.Forms.DockStyle.Top;
     this.tbGrid.Location = new System.Drawing.Point(0, 0);
     this.tbGrid.Name = "tbGrid";
     this.tbGrid.Size = new System.Drawing.Size(847, 40);
     this.tbGrid.TabIndex = 11;
     //
     // ComDict
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(847, 496);
     this.Controls.Add(this.tbGrid);
     this.Controls.Add(this.pnlGrid);
     this.Name = "ComDict";
     this.Text = "ComDict";
     this.ResumeLayout(false);
 }
Esempio n. 10
0
        public void ResetControl()
        {
            try
            {
                // Maximize the main grid
                gridMain.Width = this.Width;
                gridMain.Height = this.Height;

                formsHost.Width = this.Width;
                formsHost.Height = this.Height - 100;

                // Add a win form panel to the grid
                pnlVideoPreview = new System.Windows.Forms.Panel();
                pnlVideoPreview.Width = Convert.ToInt32(this.Width);
                pnlVideoPreview.Height = Convert.ToInt32(this.Height) - 100;
                pnlVideoPreview.Left = 0;
                pnlVideoPreview.Top = 0;

                // Add the panel
                formsHost.Child = pnlVideoPreview;

                // Get the webcam matching the specified name
                foreach (EncoderDevice cam in EncoderDevices.FindDevices(EncoderDeviceType.Video))
                {
                    if (cam.Name == dsCameraSource)
                    {
                        currentcam = cam;
                    }
                }
            }
            catch { }
        }
Esempio n. 11
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panel_Title = new System.Windows.Forms.Panel();
     this.panel_Close = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.panel_Title.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // panel_Title
     //
     this.panel_Title.BackColor = System.Drawing.Color.MediumBlue;
     this.panel_Title.BackgroundImage = global::MagnetismForm.Properties.Resources._1;
     this.panel_Title.Controls.Add(this.panel_Close);
     this.panel_Title.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel_Title.Location = new System.Drawing.Point(0, 0);
     this.panel_Title.Name = "panel_Title";
     this.panel_Title.Size = new System.Drawing.Size(290, 31);
     this.panel_Title.TabIndex = 0;
     this.panel_Title.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_Title_MouseMove);
     this.panel_Title.Click += new System.EventHandler(this.panel_Title_Click);
     this.panel_Title.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel_Title_MouseDown);
     this.panel_Title.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel_Title_MouseUp);
     //
     // panel_Close
     //
     this.panel_Close.BackColor = System.Drawing.Color.Red;
     this.panel_Close.BackgroundImage = global::MagnetismForm.Properties.Resources.Close;
     this.panel_Close.Location = new System.Drawing.Point(270, 5);
     this.panel_Close.Name = "panel_Close";
     this.panel_Close.Size = new System.Drawing.Size(18, 18);
     this.panel_Close.TabIndex = 0;
     this.panel_Close.Click += new System.EventHandler(this.panel_Close_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::MagnetismForm.Properties.Resources._4;
     this.pictureBox1.Location = new System.Drawing.Point(0, 31);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(290, 89);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 1;
     this.pictureBox1.TabStop = false;
     //
     // Frm_Play
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(290, 120);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.panel_Title);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "Frm_Play";
     this.Text = "主窗体";
     this.Load += new System.EventHandler(this.Frm_Play_Load);
     this.Shown += new System.EventHandler(this.Frm_Play_Shown);
     this.panel_Title.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
		/// <summary>
		/// This method is required for Windows Forms designer support.
		/// Do not change the method contents inside the source code editor. The Forms designer might
		/// not be able to load this method if it was changed manually.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewVolumeWizard));
			this.panel1 = new System.Windows.Forms.Panel();
			this.SuspendLayout();
			// 
			// panel1
			// 
			this.panel1.Location = new System.Drawing.Point(10, 33);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(619, 419);
			this.panel1.TabIndex = 0;
			// 
			// NewVolumeWizard
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(640, 445);
			this.Controls.Add(this.panel1);
			this.DisplayHeader = false;
			this.DisplayTitle = true;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "NewVolumeWizard";
			this.Padding = new System.Windows.Forms.Padding(20, 30, 20, 20);
			this.ShadowType = MetroFramework.Forms.MetroFormShadowType.None;
			this.Text = "New Volume";
			this.Load += new System.EventHandler(this.NewVolumeWizardLoad);
			this.ResumeLayout(false);

		}
Esempio n. 13
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.itemsPanel = new System.Windows.Forms.Panel();
     this.animationTimer = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // itemsPanel
     //
     this.itemsPanel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.itemsPanel.Location = new System.Drawing.Point(3, 3);
     this.itemsPanel.Name = "itemsPanel";
     this.itemsPanel.Size = new System.Drawing.Size(166, 104);
     this.itemsPanel.TabIndex = 0;
     //
     // animationTimer
     //
     this.animationTimer.Enabled = true;
     this.animationTimer.Interval = 50;
     this.animationTimer.Tick += new System.EventHandler(this.AnimationTick);
     //
     // CustomListBox
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Controls.Add(this.itemsPanel);
     this.DoubleBuffered = true;
     this.Name = "CustomListBox";
     this.Size = new System.Drawing.Size(172, 110);
     this.ResumeLayout(false);
 }
Esempio n. 14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ploutlookBar = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // ploutlookBar
     //
     this.ploutlookBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ploutlookBar.Location = new System.Drawing.Point(0, 0);
     this.ploutlookBar.Name = "ploutlookBar";
     this.ploutlookBar.Size = new System.Drawing.Size(292, 273);
     this.ploutlookBar.TabIndex = 4;
     //
     // frmTools
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(292, 273);
     this.CloseButton = false;
     this.Controls.Add(this.ploutlookBar);
     this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.HideOnClose = true;
     this.Name = "frmTools";
     this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockLeft;
     this.Text = "导航菜单";
     this.Load += new System.EventHandler(this.frmTools_Load);
     this.ResumeLayout(false);
 }
Esempio n. 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.plMain = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // plMain
     //
     this.plMain.Location = new System.Drawing.Point(0, 0);
     this.plMain.Name = "plMain";
     this.plMain.Size = new System.Drawing.Size(320, 320);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize = new System.Drawing.Size(323, 325);
     this.Controls.Add(this.plMain);
     this.Location = new System.Drawing.Point(0, -23);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "MainForm";
     this.Text = "Sconit_SD";
     this.TopMost = true;
     this.ResumeLayout(false);
 }
Esempio n. 16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnDraw = new System.Windows.Forms.Button();
     this.txtLevel = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // btnDraw
     //
     this.btnDraw.Location = new System.Drawing.Point(91, 12);
     this.btnDraw.Name = "btnDraw";
     this.btnDraw.Size = new System.Drawing.Size(75, 23);
     this.btnDraw.TabIndex = 6;
     this.btnDraw.Text = "Draw";
     this.btnDraw.UseVisualStyleBackColor = true;
     this.btnDraw.Click += new System.EventHandler(this.btnDraw_Click);
     //
     // txtLevel
     //
     this.txtLevel.Location = new System.Drawing.Point(54, 14);
     this.txtLevel.Name = "txtLevel";
     this.txtLevel.Size = new System.Drawing.Size(31, 20);
     this.txtLevel.TabIndex = 5;
     this.txtLevel.Text = "4";
     this.txtLevel.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 17);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(36, 13);
     this.label1.TabIndex = 4;
     this.label1.Text = "Level:";
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(13, 41);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(259, 260);
     this.panel1.TabIndex = 7;
     //
     // Form1
     //
     this.AcceptButton = this.btnDraw;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(284, 313);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.btnDraw);
     this.Controls.Add(this.txtLevel);
     this.Controls.Add(this.label1);
     this.Name = "Form1";
     this.Text = "howto_sierpinski_carpet";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.Resize += new System.EventHandler(this.Form1_Resize);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.Panel panel1;
            this._tallyContainer_PNL = new System.Windows.Forms.Panel();
            this._speciesName_LBL = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            panel1 = new System.Windows.Forms.Panel();
            panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // _tallyContainer_PNL
            // 
            this._tallyContainer_PNL.Dock = System.Windows.Forms.DockStyle.Fill;
            this._tallyContainer_PNL.Location = new System.Drawing.Point(62, 0);
            this._tallyContainer_PNL.Name = "_tallyContainer_PNL";
            this._tallyContainer_PNL.Size = new System.Drawing.Size(336, 62);
            this._tallyContainer_PNL.TabIndex = 0;
            // 
            // _speciesName_LBL
            // 
            this._speciesName_LBL.Dock = System.Windows.Forms.DockStyle.Fill;
            this._speciesName_LBL.Location = new System.Drawing.Point(0, 13);
            this._speciesName_LBL.Name = "_speciesName_LBL";
            this._speciesName_LBL.Size = new System.Drawing.Size(62, 49);
            this._speciesName_LBL.TabIndex = 1;
            this._speciesName_LBL.Text = "<sp>";
            // 
            // panel1
            // 
            panel1.Controls.Add(this._speciesName_LBL);
            panel1.Controls.Add(this.label1);
            panel1.Dock = System.Windows.Forms.DockStyle.Left;
            panel1.Location = new System.Drawing.Point(0, 0);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(62, 62);
            panel1.TabIndex = 0;
            // 
            // label1
            // 
#if !NetCF
            this.label1.AutoSize = true;
#endif
            this.label1.Dock = System.Windows.Forms.DockStyle.Top;
            this.label1.Location = new System.Drawing.Point(0, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(48, 13);
            this.label1.TabIndex = 2;
            this.label1.Text = "Species:";
            // 
            // FixCntTallyRow
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.Controls.Add(this._tallyContainer_PNL);
            this.Controls.Add(panel1);
            this.Name = "FixCntTallyRow";
            this.Size = new System.Drawing.Size(398, 62);
            panel1.ResumeLayout(true);
            this.ResumeLayout(false);

        }
 /// <summary> 
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を 
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(100, 144);
     this.panel1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Location = new System.Drawing.Point(109, 3);
     this.panel2.Name = "panel2";
     this.panel2.Padding = new System.Windows.Forms.Padding(3);
     this.panel2.Size = new System.Drawing.Size(233, 144);
     this.panel2.TabIndex = 1;
     //
     // GroupedCheckBox
     //
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "GroupedCheckBox";
     this.Size = new System.Drawing.Size(345, 150);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.Tabla_Instancias = new System.Windows.Forms.DataGridView();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.Tabla_Instancias)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // Tabla_Instancias
     //
     this.Tabla_Instancias.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.Tabla_Instancias.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Tabla_Instancias.Location = new System.Drawing.Point(10, 10);
     this.Tabla_Instancias.Name = "Tabla_Instancias";
     this.Tabla_Instancias.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.Tabla_Instancias.Size = new System.Drawing.Size(526, 124);
     this.Tabla_Instancias.TabIndex = 0;
     this.Tabla_Instancias.DoubleClick += new System.EventHandler(this.Tabla_Instancias_DoubleClick);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Padding = new System.Windows.Forms.Padding(10);
     this.panel1.Size = new System.Drawing.Size(566, 164);
     this.panel1.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.Tabla_Instancias);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(10, 10);
     this.panel2.Name = "panel2";
     this.panel2.Padding = new System.Windows.Forms.Padding(10);
     this.panel2.Size = new System.Drawing.Size(546, 144);
     this.panel2.TabIndex = 0;
     //
     // FrmInstancia_SQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.DimGray;
     this.ClientSize = new System.Drawing.Size(566, 164);
     this.Controls.Add(this.panel1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmInstancia_SQL";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Instancias SQL";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Tabla_Instancias)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.renderPanel = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // renderPanel
     //
     this.renderPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.renderPanel.Location = new System.Drawing.Point(0, 0);
     this.renderPanel.Name = "renderPanel";
     this.renderPanel.Size = new System.Drawing.Size(800, 600);
     this.renderPanel.TabIndex = 0;
     //
     // RenderForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(800, 600);
     this.Controls.Add(this.renderPanel);
     this.MaximizeBox = false;
     this.Name = "RenderForm";
     this.Text = "Chicago - Horde3D .NET Sample (beta)";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RenderForm_FormClosed);
     this.Resize += new System.EventHandler(this.RenderForm_Resize);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RenderForm_KeyDown);
     this.Load += new System.EventHandler(this.RenderForm_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContextMenuForm));
     this.panelMain = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // panelMain
     //
     this.panelMain.BackColor = System.Drawing.Color.White;
     this.panelMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelMain.Location = new System.Drawing.Point(0, 0);
     this.panelMain.Name = "panelMain";
     this.panelMain.Size = new System.Drawing.Size(292, 266);
     this.panelMain.TabIndex = 0;
     //
     // ContextMenuForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(292, 266);
     this.ControlBox = false;
     this.Controls.Add(this.panelMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "ContextMenuForm";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "ContextMenuPanel";
     this.Deactivate += new System.EventHandler(this.ContextMenuPanel_Deactivate);
     this.Leave += new System.EventHandler(this.ContextMenuPanel_Leave);
     this.ResumeLayout(false);
 }
Esempio n. 22
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1 = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Location = new System.Drawing.Point(0, 60);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(16, 8);
     this.panel1.TabIndex = 0;
     this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
     this.panel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseMove);
     this.panel1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseUp);
     //
     // Slider
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Name = "Slider";
     this.Size = new System.Drawing.Size(16, 150);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Slider_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Slider_MouseMove);
     this.Resize += new System.EventHandler(this.Slider_Resize);
     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.panel1 = new System.Windows.Forms.Panel();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Location = new System.Drawing.Point(8, 13);
     this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(228, 31);
     this.panel1.TabIndex = 0;
     //
     // ColorGradient
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.Name = "ColorGradient";
     this.Size = new System.Drawing.Size(247, 62);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ColorGradient_MouseDown);
     this.Resize += new System.EventHandler(this.ColorGradient_Resize);
     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.panel1 = new System.Windows.Forms.Panel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Location = new System.Drawing.Point(25, 24);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(393, 157);
     this.panel1.TabIndex = 0;
     //
     // textBox1
     //
     this.textBox1.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.textBox1.Font = new System.Drawing.Font("微軟正黑體", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.textBox1.Location = new System.Drawing.Point(0, 0);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBox1.Size = new System.Drawing.Size(393, 157);
     this.textBox1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(330, 205);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 1;
     this.button1.Text = "&Refresh";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // FrmFruitReport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(445, 251);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.panel1);
     this.Name = "FrmFruitReport";
     this.Text = "FrmFruitReport";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmFruitReport_FormClosing);
     this.Load += new System.EventHandler(this.FrmFruitReport_Load);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmFruitReport_MouseDown);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 25
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void MyInitializeComponent()
        {
            this.panelMain = new System.Windows.Forms.Panel();
            this.tablePanelMain = new System.Windows.Forms.TableLayoutPanel();

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

            this.tablePanelMain.SuspendLayout();
            this.panelMain.SuspendLayout();
            this.SuspendLayout();

            //
            // panelMain
            //
            this.panelMain.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.panelMain.AutoScroll = true;
            this.panelMain.BackColor = System.Drawing.SystemColors.Control;
            this.panelMain.Controls.Add(this.tablePanelMain);
            this.panelMain.Controls.Add(lblNoTasks);
            this.lblNoTasks.BringToFront();
            this.panelMain.Location = new System.Drawing.Point(0, 0);
            this.panelMain.Name = "panelMain";
            this.panelMain.Size = new System.Drawing.Size(274, 416);
            this.panelMain.TabIndex = 0;
            //
            // tablePanelMain
            //
            this.tablePanelMain.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tablePanelMain.BackColor = System.Drawing.SystemColors.Control;
            this.tablePanelMain.ColumnCount = 1;
            this.tablePanelMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tablePanelMain.Location = new System.Drawing.Point(3, 3);
            this.tablePanelMain.Name = "tablePanelMain";
            this.tablePanelMain.RowCount = 0;
            this.tablePanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tablePanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tablePanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tablePanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tablePanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tablePanelMain.Size = new System.Drawing.Size(269, 600);
            this.tablePanelMain.TabIndex = 1;

            //
            // lblNoTasks
            //
            CreateNoTaskLabel();
            //
            // TasksList
            //
            this.Controls.Add(this.panelMain);
            this.Name = "TasksList";
            this.Size = new System.Drawing.Size(276, 418);
            this.tablePanelMain.ResumeLayout(false);
            this.panelMain.ResumeLayout(false);
            this.ResumeLayout(false);
        }
 public void InitializeWebCam(ref System.Windows.Forms.Panel ImageControl)
 {
     webcam = new WebCamCapture();
     webcam.FrameNumber = ((ulong)(0ul));
     webcam.TimeToCapture_milliseconds = FrameNumber;
     webcam.ImageCaptured += new WebCamCapture.WebCamEventHandler(webcam_ImageCaptured);
     _FrameImage = ImageControl;
 }
Esempio n. 27
0
 public Panel()
 {
     mBackColor = null;
     mDockStyle = @"None";
     mAutoScroll = false;
     mPanel = null;
     mSize = null;
 }
		/// <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.Windows.Forms.Label spacer;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CompareFilterMenuActionControl));
			System.Windows.Forms.Panel valigner;
			this._txtValue = new System.Windows.Forms.TextBox();
			this._modeToggle = new System.Windows.Forms.Button();
			this._errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this._tooltipProvider = new System.Windows.Forms.ToolTip(this.components);
			spacer = new System.Windows.Forms.Label();
			valigner = new System.Windows.Forms.Panel();
			valigner.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
			this.SuspendLayout();
			// 
			// spacer
			// 
			resources.ApplyResources(spacer, "spacer");
			spacer.Name = "spacer";
			// 
			// valigner
			// 
			valigner.Controls.Add(this._txtValue);
			resources.ApplyResources(valigner, "valigner");
			valigner.Name = "valigner";
			// 
			// _txtValue
			// 
			resources.ApplyResources(this._txtValue, "_txtValue");
			this._txtValue.Name = "_txtValue";
			this._txtValue.TextChanged += new System.EventHandler(this._txtValue_TextChanged);
			// 
			// _modeToggle
			// 
			resources.ApplyResources(this._modeToggle, "_modeToggle");
			this._modeToggle.Name = "_modeToggle";
			this._modeToggle.UseVisualStyleBackColor = true;
			this._modeToggle.Click += new System.EventHandler(this.modeToggle_Click);
			// 
			// _errorProvider
			// 
			this._errorProvider.ContainerControl = this;
			// 
			// CompareFilterMenuActionControl
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.Transparent;
			this.Controls.Add(valigner);
			this.Controls.Add(spacer);
			this.Controls.Add(this._modeToggle);
			this.Name = "CompareFilterMenuActionControl";
			valigner.ResumeLayout(false);
			valigner.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
			this.ResumeLayout(false);

		}
Esempio n. 29
0
 static void Main(string[] args)
 {
     Queue<string> files = new Queue<string>(args);
     if (files.Count == 0)
     {
         Console.Write("File: ");
         files.Enqueue(Console.ReadLine());
     }
     while (files.Count > 0)
     {
         string filename = files.Dequeue();
         PAKFile pak = new PAKFile();
         List<byte> inf = new List<byte>();
         string filenoext = Path.GetFileNameWithoutExtension(filename).ToLowerInvariant();
         string longdir = "..\\..\\..\\sonic2\\resource\\gd_pc\\prs\\" + filenoext;
         byte[] filedata = File.ReadAllBytes(filename);
         using (System.Windows.Forms.Panel panel1 = new System.Windows.Forms.Panel())
         using (Device d3ddevice = new Device(0, DeviceType.Hardware, panel1, CreateFlags.SoftwareVertexProcessing, new PresentParameters[] { new PresentParameters() { Windowed = true, SwapEffect = SwapEffect.Discard, EnableAutoDepthStencil = true, AutoDepthStencilFormat = DepthFormat.D24X8 } }))
         {
             if (PvrTexture.Is(filedata))
             {
                 if (!AddTexture(pak, filenoext, longdir, false, inf, d3ddevice, filename, new MemoryStream(filedata)))
                     continue;
                 goto end;
             }
             else if (GvrTexture.Is(filedata))
             {
                 if (!AddTexture(pak, filenoext, longdir, true, inf, d3ddevice, filename, new MemoryStream(filedata)))
                     continue;
                 goto end;
             }
             bool gvm = false;
             ArchiveBase pvmfile = null;
             byte[] pvmdata = File.ReadAllBytes(filename);
             if (Path.GetExtension(filename).Equals(".prs", StringComparison.OrdinalIgnoreCase))
                 pvmdata = FraGag.Compression.Prs.Decompress(pvmdata);
             pvmfile = new PvmArchive();
             if (!pvmfile.Is(pvmdata, filename))
             {
                 pvmfile = new GvmArchive();
                 gvm = true;
             }
             ArchiveEntryCollection pvmentries = pvmfile.Open(pvmdata).Entries;
             bool fail = false;
             foreach (ArchiveEntry file in pvmentries)
                 if (!AddTexture(pak, filenoext, longdir, gvm, inf, d3ddevice, file.Name, file.Open()))
                 {
                     fail = true;
                     break;
                 }
             if (fail)
                 continue;
         }
     end:
         pak.Files.Insert(0, new PAKFile.File(filenoext + '\\' + filenoext + ".inf", longdir + '\\' + filenoext + ".inf", inf.ToArray()));
         pak.Save(Path.ChangeExtension(filename, "pak"));
     }
 }
Esempio n. 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.panel = new System.Windows.Forms.Panel();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.treeView1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.panel);
     this.splitContainer1.Size = new System.Drawing.Size(635, 342);
     this.splitContainer1.SplitterDistance = 211;
     this.splitContainer1.TabIndex = 0;
     //
     // treeView1
     //
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(211, 342);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // panel
     //
     this.panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name = "panel";
     this.panel.Size = new System.Drawing.Size(420, 342);
     this.panel.TabIndex = 0;
     //
     // FormOptionPage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(635, 342);
     this.Controls.Add(this.splitContainer1);
     this.Name = "FormOptionPage";
     this.Text = "FormOptionPage";
     this.Load += new System.EventHandler(this.FormOptionPage_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 31
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ColourPickerDialog));
     this.kryptonPanel1     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel        = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonNavigator1 = new ComponentFactory.Krypton.Navigator.KryptonNavigator();
     this.kryptonPage1      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage2      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.panel1            = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).BeginInit();
     this.kryptonNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 769);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(873, 45);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnCancel
     //
     this.kbtnCancel.AutoSize     = true;
     this.kbtnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnCancel.Location     = new System.Drawing.Point(801, 6);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(60, 30);
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 61;
     this.kbtnCancel.Values.Text = "&Cancel";
     //
     // kbtnOk
     //
     this.kbtnOk.AutoSize     = true;
     this.kbtnOk.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnOk.Location     = new System.Drawing.Point(763, 6);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(32, 30);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 60;
     this.kbtnOk.Values.Text = "O&k";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonNavigator1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(873, 769);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kryptonNavigator1
     //
     this.kryptonNavigator1.Button.ButtonDisplayLogic = ComponentFactory.Krypton.Navigator.ButtonDisplayLogic.NextPrevious;
     this.kryptonNavigator1.Button.CloseButtonDisplay = ComponentFactory.Krypton.Navigator.ButtonDisplay.Hide;
     this.kryptonNavigator1.Location      = new System.Drawing.Point(12, 12);
     this.kryptonNavigator1.Name          = "kryptonNavigator1";
     this.kryptonNavigator1.NavigatorMode = ComponentFactory.Krypton.Navigator.NavigatorMode.BarCheckButtonGroupOutside;
     this.kryptonNavigator1.Pages.AddRange(new ComponentFactory.Krypton.Navigator.KryptonPage[] {
         this.kryptonPage1,
         this.kryptonPage2
     });
     this.kryptonNavigator1.SelectedIndex = 0;
     this.kryptonNavigator1.Size          = new System.Drawing.Size(849, 748);
     this.kryptonNavigator1.StateCommon.Tab.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNavigator1.TabIndex = 0;
     this.kryptonNavigator1.Text     = "kryptonNavigator1";
     //
     // kryptonPage1
     //
     this.kryptonPage1.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage1.Flags          = 65534;
     this.kryptonPage1.LastVisibleSet = true;
     this.kryptonPage1.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage1.Name           = "kryptonPage1";
     this.kryptonPage1.Size           = new System.Drawing.Size(847, 719);
     this.kryptonPage1.Text           = "kryptonPage1";
     this.kryptonPage1.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage1.UniqueName     = "737596BF930E4A5FB6914A442ACCEFDD";
     //
     // kryptonPage2
     //
     this.kryptonPage2.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage2.Flags          = 65534;
     this.kryptonPage2.LastVisibleSet = true;
     this.kryptonPage2.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage2.Name           = "kryptonPage2";
     this.kryptonPage2.Size           = new System.Drawing.Size(100, 100);
     this.kryptonPage2.Text           = "kryptonPage2";
     this.kryptonPage2.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage2.UniqueName     = "4EC9448907424D7177BD23C09791EB31";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 766);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(873, 3);
     this.panel1.TabIndex  = 2;
     //
     // ColourPickerDialog
     //
     this.ClientSize = new System.Drawing.Size(873, 814);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ColourPickerDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Choose a {0}";
     this.Load           += new System.EventHandler(this.ColourPickerDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).EndInit();
     this.kryptonNavigator1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.topPanel       = new System.Windows.Forms.Panel();
     this.btRollback     = new System.Windows.Forms.Button();
     this.btCommit       = new System.Windows.Forms.Button();
     this.btBegin        = new System.Windows.Forms.Button();
     this.btUpdate       = new System.Windows.Forms.Button();
     this.btClear        = new System.Windows.Forms.Button();
     this.btFill         = new System.Windows.Forms.Button();
     this.dataSet        = new System.Data.DataSet();
     this.selectCommand  = new Devart.Data.PostgreSql.PgSqlCommand();
     this.dataAdapter    = new Devart.Data.PostgreSql.PgSqlDataAdapter();
     this.commandBuilder = new Devart.Data.PostgreSql.PgSqlCommandBuilder();
     this.dataGrid       = new System.Windows.Forms.DataGrid();
     this.topPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).BeginInit();
     this.SuspendLayout();
     //
     // topPanel
     //
     this.topPanel.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btRollback,
         this.btCommit,
         this.btBegin,
         this.btUpdate,
         this.btClear,
         this.btFill
     });
     this.topPanel.Dock     = System.Windows.Forms.DockStyle.Top;
     this.topPanel.Name     = "topPanel";
     this.topPanel.Size     = new System.Drawing.Size(477, 24);
     this.topPanel.TabIndex = 2;
     //
     // btRollback
     //
     this.btRollback.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btRollback.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.btRollback.ForeColor = System.Drawing.Color.Navy;
     this.btRollback.Location  = new System.Drawing.Point(392, 0);
     this.btRollback.Name      = "btRollback";
     this.btRollback.TabIndex  = 7;
     this.btRollback.Text      = "Rollback";
     this.btRollback.Click    += new System.EventHandler(this.btRollback_Click);
     //
     // btCommit
     //
     this.btCommit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btCommit.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.btCommit.ForeColor = System.Drawing.Color.Navy;
     this.btCommit.Location  = new System.Drawing.Point(316, 0);
     this.btCommit.Name      = "btCommit";
     this.btCommit.TabIndex  = 6;
     this.btCommit.Text      = "Commit";
     this.btCommit.Click    += new System.EventHandler(this.btCommit_Click);
     //
     // btBegin
     //
     this.btBegin.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btBegin.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.btBegin.ForeColor = System.Drawing.Color.Navy;
     this.btBegin.Location  = new System.Drawing.Point(240, 0);
     this.btBegin.Name      = "btBegin";
     this.btBegin.TabIndex  = 5;
     this.btBegin.Text      = "Begin";
     this.btBegin.Click    += new System.EventHandler(this.btBegin_Click);
     //
     // btUpdate
     //
     this.btUpdate.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.btUpdate.Location    = new System.Drawing.Point(76, 0);
     this.btUpdate.Name        = "btUpdate";
     this.btUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.btUpdate.TabIndex    = 4;
     this.btUpdate.Text        = "Update";
     this.btUpdate.Click      += new System.EventHandler(this.btUpdate_Click);
     //
     // btClear
     //
     this.btClear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btClear.Location  = new System.Drawing.Point(152, 0);
     this.btClear.Name      = "btClear";
     this.btClear.TabIndex  = 3;
     this.btClear.Text      = "Clear";
     this.btClear.Click    += new System.EventHandler(this.btClear_Click);
     //
     // btFill
     //
     this.btFill.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btFill.Name      = "btFill";
     this.btFill.TabIndex  = 2;
     this.btFill.Text      = "Fill";
     this.btFill.Click    += new System.EventHandler(this.btFill_Click);
     //
     // dataSet
     //
     this.dataSet.DataSetName = "NewDataSet";
     this.dataSet.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // selectCommand
     //
     this.selectCommand.CommandText = "Select * from dept";
     this.selectCommand.Name        = "selectCommand";
     this.selectCommand.Owner       = this;
     //
     // dataAdapter
     //
     this.dataAdapter.MissingSchemaAction = System.Data.MissingSchemaAction.AddWithKey;
     this.dataAdapter.SelectCommand       = this.selectCommand;
     //
     // commandBuilder
     //
     this.commandBuilder.DataAdapter    = this.dataAdapter;
     this.commandBuilder.Quoted         = true;
     this.commandBuilder.UpdatingFields = "";
     //
     // dataGrid
     //
     this.dataGrid.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.dataGrid.CaptionVisible  = false;
     this.dataGrid.DataMember      = "";
     this.dataGrid.DataSource      = this.dataSet;
     this.dataGrid.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.dataGrid.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid.Location        = new System.Drawing.Point(0, 24);
     this.dataGrid.Name            = "dataGrid";
     this.dataGrid.Size            = new System.Drawing.Size(477, 310);
     this.dataGrid.TabIndex        = 3;
     //
     // TransactionsDemoControl
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.dataGrid,
         this.topPanel
     });
     this.Name = "TransactionsDemoControl";
     this.Size = new System.Drawing.Size(477, 334);
     this.topPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.pnlButtons     = new System.Windows.Forms.Panel();
     this.btnReset       = new System.Windows.Forms.Button();
     this.btnAccept      = new System.Windows.Forms.Button();
     this.btnCancel      = new System.Windows.Forms.Button();
     this.pnlClient      = new System.Windows.Forms.Panel();
     this.tabsFilters    = new System.Windows.Forms.TabControl();
     this.tsFieldsFilter = new System.Windows.Forms.TabPage();
     this.pnlButtons.SuspendLayout();
     this.pnlClient.SuspendLayout();
     this.tabsFilters.SuspendLayout();
     this.tsFieldsFilter.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlButtons
     //
     this.pnlButtons.Controls.Add(this.btnReset);
     this.pnlButtons.Controls.Add(this.btnAccept);
     this.pnlButtons.Controls.Add(this.btnCancel);
     this.pnlButtons.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlButtons.Location = new System.Drawing.Point(0, 526);
     this.pnlButtons.Margin   = new System.Windows.Forms.Padding(0);
     this.pnlButtons.Name     = "pnlButtons";
     this.pnlButtons.Size     = new System.Drawing.Size(859, 62);
     this.pnlButtons.TabIndex = 5;
     //
     // btnReset
     //
     this.btnReset.Location = new System.Drawing.Point(16, 14);
     this.btnReset.Margin   = new System.Windows.Forms.Padding(16, 16, 0, 0);
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new System.Drawing.Size(114, 30);
     this.btnReset.TabIndex = 6;
     this.btnReset.Text     = "btnReset";
     this.btnReset.Click   += new System.EventHandler(this.btnReset_Click);
     //
     // btnAccept
     //
     this.btnAccept.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAccept.Location   = new System.Drawing.Point(600, 16);
     this.btnAccept.Margin     = new System.Windows.Forms.Padding(0, 16, 16, 0);
     this.btnAccept.Name       = "btnAccept";
     this.btnAccept.Size       = new System.Drawing.Size(112, 30);
     this.btnAccept.TabIndex   = 4;
     this.btnAccept.Text       = "btnAccept";
     this.btnAccept.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.btnAccept.Click     += new System.EventHandler(this.btnAccept_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.Location     = new System.Drawing.Point(729, 16);
     this.btnCancel.Margin       = new System.Windows.Forms.Padding(0, 16, 16, 0);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(114, 30);
     this.btnCancel.TabIndex     = 5;
     this.btnCancel.Text         = "btnCancel";
     this.btnCancel.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     //
     // pnlClient
     //
     this.pnlClient.Controls.Add(this.tabsFilters);
     this.pnlClient.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlClient.Location = new System.Drawing.Point(0, 0);
     this.pnlClient.Margin   = new System.Windows.Forms.Padding(2);
     this.pnlClient.Name     = "pnlClient";
     this.pnlClient.Padding  = new System.Windows.Forms.Padding(16, 16, 16, 16);
     this.pnlClient.Size     = new System.Drawing.Size(859, 526);
     this.pnlClient.TabIndex = 6;
     //
     // tabsFilters
     //
     this.tabsFilters.Controls.Add(this.tsFieldsFilter);
     this.tabsFilters.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabsFilters.Location      = new System.Drawing.Point(16, 16);
     this.tabsFilters.Margin        = new System.Windows.Forms.Padding(0, 0, 0, 16);
     this.tabsFilters.Name          = "tabsFilters";
     this.tabsFilters.SelectedIndex = 0;
     this.tabsFilters.Size          = new System.Drawing.Size(827, 494);
     this.tabsFilters.TabIndex      = 1;
     //
     // tsFieldsFilter
     //
     this.tsFieldsFilter.Location = new System.Drawing.Point(4, 26);
     this.tsFieldsFilter.Margin   = new System.Windows.Forms.Padding(2);
     this.tsFieldsFilter.Name     = "tsFieldsFilter";
     this.tsFieldsFilter.Size     = new System.Drawing.Size(819, 464);
     this.tsFieldsFilter.TabIndex = 1;
     this.tsFieldsFilter.Text     = "tsFieldsFilter";
     //
     // CommonFilterDlg
     //
     this.AcceptButton        = this.btnAccept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(859, 588);
     this.Controls.Add(this.pnlClient);
     this.Controls.Add(this.pnlButtons);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin          = new System.Windows.Forms.Padding(2);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "CommonFilterDlg";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "CommonFilterDlg";
     this.pnlButtons.ResumeLayout(false);
     this.pnlClient.ResumeLayout(false);
     this.tabsFilters.ResumeLayout(false);
     this.tsFieldsFilter.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 //constructor
 public Circle(int LeftPosition, int TopPosition, int Width, int Height, Color ShapeColor, int Speed, System.Windows.Forms.Panel drwPanel)
 {
     //fill the variable values with our incoming data
     leftPosition = LeftPosition;
     topPosition  = TopPosition;
     width        = Width;
     height       = Height;
     shapeColor   = ShapeColor;
     speed        = Speed;
     DrwPanel     = drwPanel;
 }//end constructor
Esempio n. 35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Panel panel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditarFornecedor));
     this.pictureBox3    = new System.Windows.Forms.PictureBox();
     this.button2        = new System.Windows.Forms.Button();
     this.comboBox1      = new System.Windows.Forms.ComboBox();
     this.pictureBox2    = new System.Windows.Forms.PictureBox();
     this.button1        = new System.Windows.Forms.Button();
     this.label6         = new System.Windows.Forms.Label();
     this.textBox4       = new System.Windows.Forms.TextBox();
     this.label3         = new System.Windows.Forms.Label();
     this.textBox3       = new System.Windows.Forms.TextBox();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.label8         = new System.Windows.Forms.Label();
     this.label9         = new System.Windows.Forms.Label();
     this.textBox9       = new System.Windows.Forms.TextBox();
     this.label4         = new System.Windows.Forms.Label();
     this.label5         = new System.Windows.Forms.Label();
     this.textBox5       = new System.Windows.Forms.TextBox();
     this.label1         = new System.Windows.Forms.Label();
     this.textBox1       = new System.Windows.Forms.TextBox();
     this.label2         = new System.Windows.Forms.Label();
     this.textBox2       = new System.Windows.Forms.TextBox();
     this.pictureBox1    = new System.Windows.Forms.PictureBox();
     panel1 = new System.Windows.Forms.Panel();
     panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     panel1.Anchor       = System.Windows.Forms.AnchorStyles.None;
     panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel1.BackColor    = System.Drawing.Color.LightGray;
     panel1.BorderStyle  = System.Windows.Forms.BorderStyle.Fixed3D;
     panel1.Controls.Add(this.pictureBox3);
     panel1.Controls.Add(this.button2);
     panel1.Controls.Add(this.comboBox1);
     panel1.Controls.Add(this.pictureBox2);
     panel1.Controls.Add(this.button1);
     panel1.Controls.Add(this.label6);
     panel1.Controls.Add(this.textBox4);
     panel1.Controls.Add(this.label3);
     panel1.Controls.Add(this.textBox3);
     panel1.Controls.Add(this.maskedTextBox1);
     panel1.Controls.Add(this.label8);
     panel1.Controls.Add(this.label9);
     panel1.Controls.Add(this.textBox9);
     panel1.Controls.Add(this.label4);
     panel1.Controls.Add(this.label5);
     panel1.Controls.Add(this.textBox5);
     panel1.Controls.Add(this.label1);
     panel1.Controls.Add(this.textBox1);
     panel1.Controls.Add(this.label2);
     panel1.Controls.Add(this.textBox2);
     panel1.Location = new System.Drawing.Point(369, 164);
     panel1.Name     = "panel1";
     panel1.Size     = new System.Drawing.Size(633, 372);
     panel1.TabIndex = 7;
     //
     // pictureBox3
     //
     this.pictureBox3.BackColor = System.Drawing.Color.White;
     this.pictureBox3.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location  = new System.Drawing.Point(581, 25);
     this.pictureBox3.Name      = "pictureBox3";
     this.pictureBox3.Size      = new System.Drawing.Size(29, 27);
     this.pictureBox3.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox3.TabIndex  = 57;
     this.pictureBox3.TabStop   = false;
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.White;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.ForeColor = System.Drawing.Color.Red;
     this.button2.Location  = new System.Drawing.Point(516, 18);
     this.button2.Margin    = new System.Windows.Forms.Padding(10);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(97, 39);
     this.button2.TabIndex  = 56;
     this.button2.Text      = "Cancelar";
     this.button2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button2.UseVisualStyleBackColor = false;
     //
     // comboBox1
     //
     this.comboBox1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(392, 226);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(121, 24);
     this.comboBox1.TabIndex = 40;
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.White;
     this.pictureBox2.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location  = new System.Drawing.Point(593, 316);
     this.pictureBox2.Name      = "pictureBox2";
     this.pictureBox2.Size      = new System.Drawing.Size(20, 21);
     this.pictureBox2.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex  = 33;
     this.pictureBox2.TabStop   = false;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.White;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.button1.Location  = new System.Drawing.Point(521, 307);
     this.button1.Name      = "button1";
     this.button1.Padding   = new System.Windows.Forms.Padding(1);
     this.button1.Size      = new System.Drawing.Size(97, 39);
     this.button1.TabIndex  = 32;
     this.button1.Text      = "Salvar";
     this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.UseVisualStyleBackColor = false;
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location  = new System.Drawing.Point(167, 192);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(51, 20);
     this.label6.TabIndex  = 39;
     this.label6.Text      = "Bairro:";
     //
     // textBox4
     //
     this.textBox4.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox4.Location = new System.Drawing.Point(224, 190);
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new System.Drawing.Size(262, 22);
     this.textBox4.TabIndex = 38;
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location  = new System.Drawing.Point(17, 192);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(62, 20);
     this.label3.TabIndex  = 37;
     this.label3.Text      = "Número:";
     //
     // textBox3
     //
     this.textBox3.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location = new System.Drawing.Point(89, 190);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(66, 22);
     this.textBox3.TabIndex = 36;
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.maskedTextBox1.Location = new System.Drawing.Point(89, 269);
     this.maskedTextBox1.Mask     = "(00) 0 0000-0000";
     this.maskedTextBox1.Name     = "maskedTextBox1";
     this.maskedTextBox1.Size     = new System.Drawing.Size(100, 22);
     this.maskedTextBox1.TabIndex = 31;
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location  = new System.Drawing.Point(43, 152);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(37, 20);
     this.label8.TabIndex  = 28;
     this.label8.Text      = "Rua:";
     //
     // label9
     //
     this.label9.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location  = new System.Drawing.Point(14, 271);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(66, 20);
     this.label9.TabIndex  = 27;
     this.label9.Text      = "Telefone:";
     //
     // textBox9
     //
     this.textBox9.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox9.Location = new System.Drawing.Point(89, 150);
     this.textBox9.Name     = "textBox9";
     this.textBox9.Size     = new System.Drawing.Size(529, 22);
     this.textBox9.TabIndex = 25;
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location  = new System.Drawing.Point(330, 230);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(56, 20);
     this.label4.TabIndex  = 23;
     this.label4.Text      = "Estado:";
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location  = new System.Drawing.Point(24, 230);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(56, 20);
     this.label5.TabIndex  = 22;
     this.label5.Text      = "Cidade:";
     //
     // textBox5
     //
     this.textBox5.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox5.Location = new System.Drawing.Point(89, 228);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(235, 22);
     this.textBox5.TabIndex = 20;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(33, 70);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(50, 20);
     this.label1.TabIndex  = 15;
     this.label1.Text      = "Nome:";
     //
     // textBox1
     //
     this.textBox1.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(89, 70);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(529, 22);
     this.textBox1.TabIndex = 13;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(33, 115);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(47, 20);
     this.label2.TabIndex  = 16;
     this.label2.Text      = "CNPJ:";
     //
     // textBox2
     //
     this.textBox2.Font     = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(89, 113);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(235, 22);
     this.textBox2.TabIndex = 14;
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(1, -7);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(1369, 715);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 8;
     this.pictureBox1.TabStop  = false;
     //
     // EditarFornecedor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1370, 701);
     this.Controls.Add(panel1);
     this.Controls.Add(this.pictureBox1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "EditarFornecedor";
     this.Text        = "Editar Fornecedor";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 36
0
        /// <summary>
        /// This method is required for Windows Forms designer support.
        /// Do not change the method contents inside the source code editor. The Forms designer might
        /// not be able to load this method if it was changed manually.
        /// </summary>

        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.pnlBody      = new System.Windows.Forms.Panel();
            this.button5      = new System.Windows.Forms.Button();
            this.button4      = new System.Windows.Forms.Button();
            this.button3      = new System.Windows.Forms.Button();
            this.button2      = new System.Windows.Forms.Button();
            this.button1      = new System.Windows.Forms.Button();
            this.pictureBox1  = new System.Windows.Forms.PictureBox();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.richTextBox2 = new System.Windows.Forms.RichTextBox();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            //
            // pnlBody
            //
            this.pnlBody.Location      = new System.Drawing.Point(214, 104);
            this.pnlBody.Margin        = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.pnlBody.Name          = "pnlBody";
            this.pnlBody.Size          = new System.Drawing.Size(1242, 648);
            this.pnlBody.TabIndex      = 0;
            this.pnlBody.UseWaitCursor = true;
            this.pnlBody.Paint        += new System.Windows.Forms.PaintEventHandler(this.PnlBodyPaint);
            //
            // button5
            //
            this.button5.Location = new System.Drawing.Point(31, 426);
            this.button5.Margin   = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.button5.Name     = "button5";
            this.button5.Size     = new System.Drawing.Size(143, 43);
            this.button5.TabIndex = 10;
            this.button5.Text     = "button5";
            this.button5.UseVisualStyleBackColor = true;
            this.button5.UseWaitCursor           = true;
            this.button5.Click += new System.EventHandler(this.Button5Click);
            //
            // button4
            //
            this.button4.BackColor = System.Drawing.Color.WhiteSmoke;
            this.button4.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
            this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button4.Location  = new System.Drawing.Point(31, 225);
            this.button4.Margin    = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.button4.Name      = "button4";
            this.button4.Size      = new System.Drawing.Size(143, 43);
            this.button4.TabIndex  = 9;
            this.button4.Text      = "Set Partylist";
            this.button4.UseVisualStyleBackColor = false;
            this.button4.UseWaitCursor           = true;
            this.button4.Click += new System.EventHandler(this.Button4Click);
            //
            // button3
            //
            this.button3.BackColor = System.Drawing.Color.WhiteSmoke;
            this.button3.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
            this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button3.Location  = new System.Drawing.Point(31, 184);
            this.button3.Margin    = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.button3.Name      = "button3";
            this.button3.Size      = new System.Drawing.Size(143, 43);
            this.button3.TabIndex  = 8;
            this.button3.Text      = "Set Candidate";
            this.button3.UseVisualStyleBackColor = false;
            this.button3.UseWaitCursor           = true;
            this.button3.Click += new System.EventHandler(this.Button3Click);
            //
            // button2
            //
            this.button2.BackColor = System.Drawing.Color.WhiteSmoke;
            this.button2.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
            this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button2.Location  = new System.Drawing.Point(31, 365);
            this.button2.Margin    = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.button2.Name      = "button2";
            this.button2.Size      = new System.Drawing.Size(143, 43);
            this.button2.TabIndex  = 7;
            this.button2.Text      = "View Student";
            this.button2.UseVisualStyleBackColor = false;
            this.button2.UseWaitCursor           = true;
            this.button2.Click += new System.EventHandler(this.Button2Click);
            //
            // button1
            //
            this.button1.BackColor = System.Drawing.Color.WhiteSmoke;
            this.button1.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button1.Location  = new System.Drawing.Point(31, 324);
            this.button1.Margin    = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.button1.Name      = "button1";
            this.button1.Size      = new System.Drawing.Size(143, 43);
            this.button1.TabIndex  = 6;
            this.button1.Text      = "View Candidate";
            this.button1.UseVisualStyleBackColor = false;
            this.button1.UseWaitCursor           = true;
            this.button1.Click += new System.EventHandler(this.Button1Click);
            //
            // pictureBox1
            //
            this.pictureBox1.Image         = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location      = new System.Drawing.Point(0, 0);
            this.pictureBox1.Margin        = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.pictureBox1.Name          = "pictureBox1";
            this.pictureBox1.Size          = new System.Drawing.Size(1456, 109);
            this.pictureBox1.TabIndex      = 11;
            this.pictureBox1.TabStop       = false;
            this.pictureBox1.UseWaitCursor = true;
            this.pictureBox1.Click        += new System.EventHandler(this.PictureBox1Click);
            //
            // richTextBox1
            //
            this.richTextBox1.BackColor     = System.Drawing.Color.DarkRed;
            this.richTextBox1.BorderStyle   = System.Windows.Forms.BorderStyle.None;
            this.richTextBox1.Font          = new System.Drawing.Font("Agency FB", 17F);
            this.richTextBox1.ForeColor     = System.Drawing.Color.White;
            this.richTextBox1.Location      = new System.Drawing.Point(31, 154);
            this.richTextBox1.Name          = "richTextBox1";
            this.richTextBox1.Size          = new System.Drawing.Size(143, 31);
            this.richTextBox1.TabIndex      = 14;
            this.richTextBox1.Text          = " SET";
            this.richTextBox1.UseWaitCursor = true;
            //
            // richTextBox2
            //
            this.richTextBox2.BackColor     = System.Drawing.Color.DarkRed;
            this.richTextBox2.BorderStyle   = System.Windows.Forms.BorderStyle.None;
            this.richTextBox2.Font          = new System.Drawing.Font("Agency FB", 17F);
            this.richTextBox2.ForeColor     = System.Drawing.Color.White;
            this.richTextBox2.Location      = new System.Drawing.Point(31, 294);
            this.richTextBox2.Name          = "richTextBox2";
            this.richTextBox2.Size          = new System.Drawing.Size(143, 31);
            this.richTextBox2.TabIndex      = 15;
            this.richTextBox2.Text          = " VIEW";
            this.richTextBox2.UseWaitCursor = true;
            //
            // MainForm
            //
            this.AutoScaleDimensions   = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor             = System.Drawing.Color.White;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.ClientSize            = new System.Drawing.Size(1199, 561);
            this.Controls.Add(this.richTextBox2);
            this.Controls.Add(this.richTextBox1);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.button5);
            this.Controls.Add(this.button4);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.pnlBody);
            this.Font          = new System.Drawing.Font("Adobe Gothic Std B", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
            this.Margin        = new System.Windows.Forms.Padding(4, 3, 4, 3);
            this.Name          = "MainForm";
            this.Text          = "COMELEC";
            this.UseWaitCursor = true;
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            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.Windows.Forms.Panel panel1;
            System.Windows.Forms.Panel panel2;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormGitReview));
            this.Save                        = new System.Windows.Forms.Button();
            this.lnkGitReviewHelp            = new System.Windows.Forms.LinkLabel();
            this.splitContainer1             = new System.Windows.Forms.SplitContainer();
            this._NO_TRANSLATE_GitReviewEdit = new GitUI.Editor.FileViewer();
            this.label1                      = new System.Windows.Forms.TextBox();
            panel1 = new System.Windows.Forms.Panel();
            panel2 = new System.Windows.Forms.Panel();
            panel1.SuspendLayout();
            panel2.SuspendLayout();
#if Mono212Released //waiting for mono 2.12
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
#endif
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.SuspendLayout();
            //
            // panel1
            //
            panel1.Controls.Add(this.Save);
            panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
            panel1.Location = new System.Drawing.Point(0, 480);
            panel1.Name     = "panel1";
            panel1.Size     = new System.Drawing.Size(241, 39);
            panel1.TabIndex = 5;
            //
            // Save
            //
            this.Save.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.Save.Location = new System.Drawing.Point(78, 11);
            this.Save.Name     = "Save";
            this.Save.Size     = new System.Drawing.Size(160, 25);
            this.Save.TabIndex = 1;
            this.Save.Text     = "Save";
            this.Save.UseVisualStyleBackColor = true;
            this.Save.Click += new System.EventHandler(this.SaveClick);
            //
            // panel2
            //
            panel2.Controls.Add(this.lnkGitReviewHelp);
            panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
            panel2.Location = new System.Drawing.Point(0, 458);
            panel2.Name     = "panel2";
            panel2.Size     = new System.Drawing.Size(241, 22);
            panel2.TabIndex = 7;
            //
            // lnkGitReviewHelp
            //
            this.lnkGitReviewHelp.AutoSize     = true;
            this.lnkGitReviewHelp.Dock         = System.Windows.Forms.DockStyle.Right;
            this.lnkGitReviewHelp.Location     = new System.Drawing.Point(93, 0);
            this.lnkGitReviewHelp.Name         = "lnkGitReviewHelp";
            this.lnkGitReviewHelp.Size         = new System.Drawing.Size(148, 15);
            this.lnkGitReviewHelp.TabIndex     = 6;
            this.lnkGitReviewHelp.TabStop      = true;
            this.lnkGitReviewHelp.Text         = "GitHub page for git-review";
            this.lnkGitReviewHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGitReviewPatterns_LinkClicked);
            //
            // splitContainer1
            //
            this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer1.Location   = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name       = "splitContainer1";
            //
            // splitContainer1.Panel1
            //
            this.splitContainer1.Panel1.Controls.Add(this._NO_TRANSLATE_GitReviewEdit);
            //
            // splitContainer1.Panel2
            //
            this.splitContainer1.Panel2.Controls.Add(this.label1);
            this.splitContainer1.Panel2.Controls.Add(panel2);
            this.splitContainer1.Panel2.Controls.Add(panel1);
            this.splitContainer1.Size             = new System.Drawing.Size(634, 519);
            this.splitContainer1.SplitterDistance = 389;
            this.splitContainer1.TabIndex         = 0;
            //
            // _NO_TRANSLATE_GitReviewEdit
            //
            this._NO_TRANSLATE_GitReviewEdit.Dock       = System.Windows.Forms.DockStyle.Fill;
            this._NO_TRANSLATE_GitReviewEdit.IsReadOnly = false;
            this._NO_TRANSLATE_GitReviewEdit.Location   = new System.Drawing.Point(0, 0);
            this._NO_TRANSLATE_GitReviewEdit.Margin     = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this._NO_TRANSLATE_GitReviewEdit.Name       = "_NO_TRANSLATE_GitReviewEdit";
            this._NO_TRANSLATE_GitReviewEdit.Size       = new System.Drawing.Size(389, 519);
            this._NO_TRANSLATE_GitReviewEdit.TabIndex   = 0;
            //
            // label1
            //
            this.label1.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.label1.Location   = new System.Drawing.Point(0, 0);
            this.label1.Multiline  = true;
            this.label1.Name       = "label1";
            this.label1.ReadOnly   = true;
            this.label1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.label1.Size       = new System.Drawing.Size(241, 458);
            this.label1.TabIndex   = 4;
            this.label1.Text       = resources.GetString("label1.Text");
            this.label1.WordWrap   = false;
            //
            // FormGitReview
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
            this.ClientSize          = new System.Drawing.Size(634, 519);
            this.Controls.Add(this.splitContainer1);
            this.Name          = "FormGitReview";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text          = "Edit .gitreview";
            this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormGitReviewFormClosing);
            this.Load         += new System.EventHandler(this.FormGitIgnoreLoad);
            panel1.ResumeLayout(false);
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.Panel2.PerformLayout();
#if Mono212Released //waiting for mono 2.12
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
#endif
            this.splitContainer1.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.panel4 = new System.Windows.Forms.Panel();
     this.ExQnList = new System.Windows.Forms.ListBox();
     this.txtQnContent = new System.Windows.Forms.TextBox();
     this.txtQnId = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.panel3 = new System.Windows.Forms.Panel();
     this.label8 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.txtExDate = new System.Windows.Forms.TextBox();
     this.btnClose = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.txtExDuration = new System.Windows.Forms.TextBox();
     this.txtExDesc = new System.Windows.Forms.TextBox();
     this.cmBoxExId = new System.Windows.Forms.ComboBox();
     this.cmBoxCrsId = new System.Windows.Forms.ComboBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.sqlCommand1 = new System.Data.SqlClient.SqlCommand();
     this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
     this.txtQnType = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.btnAddQn = new System.Windows.Forms.Button();
     this.btnDeleteQn = new System.Windows.Forms.Button();
     this.panel4.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.panel4.Controls.Add(this.btnDeleteQn);
     this.panel4.Controls.Add(this.btnAddQn);
     this.panel4.Controls.Add(this.txtQnType);
     this.panel4.Controls.Add(this.label11);
     this.panel4.Controls.Add(this.ExQnList);
     this.panel4.Controls.Add(this.txtQnContent);
     this.panel4.Controls.Add(this.txtQnId);
     this.panel4.Controls.Add(this.label10);
     this.panel4.Controls.Add(this.label9);
     this.panel4.Location = new System.Drawing.Point(721, 76);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(473, 381);
     this.panel4.TabIndex = 66;
     //
     // ExQnList
     //
     this.ExQnList.BackColor = System.Drawing.SystemColors.Control;
     this.ExQnList.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ExQnList.FormattingEnabled = true;
     this.ExQnList.ItemHeight = 16;
     this.ExQnList.Location = new System.Drawing.Point(16, 10);
     this.ExQnList.Name = "ExQnList";
     this.ExQnList.Size = new System.Drawing.Size(240, 292);
     this.ExQnList.TabIndex = 5;
     this.ExQnList.SelectedIndexChanged += new System.EventHandler(this.ExQnList_SelectedIndexChanged);
     //
     // txtQnContent
     //
     this.txtQnContent.Location = new System.Drawing.Point(313, 232);
     this.txtQnContent.Name = "txtQnContent";
     this.txtQnContent.Size = new System.Drawing.Size(157, 20);
     this.txtQnContent.TabIndex = 4;
     //
     // txtQnId
     //
     this.txtQnId.Location = new System.Drawing.Point(329, 47);
     this.txtQnId.Name = "txtQnId";
     this.txtQnId.Size = new System.Drawing.Size(101, 20);
     this.txtQnId.TabIndex = 3;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(326, 185);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(117, 15);
     this.label10.TabIndex = 2;
     this.label10.Text = "Question Content";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(326, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(82, 15);
     this.label9.TabIndex = 1;
     this.label9.Text = "Question ID";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.panel3.Controls.Add(this.label8);
     this.panel3.Location = new System.Drawing.Point(827, 12);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(229, 46);
     this.panel3.TabIndex = 65;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label8.Location = new System.Drawing.Point(24, 8);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(159, 25);
     this.label8.TabIndex = 0;
     this.label8.Text = "Exam Question";
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.panel2.Controls.Add(this.label6);
     this.panel2.Location = new System.Drawing.Point(340, 12);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(229, 46);
     this.panel2.TabIndex = 64;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.label6.Location = new System.Drawing.Point(40, 11);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(138, 25);
     this.label6.TabIndex = 0;
     this.label6.Text = "Exam Details";
     //
     // txtExDate
     //
     this.txtExDate.Location = new System.Drawing.Point(457, 310);
     this.txtExDate.Name = "txtExDate";
     this.txtExDate.Size = new System.Drawing.Size(169, 20);
     this.txtExDate.TabIndex = 63;
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.btnClose.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.btnClose.Location = new System.Drawing.Point(584, 472);
     this.btnClose.Margin = new System.Windows.Forms.Padding(2);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(130, 41);
     this.btnClose.TabIndex = 62;
     this.btnClose.Text = "Back";
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.label5.Location = new System.Drawing.Point(294, 311);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 17);
     this.label5.TabIndex = 61;
     this.label5.Text = "Exam Date";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.label4.Location = new System.Drawing.Point(281, 249);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(113, 17);
     this.label4.TabIndex = 60;
     this.label4.Text = "Exam Duration";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.label7.Location = new System.Drawing.Point(281, 196);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(133, 17);
     this.label7.TabIndex = 59;
     this.label7.Text = "Exam Description";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.label3.Location = new System.Drawing.Point(300, 142);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(66, 17);
     this.label3.TabIndex = 58;
     this.label3.Text = "Exam ID";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.label2.Location = new System.Drawing.Point(300, 83);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(79, 17);
     this.label2.TabIndex = 57;
     this.label2.Text = "Course ID";
     //
     // txtExDuration
     //
     this.txtExDuration.Location = new System.Drawing.Point(457, 249);
     this.txtExDuration.Name = "txtExDuration";
     this.txtExDuration.Size = new System.Drawing.Size(169, 20);
     this.txtExDuration.TabIndex = 56;
     //
     // txtExDesc
     //
     this.txtExDesc.Location = new System.Drawing.Point(457, 193);
     this.txtExDesc.Name = "txtExDesc";
     this.txtExDesc.Size = new System.Drawing.Size(169, 20);
     this.txtExDesc.TabIndex = 55;
     //
     // cmBoxExId
     //
     this.cmBoxExId.FormattingEnabled = true;
     this.cmBoxExId.Location = new System.Drawing.Point(457, 138);
     this.cmBoxExId.Name = "cmBoxExId";
     this.cmBoxExId.Size = new System.Drawing.Size(169, 21);
     this.cmBoxExId.TabIndex = 54;
     this.cmBoxExId.SelectedIndexChanged += new System.EventHandler(this.cmBoxExId_SelectedIndexChanged);
     //
     // cmBoxCrsId
     //
     this.cmBoxCrsId.FormattingEnabled = true;
     this.cmBoxCrsId.Location = new System.Drawing.Point(457, 82);
     this.cmBoxCrsId.Name = "cmBoxCrsId";
     this.cmBoxCrsId.Size = new System.Drawing.Size(169, 21);
     this.cmBoxCrsId.TabIndex = 53;
     this.cmBoxCrsId.SelectedIndexChanged += new System.EventHandler(this.cmBoxCrsId_SelectedIndexChanged);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.panel1.Controls.Add(this.btnDelete);
     this.panel1.Controls.Add(this.btnEdit);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Margin = new System.Windows.Forms.Padding(2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(158, 524);
     this.panel1.TabIndex = 52;
     //
     // btnDelete
     //
     this.btnDelete.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.btnDelete.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.btnDelete.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.btnDelete.Location = new System.Drawing.Point(11, 261);
     this.btnDelete.Margin = new System.Windows.Forms.Padding(2);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(130, 41);
     this.btnDelete.TabIndex = 10;
     this.btnDelete.Text = "Delete";
     this.btnDelete.UseVisualStyleBackColor = false;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.btnEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.btnEdit.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.btnEdit.Location = new System.Drawing.Point(11, 145);
     this.btnEdit.Margin = new System.Windows.Forms.Padding(2);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(130, 41);
     this.btnEdit.TabIndex = 9;
     this.btnEdit.Text = "Edit";
     this.btnEdit.UseVisualStyleBackColor = false;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.label1.ForeColor = System.Drawing.SystemColors.Control;
     this.label1.Location = new System.Drawing.Point(2, 53);
     this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(130, 17);
     this.label1.TabIndex = 6;
     this.label1.Text = "Exam Dashboard";
     //
     // sqlCommand1
     //
     this.sqlCommand1.Connection = this.sqlConnection1;
     //
     // sqlConnection1
     //
     this.sqlConnection1.ConnectionString = "Data Source=mssql-21280-0.cloudclusters.net,21280;Initial Catalog=examination2019" +
     ";User ID=team;Password=Team2021";
     this.sqlConnection1.FireInfoMessageEventOnUserErrors = false;
     //
     // txtQnType
     //
     this.txtQnType.Location = new System.Drawing.Point(329, 139);
     this.txtQnType.Name = "txtQnType";
     this.txtQnType.Size = new System.Drawing.Size(101, 20);
     this.txtQnType.TabIndex = 7;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(326, 104);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(98, 15);
     this.label11.TabIndex = 6;
     this.label11.Text = "Question Type";
     //
     // btnAddQn
     //
     this.btnAddQn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.btnAddQn.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.btnAddQn.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.btnAddQn.Location = new System.Drawing.Point(106, 320);
     this.btnAddQn.Margin = new System.Windows.Forms.Padding(2);
     this.btnAddQn.Name = "btnAddQn";
     this.btnAddQn.Size = new System.Drawing.Size(130, 41);
     this.btnAddQn.TabIndex = 63;
     this.btnAddQn.Text = "Add";
     this.btnAddQn.UseVisualStyleBackColor = false;
     this.btnAddQn.Click += new System.EventHandler(this.btnAddQn_Click);
     //
     // btnDeleteQn
     //
     this.btnDeleteQn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(55)))), ((int)(((byte)(79)))));
     this.btnDeleteQn.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
     this.btnDeleteQn.ForeColor = System.Drawing.SystemColors.ButtonFace;
     this.btnDeleteQn.Location = new System.Drawing.Point(300, 320);
     this.btnDeleteQn.Margin = new System.Windows.Forms.Padding(2);
     this.btnDeleteQn.Name = "btnDeleteQn";
     this.btnDeleteQn.Size = new System.Drawing.Size(130, 41);
     this.btnDeleteQn.TabIndex = 64;
     this.btnDeleteQn.Text = "Delete";
     this.btnDeleteQn.UseVisualStyleBackColor = false;
     this.btnDeleteQn.Click += new System.EventHandler(this.btnDeleteQn_Click);
     //
     // ManageExam
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1204, 524);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.txtExDate);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtExDuration);
     this.Controls.Add(this.txtExDesc);
     this.Controls.Add(this.cmBoxExId);
     this.Controls.Add(this.cmBoxCrsId);
     this.Controls.Add(this.panel1);
     this.Name = "ManageExam";
     this.Text = "ManageExam";
     this.Load += new System.EventHandler(this.ManageExam_Load);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GameForm));
     this.panel1        = new System.Windows.Forms.Panel();
     this.lblTimer      = new System.Windows.Forms.Label();
     this.btnStart      = new System.Windows.Forms.Button();
     this.lblMines      = new System.Windows.Forms.Label();
     this.btnHighScores = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.AutoSize = true;
     this.panel1.Location = new System.Drawing.Point(16, 40);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(256, 224);
     this.panel1.TabIndex = 0;
     //
     // lblTimer
     //
     this.lblTimer.BackColor = System.Drawing.SystemColors.ControlText;
     this.lblTimer.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.lblTimer.ForeColor = System.Drawing.Color.Red;
     this.lblTimer.Location  = new System.Drawing.Point(211, 8);
     this.lblTimer.Name      = "lblTimer";
     this.lblTimer.Size      = new System.Drawing.Size(56, 23);
     this.lblTimer.TabIndex  = 1;
     this.lblTimer.Text      = "0";
     this.lblTimer.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(84, 8);
     this.btnStart.Name     = "btnStart";
     this.btnStart.Size     = new System.Drawing.Size(112, 23);
     this.btnStart.TabIndex = 2;
     this.btnStart.Text     = "Start";
     this.btnStart.UseVisualStyleBackColor = true;
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // lblMines
     //
     this.lblMines.BackColor = System.Drawing.SystemColors.ControlText;
     this.lblMines.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     this.lblMines.ForeColor = System.Drawing.Color.Red;
     this.lblMines.Location  = new System.Drawing.Point(16, 8);
     this.lblMines.Name      = "lblMines";
     this.lblMines.Size      = new System.Drawing.Size(56, 23);
     this.lblMines.TabIndex  = 3;
     this.lblMines.Text      = "0";
     this.lblMines.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnHighScores
     //
     this.btnHighScores.Location = new System.Drawing.Point(105, 276);
     this.btnHighScores.Name     = "btnHighScores";
     this.btnHighScores.Size     = new System.Drawing.Size(75, 23);
     this.btnHighScores.TabIndex = 4;
     this.btnHighScores.Text     = "High Scores";
     this.btnHighScores.UseVisualStyleBackColor = true;
     this.btnHighScores.Click += new System.EventHandler(this.btnHighScores_Click);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.ClientSize          = new System.Drawing.Size(292, 311);
     this.Controls.Add(this.btnHighScores);
     this.Controls.Add(this.lblMines);
     this.Controls.Add(this.btnStart);
     this.Controls.Add(this.lblTimer);
     this.Controls.Add(this.panel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Form1";
     this.Text = "MineSweeper";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.Windows.Forms.Label label1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FwStylesDlg));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanelStyles;
     System.Windows.Forms.Panel panel2;
     System.Windows.Forms.Panel panel1;
     this.m_btnAdd               = new System.Windows.Forms.Button();
     this.m_btnCopy              = new System.Windows.Forms.Button();
     this.m_btnDelete            = new System.Windows.Forms.Button();
     this.m_pnlTypesCombo        = new System.Windows.Forms.Panel();
     this.m_cboTypes             = new System.Windows.Forms.ComboBox();
     this.m_lblTypes             = new System.Windows.Forms.Label();
     this.m_lstStyles            = new SIL.FieldWorks.Common.Controls.CaseSensitiveListBox();
     this.contextMenuStyles      = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.helpToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.m_btnOk                         = new System.Windows.Forms.Button();
     this.m_btnCancel                     = new System.Windows.Forms.Button();
     this.m_btnHelp                       = new SIL.FieldWorks.Common.Controls.FwHelpButton();
     this.m_tabControl                    = new System.Windows.Forms.TabControl();
     this.m_tbGeneral                     = new System.Windows.Forms.TabPage();
     this.m_generalTab                    = new SIL.FieldWorks.FwCoreDlgControls.FwGeneralTab();
     this.m_tbFont                        = new System.Windows.Forms.TabPage();
     this.m_fontTab                       = new SIL.FieldWorks.FwCoreDlgControls.FwFontTab();
     this.m_tbParagraph                   = new System.Windows.Forms.TabPage();
     this.m_paragraphTab                  = new SIL.FieldWorks.FwCoreDlgControls.FwParagraphTab();
     this.m_tbBullets                     = new System.Windows.Forms.TabPage();
     this.m_bulletsTab                    = new SIL.FieldWorks.FwCoreDlgControls.FwBulletsTab();
     this.m_tbBorder                      = new System.Windows.Forms.TabPage();
     this.m_borderTab                     = new SIL.FieldWorks.FwCoreDlgControls.FwBorderTab();
     this.m_contextMenuAddStyle           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.paragraphStyleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.characterStyleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     label1 = new System.Windows.Forms.Label();
     tableLayoutPanelStyles = new System.Windows.Forms.TableLayoutPanel();
     panel2 = new System.Windows.Forms.Panel();
     panel1 = new System.Windows.Forms.Panel();
     tableLayoutPanelStyles.SuspendLayout();
     panel2.SuspendLayout();
     this.m_pnlTypesCombo.SuspendLayout();
     panel1.SuspendLayout();
     this.contextMenuStyles.SuspendLayout();
     this.m_tabControl.SuspendLayout();
     this.m_tbGeneral.SuspendLayout();
     this.m_tbFont.SuspendLayout();
     this.m_tbParagraph.SuspendLayout();
     this.m_tbBullets.SuspendLayout();
     this.m_tbBorder.SuspendLayout();
     this.m_contextMenuAddStyle.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     resources.ApplyResources(label1, "label1");
     label1.Name = "label1";
     //
     // tableLayoutPanelStyles
     //
     resources.ApplyResources(tableLayoutPanelStyles, "tableLayoutPanelStyles");
     tableLayoutPanelStyles.Controls.Add(panel2, 0, 0);
     tableLayoutPanelStyles.Controls.Add(this.m_pnlTypesCombo, 0, 1);
     tableLayoutPanelStyles.Name = "tableLayoutPanelStyles";
     //
     // panel2
     //
     panel2.Controls.Add(this.m_btnAdd);
     panel2.Controls.Add(this.m_btnCopy);
     panel2.Controls.Add(this.m_btnDelete);
     resources.ApplyResources(panel2, "panel2");
     panel2.Name = "panel2";
     //
     // m_btnAdd
     //
     resources.ApplyResources(this.m_btnAdd, "m_btnAdd");
     this.m_btnAdd.Name = "m_btnAdd";
     this.m_btnAdd.UseVisualStyleBackColor = true;
     this.m_btnAdd.Click += new System.EventHandler(this.m_btnAdd_Click);
     //
     // m_btnCopy
     //
     resources.ApplyResources(this.m_btnCopy, "m_btnCopy");
     this.m_btnCopy.Name = "m_btnCopy";
     this.m_btnCopy.UseVisualStyleBackColor = true;
     this.m_btnCopy.Click += new System.EventHandler(this.m_btnCopy_Click);
     //
     // m_btnDelete
     //
     resources.ApplyResources(this.m_btnDelete, "m_btnDelete");
     this.m_btnDelete.Name = "m_btnDelete";
     this.m_btnDelete.UseVisualStyleBackColor = true;
     this.m_btnDelete.Click += new System.EventHandler(this.m_btnDelete_Click);
     //
     // m_pnlTypesCombo
     //
     this.m_pnlTypesCombo.Controls.Add(this.m_cboTypes);
     this.m_pnlTypesCombo.Controls.Add(this.m_lblTypes);
     resources.ApplyResources(this.m_pnlTypesCombo, "m_pnlTypesCombo");
     this.m_pnlTypesCombo.Name = "m_pnlTypesCombo";
     //
     // m_cboTypes
     //
     this.m_cboTypes.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cboTypes.FormattingEnabled = true;
     this.m_cboTypes.Items.AddRange(new object[] {
         resources.GetString("m_cboTypes.Items"),
         resources.GetString("m_cboTypes.Items1"),
         resources.GetString("m_cboTypes.Items2"),
         resources.GetString("m_cboTypes.Items3"),
         resources.GetString("m_cboTypes.Items4")
     });
     resources.ApplyResources(this.m_cboTypes, "m_cboTypes");
     this.m_cboTypes.Name = "m_cboTypes";
     this.m_cboTypes.SelectedIndexChanged += new System.EventHandler(this.m_cboTypes_SelectedIndexChanged);
     //
     // m_lblTypes
     //
     resources.ApplyResources(this.m_lblTypes, "m_lblTypes");
     this.m_lblTypes.Name = "m_lblTypes";
     //
     // panel1
     //
     panel1.Controls.Add(this.m_lstStyles);
     panel1.Controls.Add(tableLayoutPanelStyles);
     resources.ApplyResources(panel1, "panel1");
     panel1.Name = "panel1";
     //
     // m_lstStyles
     //
     this.m_lstStyles.ContextMenuStrip = this.contextMenuStyles;
     resources.ApplyResources(this.m_lstStyles, "m_lstStyles");
     this.m_lstStyles.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.m_lstStyles.FormattingEnabled = true;
     this.m_lstStyles.Name       = "m_lstStyles";
     this.m_lstStyles.Sorted     = true;
     this.m_lstStyles.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.m_lstStyles_MouseUp);
     this.m_lstStyles.MouseDown += new System.Windows.Forms.MouseEventHandler(this.m_lstStyles_MouseDown);
     //
     // contextMenuStyles
     //
     this.contextMenuStyles.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.helpToolStripMenuItem, this.resetToolStripMenuItem
     });
     this.contextMenuStyles.Name = "contextMenuStyles";
     resources.ApplyResources(this.contextMenuStyles, "contextMenuStyles");
     this.contextMenuStyles.Opening += new System.ComponentModel.CancelEventHandler(contextMenuStyles_Opening);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
     this.helpToolStripMenuItem.Click += new System.EventHandler(this.m_btnHelp_Click);
     //
     // resetToolStripMenuItem
     //
     this.resetToolStripMenuItem.Name = "resetToolStripMenuItem";
     resources.ApplyResources(this.resetToolStripMenuItem, "resetToolStripMenuItem");
     this.resetToolStripMenuItem.Click += new System.EventHandler(this.mnuReset_Click);
     //
     // m_btnOk
     //
     resources.ApplyResources(this.m_btnOk, "m_btnOk");
     this.m_btnOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.m_btnOk.Name                    = "m_btnOk";
     this.m_btnOk.UseVisualStyleBackColor = true;
     this.m_btnOk.Click                  += new System.EventHandler(this.m_btnOk_Click);
     //
     // m_btnCancel
     //
     resources.ApplyResources(this.m_btnCancel, "m_btnCancel");
     this.m_btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnCancel.Name                    = "m_btnCancel";
     this.m_btnCancel.UseVisualStyleBackColor = true;
     //
     // m_btnHelp
     //
     resources.ApplyResources(this.m_btnHelp, "m_btnHelp");
     this.m_btnHelp.Name      = "m_btnHelp";
     this.m_btnHelp.ShowImage = false;
     this.m_btnHelp.Click    += new System.EventHandler(this.m_btnHelp_Click);
     //
     // m_tabControl
     //
     this.m_tabControl.Controls.Add(this.m_tbGeneral);
     this.m_tabControl.Controls.Add(this.m_tbFont);
     this.m_tabControl.Controls.Add(this.m_tbParagraph);
     this.m_tabControl.Controls.Add(this.m_tbBullets);
     this.m_tabControl.Controls.Add(this.m_tbBorder);
     resources.ApplyResources(this.m_tabControl, "m_tabControl");
     this.m_tabControl.Name          = "m_tabControl";
     this.m_tabControl.SelectedIndex = 0;
     this.m_tabControl.Selecting    += new System.Windows.Forms.TabControlCancelEventHandler(this.m_tabControl_Selecting);
     this.m_tabControl.Deselecting  += new System.Windows.Forms.TabControlCancelEventHandler(this.m_tabControl_Deselecting);
     //
     // m_tbGeneral
     //
     this.m_tbGeneral.Controls.Add(this.m_generalTab);
     resources.ApplyResources(this.m_tbGeneral, "m_tbGeneral");
     this.m_tbGeneral.Name = "m_tbGeneral";
     this.m_tbGeneral.UseVisualStyleBackColor = true;
     //
     // m_generalTab
     //
     resources.ApplyResources(this.m_generalTab, "m_generalTab");
     this.m_generalTab.Name                = "m_generalTab";
     this.m_generalTab.StyleListHelper     = null;
     this.m_generalTab.StyleTable          = null;
     this.m_generalTab.UserMeasurementType = SIL.FieldWorks.Common.FwUtils.MsrSysType.Inch;
     //
     // m_tbFont
     //
     this.m_tbFont.Controls.Add(this.m_fontTab);
     resources.ApplyResources(this.m_tbFont, "m_tbFont");
     this.m_tbFont.Name = "m_tbFont";
     this.m_tbFont.UseVisualStyleBackColor = true;
     //
     // m_fontTab
     //
     resources.ApplyResources(this.m_fontTab, "m_fontTab");
     this.m_fontTab.Name = "m_fontTab";
     this.m_fontTab.RequestStyleReconnect += new System.EventHandler(this.m_fontTab_RequestStyleReconnect);
     this.m_fontTab.ChangedToUnspecified  += new System.EventHandler(this.TabDataChangedUnspecified);
     //
     // m_tbParagraph
     //
     this.m_tbParagraph.Controls.Add(this.m_paragraphTab);
     resources.ApplyResources(this.m_tbParagraph, "m_tbParagraph");
     this.m_tbParagraph.Name = "m_tbParagraph";
     this.m_tbParagraph.UseVisualStyleBackColor = true;
     //
     // m_paragraphTab
     //
     resources.ApplyResources(this.m_paragraphTab, "m_paragraphTab");
     this.m_paragraphTab.Name = "m_paragraphTab";
     this.m_paragraphTab.ShowBackgroundColor   = false;
     this.m_paragraphTab.ChangedToUnspecified += new System.EventHandler(this.TabDataChangedUnspecified);
     //
     // m_tbBullets
     //
     this.m_tbBullets.Controls.Add(this.m_bulletsTab);
     resources.ApplyResources(this.m_tbBullets, "m_tbBullets");
     this.m_tbBullets.Name = "m_tbBullets";
     this.m_tbBullets.UseVisualStyleBackColor = true;
     //
     // m_bulletsTab
     //
     resources.ApplyResources(this.m_bulletsTab, "m_bulletsTab");
     this.m_bulletsTab.Name                  = "m_bulletsTab";
     this.m_bulletsTab.FontDialog           += new SIL.FieldWorks.FwCoreDlgControls.FwBulletsTab.FontDialogHandler(this.OnBulletsFontDialog);
     this.m_bulletsTab.ChangedToUnspecified += new System.EventHandler(this.TabDataChangedUnspecified);
     //
     // m_tbBorder
     //
     this.m_tbBorder.Controls.Add(this.m_borderTab);
     resources.ApplyResources(this.m_tbBorder, "m_tbBorder");
     this.m_tbBorder.Name = "m_tbBorder";
     this.m_tbBorder.UseVisualStyleBackColor = true;
     //
     // m_borderTab
     //
     this.m_borderTab.DefaultTextDirectionRtoL = false;
     resources.ApplyResources(this.m_borderTab, "m_borderTab");
     this.m_borderTab.Name = "m_borderTab";
     this.m_borderTab.ChangedToUnspecified += new System.EventHandler(this.TabDataChangedUnspecified);
     //
     // m_contextMenuAddStyle
     //
     this.m_contextMenuAddStyle.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.paragraphStyleToolStripMenuItem,
         this.characterStyleToolStripMenuItem
     });
     this.m_contextMenuAddStyle.Name = "m_contextMenuAddStyle";
     resources.ApplyResources(this.m_contextMenuAddStyle, "m_contextMenuAddStyle");
     //
     // paragraphStyleToolStripMenuItem
     //
     this.paragraphStyleToolStripMenuItem.Name = "paragraphStyleToolStripMenuItem";
     resources.ApplyResources(this.paragraphStyleToolStripMenuItem, "paragraphStyleToolStripMenuItem");
     this.paragraphStyleToolStripMenuItem.Click += new System.EventHandler(this.StyleTypeMenuItem_Click);
     //
     // characterStyleToolStripMenuItem
     //
     this.characterStyleToolStripMenuItem.Name = "characterStyleToolStripMenuItem";
     resources.ApplyResources(this.characterStyleToolStripMenuItem, "characterStyleToolStripMenuItem");
     this.characterStyleToolStripMenuItem.Click += new System.EventHandler(this.StyleTypeMenuItem_Click);
     //
     // FwStylesDlg
     //
     this.AcceptButton = this.m_btnOk;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton  = this.m_btnCancel;
     this.Controls.Add(panel1);
     this.Controls.Add(this.m_tabControl);
     this.Controls.Add(this.m_btnHelp);
     this.Controls.Add(this.m_btnCancel);
     this.Controls.Add(this.m_btnOk);
     this.Controls.Add(label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FwStylesDlg";
     this.ShowInTaskbar   = false;
     tableLayoutPanelStyles.ResumeLayout(false);
     panel2.ResumeLayout(false);
     this.m_pnlTypesCombo.ResumeLayout(false);
     this.m_pnlTypesCombo.PerformLayout();
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     this.contextMenuStyles.ResumeLayout(false);
     this.m_tabControl.ResumeLayout(false);
     this.m_tbGeneral.ResumeLayout(false);
     this.m_tbFont.ResumeLayout(false);
     this.m_tbParagraph.ResumeLayout(false);
     this.m_tbBullets.ResumeLayout(false);
     this.m_tbBorder.ResumeLayout(false);
     this.m_contextMenuAddStyle.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 41
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.plclassFill   = new System.Windows.Forms.Panel();
     this.plclassBottom = new System.Windows.Forms.Panel();
     this.btnClose      = new RDIFramework.Controls.UcButton();
     this.btnSave       = new RDIFramework.Controls.UcButton();
     this.plclassBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // plclassFill
     //
     this.plclassFill.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.plclassFill.Location = new System.Drawing.Point(0, 0);
     this.plclassFill.Name     = "plclassFill";
     this.plclassFill.Size     = new System.Drawing.Size(519, 514);
     this.plclassFill.TabIndex = 0;
     //
     // plclassBottom
     //
     this.plclassBottom.Controls.Add(this.btnClose);
     this.plclassBottom.Controls.Add(this.btnSave);
     this.plclassBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.plclassBottom.Location = new System.Drawing.Point(0, 461);
     this.plclassBottom.Name     = "plclassBottom";
     this.plclassBottom.Size     = new System.Drawing.Size(519, 53);
     this.plclassBottom.TabIndex = 1;
     //
     // btnClose
     //
     this.btnClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClose.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClose.Location       = new System.Drawing.Point(427, 15);
     this.btnClose.Name           = "btnClose";
     this.btnClose.Size           = new System.Drawing.Size(75, 23);
     this.btnClose.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClose.TabIndex       = 3;
     this.btnClose.Text           = "关闭(&E)";
     //
     // btnSave
     //
     this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSave.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSave.Location       = new System.Drawing.Point(327, 15);
     this.btnSave.Name           = "btnSave";
     this.btnSave.Size           = new System.Drawing.Size(75, 23);
     this.btnSave.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSave.TabIndex       = 2;
     this.btnSave.Text           = "保存(&S)";
     this.btnSave.Click         += new System.EventHandler(this.btnSave_Click);
     //
     // BaseForm_Single
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.ClientSize        = new System.Drawing.Size(519, 514);
     this.Controls.Add(this.plclassBottom);
     this.Controls.Add(this.plclassFill);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "BaseForm_Single";
     this.Text            = "信息维护";
     this.plclassBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 42
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.OKButton             = new System.Windows.Forms.Button();
     this.cancelButton         = new System.Windows.Forms.Button();
     this.richTextBoxExtended1 = new RichTextBoxExtended();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.OKButton);
     this.panel1.Controls.Add(this.cancelButton);
     this.panel1.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.DockPadding.All = 10;
     this.panel1.Location        = new System.Drawing.Point(0, 264);
     this.panel1.Name            = "panel1";
     this.panel1.Size            = new System.Drawing.Size(440, 48);
     this.panel1.TabIndex        = 1;
     //
     // OKButton
     //
     this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OKButton.Dock         = System.Windows.Forms.DockStyle.Right;
     this.OKButton.Location     = new System.Drawing.Point(355, 10);
     this.OKButton.Name         = "OKButton";
     this.OKButton.Size         = new System.Drawing.Size(75, 28);
     this.OKButton.TabIndex     = 1;
     this.OKButton.Text         = "OK";
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Dock         = System.Windows.Forms.DockStyle.Left;
     this.cancelButton.Location     = new System.Drawing.Point(10, 10);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(75, 28);
     this.cancelButton.TabIndex     = 0;
     this.cancelButton.Text         = "Cancel";
     //
     // richTextBoxExtended1
     //
     this.richTextBoxExtended1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxExtended1.EditorBackColor = System.Drawing.SystemColors.Window;
     this.richTextBoxExtended1.Location        = new System.Drawing.Point(0, 0);
     this.richTextBoxExtended1.Name            = "richTextBoxExtended1";
     this.richTextBoxExtended1.Rtf             = "{\\rtf1\\ansi\\ansicpg1252\\deff0\\deflang1033{\\fonttbl{\\f0\\fnil\\fcharset0 Microsoft S" +
                                                 "ans Serif;}}\r\n{\\*\\generator Riched20 5.40.11.2210;}\\viewkind4\\uc1\\pard\\f0\\fs16\\p" +
                                                 "ar\r\n}\r\n";
     this.richTextBoxExtended1.ShowOpen  = false;
     this.richTextBoxExtended1.ShowSave  = false;
     this.richTextBoxExtended1.ShowStamp = false;
     this.richTextBoxExtended1.Size      = new System.Drawing.Size(440, 264);
     this.richTextBoxExtended1.TabIndex  = 2;
     //
     // RichTextBoxExtendedRtfEditorForm
     //
     this.AcceptButton      = this.OKButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(440, 312);
     this.Controls.Add(this.richTextBoxExtended1);
     this.Controls.Add(this.panel1);
     this.MinimumSize = new System.Drawing.Size(350, 220);
     this.Name        = "RichTextBoxExtendedRtfEditorForm";
     this.Text        = "Rich Text";
     this.Load       += new System.EventHandler(this.RichTextBoxExtendedRtfEditorForm_Load);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 43
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.SplitContainer splitContainer1;
     System.Windows.Forms.Panel          panel1;
     this.ruleLabel                  = new System.Windows.Forms.Label();
     this.warningOrErrorLabel        = new System.Windows.Forms.Label();
     this.enableCheckBox             = new System.Windows.Forms.CheckBox();
     this.ruleTreeView               = new System.Windows.Forms.TreeView();
     this.changeRuleAssembliesButton = new System.Windows.Forms.Button();
     splitContainer1                 = new System.Windows.Forms.SplitContainer();
     panel1 = new System.Windows.Forms.Panel();
     splitContainer1.Panel1.SuspendLayout();
     splitContainer1.Panel2.SuspendLayout();
     splitContainer1.SuspendLayout();
     panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     splitContainer1.BackColor  = System.Drawing.SystemColors.ControlDark;
     splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
     splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     splitContainer1.Location   = new System.Drawing.Point(1, 1);
     splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     splitContainer1.Panel1.Controls.Add(this.ruleLabel);
     splitContainer1.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     // splitContainer1.Panel2
     //
     splitContainer1.Panel2.Controls.Add(this.warningOrErrorLabel);
     splitContainer1.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     splitContainer1.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     splitContainer1.Size             = new System.Drawing.Size(375, 17);
     splitContainer1.SplitterDistance = 214;
     splitContainer1.SplitterWidth    = 2;
     splitContainer1.TabIndex         = 1;
     //
     // ruleLabel
     //
     this.ruleLabel.BackColor = System.Drawing.SystemColors.ControlLight;
     this.ruleLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.ruleLabel.Location  = new System.Drawing.Point(0, 0);
     this.ruleLabel.Name      = "ruleLabel";
     this.ruleLabel.Size      = new System.Drawing.Size(214, 17);
     this.ruleLabel.TabIndex  = 0;
     this.ruleLabel.Text      = "${res:ICSharpCode.CodeAnalysis.Rule}";
     //
     // warningOrErrorLabel
     //
     this.warningOrErrorLabel.BackColor = System.Drawing.SystemColors.ControlLight;
     this.warningOrErrorLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.warningOrErrorLabel.Location  = new System.Drawing.Point(0, 0);
     this.warningOrErrorLabel.Name      = "warningOrErrorLabel";
     this.warningOrErrorLabel.Size      = new System.Drawing.Size(159, 17);
     this.warningOrErrorLabel.TabIndex  = 0;
     this.warningOrErrorLabel.Text      = "${res:ICSharpCode.CodeAnalysis.ProjectOptions.WarningOrError}";
     //
     // panel1
     //
     panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                           | System.Windows.Forms.AnchorStyles.Right)));
     panel1.BackColor = System.Drawing.SystemColors.InactiveCaption;
     panel1.Controls.Add(splitContainer1);
     panel1.Location = new System.Drawing.Point(15, 57);
     panel1.Name     = "panel1";
     panel1.Padding  = new System.Windows.Forms.Padding(1);
     panel1.Size     = new System.Drawing.Size(377, 19);
     panel1.TabIndex = 3;
     //
     // enableCheckBox
     //
     this.enableCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.enableCheckBox.Location = new System.Drawing.Point(15, 4);
     this.enableCheckBox.Name     = "enableCheckBox";
     this.enableCheckBox.Size     = new System.Drawing.Size(376, 24);
     this.enableCheckBox.TabIndex = 0;
     this.enableCheckBox.Text     = "${res:ICSharpCode.CodeAnalysis.ProjectOptions.RunOnBuild}";
     this.enableCheckBox.UseVisualStyleBackColor = true;
     //
     // ruleTreeView
     //
     this.ruleTreeView.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.ruleTreeView.CheckBoxes  = true;
     this.ruleTreeView.DrawMode    = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText;
     this.ruleTreeView.Location    = new System.Drawing.Point(15, 75);
     this.ruleTreeView.Name        = "ruleTreeView";
     this.ruleTreeView.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ruleTreeView.Size        = new System.Drawing.Size(377, 166);
     this.ruleTreeView.TabIndex    = 2;
     this.ruleTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.RuleTreeViewAfterCheck);
     this.ruleTreeView.DrawNode   += new System.Windows.Forms.DrawTreeNodeEventHandler(this.RuleTreeViewDrawNode);
     this.ruleTreeView.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.RuleTreeViewMouseDown);
     //
     // changeRuleAssembliesButton
     //
     this.changeRuleAssembliesButton.AutoSize                = true;
     this.changeRuleAssembliesButton.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.changeRuleAssembliesButton.Location                = new System.Drawing.Point(15, 28);
     this.changeRuleAssembliesButton.Name                    = "changeRuleAssembliesButton";
     this.changeRuleAssembliesButton.Size                    = new System.Drawing.Size(387, 23);
     this.changeRuleAssembliesButton.TabIndex                = 4;
     this.changeRuleAssembliesButton.Text                    = "${res:ICSharpCode.CodeAnalysis.ProjectOptions.AddRemoveRuleAssembly}";
     this.changeRuleAssembliesButton.UseVisualStyleBackColor = true;
     this.changeRuleAssembliesButton.Click                  += new System.EventHandler(this.ChangeRuleAssembliesButtonClick);
     //
     // AnalysisProjectOptions
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.changeRuleAssembliesButton);
     this.Controls.Add(this.ruleTreeView);
     this.Controls.Add(this.enableCheckBox);
     this.Controls.Add(panel1);
     this.Name = "AnalysisProjectOptions";
     this.Size = new System.Drawing.Size(395, 244);
     splitContainer1.Panel1.ResumeLayout(false);
     splitContainer1.Panel2.ResumeLayout(false);
     splitContainer1.ResumeLayout(false);
     panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 44
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.TableLayoutPanel _DependencesTLP;
            System.Windows.Forms.Panel            panel1;

            /*System.Windows.Forms.Label _TitleLB;
             *
             * System.Windows.Forms.Label label4;
             * System.Windows.Forms.Label label3;
             * System.Windows.Forms.Label label2;
             * System.Windows.Forms.Label label1;*/


            this._TitleLB = new System.Windows.Forms.Label();
            this.label4   = new System.Windows.Forms.Label();
            this.label3   = new System.Windows.Forms.Label();
            this.label2   = new System.Windows.Forms.Label();
            this.label1   = new System.Windows.Forms.Label();

            this._PathTB        = new System.Windows.Forms.TextBox();
            this._DependencesTV = new System.Windows.Forms.TreeView();
            this._CloseBT       = new HMI.Model.Module.UI.HMIButton();
            this._CallBT        = new HMI.Model.Module.UI.HMIButton();
            this._RtbTB         = new System.Windows.Forms.TextBox();
            this._AgvnTB        = new System.Windows.Forms.TextBox();
            this._FunctionTB    = new System.Windows.Forms.TextBox();
            this._TypeTB        = new System.Windows.Forms.TextBox();
            _DependencesTLP     = new System.Windows.Forms.TableLayoutPanel();
            _TitleLB            = new System.Windows.Forms.Label();
            panel1 = new System.Windows.Forms.Panel();
            label4 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            _DependencesTLP.SuspendLayout();
            panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // _DependencesTLP
            //
            _DependencesTLP.ColumnCount = 1;
            _DependencesTLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            _DependencesTLP.Controls.Add(_TitleLB, 0, 0);
            _DependencesTLP.Controls.Add(this._PathTB, 0, 1);
            _DependencesTLP.Controls.Add(this._DependencesTV, 0, 2);
            _DependencesTLP.Controls.Add(panel1, 0, 3);
            _DependencesTLP.Dock     = System.Windows.Forms.DockStyle.Fill;
            _DependencesTLP.Location = new System.Drawing.Point(0, 0);
            _DependencesTLP.Margin   = new System.Windows.Forms.Padding(0);
            _DependencesTLP.Name     = "_DependencesTLP";
            _DependencesTLP.RowCount = 4;
            _DependencesTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8F));
            _DependencesTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 6F));
            _DependencesTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
            _DependencesTLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 26F));
            _DependencesTLP.Size     = new System.Drawing.Size(440, 462);
            _DependencesTLP.TabIndex = 0;
            //
            // _TitleLB
            //
            _TitleLB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
            _TitleLB.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
            _TitleLB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            _TitleLB.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            _TitleLB.Location    = new System.Drawing.Point(5, 3);
            _TitleLB.Margin      = new System.Windows.Forms.Padding(5, 3, 5, 3);
            _TitleLB.Name        = "_TitleLB";
            _TitleLB.Size        = new System.Drawing.Size(430, 30);
            _TitleLB.TabIndex    = 0;
            _TitleLB.Text        = "Directorio de Dependencia-Usuarios";
            _TitleLB.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // _PathTB
            //
            this._PathTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
            this._PathTB.BackColor = System.Drawing.SystemColors.Window;
            this._PathTB.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._PathTB.Location  = new System.Drawing.Point(5, 39);
            this._PathTB.Margin    = new System.Windows.Forms.Padding(5, 3, 5, 3);
            this._PathTB.Name      = "_PathTB";
            this._PathTB.ReadOnly  = true;
            this._PathTB.Size      = new System.Drawing.Size(430, 21);
            this._PathTB.TabIndex  = 1;
            //
            // _DependencesTV
            //
            this._DependencesTV.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
            this._DependencesTV.ItemHeight   = 25;
            this._DependencesTV.Location     = new System.Drawing.Point(5, 66);
            this._DependencesTV.Margin       = new System.Windows.Forms.Padding(5, 3, 5, 3);
            this._DependencesTV.Name         = "_DependencesTV";
            this._DependencesTV.Size         = new System.Drawing.Size(430, 271);
            this._DependencesTV.TabIndex     = 2;
            this._DependencesTV.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this._DependencesTV_AfterSelect);
            //
            // panel1
            //
            panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            panel1.Controls.Add(this._CloseBT);
            panel1.Controls.Add(this._CallBT);
            panel1.Controls.Add(this._RtbTB);
            panel1.Controls.Add(label4);
            panel1.Controls.Add(this._AgvnTB);
            panel1.Controls.Add(label3);
            panel1.Controls.Add(this._FunctionTB);
            panel1.Controls.Add(label2);
            panel1.Controls.Add(this._TypeTB);
            panel1.Controls.Add(label1);
            panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            panel1.Location = new System.Drawing.Point(5, 340);
            panel1.Margin   = new System.Windows.Forms.Padding(5, 0, 5, 3);
            panel1.Name     = "panel1";
            panel1.Size     = new System.Drawing.Size(430, 119);
            panel1.TabIndex = 3;
            //
            // _CloseBT
            //
            this._CloseBT.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this._CloseBT.Location = new System.Drawing.Point(355, 66);
            this._CloseBT.Name     = "_CloseBT";
            this._CloseBT.Size     = new System.Drawing.Size(70, 48);
            this._CloseBT.TabIndex = 9;
            this._CloseBT.Text     = "Cerrar";
            this._CloseBT.Click   += new System.EventHandler(this._CloseBT_Click);
            //
            // _CallBT
            //
            this._CallBT.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this._CallBT.Enabled  = false;
            this._CallBT.Location = new System.Drawing.Point(355, 15);
            this._CallBT.Name     = "_CallBT";
            this._CallBT.Size     = new System.Drawing.Size(70, 48);
            this._CallBT.TabIndex = 8;
            this._CallBT.Text     = "Llamar";
            this._CallBT.Click   += new System.EventHandler(this._CallBT_Click);
            //
            // _RtbTB
            //
            this._RtbTB.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._RtbTB.BackColor = System.Drawing.SystemColors.Window;
            this._RtbTB.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._RtbTB.Location  = new System.Drawing.Point(65, 92);
            this._RtbTB.Name      = "_RtbTB";
            this._RtbTB.ReadOnly  = true;
            this._RtbTB.Size      = new System.Drawing.Size(160, 20);
            this._RtbTB.TabIndex  = 7;
            //
            // label4
            //
            label4.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            label4.AutoSize = true;
            label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label4.Location = new System.Drawing.Point(3, 95);
            label4.Name     = "label4";
            label4.Size     = new System.Drawing.Size(36, 13);
            label4.TabIndex = 6;
            label4.Text     = "RTB";
            //
            // _AgvnTB
            //
            this._AgvnTB.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._AgvnTB.BackColor = System.Drawing.SystemColors.Window;
            this._AgvnTB.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._AgvnTB.Location  = new System.Drawing.Point(65, 70);
            this._AgvnTB.Name      = "_AgvnTB";
            this._AgvnTB.ReadOnly  = true;
            this._AgvnTB.Size      = new System.Drawing.Size(160, 20);
            this._AgvnTB.TabIndex  = 5;
            //
            // label3
            //
            label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            label3.AutoSize = true;
            label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label3.Location = new System.Drawing.Point(3, 73);
            label3.Name     = "label3";
            label3.Size     = new System.Drawing.Size(45, 13);
            label3.TabIndex = 4;
            label3.Text     = "AGVN";
            //
            // _FunctionTB
            //
            this._FunctionTB.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._FunctionTB.BackColor = System.Drawing.SystemColors.Window;
            this._FunctionTB.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._FunctionTB.Location  = new System.Drawing.Point(65, 48);
            this._FunctionTB.Name      = "_FunctionTB";
            this._FunctionTB.ReadOnly  = true;
            this._FunctionTB.Size      = new System.Drawing.Size(160, 20);
            this._FunctionTB.TabIndex  = 3;
            //
            // label2
            //
            label2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            label2.AutoSize = true;
            label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label2.Location = new System.Drawing.Point(3, 51);
            label2.Name     = "label2";
            label2.Size     = new System.Drawing.Size(56, 13);
            label2.TabIndex = 2;
            label2.Text     = "Función";
            //
            // _TypeTB
            //
            this._TypeTB.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._TypeTB.BackColor = System.Drawing.SystemColors.Window;
            this._TypeTB.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._TypeTB.Location  = new System.Drawing.Point(65, 25);
            this._TypeTB.Name      = "_TypeTB";
            this._TypeTB.ReadOnly  = true;
            this._TypeTB.Size      = new System.Drawing.Size(160, 20);
            this._TypeTB.TabIndex  = 1;
            //
            // label1
            //
            label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            label1.AutoSize = true;
            label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label1.Location = new System.Drawing.Point(3, 25);
            label1.Name     = "label1";
            label1.Size     = new System.Drawing.Size(36, 13);
            label1.TabIndex = 0;
            label1.Text     = "Tipo";
            //
            // DependencesView
            //
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.Controls.Add(_DependencesTLP);
            this.Name              = "DependencesView";
            this.Size              = new System.Drawing.Size(440, 462);
            this.BackColorChanged += new System.EventHandler(this.DependencesView_BackColorChanged);
            _DependencesTLP.ResumeLayout(false);
            _DependencesTLP.PerformLayout();
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            this.ResumeLayout(false);
        }
Esempio n. 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.components = new System.ComponentModel.Container();
     System.Windows.Forms.Panel panel6;
     this._volEq_delete_button = new System.Windows.Forms.Button();
     this._volEq_add_button    = new System.Windows.Forms.Button();
     this.tableLayoutPanel1    = new System.Windows.Forms.TableLayoutPanel();
     this._volumeEQsDGV        = new System.Windows.Forms.DataGridView();
     this._BS_VolEquations     = new System.Windows.Forms.BindingSource(this.components);
     this.volumeEquationNumberDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.commonSpeciesNameDataGridViewTextBoxColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.speciesDataGridViewTextBoxColumn1             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.primaryProductDataGridViewTextBoxColumn1      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stumpHeightDataGridViewTextBoxColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.topDIBPrimaryDataGridViewTextBoxColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.topDIBSecondaryDataGridViewTextBoxColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.calcTotalDataGridViewTextBoxColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.calcBoardDataGridViewTextBoxColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.calcCubicDataGridViewTextBoxColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.calcCordDataGridViewTextBoxColumn             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.calcTopwoodDataGridViewTextBoxColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.calcBiomassDataGridViewTextBoxColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.trimDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.segmentationLogicDataGridViewTextBoxColumn   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.minLogLengthPrimaryDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.maxLogLengthPrimaryDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.minMerchLengthDataGridViewTextBoxColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.modelDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     panel6 = new System.Windows.Forms.Panel();
     panel6.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._volumeEQsDGV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._BS_VolEquations)).BeginInit();
     this.SuspendLayout();
     //
     // panel6
     //
     panel6.AutoSize  = true;
     panel6.BackColor = System.Drawing.Color.LightSteelBlue;
     panel6.Controls.Add(this._volEq_delete_button);
     panel6.Controls.Add(this._volEq_add_button);
     panel6.Dock     = System.Windows.Forms.DockStyle.Fill;
     panel6.Location = new System.Drawing.Point(0, 0);
     panel6.Margin   = new System.Windows.Forms.Padding(0);
     panel6.Name     = "panel6";
     panel6.Size     = new System.Drawing.Size(876, 29);
     panel6.TabIndex = 3;
     //
     // _volEq_delete_button
     //
     this._volEq_delete_button.Location = new System.Drawing.Point(84, 3);
     this._volEq_delete_button.Name     = "_volEq_delete_button";
     this._volEq_delete_button.Size     = new System.Drawing.Size(75, 23);
     this._volEq_delete_button.TabIndex = 2;
     this._volEq_delete_button.Text     = "Delete";
     this._volEq_delete_button.UseVisualStyleBackColor = true;
     this._volEq_delete_button.Click += new System.EventHandler(this._volEq_delete_button_Click);
     //
     // _volEq_add_button
     //
     this._volEq_add_button.Location = new System.Drawing.Point(3, 3);
     this._volEq_add_button.Name     = "_volEq_add_button";
     this._volEq_add_button.Size     = new System.Drawing.Size(75, 23);
     this._volEq_add_button.TabIndex = 0;
     this._volEq_add_button.Text     = "Add";
     this._volEq_add_button.UseVisualStyleBackColor = true;
     this._volEq_add_button.Click += new System.EventHandler(this._volEq_add_button_Click);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.Controls.Add(this._volumeEQsDGV, 0, 1);
     this.tableLayoutPanel1.Controls.Add(panel6, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(876, 484);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // _volumeEQsDGV
     //
     this._volumeEQsDGV.AutoGenerateColumns         = false;
     this._volumeEQsDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this._volumeEQsDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.volumeEquationNumberDataGridViewTextBoxColumn,
         this.commonSpeciesNameDataGridViewTextBoxColumn,
         this.speciesDataGridViewTextBoxColumn1,
         this.primaryProductDataGridViewTextBoxColumn1,
         this.stumpHeightDataGridViewTextBoxColumn,
         this.topDIBPrimaryDataGridViewTextBoxColumn,
         this.topDIBSecondaryDataGridViewTextBoxColumn,
         this.calcTotalDataGridViewTextBoxColumn,
         this.calcBoardDataGridViewTextBoxColumn,
         this.calcCubicDataGridViewTextBoxColumn,
         this.calcCordDataGridViewTextBoxColumn,
         this.calcTopwoodDataGridViewTextBoxColumn,
         this.calcBiomassDataGridViewTextBoxColumn,
         this.trimDataGridViewTextBoxColumn,
         this.segmentationLogicDataGridViewTextBoxColumn,
         this.minLogLengthPrimaryDataGridViewTextBoxColumn,
         this.maxLogLengthPrimaryDataGridViewTextBoxColumn,
         this.minMerchLengthDataGridViewTextBoxColumn,
         this.modelDataGridViewTextBoxColumn
     });
     this._volumeEQsDGV.DataSource = this._BS_VolEquations;
     this._volumeEQsDGV.Dock       = System.Windows.Forms.DockStyle.Fill;
     this._volumeEQsDGV.Location   = new System.Drawing.Point(3, 32);
     this._volumeEQsDGV.Name       = "_volumeEQsDGV";
     this._volumeEQsDGV.Size       = new System.Drawing.Size(870, 449);
     this._volumeEQsDGV.TabIndex   = 4;
     //
     // _BS_VolEquations
     //
     this._BS_VolEquations.DataSource = typeof(CruiseDAL.DataObjects.VolumeEquationDO);
     //
     // volumeEquationNumberDataGridViewTextBoxColumn
     //
     this.volumeEquationNumberDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.volumeEquationNumberDataGridViewTextBoxColumn.DataPropertyName = "VolumeEquationNumber";
     this.volumeEquationNumberDataGridViewTextBoxColumn.HeaderText       = "Equation #";
     this.volumeEquationNumberDataGridViewTextBoxColumn.Name             = "volumeEquationNumberDataGridViewTextBoxColumn";
     this.volumeEquationNumberDataGridViewTextBoxColumn.ToolTipText      = "Volume Equation Number";
     this.volumeEquationNumberDataGridViewTextBoxColumn.Width            = 84;
     //
     // commonSpeciesNameDataGridViewTextBoxColumn
     //
     this.commonSpeciesNameDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.commonSpeciesNameDataGridViewTextBoxColumn.DataPropertyName = "CommonSpeciesName";
     this.commonSpeciesNameDataGridViewTextBoxColumn.HeaderText       = "Species Name";
     this.commonSpeciesNameDataGridViewTextBoxColumn.Name             = "commonSpeciesNameDataGridViewTextBoxColumn";
     this.commonSpeciesNameDataGridViewTextBoxColumn.ToolTipText      = "Common Species Name";
     this.commonSpeciesNameDataGridViewTextBoxColumn.Width            = 101;
     //
     // speciesDataGridViewTextBoxColumn1
     //
     this.speciesDataGridViewTextBoxColumn1.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.speciesDataGridViewTextBoxColumn1.DataPropertyName = "Species";
     this.speciesDataGridViewTextBoxColumn1.HeaderText       = "Sp. Code";
     this.speciesDataGridViewTextBoxColumn1.Name             = "speciesDataGridViewTextBoxColumn1";
     this.speciesDataGridViewTextBoxColumn1.ToolTipText      = "Species Code";
     this.speciesDataGridViewTextBoxColumn1.Width            = 76;
     //
     // primaryProductDataGridViewTextBoxColumn1
     //
     this.primaryProductDataGridViewTextBoxColumn1.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.primaryProductDataGridViewTextBoxColumn1.DataPropertyName = "PrimaryProduct";
     this.primaryProductDataGridViewTextBoxColumn1.HeaderText       = "PProd";
     this.primaryProductDataGridViewTextBoxColumn1.Name             = "primaryProductDataGridViewTextBoxColumn1";
     this.primaryProductDataGridViewTextBoxColumn1.ToolTipText      = "Primary Product Code";
     this.primaryProductDataGridViewTextBoxColumn1.Width            = 61;
     //
     // stumpHeightDataGridViewTextBoxColumn
     //
     this.stumpHeightDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.stumpHeightDataGridViewTextBoxColumn.DataPropertyName = "StumpHeight";
     this.stumpHeightDataGridViewTextBoxColumn.HeaderText       = "StumpHt";
     this.stumpHeightDataGridViewTextBoxColumn.Name             = "stumpHeightDataGridViewTextBoxColumn";
     this.stumpHeightDataGridViewTextBoxColumn.ToolTipText      = "Stump Height";
     this.stumpHeightDataGridViewTextBoxColumn.Width            = 73;
     //
     // topDIBPrimaryDataGridViewTextBoxColumn
     //
     this.topDIBPrimaryDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.topDIBPrimaryDataGridViewTextBoxColumn.DataPropertyName = "TopDIBPrimary";
     this.topDIBPrimaryDataGridViewTextBoxColumn.HeaderText       = "TopDibP";
     this.topDIBPrimaryDataGridViewTextBoxColumn.Name             = "topDIBPrimaryDataGridViewTextBoxColumn";
     this.topDIBPrimaryDataGridViewTextBoxColumn.ToolTipText      = "Minimum Top Diameter Primary Product (inside bark)";
     this.topDIBPrimaryDataGridViewTextBoxColumn.Width            = 74;
     //
     // topDIBSecondaryDataGridViewTextBoxColumn
     //
     this.topDIBSecondaryDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.topDIBSecondaryDataGridViewTextBoxColumn.DataPropertyName = "TopDIBSecondary";
     this.topDIBSecondaryDataGridViewTextBoxColumn.HeaderText       = "TopDibS";
     this.topDIBSecondaryDataGridViewTextBoxColumn.Name             = "topDIBSecondaryDataGridViewTextBoxColumn";
     this.topDIBSecondaryDataGridViewTextBoxColumn.ToolTipText      = "Minimum Top Diameter Secondary Product (inside bark)";
     this.topDIBSecondaryDataGridViewTextBoxColumn.Width            = 74;
     //
     // calcTotalDataGridViewTextBoxColumn
     //
     this.calcTotalDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.calcTotalDataGridViewTextBoxColumn.DataPropertyName = "CalcTotal";
     this.calcTotalDataGridViewTextBoxColumn.HeaderText       = "CalcTotal";
     this.calcTotalDataGridViewTextBoxColumn.Name             = "calcTotalDataGridViewTextBoxColumn";
     this.calcTotalDataGridViewTextBoxColumn.ToolTipText      = "Calculate Total Cubic Volume Flag";
     this.calcTotalDataGridViewTextBoxColumn.Width            = 77;
     //
     // calcBoardDataGridViewTextBoxColumn
     //
     this.calcBoardDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.calcBoardDataGridViewTextBoxColumn.DataPropertyName = "CalcBoard";
     this.calcBoardDataGridViewTextBoxColumn.HeaderText       = "CalcBoard";
     this.calcBoardDataGridViewTextBoxColumn.Name             = "calcBoardDataGridViewTextBoxColumn";
     this.calcBoardDataGridViewTextBoxColumn.ToolTipText      = "Calculate Board Foot Volume Flag";
     this.calcBoardDataGridViewTextBoxColumn.Width            = 81;
     //
     // calcCubicDataGridViewTextBoxColumn
     //
     this.calcCubicDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.calcCubicDataGridViewTextBoxColumn.DataPropertyName = "CalcCubic";
     this.calcCubicDataGridViewTextBoxColumn.HeaderText       = "CalcCubic";
     this.calcCubicDataGridViewTextBoxColumn.Name             = "calcCubicDataGridViewTextBoxColumn";
     this.calcCubicDataGridViewTextBoxColumn.ToolTipText      = "Calculate Cubic Foot Volume Flag";
     this.calcCubicDataGridViewTextBoxColumn.Width            = 80;
     //
     // calcCordDataGridViewTextBoxColumn
     //
     this.calcCordDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.calcCordDataGridViewTextBoxColumn.DataPropertyName = "CalcCord";
     this.calcCordDataGridViewTextBoxColumn.HeaderText       = "CalcCord";
     this.calcCordDataGridViewTextBoxColumn.Name             = "calcCordDataGridViewTextBoxColumn";
     this.calcCordDataGridViewTextBoxColumn.ToolTipText      = "Calculate Cordwood Volume Flag";
     this.calcCordDataGridViewTextBoxColumn.Width            = 75;
     //
     // calcTopwoodDataGridViewTextBoxColumn
     //
     this.calcTopwoodDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.calcTopwoodDataGridViewTextBoxColumn.DataPropertyName = "CalcTopwood";
     this.calcTopwoodDataGridViewTextBoxColumn.HeaderText       = "CalcTopwood";
     this.calcTopwoodDataGridViewTextBoxColumn.Name             = "calcTopwoodDataGridViewTextBoxColumn";
     this.calcTopwoodDataGridViewTextBoxColumn.ToolTipText      = "Calculate Topwood Volume Flag";
     this.calcTopwoodDataGridViewTextBoxColumn.Width            = 98;
     //
     // calcBiomassDataGridViewTextBoxColumn
     //
     this.calcBiomassDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.calcBiomassDataGridViewTextBoxColumn.DataPropertyName = "CalcBiomass";
     this.calcBiomassDataGridViewTextBoxColumn.HeaderText       = "CalcBiomass";
     this.calcBiomassDataGridViewTextBoxColumn.Name             = "calcBiomassDataGridViewTextBoxColumn";
     this.calcBiomassDataGridViewTextBoxColumn.ToolTipText      = "Calculate Biomass Flag";
     this.calcBiomassDataGridViewTextBoxColumn.Width            = 92;
     //
     // trimDataGridViewTextBoxColumn
     //
     this.trimDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.trimDataGridViewTextBoxColumn.DataPropertyName = "Trim";
     this.trimDataGridViewTextBoxColumn.HeaderText       = "Trim";
     this.trimDataGridViewTextBoxColumn.Name             = "trimDataGridViewTextBoxColumn";
     this.trimDataGridViewTextBoxColumn.ToolTipText      = "Amount of Trim in Feet";
     this.trimDataGridViewTextBoxColumn.Width            = 52;
     //
     // segmentationLogicDataGridViewTextBoxColumn
     //
     this.segmentationLogicDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.segmentationLogicDataGridViewTextBoxColumn.DataPropertyName = "SegmentationLogic";
     this.segmentationLogicDataGridViewTextBoxColumn.HeaderText       = "SegmentLogic";
     this.segmentationLogicDataGridViewTextBoxColumn.Name             = "segmentationLogicDataGridViewTextBoxColumn";
     this.segmentationLogicDataGridViewTextBoxColumn.ToolTipText      = "Segmentation Logic Code";
     //
     // minLogLengthPrimaryDataGridViewTextBoxColumn
     //
     this.minLogLengthPrimaryDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.minLogLengthPrimaryDataGridViewTextBoxColumn.DataPropertyName = "MinLogLengthPrimary";
     this.minLogLengthPrimaryDataGridViewTextBoxColumn.HeaderText       = "MinLogLenP";
     this.minLogLengthPrimaryDataGridViewTextBoxColumn.Name             = "minLogLengthPrimaryDataGridViewTextBoxColumn";
     this.minLogLengthPrimaryDataGridViewTextBoxColumn.ToolTipText      = "Minimum Log Length for Primary Product";
     this.minLogLengthPrimaryDataGridViewTextBoxColumn.Width            = 92;
     //
     // maxLogLengthPrimaryDataGridViewTextBoxColumn
     //
     this.maxLogLengthPrimaryDataGridViewTextBoxColumn.DataPropertyName = "MaxLogLengthPrimary";
     this.maxLogLengthPrimaryDataGridViewTextBoxColumn.HeaderText       = "MaxLogLenP";
     this.maxLogLengthPrimaryDataGridViewTextBoxColumn.Name             = "maxLogLengthPrimaryDataGridViewTextBoxColumn";
     this.maxLogLengthPrimaryDataGridViewTextBoxColumn.ToolTipText      = "Maximum Log Length for Primary";
     //
     // minMerchLengthDataGridViewTextBoxColumn
     //
     this.minMerchLengthDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.minMerchLengthDataGridViewTextBoxColumn.DataPropertyName = "MinMerchLength";
     this.minMerchLengthDataGridViewTextBoxColumn.HeaderText       = "MinMerchLen";
     this.minMerchLengthDataGridViewTextBoxColumn.Name             = "minMerchLengthDataGridViewTextBoxColumn";
     this.minMerchLengthDataGridViewTextBoxColumn.ToolTipText      = "Minimum Merchantable Length for Tree to Have Volume";
     this.minMerchLengthDataGridViewTextBoxColumn.Width            = 97;
     //
     // modelDataGridViewTextBoxColumn
     //
     this.modelDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.modelDataGridViewTextBoxColumn.DataPropertyName = "Model";
     this.modelDataGridViewTextBoxColumn.HeaderText       = "Model";
     this.modelDataGridViewTextBoxColumn.Name             = "modelDataGridViewTextBoxColumn";
     this.modelDataGridViewTextBoxColumn.ToolTipText      = "Volume Model";
     this.modelDataGridViewTextBoxColumn.Width            = 61;
     //
     // VolumeEqView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "VolumeEqView";
     this.Size = new System.Drawing.Size(876, 484);
     panel6.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._volumeEQsDGV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._BS_VolEquations)).EndInit();
     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.Windows.Forms.Label warningLabel;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MultiExportForm));
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.Panel panel_buttons;
     System.Windows.Forms.Panel panel2;
     this.btn_accept           = new System.Windows.Forms.Button();
     this.btn_cancel           = new System.Windows.Forms.Button();
     this.btn_change_path      = new System.Windows.Forms.Button();
     this.panel1               = new System.Windows.Forms.Panel();
     this.ExportItemGridView   = new System.Windows.Forms.DataGridView();
     this.ColumnExportCheckbox = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ColumnLayers         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnNode           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnFilePath       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnTexturesFolder = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SetPathFileDialog    = new System.Windows.Forms.SaveFileDialog();
     warningLabel              = new System.Windows.Forms.Label();
     tableLayoutPanel1         = new System.Windows.Forms.TableLayoutPanel();
     panel_buttons             = new System.Windows.Forms.Panel();
     panel2 = new System.Windows.Forms.Panel();
     tableLayoutPanel1.SuspendLayout();
     panel_buttons.SuspendLayout();
     panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ExportItemGridView)).BeginInit();
     this.SuspendLayout();
     //
     // warningLabel
     //
     warningLabel.AutoEllipsis = true;
     warningLabel.AutoSize     = true;
     warningLabel.BorderStyle  = System.Windows.Forms.BorderStyle.FixedSingle;
     warningLabel.Dock         = System.Windows.Forms.DockStyle.Left;
     warningLabel.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     warningLabel.ForeColor    = System.Drawing.SystemColors.GrayText;
     warningLabel.Location     = new System.Drawing.Point(3, 3);
     warningLabel.Margin       = new System.Windows.Forms.Padding(3);
     warningLabel.Name         = "warningLabel";
     warningLabel.Padding      = new System.Windows.Forms.Padding(3);
     tableLayoutPanel1.SetRowSpan(warningLabel, 2);
     warningLabel.Size     = new System.Drawing.Size(431, 74);
     warningLabel.TabIndex = 10;
     warningLabel.Text     = resources.GetString("warningLabel.Text");
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize     = true;
     tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel1.ColumnCount  = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(warningLabel, 0, 0);
     tableLayoutPanel1.Controls.Add(panel_buttons, 1, 1);
     tableLayoutPanel1.Controls.Add(panel2, 1, 0);
     tableLayoutPanel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     tableLayoutPanel1.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     tableLayoutPanel1.Location  = new System.Drawing.Point(3, 258);
     tableLayoutPanel1.Name      = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount  = 2;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(927, 80);
     tableLayoutPanel1.TabIndex = 12;
     //
     // panel_buttons
     //
     panel_buttons.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     panel_buttons.AutoSize     = true;
     panel_buttons.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel_buttons.Controls.Add(this.btn_accept);
     panel_buttons.Controls.Add(this.btn_cancel);
     panel_buttons.Location    = new System.Drawing.Point(678, 43);
     panel_buttons.MinimumSize = new System.Drawing.Size(94, 34);
     panel_buttons.Name        = "panel_buttons";
     panel_buttons.Padding     = new System.Windows.Forms.Padding(3);
     panel_buttons.Size        = new System.Drawing.Size(246, 34);
     panel_buttons.TabIndex    = 9;
     //
     // btn_accept
     //
     this.btn_accept.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btn_accept.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btn_accept.Location                = new System.Drawing.Point(3, 3);
     this.btn_accept.MaximumSize             = new System.Drawing.Size(120, 27);
     this.btn_accept.MinimumSize             = new System.Drawing.Size(120, 27);
     this.btn_accept.Name                    = "btn_accept";
     this.btn_accept.Size                    = new System.Drawing.Size(120, 27);
     this.btn_accept.TabIndex                = 7;
     this.btn_accept.Text                    = "Accept";
     this.btn_accept.UseVisualStyleBackColor = true;
     this.btn_accept.Click                  += new System.EventHandler(this.btn_accept_Click);
     //
     // btn_cancel
     //
     this.btn_cancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btn_cancel.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btn_cancel.Location                = new System.Drawing.Point(123, 3);
     this.btn_cancel.MaximumSize             = new System.Drawing.Size(120, 27);
     this.btn_cancel.MinimumSize             = new System.Drawing.Size(120, 27);
     this.btn_cancel.Name                    = "btn_cancel";
     this.btn_cancel.Size                    = new System.Drawing.Size(120, 27);
     this.btn_cancel.TabIndex                = 6;
     this.btn_cancel.Text                    = "Cancel";
     this.btn_cancel.UseVisualStyleBackColor = true;
     this.btn_cancel.Click                  += new System.EventHandler(this.btn_cancel_Click);
     //
     // panel2
     //
     panel2.AutoSize     = true;
     panel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     panel2.Controls.Add(this.btn_change_path);
     panel2.Dock        = System.Windows.Forms.DockStyle.Top;
     panel2.Location    = new System.Drawing.Point(440, 3);
     panel2.MinimumSize = new System.Drawing.Size(94, 34);
     panel2.Name        = "panel2";
     panel2.Padding     = new System.Windows.Forms.Padding(3);
     panel2.Size        = new System.Drawing.Size(484, 34);
     panel2.TabIndex    = 10;
     //
     // btn_change_path
     //
     this.btn_change_path.AutoSize                = true;
     this.btn_change_path.AutoSizeMode            = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btn_change_path.Dock                    = System.Windows.Forms.DockStyle.Right;
     this.btn_change_path.Location                = new System.Drawing.Point(323, 3);
     this.btn_change_path.Name                    = "btn_change_path";
     this.btn_change_path.Size                    = new System.Drawing.Size(158, 28);
     this.btn_change_path.TabIndex                = 7;
     this.btn_change_path.Text                    = "Change Selected Item Path(s)";
     this.btn_change_path.UseVisualStyleBackColor = true;
     this.btn_change_path.Click                  += new System.EventHandler(this.btn_change_path_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ExportItemGridView);
     this.panel1.Controls.Add(tableLayoutPanel1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Padding  = new System.Windows.Forms.Padding(3);
     this.panel1.Size     = new System.Drawing.Size(933, 341);
     this.panel1.TabIndex = 0;
     //
     // ExportItemGridView
     //
     this.ExportItemGridView.AllowUserToResizeColumns    = false;
     this.ExportItemGridView.AllowUserToResizeRows       = false;
     this.ExportItemGridView.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ExportItemGridView.AutoSizeRowsMode            = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
     this.ExportItemGridView.CellBorderStyle             = System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical;
     this.ExportItemGridView.ClipboardCopyMode           = System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
     this.ExportItemGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ExportItemGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.ColumnExportCheckbox,
         this.ColumnLayers,
         this.ColumnNode,
         this.ColumnFilePath,
         this.ColumnTexturesFolder
     });
     this.ExportItemGridView.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.ExportItemGridView.Location          = new System.Drawing.Point(3, 3);
     this.ExportItemGridView.Name              = "ExportItemGridView";
     this.ExportItemGridView.RowHeadersWidth   = 27;
     this.ExportItemGridView.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.ExportItemGridView.Size              = new System.Drawing.Size(927, 255);
     this.ExportItemGridView.TabIndex          = 8;
     this.ExportItemGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ExportItemGridView_CellContentClick);
     this.ExportItemGridView.CellDoubleClick  += new System.Windows.Forms.DataGridViewCellEventHandler(this.ExportItemGridView_CellDoubleClick);
     this.ExportItemGridView.CellValidating   += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.ExportItemGridView_CellValidating);
     this.ExportItemGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.ExportItemGridView_CellValueChanged);
     this.ExportItemGridView.KeyDown          += new System.Windows.Forms.KeyEventHandler(this.ExportItemGridView_KeyDown);
     //
     // ColumnExportCheckbox
     //
     this.ColumnExportCheckbox.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.ColumnExportCheckbox.HeaderText   = "Export?";
     this.ColumnExportCheckbox.Name         = "ColumnExportCheckbox";
     this.ColumnExportCheckbox.Resizable    = System.Windows.Forms.DataGridViewTriState.False;
     this.ColumnExportCheckbox.Width        = 49;
     //
     // ColumnLayers
     //
     this.ColumnLayers.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnLayers.HeaderText   = "Layers";
     this.ColumnLayers.Name         = "ColumnLayers";
     this.ColumnLayers.ReadOnly     = true;
     //
     // ColumnNode
     //
     this.ColumnNode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnNode.HeaderText   = "Root node";
     this.ColumnNode.Name         = "ColumnNode";
     this.ColumnNode.ReadOnly     = true;
     //
     // ColumnFilePath
     //
     this.ColumnFilePath.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnFilePath.HeaderText   = "File path";
     this.ColumnFilePath.Name         = "ColumnFilePath";
     //
     // ColumnTexturesFolder
     //
     this.ColumnTexturesFolder.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.ColumnTexturesFolder.HeaderText   = "Textures folder";
     this.ColumnTexturesFolder.Name         = "ColumnTexturesFolder";
     //
     // SetPathFileDialog
     //
     this.SetPathFileDialog.FileName         = "FileNameUnused";
     this.SetPathFileDialog.Filter           = "All Files|*.*";
     this.SetPathFileDialog.OverwritePrompt  = false;
     this.SetPathFileDialog.RestoreDirectory = true;
     this.SetPathFileDialog.Title            = "Set multi-export file path.";
     //
     // MultiExportForm
     //
     this.AcceptButton        = this.btn_accept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.btn_cancel;
     this.ClientSize          = new System.Drawing.Size(933, 341);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "MultiExportForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Multi-File Export";
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     panel_buttons.ResumeLayout(false);
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ExportItemGridView)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TelaPrincipal));
     this.panel1          = new System.Windows.Forms.Panel();
     this.label1          = new System.Windows.Forms.Label();
     this.panel2          = new System.Windows.Forms.Panel();
     this.label3          = new System.Windows.Forms.Label();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.label2          = new System.Windows.Forms.Label();
     this.panel3          = new System.Windows.Forms.Panel();
     this.MensagemEscrita = new System.Windows.Forms.TabControl();
     this.tabPage1        = new System.Windows.Forms.TabPage();
     this.button1         = new System.Windows.Forms.Button();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.tabPage2        = new System.Windows.Forms.TabPage();
     this.tabPage3        = new System.Windows.Forms.TabPage();
     this.button3         = new System.Windows.Forms.Button();
     this.panel4          = new System.Windows.Forms.Panel();
     this.RegistraVisita  = new System.Windows.Forms.Button();
     this.label6          = new System.Windows.Forms.Label();
     this.label5          = new System.Windows.Forms.Label();
     this.label4          = new System.Windows.Forms.Label();
     this.EditarPerfil    = new System.Windows.Forms.Button();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.MensagemEscrita.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(2, 12);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(807, 362);
     this.panel1.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(248, 153);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(230, 21);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Conversas de Usuários e chamada de video";
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.textBox2);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Location = new System.Drawing.Point(815, 162);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(308, 376);
     this.panel2.TabIndex = 1;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 23);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 20);
     this.label3.TabIndex = 3;
     this.label3.Text     = "Pesquisar Usuário";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(112, 20);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(190, 20);
     this.textBox2.TabIndex = 2;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(73, 157);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(152, 23);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Lista de Usuario do BD Online";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.MensagemEscrita);
     this.panel3.Location = new System.Drawing.Point(2, 380);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(807, 158);
     this.panel3.TabIndex = 2;
     //
     // MensagemEscrita
     //
     this.MensagemEscrita.Controls.Add(this.tabPage1);
     this.MensagemEscrita.Controls.Add(this.tabPage2);
     this.MensagemEscrita.Controls.Add(this.tabPage3);
     this.MensagemEscrita.Location      = new System.Drawing.Point(3, 3);
     this.MensagemEscrita.Name          = "MensagemEscrita";
     this.MensagemEscrita.SelectedIndex = 0;
     this.MensagemEscrita.Size          = new System.Drawing.Size(801, 151);
     this.MensagemEscrita.TabIndex      = 1;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Controls.Add(this.textBox1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(793, 125);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Mensagem";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(306, 99);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(151, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Enviar";
     this.button1.UseVisualStyleBackColor = true;
     //
     // textBox1
     //
     this.textBox1.Location  = new System.Drawing.Point(3, 6);
     this.textBox1.Multiline = true;
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new System.Drawing.Size(784, 87);
     this.textBox1.TabIndex  = 0;
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(793, 125);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Emotions";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.button3);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(793, 125);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Enviar Arquivo";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(309, 38);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(145, 39);
     this.button3.TabIndex = 3;
     this.button3.Text     = "Importar Arquivo";
     this.button3.UseVisualStyleBackColor = true;
     //
     // panel4
     //
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.RegistraVisita);
     this.panel4.Controls.Add(this.label6);
     this.panel4.Controls.Add(this.label5);
     this.panel4.Controls.Add(this.label4);
     this.panel4.Controls.Add(this.EditarPerfil);
     this.panel4.Controls.Add(this.pictureBox1);
     this.panel4.Location = new System.Drawing.Point(815, 12);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(308, 144);
     this.panel4.TabIndex = 3;
     //
     // RegistraVisita
     //
     this.RegistraVisita.Location = new System.Drawing.Point(128, 113);
     this.RegistraVisita.Name     = "RegistraVisita";
     this.RegistraVisita.Size     = new System.Drawing.Size(174, 23);
     this.RegistraVisita.TabIndex = 4;
     this.RegistraVisita.Text     = "Registrar Visita";
     this.RegistraVisita.UseVisualStyleBackColor = true;
     this.RegistraVisita.Click += new System.EventHandler(this.RegistraVisitaClick);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(131, 3);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(40, 16);
     this.label6.TabIndex = 3;
     this.label6.Text     = "Status";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(128, 56);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(90, 23);
     this.label5.TabIndex = 2;
     this.label5.Text     = "Área de Atuação";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(131, 28);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(40, 16);
     this.label4.TabIndex = 1;
     this.label4.Text     = "Nome";
     //
     // EditarPerfil
     //
     this.EditarPerfil.Location = new System.Drawing.Point(128, 82);
     this.EditarPerfil.Name     = "EditarPerfil";
     this.EditarPerfil.Size     = new System.Drawing.Size(174, 24);
     this.EditarPerfil.TabIndex = 0;
     this.EditarPerfil.Text     = "Editar Meu Perfil";
     this.EditarPerfil.UseVisualStyleBackColor = true;
     this.EditarPerfil.Click += new System.EventHandler(this.EditarPerfilClick);
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(119, 103);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // TelaPrincipal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1135, 550);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "TelaPrincipal";
     this.Text = "TelaPrincipal";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.MensagemEscrita.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 48
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1   = new System.Windows.Forms.Panel();
     this.label2   = new System.Windows.Forms.Label();
     this.label1   = new System.Windows.Forms.Label();
     this.button1  = new System.Windows.Forms.Button();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3   = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.textBox2);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Location = new System.Drawing.Point(1, 2);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(480, 325);
     this.panel1.TabIndex = 0;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(172, 50);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(278, 20);
     this.label2.TabIndex = 4;
     this.label2.Text     = " ";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(172, 23);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(278, 20);
     this.label1.TabIndex = 3;
     this.label1.Text     = " ";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(65, 77);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 2;
     this.button1.Text     = "Pedir";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(42, 50);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(123, 20);
     this.textBox2.TabIndex = 1;
     this.textBox2.Text     = "Nombre del Libro";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(42, 23);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(123, 20);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text     = "Id del socio";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(42, 137);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(408, 127);
     this.label3.TabIndex = 5;
     this.label3.Text     = " ";
     //
     // Cuadro5
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(482, 327);
     this.Controls.Add(this.panel1);
     this.Name = "Cuadro5";
     this.Text = "Pedir Libro";
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 49
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(ProcessValidationForm));
     this.toolTipForm                 = new System.Windows.Forms.ToolTip(this.components);
     this.panelBottom                 = new System.Windows.Forms.Panel();
     this.panelButtons                = new System.Windows.Forms.Panel();
     this.buttonCancel                = new System.Windows.Forms.Button();
     this.buttonClose                 = new System.Windows.Forms.Button();
     this.panelTop                    = new System.Windows.Forms.Panel();
     this.labelTitle                  = new System.Windows.Forms.Label();
     this.panelMiddle                 = new System.Windows.Forms.Panel();
     this.buttonProgressOK            = new System.Windows.Forms.Button();
     this.progressBarProcess          = new System.Windows.Forms.ProgressBar();
     this.labelProgress               = new System.Windows.Forms.Label();
     this.buttonRefresh               = new System.Windows.Forms.Button();
     this.tableLayoutPanelValidations = new System.Windows.Forms.TableLayoutPanel();
     this.labelValidations            = new System.Windows.Forms.Label();
     this.panelBottom.SuspendLayout();
     this.panelButtons.SuspendLayout();
     this.panelTop.SuspendLayout();
     this.panelMiddle.SuspendLayout();
     this.SuspendLayout();
     //
     // panelBottom
     //
     this.panelBottom.AutoSize     = true;
     this.panelBottom.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.panelBottom.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(218)))), ((int)(((byte)(218)))));
     this.panelBottom.Controls.Add(this.panelButtons);
     this.panelBottom.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location    = new System.Drawing.Point(0, 1118);
     this.panelBottom.Margin      = new System.Windows.Forms.Padding(30, 30, 30, 30);
     this.panelBottom.MinimumSize = new System.Drawing.Size(706, 60);
     this.panelBottom.Name        = "panelBottom";
     this.panelBottom.Padding     = new System.Windows.Forms.Padding(30, 30, 30, 30);
     this.panelBottom.Size        = new System.Drawing.Size(1398, 126);
     this.panelBottom.TabIndex    = 46;
     //
     // panelButtons
     //
     this.panelButtons.AutoSize     = true;
     this.panelButtons.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.panelButtons.Controls.Add(this.buttonCancel);
     this.panelButtons.Controls.Add(this.buttonClose);
     this.panelButtons.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelButtons.Location = new System.Drawing.Point(30, 30);
     this.panelButtons.Margin   = new System.Windows.Forms.Padding(30, 30, 30, 30);
     this.panelButtons.Name     = "panelButtons";
     this.panelButtons.Size     = new System.Drawing.Size(1338, 66);
     this.panelButtons.TabIndex = 10;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204)))));
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.FlatStyle               = System.Windows.Forms.FlatStyle.Popup;
     this.buttonCancel.Font                    = new System.Drawing.Font("Segoe UI", 10.125F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonCancel.Location                = new System.Drawing.Point(1140, 2);
     this.buttonCancel.Margin                  = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(196, 62);
     this.buttonCancel.TabIndex                = 11;
     this.buttonCancel.Text                    = "ANNULEREN";
     this.buttonCancel.UseVisualStyleBackColor = false;
     this.buttonCancel.Click                  += new System.EventHandler(this.ButtonCancel_Click);
     //
     // buttonClose
     //
     this.buttonClose.Anchor       = System.Windows.Forms.AnchorStyles.Right;
     this.buttonClose.AutoSize     = true;
     this.buttonClose.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.buttonClose.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(96)))), ((int)(((byte)(0)))));
     this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonClose.FlatAppearance.BorderSize = 0;
     this.buttonClose.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.buttonClose.Font                    = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.buttonClose.ForeColor               = System.Drawing.Color.White;
     this.buttonClose.Location                = new System.Drawing.Point(898, 2);
     this.buttonClose.Margin                  = new System.Windows.Forms.Padding(0);
     this.buttonClose.MinimumSize             = new System.Drawing.Size(200, 60);
     this.buttonClose.Name                    = "buttonClose";
     this.buttonClose.Size                    = new System.Drawing.Size(200, 60);
     this.buttonClose.TabIndex                = 10;
     this.buttonClose.Text                    = "AFSLUITEN";
     this.buttonClose.UseVisualStyleBackColor = false;
     this.buttonClose.Click                  += new System.EventHandler(this.ButtonClose_Click);
     //
     // panelTop
     //
     this.panelTop.AutoSize     = true;
     this.panelTop.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.panelTop.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(64)))), ((int)(((byte)(112)))));
     this.panelTop.Controls.Add(this.labelTitle);
     this.panelTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelTop.Location = new System.Drawing.Point(0, 0);
     this.panelTop.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.panelTop.Name     = "panelTop";
     this.panelTop.Padding  = new System.Windows.Forms.Padding(10, 10, 10, 10);
     this.panelTop.Size     = new System.Drawing.Size(1398, 95);
     this.panelTop.TabIndex = 47;
     //
     // labelTitle
     //
     this.labelTitle.AutoSize  = true;
     this.labelTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(64)))), ((int)(((byte)(112)))));
     this.labelTitle.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.labelTitle.ForeColor = System.Drawing.Color.White;
     this.labelTitle.Location  = new System.Drawing.Point(22, 0);
     this.labelTitle.Margin    = new System.Windows.Forms.Padding(6, 0, 6, 0);
     this.labelTitle.Name      = "labelTitle";
     this.labelTitle.Padding   = new System.Windows.Forms.Padding(20, 20, 20, 20);
     this.labelTitle.Size      = new System.Drawing.Size(492, 85);
     this.labelTitle.TabIndex  = 2;
     this.labelTitle.Text      = "TheModus UOL about screen";
     this.labelTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelMiddle
     //
     this.panelMiddle.AutoSize     = true;
     this.panelMiddle.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.panelMiddle.BackColor    = System.Drawing.Color.White;
     this.panelMiddle.Controls.Add(this.buttonProgressOK);
     this.panelMiddle.Controls.Add(this.progressBarProcess);
     this.panelMiddle.Controls.Add(this.labelProgress);
     this.panelMiddle.Controls.Add(this.buttonRefresh);
     this.panelMiddle.Controls.Add(this.tableLayoutPanelValidations);
     this.panelMiddle.Controls.Add(this.labelValidations);
     this.panelMiddle.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelMiddle.Location = new System.Drawing.Point(0, 0);
     this.panelMiddle.Margin   = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.panelMiddle.Name     = "panelMiddle";
     this.panelMiddle.Padding  = new System.Windows.Forms.Padding(20, 20, 20, 20);
     this.panelMiddle.Size     = new System.Drawing.Size(1398, 1244);
     this.panelMiddle.TabIndex = 48;
     //
     // buttonProgressOK
     //
     this.buttonProgressOK.Anchor       = System.Windows.Forms.AnchorStyles.Right;
     this.buttonProgressOK.AutoSize     = true;
     this.buttonProgressOK.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.buttonProgressOK.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(96)))), ((int)(((byte)(0)))));
     this.buttonProgressOK.FlatAppearance.BorderSize = 0;
     this.buttonProgressOK.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.buttonProgressOK.Font                    = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.buttonProgressOK.ForeColor               = System.Drawing.Color.White;
     this.buttonProgressOK.Location                = new System.Drawing.Point(600, 770);
     this.buttonProgressOK.Margin                  = new System.Windows.Forms.Padding(0);
     this.buttonProgressOK.MinimumSize             = new System.Drawing.Size(200, 60);
     this.buttonProgressOK.Name                    = "buttonProgressOK";
     this.buttonProgressOK.Size                    = new System.Drawing.Size(200, 60);
     this.buttonProgressOK.TabIndex                = 12;
     this.buttonProgressOK.Text                    = "OK";
     this.buttonProgressOK.UseVisualStyleBackColor = false;
     this.buttonProgressOK.Visible                 = false;
     this.buttonProgressOK.Click                  += new System.EventHandler(this.ButtonProgressOK_Click);
     //
     // progressBarProcess
     //
     this.progressBarProcess.Cursor    = System.Windows.Forms.Cursors.Default;
     this.progressBarProcess.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(96)))), ((int)(((byte)(0)))));
     this.progressBarProcess.Location  = new System.Drawing.Point(50, 462);
     this.progressBarProcess.Margin    = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.progressBarProcess.Name      = "progressBarProcess";
     this.progressBarProcess.Size      = new System.Drawing.Size(1316, 38);
     this.progressBarProcess.Step      = 1;
     this.progressBarProcess.TabIndex  = 31;
     this.progressBarProcess.Visible   = false;
     //
     // labelProgress
     //
     this.labelProgress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.labelProgress.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelProgress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(99)))), ((int)(((byte)(99)))));
     this.labelProgress.Location  = new System.Drawing.Point(50, 500);
     this.labelProgress.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelProgress.Name      = "labelProgress";
     this.labelProgress.Padding   = new System.Windows.Forms.Padding(20, 0, 20, 0);
     this.labelProgress.Size      = new System.Drawing.Size(1316, 240);
     this.labelProgress.TabIndex  = 30;
     this.labelProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelProgress.Visible   = false;
     //
     // buttonRefresh
     //
     this.buttonRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRefresh.FlatAppearance.BorderSize = 0;
     this.buttonRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonRefresh.Font      = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonRefresh.Image     = global::UOL.Revit.SampleAddin.Properties.Resources.icon1;
     this.buttonRefresh.Location  = new System.Drawing.Point(1310, 114);
     this.buttonRefresh.Margin    = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.buttonRefresh.Name      = "buttonRefresh";
     this.buttonRefresh.Size      = new System.Drawing.Size(56, 50);
     this.buttonRefresh.TabIndex  = 18;
     this.buttonRefresh.UseVisualStyleBackColor = true;
     this.buttonRefresh.Click += new System.EventHandler(this.ButtonRefresh_Click);
     //
     // tableLayoutPanelValidations
     //
     this.tableLayoutPanelValidations.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.tableLayoutPanelValidations.AutoScroll   = true;
     this.tableLayoutPanelValidations.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanelValidations.ColumnCount  = 7;
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 300F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 64F));
     this.tableLayoutPanelValidations.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanelValidations.GrowStyle = System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize;
     this.tableLayoutPanelValidations.Location  = new System.Drawing.Point(50, 166);
     this.tableLayoutPanelValidations.Margin    = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.tableLayoutPanelValidations.Name      = "tableLayoutPanelValidations";
     this.tableLayoutPanelValidations.RowCount  = 2;
     this.tableLayoutPanelValidations.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanelValidations.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     this.tableLayoutPanelValidations.Size     = new System.Drawing.Size(1318, 916);
     this.tableLayoutPanelValidations.TabIndex = 17;
     //
     // labelValidations
     //
     this.labelValidations.AutoSize  = true;
     this.labelValidations.Font      = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.labelValidations.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(99)))), ((int)(((byte)(99)))));
     this.labelValidations.Location  = new System.Drawing.Point(24, 122);
     this.labelValidations.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelValidations.Name      = "labelValidations";
     this.labelValidations.Padding   = new System.Windows.Forms.Padding(20, 0, 20, 0);
     this.labelValidations.Size      = new System.Drawing.Size(182, 37);
     this.labelValidations.TabIndex  = 13;
     this.labelValidations.Text      = "Validaties";
     //
     // ProcessValidationForm
     //
     this.AcceptButton        = this.buttonClose;
     this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.CancelButton        = this.buttonCancel;
     this.ClientSize          = new System.Drawing.Size(1398, 1244);
     this.Controls.Add(this.panelBottom);
     this.Controls.Add(this.panelTop);
     this.Controls.Add(this.panelMiddle);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin          = new System.Windows.Forms.Padding(6, 6, 6, 6);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ProcessValidationForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.panelBottom.ResumeLayout(false);
     this.panelBottom.PerformLayout();
     this.panelButtons.ResumeLayout(false);
     this.panelButtons.PerformLayout();
     this.panelTop.ResumeLayout(false);
     this.panelTop.PerformLayout();
     this.panelMiddle.ResumeLayout(false);
     this.panelMiddle.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label            killsLabel;
     System.Windows.Forms.Label            casualtiesLabel;
     System.Windows.Forms.Label            dateLabel;
     System.Windows.Forms.Label            warFundsLabel;
     System.Windows.Forms.SplitContainer   topSplitContainer;
     System.Windows.Forms.Panel            dateWarFundsPanel;
     System.Windows.Forms.GroupBox         killGroupBox;
     System.Windows.Forms.TableLayoutPanel killsTables;
     this.entireTable       = new System.Windows.Forms.TableLayoutPanel();
     this.pageSelector      = new System.Windows.Forms.ListBox();
     this.warFunds          = new System.Windows.Forms.NumericUpDown();
     this.killsSpinner      = new System.Windows.Forms.NumericUpDown();
     this.casualtiesSpinner = new System.Windows.Forms.NumericUpDown();
     this.date         = new LionEditor.StupidDateEditor();
     this.timerEditor  = new LionEditor.TimerEditor();
     killsLabel        = new System.Windows.Forms.Label();
     casualtiesLabel   = new System.Windows.Forms.Label();
     dateLabel         = new System.Windows.Forms.Label();
     warFundsLabel     = new System.Windows.Forms.Label();
     topSplitContainer = new System.Windows.Forms.SplitContainer();
     dateWarFundsPanel = new System.Windows.Forms.Panel();
     killGroupBox      = new System.Windows.Forms.GroupBox();
     killsTables       = new System.Windows.Forms.TableLayoutPanel();
     this.entireTable.SuspendLayout();
     topSplitContainer.Panel1.SuspendLayout();
     topSplitContainer.Panel2.SuspendLayout();
     topSplitContainer.SuspendLayout();
     dateWarFundsPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.warFunds)).BeginInit();
     killGroupBox.SuspendLayout();
     killsTables.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.killsSpinner)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.casualtiesSpinner)).BeginInit();
     this.SuspendLayout();
     //
     // killsLabel
     //
     killsLabel.AutoSize  = true;
     killsLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     killsLabel.Location  = new System.Drawing.Point(3, 0);
     killsLabel.Name      = "killsLabel";
     killsLabel.Size      = new System.Drawing.Size(58, 30);
     killsLabel.TabIndex  = 0;
     killsLabel.Text      = "Kills:";
     killsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // casualtiesLabel
     //
     casualtiesLabel.AutoSize  = true;
     casualtiesLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     casualtiesLabel.Location  = new System.Drawing.Point(3, 30);
     casualtiesLabel.Name      = "casualtiesLabel";
     casualtiesLabel.Size      = new System.Drawing.Size(58, 31);
     casualtiesLabel.TabIndex  = 1;
     casualtiesLabel.Text      = "Casualties:";
     casualtiesLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // dateLabel
     //
     dateLabel.AutoSize = true;
     dateLabel.Location = new System.Drawing.Point(236, 22);
     dateLabel.Name     = "dateLabel";
     dateLabel.Size     = new System.Drawing.Size(33, 13);
     dateLabel.TabIndex = 1;
     dateLabel.Text     = "Date:";
     //
     // warFundsLabel
     //
     warFundsLabel.AutoSize = true;
     warFundsLabel.Location = new System.Drawing.Point(207, 57);
     warFundsLabel.Name     = "warFundsLabel";
     warFundsLabel.Size     = new System.Drawing.Size(62, 13);
     warFundsLabel.TabIndex = 3;
     warFundsLabel.Text     = "War Funds:";
     //
     // entireTable
     //
     this.entireTable.ColumnCount = 2;
     this.entireTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10.76487F));
     this.entireTable.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 89.23513F));
     this.entireTable.Controls.Add(this.pageSelector, 0, 0);
     this.entireTable.Controls.Add(topSplitContainer, 1, 0);
     this.entireTable.Controls.Add(this.timerEditor, 1, 2);
     this.entireTable.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.entireTable.Location = new System.Drawing.Point(0, 0);
     this.entireTable.Name     = "entireTable";
     this.entireTable.RowCount = 3;
     this.entireTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 21.70543F));
     this.entireTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 78.29457F));
     this.entireTable.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 56F));
     this.entireTable.Size     = new System.Drawing.Size(706, 439);
     this.entireTable.TabIndex = 0;
     //
     // pageSelector
     //
     this.pageSelector.Dock = System.Windows.Forms.DockStyle.Top;
     this.pageSelector.FormattingEnabled = true;
     this.pageSelector.Items.AddRange(new object[] {
         "Events",
         "Personae",
         "Feats",
         "Wonders",
         "Artefacts"
     });
     this.pageSelector.Location = new System.Drawing.Point(3, 3);
     this.pageSelector.Name     = "pageSelector";
     this.entireTable.SetRowSpan(this.pageSelector, 2);
     this.pageSelector.Size     = new System.Drawing.Size(69, 238);
     this.pageSelector.TabIndex = 0;
     //
     // topSplitContainer
     //
     topSplitContainer.Dock     = System.Windows.Forms.DockStyle.Fill;
     topSplitContainer.Location = new System.Drawing.Point(78, 3);
     topSplitContainer.Name     = "topSplitContainer";
     //
     // topSplitContainer.Panel1
     //
     topSplitContainer.Panel1.Controls.Add(dateWarFundsPanel);
     //
     // topSplitContainer.Panel2
     //
     topSplitContainer.Panel2.Controls.Add(killGroupBox);
     topSplitContainer.Size             = new System.Drawing.Size(625, 77);
     topSplitContainer.SplitterDistance = 461;
     topSplitContainer.TabIndex         = 1;
     //
     // dateWarFundsPanel
     //
     dateWarFundsPanel.Controls.Add(warFundsLabel);
     dateWarFundsPanel.Controls.Add(this.warFunds);
     dateWarFundsPanel.Controls.Add(dateLabel);
     dateWarFundsPanel.Controls.Add(this.date);
     dateWarFundsPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     dateWarFundsPanel.Location = new System.Drawing.Point(0, 0);
     dateWarFundsPanel.Name     = "dateWarFundsPanel";
     dateWarFundsPanel.Size     = new System.Drawing.Size(461, 77);
     dateWarFundsPanel.TabIndex = 0;
     //
     // warFunds
     //
     this.warFunds.Location = new System.Drawing.Point(275, 54);
     this.warFunds.Maximum  = new decimal(new int[] {
         99999999,
         0,
         0,
         0
     });
     this.warFunds.Name               = "warFunds";
     this.warFunds.Size               = new System.Drawing.Size(173, 20);
     this.warFunds.TabIndex           = 2;
     this.warFunds.TextAlign          = System.Windows.Forms.HorizontalAlignment.Right;
     this.warFunds.ThousandsSeparator = true;
     //
     // killGroupBox
     //
     killGroupBox.Controls.Add(killsTables);
     killGroupBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     killGroupBox.Location = new System.Drawing.Point(0, 0);
     killGroupBox.Name     = "killGroupBox";
     killGroupBox.Padding  = new System.Windows.Forms.Padding(3, 0, 3, 3);
     killGroupBox.Size     = new System.Drawing.Size(160, 77);
     killGroupBox.TabIndex = 0;
     killGroupBox.TabStop  = false;
     //
     // killsTables
     //
     killsTables.ColumnCount = 2;
     killsTables.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.20779F));
     killsTables.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 57.79221F));
     killsTables.Controls.Add(killsLabel, 0, 0);
     killsTables.Controls.Add(casualtiesLabel, 0, 1);
     killsTables.Controls.Add(this.killsSpinner, 1, 0);
     killsTables.Controls.Add(this.casualtiesSpinner, 1, 1);
     killsTables.Dock     = System.Windows.Forms.DockStyle.Fill;
     killsTables.Location = new System.Drawing.Point(3, 13);
     killsTables.Name     = "killsTables";
     killsTables.RowCount = 2;
     killsTables.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     killsTables.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     killsTables.Size     = new System.Drawing.Size(154, 61);
     killsTables.TabIndex = 0;
     //
     // killsSpinner
     //
     this.killsSpinner.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.killsSpinner.Location = new System.Drawing.Point(67, 7);
     this.killsSpinner.Maximum  = new decimal(new int[] {
         9999,
         0,
         0,
         0
     });
     this.killsSpinner.Name               = "killsSpinner";
     this.killsSpinner.Size               = new System.Drawing.Size(84, 20);
     this.killsSpinner.TabIndex           = 2;
     this.killsSpinner.TextAlign          = System.Windows.Forms.HorizontalAlignment.Right;
     this.killsSpinner.ThousandsSeparator = true;
     //
     // casualtiesSpinner
     //
     this.casualtiesSpinner.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.casualtiesSpinner.Location = new System.Drawing.Point(67, 38);
     this.casualtiesSpinner.Maximum  = new decimal(new int[] {
         9999,
         0,
         0,
         0
     });
     this.casualtiesSpinner.Name               = "casualtiesSpinner";
     this.casualtiesSpinner.Size               = new System.Drawing.Size(84, 20);
     this.casualtiesSpinner.TabIndex           = 3;
     this.casualtiesSpinner.TextAlign          = System.Windows.Forms.HorizontalAlignment.Right;
     this.casualtiesSpinner.ThousandsSeparator = true;
     //
     // date
     //
     this.date.Location = new System.Drawing.Point(275, 20);
     this.date.Name     = "date";
     this.date.Size     = new System.Drawing.Size(183, 29);
     this.date.TabIndex = 0;
     //
     // timerEditor
     //
     this.timerEditor.Dock     = System.Windows.Forms.DockStyle.Right;
     this.timerEditor.Location = new System.Drawing.Point(438, 385);
     this.timerEditor.Name     = "timerEditor";
     this.timerEditor.Size     = new System.Drawing.Size(265, 51);
     this.timerEditor.TabIndex = 2;
     this.timerEditor.Value    = ((uint)(0u));
     //
     // ChronicleEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.entireTable);
     this.Name = "ChronicleEditor";
     this.Size = new System.Drawing.Size(706, 439);
     this.entireTable.ResumeLayout(false);
     topSplitContainer.Panel1.ResumeLayout(false);
     topSplitContainer.Panel2.ResumeLayout(false);
     topSplitContainer.ResumeLayout(false);
     dateWarFundsPanel.ResumeLayout(false);
     dateWarFundsPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.warFunds)).EndInit();
     killGroupBox.ResumeLayout(false);
     killsTables.ResumeLayout(false);
     killsTables.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.killsSpinner)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.casualtiesSpinner)).EndInit();
     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.afLabel            = new System.Windows.Forms.Label();
            this.bcLabel            = new System.Windows.Forms.Label();
            this.hlLabel            = new System.Windows.Forms.Label();
            this.deLabel            = new System.Windows.Forms.Label();
            this.ixLabel            = new System.Windows.Forms.Label();
            this.iyLabel            = new System.Windows.Forms.Label();
            this.depLabel           = new System.Windows.Forms.Label();
            this.hlpLabel           = new System.Windows.Forms.Label();
            this.bcpLabel           = new System.Windows.Forms.Label();
            this.afpLabel           = new System.Windows.Forms.Label();
            this.spLabel            = new System.Windows.Forms.Label();
            this.pcLabel            = new System.Windows.Forms.Label();
            this.afBox              = new System.Windows.Forms.TextBox();
            this.bcBox              = new System.Windows.Forms.TextBox();
            this.deBox              = new System.Windows.Forms.TextBox();
            this.hlBox              = new System.Windows.Forms.TextBox();
            this.ixBox              = new System.Windows.Forms.TextBox();
            this.iyBox              = new System.Windows.Forms.TextBox();
            this.afpBox             = new System.Windows.Forms.TextBox();
            this.bcpBox             = new System.Windows.Forms.TextBox();
            this.depBox             = new System.Windows.Forms.TextBox();
            this.hlpBox             = new System.Windows.Forms.TextBox();
            this.spBox              = new System.Windows.Forms.TextBox();
            this.pcBox              = new System.Windows.Forms.TextBox();
            this.zflagBox           = new System.Windows.Forms.CheckBox();
            this.sflagBox           = new System.Windows.Forms.CheckBox();
            this.cflagBox           = new System.Windows.Forms.CheckBox();
            this.pvflagBox          = new System.Windows.Forms.CheckBox();
            this.nflagBox           = new System.Windows.Forms.CheckBox();
            this.hcflagBox          = new System.Windows.Forms.CheckBox();
            this.panel              = new System.Windows.Forms.Panel();
            this.screenBox          = new System.Windows.Forms.GroupBox();
            this.screenPicBox       = new System.Windows.Forms.PictureBox();
            this.flagsBox           = new System.Windows.Forms.GroupBox();
            this.registersBox       = new System.Windows.Forms.GroupBox();
            this.contextMenu1       = new System.Windows.Forms.ContextMenu();
            this.copyDebugMenuItem  = new System.Windows.Forms.MenuItem();
            this.pasteDebugMenuItem = new System.Windows.Forms.MenuItem();
            this.gotoSourceMenuItem = new System.Windows.Forms.MenuItem();
            this.panel.SuspendLayout();
            this.screenBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize) this.screenPicBox).BeginInit();
            this.flagsBox.SuspendLayout();
            this.registersBox.SuspendLayout();
            this.SuspendLayout();

            // afLabel

            this.afLabel.AutoSize = true;
            this.afLabel.Location = new System.Drawing.Point(15, 21);
            this.afLabel.Name     = "afLabel";
            this.afLabel.Size     = new System.Drawing.Size(20, 13);
            this.afLabel.TabIndex = 4;
            this.afLabel.Text     = "AF";

            // bcLabel

            this.bcLabel.AutoSize = true;
            this.bcLabel.Location = new System.Drawing.Point(15, 45);
            this.bcLabel.Name     = "bcLabel";
            this.bcLabel.Size     = new System.Drawing.Size(21, 13);
            this.bcLabel.TabIndex = 5;
            this.bcLabel.Text     = "BC";

            // hlLabel

            this.hlLabel.AutoSize = true;
            this.hlLabel.Location = new System.Drawing.Point(15, 91);
            this.hlLabel.Name     = "hlLabel";
            this.hlLabel.Size     = new System.Drawing.Size(21, 13);
            this.hlLabel.TabIndex = 2;
            this.hlLabel.Text     = "HL";

            // deLabel

            this.deLabel.AutoSize = true;
            this.deLabel.Location = new System.Drawing.Point(15, 68);
            this.deLabel.Name     = "deLabel";
            this.deLabel.Size     = new System.Drawing.Size(22, 13);
            this.deLabel.TabIndex = 3;
            this.deLabel.Text     = "DE";

            // ixLabel

            this.ixLabel.AutoSize = true;
            this.ixLabel.Location = new System.Drawing.Point(15, 115);
            this.ixLabel.Name     = "ixLabel";
            this.ixLabel.Size     = new System.Drawing.Size(17, 13);
            this.ixLabel.TabIndex = 6;
            this.ixLabel.Text     = "IX";

            // iyLabel

            this.iyLabel.AutoSize = true;
            this.iyLabel.Location = new System.Drawing.Point(15, 139);
            this.iyLabel.Name     = "iyLabel";
            this.iyLabel.Size     = new System.Drawing.Size(17, 13);
            this.iyLabel.TabIndex = 6;
            this.iyLabel.Text     = "IY";

            // depLabel

            this.depLabel.AutoSize = true;
            this.depLabel.Location = new System.Drawing.Point(116, 69);
            this.depLabel.Name     = "depLabel";
            this.depLabel.Size     = new System.Drawing.Size(24, 13);
            this.depLabel.TabIndex = 3;
            this.depLabel.Text     = "DE\'";

            // hlpLabel

            this.hlpLabel.AutoSize = true;
            this.hlpLabel.Location = new System.Drawing.Point(119, 91);
            this.hlpLabel.Name     = "hlpLabel";
            this.hlpLabel.Size     = new System.Drawing.Size(23, 13);
            this.hlpLabel.TabIndex = 2;
            this.hlpLabel.Text     = "HL\'";

            // bcpLabel

            this.bcpLabel.AutoSize = true;
            this.bcpLabel.Location = new System.Drawing.Point(119, 47);
            this.bcpLabel.Name     = "bcpLabel";
            this.bcpLabel.Size     = new System.Drawing.Size(23, 13);
            this.bcpLabel.TabIndex = 5;
            this.bcpLabel.Text     = "BC\'";

            // afpLabel

            this.afpLabel.AutoSize = true;
            this.afpLabel.Location = new System.Drawing.Point(120, 26);
            this.afpLabel.Name     = "afpLabel";
            this.afpLabel.Size     = new System.Drawing.Size(22, 13);
            this.afpLabel.TabIndex = 4;
            this.afpLabel.Text     = "AF\'";

            // spLabel

            this.spLabel.AutoSize = true;
            this.spLabel.Location = new System.Drawing.Point(120, 116);
            this.spLabel.Name     = "spLabel";
            this.spLabel.Size     = new System.Drawing.Size(21, 13);
            this.spLabel.TabIndex = 6;
            this.spLabel.Text     = "SP";

            // pcLabel

            this.pcLabel.AutoSize = true;
            this.pcLabel.Location = new System.Drawing.Point(119, 139);
            this.pcLabel.Name     = "pcLabel";
            this.pcLabel.Size     = new System.Drawing.Size(21, 13);
            this.pcLabel.TabIndex = 6;
            this.pcLabel.Text     = "PC";

            // afBox

            this.afBox.Location     = new System.Drawing.Point(41, 18);
            this.afBox.MaxLength    = 4;
            this.afBox.Name         = "afBox";
            this.afBox.Size         = new System.Drawing.Size(61, 20);
            this.afBox.TabIndex     = 7;
            this.afBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.afBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // bcBox

            this.bcBox.Location     = new System.Drawing.Point(41, 42);
            this.bcBox.MaxLength    = 4;
            this.bcBox.Name         = "bcBox";
            this.bcBox.Size         = new System.Drawing.Size(61, 20);
            this.bcBox.TabIndex     = 7;
            this.bcBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.bcBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // deBox

            this.deBox.Location     = new System.Drawing.Point(41, 65);
            this.deBox.MaxLength    = 4;
            this.deBox.Name         = "deBox";
            this.deBox.Size         = new System.Drawing.Size(61, 20);
            this.deBox.TabIndex     = 7;
            this.deBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.deBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // hlBox

            this.hlBox.Location     = new System.Drawing.Point(41, 88);
            this.hlBox.MaxLength    = 4;
            this.hlBox.Name         = "hlBox";
            this.hlBox.Size         = new System.Drawing.Size(61, 20);
            this.hlBox.TabIndex     = 7;
            this.hlBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.hlBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // ixBox

            this.ixBox.Location     = new System.Drawing.Point(41, 112);
            this.ixBox.MaxLength    = 4;
            this.ixBox.Name         = "ixBox";
            this.ixBox.Size         = new System.Drawing.Size(61, 20);
            this.ixBox.TabIndex     = 7;
            this.ixBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.ixBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // iyBox

            this.iyBox.Location     = new System.Drawing.Point(41, 136);
            this.iyBox.MaxLength    = 4;
            this.iyBox.Name         = "iyBox";
            this.iyBox.Size         = new System.Drawing.Size(61, 20);
            this.iyBox.TabIndex     = 7;
            this.iyBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.iyBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // afpBox

            this.afpBox.Location     = new System.Drawing.Point(148, 19);
            this.afpBox.MaxLength    = 4;
            this.afpBox.Name         = "afpBox";
            this.afpBox.Size         = new System.Drawing.Size(61, 20);
            this.afpBox.TabIndex     = 7;
            this.afpBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.afpBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // bcpBox

            this.bcpBox.Location     = new System.Drawing.Point(148, 43);
            this.bcpBox.MaxLength    = 4;
            this.bcpBox.Name         = "bcpBox";
            this.bcpBox.Size         = new System.Drawing.Size(61, 20);
            this.bcpBox.TabIndex     = 7;
            this.bcpBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.bcpBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // depBox

            this.depBox.Location     = new System.Drawing.Point(148, 66);
            this.depBox.MaxLength    = 4;
            this.depBox.Name         = "depBox";
            this.depBox.Size         = new System.Drawing.Size(61, 20);
            this.depBox.TabIndex     = 7;
            this.depBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.depBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // hlpBox

            this.hlpBox.Location     = new System.Drawing.Point(148, 89);
            this.hlpBox.MaxLength    = 4;
            this.hlpBox.Name         = "hlpBox";
            this.hlpBox.Size         = new System.Drawing.Size(61, 20);
            this.hlpBox.TabIndex     = 7;
            this.hlpBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.hlpBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // spBox

            this.spBox.Location     = new System.Drawing.Point(148, 113);
            this.spBox.MaxLength    = 4;
            this.spBox.Name         = "spBox";
            this.spBox.Size         = new System.Drawing.Size(61, 20);
            this.spBox.TabIndex     = 7;
            this.spBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.spBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // pcBox

            this.pcBox.Location     = new System.Drawing.Point(148, 137);
            this.pcBox.MaxLength    = 4;
            this.pcBox.Name         = "pcBox";
            this.pcBox.Size         = new System.Drawing.Size(61, 20);
            this.pcBox.TabIndex     = 7;
            this.pcBox.TextChanged += new System.EventHandler(this.registersBox_TextChanged);
            this.pcBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.RegisterBox_KeyPress);

            // zflagBox

            this.zflagBox.AutoSize = true;
            this.zflagBox.Location = new System.Drawing.Point(18, 19);
            this.zflagBox.Name     = "zflagBox";
            this.zflagBox.Size     = new System.Drawing.Size(31, 17);
            this.zflagBox.TabIndex = 0;
            this.zflagBox.Text     = "z";
            this.zflagBox.UseVisualStyleBackColor = true;
            this.zflagBox.CheckedChanged         += new System.EventHandler(this.zflagBox_CheckedChanged);

            // sflagBox

            this.sflagBox.AutoSize = true;
            this.sflagBox.Location = new System.Drawing.Point(169, 19);
            this.sflagBox.Name     = "sflagBox";
            this.sflagBox.Size     = new System.Drawing.Size(31, 17);
            this.sflagBox.TabIndex = 0;
            this.sflagBox.Text     = "s";
            this.sflagBox.UseVisualStyleBackColor = true;
            this.sflagBox.CheckedChanged         += new System.EventHandler(this.zflagBox_CheckedChanged);

            // cflagBox

            this.cflagBox.AutoSize = true;
            this.cflagBox.Location = new System.Drawing.Point(94, 19);
            this.cflagBox.Name     = "cflagBox";
            this.cflagBox.Size     = new System.Drawing.Size(32, 17);
            this.cflagBox.TabIndex = 0;
            this.cflagBox.Text     = "c";
            this.cflagBox.UseVisualStyleBackColor = true;
            this.cflagBox.CheckedChanged         += new System.EventHandler(this.zflagBox_CheckedChanged);

            // pvflagBox

            this.pvflagBox.AutoSize = true;
            this.pvflagBox.Location = new System.Drawing.Point(18, 42);
            this.pvflagBox.Name     = "pvflagBox";
            this.pvflagBox.Size     = new System.Drawing.Size(43, 17);
            this.pvflagBox.TabIndex = 0;
            this.pvflagBox.Text     = "p/v";
            this.pvflagBox.UseVisualStyleBackColor = true;
            this.pvflagBox.CheckedChanged         += new System.EventHandler(this.zflagBox_CheckedChanged);

            // nflagBox

            this.nflagBox.AutoSize = true;
            this.nflagBox.Location = new System.Drawing.Point(169, 42);
            this.nflagBox.Name     = "nflagBox";
            this.nflagBox.Size     = new System.Drawing.Size(32, 17);
            this.nflagBox.TabIndex = 0;
            this.nflagBox.Text     = "n";
            this.nflagBox.UseVisualStyleBackColor = true;
            this.nflagBox.CheckedChanged         += new System.EventHandler(this.zflagBox_CheckedChanged);

            // hcflagBox

            this.hcflagBox.AutoSize = true;
            this.hcflagBox.Location = new System.Drawing.Point(94, 42);
            this.hcflagBox.Name     = "hcflagBox";
            this.hcflagBox.Size     = new System.Drawing.Size(38, 17);
            this.hcflagBox.TabIndex = 0;
            this.hcflagBox.Text     = "hc";
            this.hcflagBox.UseVisualStyleBackColor = true;
            this.hcflagBox.CheckedChanged         += new System.EventHandler(this.zflagBox_CheckedChanged);

            // panel

            this.panel.AutoScroll = true;
            this.panel.Controls.Add(this.screenBox);
            this.panel.Controls.Add(this.flagsBox);
            this.panel.Controls.Add(this.registersBox);
            this.panel.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel.Location = new System.Drawing.Point(0, 0);
            this.panel.Name     = "panel";
            this.panel.Size     = new System.Drawing.Size(258, 433);
            this.panel.TabIndex = 0;

            // screenBox

            this.screenBox.Controls.Add(this.screenPicBox);
            this.screenBox.Location = new System.Drawing.Point(12, 261);
            this.screenBox.Name     = "screenBox";
            this.screenBox.Size     = new System.Drawing.Size(227, 158);
            this.screenBox.TabIndex = 2;
            this.screenBox.TabStop  = false;
            this.screenBox.Text     = "Screen";

            // screenPicBox

            this.screenPicBox.Location = new System.Drawing.Point(17, 17);
            this.screenPicBox.Name     = "screenPicBox";
            this.screenPicBox.Size     = new System.Drawing.Size(192, 128);
            this.screenPicBox.TabIndex = 0;
            this.screenPicBox.TabStop  = false;

            // flagsBox

            this.flagsBox.Controls.Add(this.zflagBox);
            this.flagsBox.Controls.Add(this.cflagBox);
            this.flagsBox.Controls.Add(this.sflagBox);
            this.flagsBox.Controls.Add(this.pvflagBox);
            this.flagsBox.Controls.Add(this.hcflagBox);
            this.flagsBox.Controls.Add(this.nflagBox);
            this.flagsBox.Location = new System.Drawing.Point(12, 186);
            this.flagsBox.Name     = "flagsBox";
            this.flagsBox.Size     = new System.Drawing.Size(227, 69);
            this.flagsBox.TabIndex = 1;
            this.flagsBox.TabStop  = false;
            this.flagsBox.Text     = "Flags";

            // registersBox

            this.registersBox.Controls.Add(this.afLabel);
            this.registersBox.Controls.Add(this.afBox);
            this.registersBox.Controls.Add(this.afpLabel);
            this.registersBox.Controls.Add(this.afpBox);
            this.registersBox.Controls.Add(this.bcLabel);
            this.registersBox.Controls.Add(this.bcBox);
            this.registersBox.Controls.Add(this.bcpLabel);
            this.registersBox.Controls.Add(this.bcpBox);
            this.registersBox.Controls.Add(this.deLabel);
            this.registersBox.Controls.Add(this.deBox);
            this.registersBox.Controls.Add(this.depLabel);
            this.registersBox.Controls.Add(this.depBox);
            this.registersBox.Controls.Add(this.hlLabel);
            this.registersBox.Controls.Add(this.hlBox);
            this.registersBox.Controls.Add(this.hlpLabel);
            this.registersBox.Controls.Add(this.hlpBox);
            this.registersBox.Controls.Add(this.ixBox);
            this.registersBox.Controls.Add(this.ixLabel);
            this.registersBox.Controls.Add(this.iyLabel);
            this.registersBox.Controls.Add(this.iyBox);
            this.registersBox.Controls.Add(this.spLabel);
            this.registersBox.Controls.Add(this.spBox);
            this.registersBox.Controls.Add(this.pcLabel);
            this.registersBox.Controls.Add(this.pcBox);
            this.registersBox.Location = new System.Drawing.Point(12, 12);
            this.registersBox.Name     = "registersBox";
            this.registersBox.Size     = new System.Drawing.Size(227, 168);
            this.registersBox.TabIndex = 0;
            this.registersBox.TabStop  = false;
            this.registersBox.Text     = "Registers";

            // contextMenu1

            this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
            {
                this.copyDebugMenuItem,
                this.pasteDebugMenuItem,
                this.gotoSourceMenuItem
            });

            // copyDebugMenuItem

            this.copyDebugMenuItem.Index    = 0;
            this.copyDebugMenuItem.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
            this.copyDebugMenuItem.Text     = "Copy";
            this.copyDebugMenuItem.Click   += new System.EventHandler(this.Copy);

            // pasteDebugMenuItem

            this.pasteDebugMenuItem.Index    = 1;
            this.pasteDebugMenuItem.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
            this.pasteDebugMenuItem.Text     = "Paste";
            this.pasteDebugMenuItem.Click   += new System.EventHandler(this.Paste);

            // menuItem3

            this.gotoSourceMenuItem.Index  = 2;
            this.gotoSourceMenuItem.Text   = "Goto Source Line";
            this.gotoSourceMenuItem.Click += new System.EventHandler(gotoSourceMenuItem_Click);

            // DebugPanel

            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(258, 433);
            this.Controls.Add(this.panel);
            this.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, (byte)0);
            this.HideOnClose = true;
            this.MinimumSize = new System.Drawing.Size(266, 38);
            this.Name        = "DebugPanel";
            this.ShowHint    = WeifenLuo.WinFormsUI.Docking.DockState.DockRight;
            this.TabText     = "Debug Panel";
            this.Text        = "Debug Panel";
            this.panel.ResumeLayout(false);
            this.screenBox.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize) this.screenPicBox).EndInit();
            this.flagsBox.ResumeLayout(false);
            this.flagsBox.PerformLayout();
            this.registersBox.ResumeLayout(false);
            this.registersBox.PerformLayout();
            this.ResumeLayout(false);
        }
Esempio n. 52
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PortraitSelectDlg));
     this.panel1     = new System.Windows.Forms.Panel();
     this.btnAccept  = new System.Windows.Forms.Button();
     this.btnCancel  = new System.Windows.Forms.Button();
     this.imageView1 = new GKUI.Components.ImageView();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnAccept);
     this.panel1.Controls.Add(this.btnCancel);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 623);
     this.panel1.Name     = "panel1";
     this.panel1.Padding  = new System.Windows.Forms.Padding(10);
     this.panel1.Size     = new System.Drawing.Size(871, 58);
     this.panel1.TabIndex = 3;
     //
     // btnAccept
     //
     this.btnAccept.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAccept.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAccept.Location   = new System.Drawing.Point(646, 14);
     this.btnAccept.Margin     = new System.Windows.Forms.Padding(4);
     this.btnAccept.Name       = "btnAccept";
     this.btnAccept.Size       = new System.Drawing.Size(101, 31);
     this.btnAccept.TabIndex   = 3;
     this.btnAccept.Text       = "btnAccept";
     this.btnAccept.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.btnAccept.Click     += new System.EventHandler(this.btnAccept_Click);
     //
     // 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.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.Location     = new System.Drawing.Point(756, 14);
     this.btnCancel.Margin       = new System.Windows.Forms.Padding(4);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(101, 31);
     this.btnCancel.TabIndex     = 4;
     this.btnCancel.Text         = "btnCancel";
     this.btnCancel.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     //
     // imageView1
     //
     this.imageView1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.imageView1.Location      = new System.Drawing.Point(0, 0);
     this.imageView1.Margin        = new System.Windows.Forms.Padding(4);
     this.imageView1.Name          = "imageView1";
     this.imageView1.SelectionMode = GKUI.Components.ImageBoxSelectionMode.Zoom;
     this.imageView1.ShowToolbar   = true;
     this.imageView1.Size          = new System.Drawing.Size(871, 623);
     this.imageView1.TabIndex      = 4;
     //
     // PortraitSelectDlg
     //
     this.AcceptButton        = this.btnAccept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(871, 681);
     this.Controls.Add(this.imageView1);
     this.Controls.Add(this.panel1);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin          = new System.Windows.Forms.Padding(4);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "PortraitSelectDlg";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "PortraitSelectDlg";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kryptonPanel1      = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.pnlSplitter        = new System.Windows.Forms.Panel();
     this.kryptonPanel2      = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnRun            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnBrowse         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klblMessage        = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pbxInfoboxIcon     = new System.Windows.Forms.PictureBox();
     this.kryptonLabel1      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ktxtUserInput      = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kcmbPath           = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.pbxApplicationIcon = new System.Windows.Forms.PictureBox();
     this.kbtnLocate         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxInfoboxIcon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbPath)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbxApplicationIcon)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnLocate);
     this.kryptonPanel1.Controls.Add(this.kbtnRun);
     this.kryptonPanel1.Controls.Add(this.kbtnBrowse);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 212);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(696, 49);
     this.kryptonPanel1.TabIndex = 0;
     //
     // pnlSplitter
     //
     this.pnlSplitter.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.pnlSplitter.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pnlSplitter.Location  = new System.Drawing.Point(0, 209);
     this.pnlSplitter.Name      = "pnlSplitter";
     this.pnlSplitter.Size      = new System.Drawing.Size(696, 3);
     this.pnlSplitter.TabIndex  = 2;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.ktxtUserInput);
     this.kryptonPanel2.Controls.Add(this.pbxApplicationIcon);
     this.kryptonPanel2.Controls.Add(this.kcmbPath);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.pbxInfoboxIcon);
     this.kryptonPanel2.Controls.Add(this.klblMessage);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(696, 209);
     this.kryptonPanel2.TabIndex = 3;
     //
     // kbtnCancel
     //
     this.kbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCancel.AutoSize     = true;
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(500, 9);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(89, 28);
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 5;
     this.kbtnCancel.Values.Text = "C&ancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnRun
     //
     this.kbtnRun.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnRun.AutoSize     = true;
     this.kbtnRun.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnRun.Enabled      = false;
     this.kbtnRun.Location     = new System.Drawing.Point(405, 9);
     this.kbtnRun.Name         = "kbtnRun";
     this.kbtnRun.Size         = new System.Drawing.Size(89, 28);
     this.kbtnRun.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRun.TabIndex    = 6;
     this.kbtnRun.Values.Text = "&Run";
     this.kbtnRun.Click      += new System.EventHandler(this.kbtnRun_Click);
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnBrowse.AutoSize     = true;
     this.kbtnBrowse.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnBrowse.Location     = new System.Drawing.Point(595, 9);
     this.kbtnBrowse.Name         = "kbtnBrowse";
     this.kbtnBrowse.Size         = new System.Drawing.Size(89, 28);
     this.kbtnBrowse.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.TabIndex    = 7;
     this.kbtnBrowse.Values.Text = "&Browse...";
     this.kbtnBrowse.Click      += new System.EventHandler(this.kbtnBrowse_Click);
     //
     // klblMessage
     //
     this.klblMessage.AutoSize = false;
     this.klblMessage.Location = new System.Drawing.Point(82, 12);
     this.klblMessage.Name     = "klblMessage";
     this.klblMessage.Size     = new System.Drawing.Size(602, 126);
     this.klblMessage.StateCommon.ShortText.Font  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblMessage.StateCommon.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.klblMessage.StateCommon.ShortText.TextV = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblMessage.TabIndex    = 2;
     this.klblMessage.Values.Text = "Type the name of a application, file, directory or internet\r\nresource, and Window" +
                                    "s will open it for you.";
     //
     // pbxInfoboxIcon
     //
     this.pbxInfoboxIcon.BackColor = System.Drawing.Color.Transparent;
     this.pbxInfoboxIcon.Image     = global::ExtendedDialogs.Properties.Resources.Run_481;
     this.pbxInfoboxIcon.Location  = new System.Drawing.Point(12, 49);
     this.pbxInfoboxIcon.Name      = "pbxInfoboxIcon";
     this.pbxInfoboxIcon.Size      = new System.Drawing.Size(48, 48);
     this.pbxInfoboxIcon.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pbxInfoboxIcon.TabIndex  = 3;
     this.pbxInfoboxIcon.TabStop   = false;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 165);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(52, 26);
     this.kryptonLabel1.StateCommon.ShortText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kryptonLabel1.StateCommon.ShortText.TextV = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.kryptonLabel1.TabIndex    = 4;
     this.kryptonLabel1.Values.Text = "Path:";
     //
     // ktxtUserInput
     //
     this.ktxtUserInput.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.ktxtUserInput.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
     this.ktxtUserInput.Location           = new System.Drawing.Point(70, 163);
     this.ktxtUserInput.Name = "ktxtUserInput";
     this.ktxtUserInput.Size = new System.Drawing.Size(576, 27);
     this.ktxtUserInput.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtUserInput.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtUserInput.TabIndex     = 5;
     this.ktxtUserInput.TextChanged += new System.EventHandler(this.ktxtUserInput_TextChanged);
     //
     // kcmbPath
     //
     this.kcmbPath.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.kcmbPath.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
     this.kcmbPath.DropDownWidth      = 241;
     this.kcmbPath.IntegralHeight     = false;
     this.kcmbPath.Location           = new System.Drawing.Point(70, 165);
     this.kcmbPath.Name = "kcmbPath";
     this.kcmbPath.Size = new System.Drawing.Size(576, 25);
     this.kcmbPath.StateCommon.ComboBox.Content.Font       = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbPath.StateCommon.ComboBox.Content.TextH      = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbPath.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbPath.TabIndex     = 6;
     this.kcmbPath.TextUpdate  += new System.EventHandler(this.kmbPath_TextUpdate);
     this.kcmbPath.TextChanged += new System.EventHandler(this.kmbPath_TextChanged);
     //
     // pbxApplicationIcon
     //
     this.pbxApplicationIcon.BackColor = System.Drawing.Color.Transparent;
     this.pbxApplicationIcon.Location  = new System.Drawing.Point(652, 165);
     this.pbxApplicationIcon.Name      = "pbxApplicationIcon";
     this.pbxApplicationIcon.Size      = new System.Drawing.Size(32, 32);
     this.pbxApplicationIcon.TabIndex  = 7;
     this.pbxApplicationIcon.TabStop   = false;
     //
     // kbtnLocate
     //
     this.kbtnLocate.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnLocate.AutoSize     = true;
     this.kbtnLocate.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnLocate.Enabled      = false;
     this.kbtnLocate.Location     = new System.Drawing.Point(12, 9);
     this.kbtnLocate.Name         = "kbtnLocate";
     this.kbtnLocate.Size         = new System.Drawing.Size(89, 28);
     this.kbtnLocate.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnLocate.TabIndex    = 8;
     this.kbtnLocate.Values.Text = "L&ocate";
     this.kbtnLocate.Click      += new System.EventHandler(this.kbtnLocate_Click);
     //
     // KryptonProcessRunner
     //
     this.ClientSize = new System.Drawing.Size(696, 261);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.pnlSplitter);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonProcessRunner";
     this.Load           += new System.EventHandler(this.KryptonProcessRunner_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxInfoboxIcon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbPath)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbxApplicationIcon)).EndInit();
     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.Windows.Forms.Panel panel2;
     this.textBox9      = new System.Windows.Forms.TextBox();
     this.label8        = new System.Windows.Forms.Label();
     this.textBox6      = new System.Windows.Forms.TextBox();
     this.textBox8      = new System.Windows.Forms.TextBox();
     this.button4       = new System.Windows.Forms.Button();
     this.label7        = new System.Windows.Forms.Label();
     this.textBox4      = new System.Windows.Forms.TextBox();
     this.button3       = new System.Windows.Forms.Button();
     this.textBox3      = new System.Windows.Forms.TextBox();
     this.label2        = new System.Windows.Forms.Label();
     this.textBox1      = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.textBox2      = new System.Windows.Forms.TextBox();
     this.label3        = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.label5        = new System.Windows.Forms.Label();
     this.textBox5      = new System.Windows.Forms.TextBox();
     this.textBox7      = new System.Windows.Forms.TextBox();
     this.label6        = new System.Windows.Forms.Label();
     this.label9        = new System.Windows.Forms.Label();
     this.label19       = new System.Windows.Forms.Label();
     this.label18       = new System.Windows.Forms.Label();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.button1       = new System.Windows.Forms.Button();
     this.button2       = new System.Windows.Forms.Button();
     this.button5       = new System.Windows.Forms.Button();
     panel2             = new System.Windows.Forms.Panel();
     panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // panel2
     //
     panel2.BackColor   = System.Drawing.SystemColors.ActiveCaption;
     panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     panel2.Controls.Add(this.textBox9);
     panel2.Controls.Add(this.label8);
     panel2.Controls.Add(this.textBox6);
     panel2.Controls.Add(this.textBox8);
     panel2.Controls.Add(this.button4);
     panel2.Controls.Add(this.label7);
     panel2.Controls.Add(this.textBox4);
     panel2.Controls.Add(this.button3);
     panel2.Controls.Add(this.textBox3);
     panel2.Controls.Add(this.label2);
     panel2.Controls.Add(this.textBox1);
     panel2.Controls.Add(this.label1);
     panel2.Controls.Add(this.textBox2);
     panel2.Controls.Add(this.label3);
     panel2.Controls.Add(this.label4);
     panel2.Controls.Add(this.label5);
     panel2.Controls.Add(this.textBox5);
     panel2.Controls.Add(this.textBox7);
     panel2.Controls.Add(this.label6);
     panel2.Controls.Add(this.label9);
     panel2.Location = new System.Drawing.Point(136, 53);
     panel2.Name     = "panel2";
     panel2.Size     = new System.Drawing.Size(1103, 155);
     panel2.TabIndex = 38;
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(775, 114);
     this.textBox9.Name     = "textBox9";
     this.textBox9.Size     = new System.Drawing.Size(157, 21);
     this.textBox9.TabIndex = 137;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(947, 117);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(64, 13);
     this.label8.TabIndex = 136;
     this.label8.Text     = "كود النسبه";
     //
     // textBox6
     //
     this.textBox6.Location     = new System.Drawing.Point(389, 23);
     this.textBox6.Name         = "textBox6";
     this.textBox6.Size         = new System.Drawing.Size(122, 21);
     this.textBox6.TabIndex     = 135;
     this.textBox6.TextChanged += new System.EventHandler(this.textBox6_TextChanged);
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(389, 68);
     this.textBox8.Name     = "textBox8";
     this.textBox8.Size     = new System.Drawing.Size(157, 21);
     this.textBox8.TabIndex = 134;
     //
     // button4
     //
     this.button4.BackColor               = System.Drawing.Color.White;
     this.button4.BackgroundImage         = global::HIS.Properties.Resources._16402011_512263402277211_425787835_n;
     this.button4.ForeColor               = System.Drawing.SystemColors.ButtonHighlight;
     this.button4.Location                = new System.Drawing.Point(517, 23);
     this.button4.Name                    = "button4";
     this.button4.Size                    = new System.Drawing.Size(29, 24);
     this.button4.TabIndex                = 131;
     this.button4.Text                    = "اضافه";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Click                  += new System.EventHandler(this.button4_Click_1);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(249, 71);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(69, 13);
     this.label7.TabIndex = 132;
     this.label7.Text     = "قيمه الخصم";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(70, 112);
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new System.Drawing.Size(158, 21);
     this.textBox4.TabIndex = 131;
     //
     // button3
     //
     this.button3.BackColor               = System.Drawing.Color.White;
     this.button3.BackgroundImage         = global::HIS.Properties.Resources._16402011_512263402277211_425787835_n;
     this.button3.ForeColor               = System.Drawing.SystemColors.ButtonHighlight;
     this.button3.Location                = new System.Drawing.Point(938, 67);
     this.button3.Name                    = "button3";
     this.button3.Size                    = new System.Drawing.Size(28, 25);
     this.button3.TabIndex                = 130;
     this.button3.Text                    = "اضافه";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Click                  += new System.EventHandler(this.button3_Click);
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(772, 23);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(160, 21);
     this.textBox3.TabIndex = 129;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(561, 71);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(74, 13);
     this.label2.TabIndex = 127;
     this.label2.Text     = "عمليه الخصم";
     //
     // textBox1
     //
     this.textBox1.Location     = new System.Drawing.Point(71, 23);
     this.textBox1.Name         = "textBox1";
     this.textBox1.Size         = new System.Drawing.Size(157, 21);
     this.textBox1.TabIndex     = 21;
     this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // label1
     //
     this.label1.AccessibleDescription = "";
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(234, 117);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(112, 13);
     this.label1.TabIndex = 20;
     this.label1.Text     = "الاجمالي بعد الخصم";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(71, 65);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(157, 21);
     this.textBox2.TabIndex = 19;
     //
     // label3
     //
     this.label3.AccessibleDescription = "";
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(235, 23);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(115, 13);
     this.label3.TabIndex = 18;
     this.label3.Text     = "الاجمالي قبل الخصم";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(561, 26);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(63, 13);
     this.label4.TabIndex = 14;
     this.label4.Text     = "نوع الخصم";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(572, 120);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 13;
     this.label5.Text     = "النسبه";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(389, 114);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(157, 21);
     this.textBox5.TabIndex = 9;
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(772, 68);
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new System.Drawing.Size(160, 21);
     this.textBox7.TabIndex = 6;
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Location  = new System.Drawing.Point(964, 23);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(63, 13);
     this.label6.TabIndex  = 1;
     this.label6.Text      = "كود الخصم";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(972, 73);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 0;
     this.label9.Text     = "رقم الفاتوره";
     //
     // label19
     //
     this.label19.AccessibleDescription = "";
     this.label19.AutoSize  = true;
     this.label19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.label19.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.SystemColors.Control;
     this.label19.Location  = new System.Drawing.Point(1110, 20);
     this.label19.Name      = "label19";
     this.label19.Size      = new System.Drawing.Size(37, 14);
     this.label19.TabIndex  = 39;
     this.label19.Text      = "خروج";
     this.label19.Click    += new System.EventHandler(this.label19_Click);
     //
     // label18
     //
     this.label18.AccessibleDescription = "";
     this.label18.AutoSize  = true;
     this.label18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.label18.Font      = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.label18.Location  = new System.Drawing.Point(1052, 20);
     this.label18.Name      = "label18";
     this.label18.Size      = new System.Drawing.Size(41, 14);
     this.label18.TabIndex  = 43;
     this.label18.Text      = "اضافه";
     this.label18.Click    += new System.EventHandler(this.label18_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.BackgroundColor             = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location = new System.Drawing.Point(136, 232);
     this.dataGridView1.Name     = "dataGridView1";
     this.dataGridView1.Size     = new System.Drawing.Size(1103, 370);
     this.dataGridView1.TabIndex = 40;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.button1.Location  = new System.Drawing.Point(24, 154);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(87, 34);
     this.button1.TabIndex  = 41;
     this.button1.Text      = "مسح";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button2.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.button2.Location  = new System.Drawing.Point(24, 48);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(87, 35);
     this.button2.TabIndex  = 42;
     this.button2.Text      = "الناتج";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button5
     //
     this.button5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.button5.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
     this.button5.Location  = new System.Drawing.Point(24, 97);
     this.button5.Name      = "button5";
     this.button5.Size      = new System.Drawing.Size(87, 35);
     this.button5.TabIndex  = 44;
     this.button5.Text      = "عرض";
     this.button5.UseVisualStyleBackColor = false;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // For15
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize          = new System.Drawing.Size(1354, 662);
     this.Controls.Add(this.button5);
     this.Controls.Add(panel2);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.button2);
     this.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name        = "For15";
     this.Text        = "اشعارات الادويه";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.Form15_Load);
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.Panel panel1;
            System.Windows.Forms.Panel panel2;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormGitIgnore));
            this.AddDefault                  = new System.Windows.Forms.Button();
            this.AddPattern                  = new System.Windows.Forms.Button();
            this.Save                        = new System.Windows.Forms.Button();
            this.lnkGitIgnorePatterns        = new System.Windows.Forms.LinkLabel();
            this.splitContainer1             = new System.Windows.Forms.SplitContainer();
            this._NO_TRANSLATE_GitIgnoreEdit = new GitUI.Editor.FileViewer();
            this.label1                      = new System.Windows.Forms.TextBox();
            panel1 = new System.Windows.Forms.Panel();
            panel2 = new System.Windows.Forms.Panel();
            panel1.SuspendLayout();
            panel2.SuspendLayout();
#if !__MonoCS__ || Mono212Released //waiting for mono 2.12
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
#endif
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.SuspendLayout();
            //
            // panel1
            //
            panel1.Controls.Add(this.AddDefault);
            panel1.Controls.Add(this.AddPattern);
            panel1.Controls.Add(this.Save);
            panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
            panel1.Location = new System.Drawing.Point(0, 409);
            panel1.Name     = "panel1";
            panel1.Size     = new System.Drawing.Size(230, 110);
            panel1.TabIndex = 5;
            //
            // AddDefault
            //
            this.AddDefault.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.AddDefault.Location = new System.Drawing.Point(67, 51);
            this.AddDefault.Name     = "AddDefault";
            this.AddDefault.Size     = new System.Drawing.Size(160, 25);
            this.AddDefault.TabIndex = 2;
            this.AddDefault.Text     = "Add default ignores";
            this.AddDefault.UseVisualStyleBackColor = true;
            this.AddDefault.Click += new System.EventHandler(this.AddDefaultClick);
            //
            // AddPattern
            //
            this.AddPattern.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.AddPattern.Location = new System.Drawing.Point(67, 20);
            this.AddPattern.Name     = "AddPattern";
            this.AddPattern.Size     = new System.Drawing.Size(160, 25);
            this.AddPattern.TabIndex = 3;
            this.AddPattern.Text     = "Add pattern";
            this.AddPattern.UseVisualStyleBackColor = true;
            this.AddPattern.Click += new System.EventHandler(this.AddPattern_Click);
            //
            // Save
            //
            this.Save.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.Save.Location = new System.Drawing.Point(67, 82);
            this.Save.Name     = "Save";
            this.Save.Size     = new System.Drawing.Size(160, 25);
            this.Save.TabIndex = 1;
            this.Save.Text     = "Save";
            this.Save.UseVisualStyleBackColor = true;
            this.Save.Click += new System.EventHandler(this.SaveClick);
            //
            // panel2
            //
            panel2.Controls.Add(this.lnkGitIgnorePatterns);
            panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
            panel2.Location = new System.Drawing.Point(0, 387);
            panel2.Name     = "panel2";
            panel2.Size     = new System.Drawing.Size(230, 22);
            panel2.TabIndex = 7;
            //
            // lnkGitIgnorePatterns
            //
            this.lnkGitIgnorePatterns.AutoSize     = true;
            this.lnkGitIgnorePatterns.Dock         = System.Windows.Forms.DockStyle.Right;
            this.lnkGitIgnorePatterns.Location     = new System.Drawing.Point(98, 0);
            this.lnkGitIgnorePatterns.Name         = "lnkGitIgnorePatterns";
            this.lnkGitIgnorePatterns.Size         = new System.Drawing.Size(132, 15);
            this.lnkGitIgnorePatterns.TabIndex     = 6;
            this.lnkGitIgnorePatterns.TabStop      = true;
            this.lnkGitIgnorePatterns.Text         = "More gitignore patterns";
            this.lnkGitIgnorePatterns.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGitIgnorePatterns_LinkClicked);
            //
            // splitContainer1
            //
            this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer1.Location   = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name       = "splitContainer1";
            //
            // splitContainer1.Panel1
            //
            this.splitContainer1.Panel1.Controls.Add(this._NO_TRANSLATE_GitIgnoreEdit);
            //
            // splitContainer1.Panel2
            //
            this.splitContainer1.Panel2.Controls.Add(this.label1);
            this.splitContainer1.Panel2.Controls.Add(panel2);
            this.splitContainer1.Panel2.Controls.Add(panel1);
            this.splitContainer1.Size             = new System.Drawing.Size(634, 519);
            this.splitContainer1.SplitterDistance = 400;
            this.splitContainer1.TabIndex         = 0;
            //
            // _NO_TRANSLATE_GitIgnoreEdit
            //
            this._NO_TRANSLATE_GitIgnoreEdit.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._NO_TRANSLATE_GitIgnoreEdit.IsReadOnly = false;
            this._NO_TRANSLATE_GitIgnoreEdit.Location   = new System.Drawing.Point(0, 0);
            this._NO_TRANSLATE_GitIgnoreEdit.Margin     = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this._NO_TRANSLATE_GitIgnoreEdit.Name       = "_NO_TRANSLATE_GitIgnoreEdit";
            this._NO_TRANSLATE_GitIgnoreEdit.Size       = new System.Drawing.Size(400, 519);
            this._NO_TRANSLATE_GitIgnoreEdit.TabIndex   = 0;
            //
            // label1
            //
            this.label1.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.label1.Location   = new System.Drawing.Point(0, 0);
            this.label1.Multiline  = true;
            this.label1.Name       = "label1";
            this.label1.ReadOnly   = true;
            this.label1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.label1.Size       = new System.Drawing.Size(230, 387);
            this.label1.TabIndex   = 4;
            this.label1.Text       = resources.GetString("label1.Text");
            this.label1.WordWrap   = false;
            //
            // FormGitIgnore
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
            this.ClientSize          = new System.Drawing.Size(634, 519);
            this.Controls.Add(this.splitContainer1);
            this.Name          = "FormGitIgnore";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text          = "Edit .gitignore";
            this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.FormGitIgnoreFormClosing);
            this.Load         += new System.EventHandler(this.FormGitIgnoreLoad);
            panel1.ResumeLayout(false);
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.Panel2.PerformLayout();
#if !__MonoCS__ || Mono212Released //waiting for mono 2.12
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
#endif
            this.splitContainer1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Esempio n. 56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelDialog));
     this.comboBoxModel = new System.Windows.Forms.ComboBox();
     this.label1        = new System.Windows.Forms.Label();
     this.propertyGrid  = new System.Windows.Forms.PropertyGrid();
     this.outputExchangeItemSelector  = new Oatc.OpenMI.Gui.Controls.ExchangeItemSelector();
     this.groupBoxOutputExchnageItems = new System.Windows.Forms.GroupBox();
     this.inputExchangeItemSelector   = new Oatc.OpenMI.Gui.Controls.ExchangeItemSelector();
     this.groupBoxProperties          = new System.Windows.Forms.GroupBox();
     this.btnViewer   = new System.Windows.Forms.Button();
     this.buttonClose = new System.Windows.Forms.Button();
     this.panelTop    = new System.Windows.Forms.Panel();
     this.panelBottom = new System.Windows.Forms.Panel();
     this.groupBoxInputExchangeItems = new System.Windows.Forms.GroupBox();
     this.splitterVertical           = new System.Windows.Forms.Splitter();
     this.splitterHorizontal         = new System.Windows.Forms.Splitter();
     this.groupBoxOutputExchnageItems.SuspendLayout();
     this.groupBoxProperties.SuspendLayout();
     this.panelTop.SuspendLayout();
     this.panelBottom.SuspendLayout();
     this.groupBoxInputExchangeItems.SuspendLayout();
     this.SuspendLayout();
     //
     // comboBoxModel
     //
     this.comboBoxModel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxModel.Location              = new System.Drawing.Point(60, 4);
     this.comboBoxModel.Name                  = "comboBoxModel";
     this.comboBoxModel.Size                  = new System.Drawing.Size(485, 21);
     this.comboBoxModel.TabIndex              = 0;
     this.comboBoxModel.SelectedIndexChanged += new System.EventHandler(this.comboBoxModel_SelectedIndexChanged);
     this.comboBoxModel.Enter                += new System.EventHandler(this.comboBoxModel_Enter);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(48, 12);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Model:";
     //
     // propertyGrid
     //
     this.propertyGrid.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.propertyGrid.Cursor    = System.Windows.Forms.Cursors.HSplit;
     this.propertyGrid.LineColor = System.Drawing.SystemColors.ScrollBar;
     this.propertyGrid.Location  = new System.Drawing.Point(8, 16);
     this.propertyGrid.Name      = "propertyGrid";
     this.propertyGrid.Size      = new System.Drawing.Size(258, 311);
     this.propertyGrid.TabIndex  = 28;
     //
     // outputExchangeItemSelector
     //
     this.outputExchangeItemSelector.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.outputExchangeItemSelector.Location          = new System.Drawing.Point(8, 16);
     this.outputExchangeItemSelector.Name              = "outputExchangeItemSelector";
     this.outputExchangeItemSelector.Size              = new System.Drawing.Size(257, 142);
     this.outputExchangeItemSelector.TabIndex          = 27;
     this.outputExchangeItemSelector.SelectionChanged += new System.EventHandler(this.outputExchangeItemSelector_SelectionChanged);
     //
     // groupBoxOutputExchnageItems
     //
     this.groupBoxOutputExchnageItems.Controls.Add(this.outputExchangeItemSelector);
     this.groupBoxOutputExchnageItems.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBoxOutputExchnageItems.Location = new System.Drawing.Point(8, 28);
     this.groupBoxOutputExchnageItems.Name     = "groupBoxOutputExchnageItems";
     this.groupBoxOutputExchnageItems.Size     = new System.Drawing.Size(273, 163);
     this.groupBoxOutputExchnageItems.TabIndex = 29;
     this.groupBoxOutputExchnageItems.TabStop  = false;
     this.groupBoxOutputExchnageItems.Text     = "Sources";
     //
     // inputExchangeItemSelector
     //
     this.inputExchangeItemSelector.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.inputExchangeItemSelector.Location          = new System.Drawing.Point(8, 16);
     this.inputExchangeItemSelector.Name              = "inputExchangeItemSelector";
     this.inputExchangeItemSelector.Size              = new System.Drawing.Size(257, 144);
     this.inputExchangeItemSelector.TabIndex          = 1;
     this.inputExchangeItemSelector.SelectionChanged += new System.EventHandler(this.inputExchangeItemSelector_SelectionChanged);
     //
     // groupBoxProperties
     //
     this.groupBoxProperties.Controls.Add(this.propertyGrid);
     this.groupBoxProperties.Dock      = System.Windows.Forms.DockStyle.Right;
     this.groupBoxProperties.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBoxProperties.Location  = new System.Drawing.Point(285, 28);
     this.groupBoxProperties.Name      = "groupBoxProperties";
     this.groupBoxProperties.Size      = new System.Drawing.Size(272, 331);
     this.groupBoxProperties.TabIndex  = 30;
     this.groupBoxProperties.TabStop   = false;
     this.groupBoxProperties.Text      = "Properties";
     //
     // btnViewer
     //
     this.btnViewer.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnViewer.Enabled  = false;
     this.btnViewer.Location = new System.Drawing.Point(0, 6);
     this.btnViewer.Name     = "btnViewer";
     this.btnViewer.Size     = new System.Drawing.Size(108, 24);
     this.btnViewer.TabIndex = 33;
     this.btnViewer.Text     = "&Viewer";
     this.btnViewer.Click   += new System.EventHandler(this.buttonViewElementSet_Click);
     //
     // buttonClose
     //
     this.buttonClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonClose.Location     = new System.Drawing.Point(441, 6);
     this.buttonClose.Name         = "buttonClose";
     this.buttonClose.Size         = new System.Drawing.Size(108, 24);
     this.buttonClose.TabIndex     = 31;
     this.buttonClose.Text         = "Close";
     this.buttonClose.Click       += new System.EventHandler(this.buttonClose_Click);
     //
     // panelTop
     //
     this.panelTop.Controls.Add(this.label1);
     this.panelTop.Controls.Add(this.comboBoxModel);
     this.panelTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelTop.Location = new System.Drawing.Point(8, 0);
     this.panelTop.Name     = "panelTop";
     this.panelTop.Size     = new System.Drawing.Size(549, 28);
     this.panelTop.TabIndex = 32;
     //
     // panelBottom
     //
     this.panelBottom.Controls.Add(this.buttonClose);
     this.panelBottom.Controls.Add(this.btnViewer);
     this.panelBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location = new System.Drawing.Point(8, 359);
     this.panelBottom.Name     = "panelBottom";
     this.panelBottom.Size     = new System.Drawing.Size(549, 30);
     this.panelBottom.TabIndex = 33;
     //
     // groupBoxInputExchangeItems
     //
     this.groupBoxInputExchangeItems.Controls.Add(this.inputExchangeItemSelector);
     this.groupBoxInputExchangeItems.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBoxInputExchangeItems.Location = new System.Drawing.Point(8, 195);
     this.groupBoxInputExchangeItems.Name     = "groupBoxInputExchangeItems";
     this.groupBoxInputExchangeItems.Size     = new System.Drawing.Size(273, 164);
     this.groupBoxInputExchangeItems.TabIndex = 0;
     this.groupBoxInputExchangeItems.TabStop  = false;
     this.groupBoxInputExchangeItems.Text     = "Targets";
     //
     // splitterVertical
     //
     this.splitterVertical.Dock     = System.Windows.Forms.DockStyle.Right;
     this.splitterVertical.Location = new System.Drawing.Point(281, 28);
     this.splitterVertical.MinExtra = 150;
     this.splitterVertical.MinSize  = 150;
     this.splitterVertical.Name     = "splitterVertical";
     this.splitterVertical.Size     = new System.Drawing.Size(4, 331);
     this.splitterVertical.TabIndex = 34;
     this.splitterVertical.TabStop  = false;
     //
     // splitterHorizontal
     //
     this.splitterHorizontal.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.splitterHorizontal.Location = new System.Drawing.Point(8, 191);
     this.splitterHorizontal.MinExtra = 150;
     this.splitterHorizontal.MinSize  = 150;
     this.splitterHorizontal.Name     = "splitterHorizontal";
     this.splitterHorizontal.Size     = new System.Drawing.Size(273, 4);
     this.splitterHorizontal.TabIndex = 35;
     this.splitterHorizontal.TabStop  = false;
     //
     // ModelDialog
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize    = new System.Drawing.Size(565, 397);
     this.Controls.Add(this.groupBoxOutputExchnageItems);
     this.Controls.Add(this.splitterHorizontal);
     this.Controls.Add(this.groupBoxInputExchangeItems);
     this.Controls.Add(this.splitterVertical);
     this.Controls.Add(this.groupBoxProperties);
     this.Controls.Add(this.panelTop);
     this.Controls.Add(this.panelBottom);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(500, 400);
     this.Name          = "ModelDialog";
     this.Padding       = new System.Windows.Forms.Padding(8, 0, 8, 8);
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Text          = "Model properties";
     this.Resize       += new System.EventHandler(this.ModelDialog_Resize);
     this.groupBoxOutputExchnageItems.ResumeLayout(false);
     this.groupBoxProperties.ResumeLayout(false);
     this.panelTop.ResumeLayout(false);
     this.panelBottom.ResumeLayout(false);
     this.groupBoxInputExchangeItems.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelRecuadro = new System.Windows.Forms.Panel();
     this.dataListProyectos = new System.Windows.Forms.DataGridView();
     this.lblTotal = new System.Windows.Forms.Label();
     this.txtBuscarProyecto = new System.Windows.Forms.TextBox();
     this.Eliminar = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.panelRecuadro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataListProyectos)).BeginInit();
     this.SuspendLayout();
     //
     // panelRecuadro
     //
     this.panelRecuadro.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.panelRecuadro.BackColor = System.Drawing.Color.Gold;
     this.panelRecuadro.Controls.Add(this.dataListProyectos);
     this.panelRecuadro.Location = new System.Drawing.Point(12, 65);
     this.panelRecuadro.Name = "panelRecuadro";
     this.panelRecuadro.Size = new System.Drawing.Size(775, 411);
     this.panelRecuadro.TabIndex = 20;
     //
     // dataListProyectos
     //
     this.dataListProyectos.AllowUserToAddRows = false;
     this.dataListProyectos.AllowUserToDeleteRows = false;
     this.dataListProyectos.AllowUserToOrderColumns = true;
     this.dataListProyectos.AllowUserToResizeRows = false;
     this.dataListProyectos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataListProyectos.BackgroundColor = System.Drawing.Color.LightGray;
     this.dataListProyectos.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dataListProyectos.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dataListProyectos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.Gray;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.Gray;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataListProyectos.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataListProyectos.ColumnHeadersHeight = 34;
     this.dataListProyectos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataListProyectos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Eliminar});
     this.dataListProyectos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataListProyectos.EnableHeadersVisualStyles = false;
     this.dataListProyectos.GridColor = System.Drawing.Color.DimGray;
     this.dataListProyectos.Location = new System.Drawing.Point(0, 0);
     this.dataListProyectos.Name = "dataListProyectos";
     this.dataListProyectos.ReadOnly = true;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataListProyectos.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dataListProyectos.RowHeadersVisible = false;
     this.dataListProyectos.RowHeadersWidth = 51;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.Silver;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.White;
     this.dataListProyectos.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dataListProyectos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataListProyectos.Size = new System.Drawing.Size(775, 411);
     this.dataListProyectos.TabIndex = 4;
     this.dataListProyectos.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataListProyectos_CellContentClick_1);
     this.dataListProyectos.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataListProyectos_CellDoubleClick);
     //
     // lblTotal
     //
     this.lblTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTotal.AutoSize = true;
     this.lblTotal.Location = new System.Drawing.Point(641, 43);
     this.lblTotal.Name = "lblTotal";
     this.lblTotal.Size = new System.Drawing.Size(111, 13);
     this.lblTotal.TabIndex = 17;
     this.lblTotal.Text = "Número de proyectos:";
     //
     // txtBuscarProyecto
     //
     this.txtBuscarProyecto.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtBuscarProyecto.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtBuscarProyecto.Location = new System.Drawing.Point(12, 12);
     this.txtBuscarProyecto.Name = "txtBuscarProyecto";
     this.txtBuscarProyecto.Size = new System.Drawing.Size(775, 20);
     this.txtBuscarProyecto.TabIndex = 14;
     this.txtBuscarProyecto.TextChanged += new System.EventHandler(this.txtBuscarProyecto_TextChanged);
     //
     // Eliminar
     //
     this.Eliminar.HeaderText = "Proyecto";
     this.Eliminar.MinimumWidth = 2;
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Eliminar.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // FrmProyecto
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ClientSize = new System.Drawing.Size(799, 488);
     this.Controls.Add(this.panelRecuadro);
     this.Controls.Add(this.lblTotal);
     this.Controls.Add(this.txtBuscarProyecto);
     this.Name = "FrmProyecto";
     this.Text = "FrmProyecto";
     this.Load += new System.EventHandler(this.FrmProyecto_Load);
     this.panelRecuadro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataListProyectos)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLogin));
     this.pictureBox5  = new System.Windows.Forms.PictureBox();
     this.pictureBox4  = new System.Windows.Forms.PictureBox();
     this.btnMinimizar = new System.Windows.Forms.PictureBox();
     this.btnCerrar    = new System.Windows.Forms.PictureBox();
     this.btnAcceder   = new System.Windows.Forms.Button();
     this.pictureBox2  = new System.Windows.Forms.PictureBox();
     this.txtPassword  = new System.Windows.Forms.TextBox();
     this.pictureBox1  = new System.Windows.Forms.PictureBox();
     this.label1       = new System.Windows.Forms.Label();
     this.txtUsuario   = new System.Windows.Forms.TextBox();
     this.panel1       = new System.Windows.Forms.Panel();
     this.pictureBox3  = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnMinimizar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCerrar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox5
     //
     this.pictureBox5.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
     this.pictureBox5.Location = new System.Drawing.Point(264, 159);
     this.pictureBox5.Name     = "pictureBox5";
     this.pictureBox5.Size     = new System.Drawing.Size(39, 33);
     this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox5.TabIndex = 22;
     this.pictureBox5.TabStop  = false;
     //
     // pictureBox4
     //
     this.pictureBox4.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(264, 84);
     this.pictureBox4.Name     = "pictureBox4";
     this.pictureBox4.Size     = new System.Drawing.Size(39, 34);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox4.TabIndex = 21;
     this.pictureBox4.TabStop  = false;
     //
     // btnMinimizar
     //
     this.btnMinimizar.Image    = ((System.Drawing.Image)(resources.GetObject("btnMinimizar.Image")));
     this.btnMinimizar.Location = new System.Drawing.Point(680, 6);
     this.btnMinimizar.Name     = "btnMinimizar";
     this.btnMinimizar.Size     = new System.Drawing.Size(34, 28);
     this.btnMinimizar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.btnMinimizar.TabIndex = 20;
     this.btnMinimizar.TabStop  = false;
     this.btnMinimizar.Click   += new System.EventHandler(this.BtnMinimizarClick);
     //
     // btnCerrar
     //
     this.btnCerrar.Image    = ((System.Drawing.Image)(resources.GetObject("btnCerrar.Image")));
     this.btnCerrar.Location = new System.Drawing.Point(720, 6);
     this.btnCerrar.Name     = "btnCerrar";
     this.btnCerrar.Size     = new System.Drawing.Size(34, 28);
     this.btnCerrar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.btnCerrar.TabIndex = 19;
     this.btnCerrar.TabStop  = false;
     this.btnCerrar.Click   += new System.EventHandler(this.BtnCerrarClick);
     //
     // btnAcceder
     //
     this.btnAcceder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
     this.btnAcceder.FlatAppearance.BorderSize         = 0;
     this.btnAcceder.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(28)))), ((int)(((byte)(28)))));
     this.btnAcceder.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.btnAcceder.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAcceder.ForeColor = System.Drawing.Color.LightGray;
     this.btnAcceder.Location  = new System.Drawing.Point(312, 224);
     this.btnAcceder.Name      = "btnAcceder";
     this.btnAcceder.Size      = new System.Drawing.Size(424, 40);
     this.btnAcceder.TabIndex  = 15;
     this.btnAcceder.Text      = "ACCEDER";
     this.btnAcceder.UseVisualStyleBackColor = false;
     this.btnAcceder.Click += new System.EventHandler(this.BtnAccederClick);
     //
     // pictureBox2
     //
     this.pictureBox2.Enabled  = false;
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(309, 181);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(427, 11);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 18;
     this.pictureBox2.TabStop  = false;
     //
     // txtPassword
     //
     this.txtPassword.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15)))));
     this.txtPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtPassword.Font        = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPassword.ForeColor   = System.Drawing.Color.DimGray;
     this.txtPassword.Location    = new System.Drawing.Point(309, 159);
     this.txtPassword.MaxLength   = 60;
     this.txtPassword.Name        = "txtPassword";
     this.txtPassword.Size        = new System.Drawing.Size(427, 20);
     this.txtPassword.TabIndex    = 14;
     this.txtPassword.Text        = "Contraseña";
     this.txtPassword.Enter      += new System.EventHandler(this.TxtPasswordEnter);
     this.txtPassword.Leave      += new System.EventHandler(this.TxtPasswordLeave);
     //
     // pictureBox1
     //
     this.pictureBox1.Enabled  = false;
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(309, 107);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(427, 11);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 17;
     this.pictureBox1.TabStop  = false;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Century Gothic", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.DimGray;
     this.label1.Location  = new System.Drawing.Point(309, 6);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(352, 37);
     this.label1.TabIndex  = 16;
     this.label1.Text      = "Welcome to SupliesVentas";
     //
     // txtUsuario
     //
     this.txtUsuario.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15)))));
     this.txtUsuario.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtUsuario.Font        = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUsuario.ForeColor   = System.Drawing.Color.DimGray;
     this.txtUsuario.Location    = new System.Drawing.Point(309, 85);
     this.txtUsuario.MaxLength   = 60;
     this.txtUsuario.Name        = "txtUsuario";
     this.txtUsuario.Size        = new System.Drawing.Size(427, 20);
     this.txtUsuario.TabIndex    = 13;
     this.txtUsuario.Text        = "Usuario";
     this.txtUsuario.Enter      += new System.EventHandler(this.TxtUsuarioEnter);
     this.txtUsuario.Leave      += new System.EventHandler(this.TxtUsuarioLeave);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.MediumSeaGreen;
     this.panel1.Controls.Add(this.pictureBox3);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(250, 291);
     this.panel1.TabIndex = 23;
     //
     // pictureBox3
     //
     this.pictureBox3.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location = new System.Drawing.Point(25, 70);
     this.pictureBox3.Name     = "pictureBox3";
     this.pictureBox3.Size     = new System.Drawing.Size(193, 178);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox3.TabIndex = 0;
     this.pictureBox3.TabStop  = false;
     //
     // FormLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15)))));
     this.ClientSize          = new System.Drawing.Size(764, 291);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.pictureBox5);
     this.Controls.Add(this.pictureBox4);
     this.Controls.Add(this.btnMinimizar);
     this.Controls.Add(this.btnCerrar);
     this.Controls.Add(this.btnAcceder);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.txtPassword);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtUsuario);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "FormLogin";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "FormLogin";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnMinimizar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCerrar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnVistaDetalle = new System.Windows.Forms.Button();
     this.btnVistaIconos = new System.Windows.Forms.Button();
     this.txFinder = new LibUtil.TextoMod();
     this.pnlBusqueda = new System.Windows.Forms.Panel();
     this.txtCodigo = new LibUtil.TextoMod();
     this.pnlBusqueda.SuspendLayout();
     this.SuspendLayout();
     //
     // btnVistaDetalle
     //
     this.btnVistaDetalle.FlatAppearance.BorderSize = 0;
     this.btnVistaDetalle.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnVistaDetalle.Image = global::Refaccionaria.App.Properties.Resources.VistaDetalle;
     this.btnVistaDetalle.Location = new System.Drawing.Point(633, 6);
     this.btnVistaDetalle.Name = "btnVistaDetalle";
     this.btnVistaDetalle.Size = new System.Drawing.Size(21, 21);
     this.btnVistaDetalle.TabIndex = 5;
     this.btnVistaDetalle.UseVisualStyleBackColor = true;
     this.btnVistaDetalle.Click += new System.EventHandler(this.btnVistaDetalle_Click);
     //
     // btnVistaIconos
     //
     this.btnVistaIconos.FlatAppearance.BorderSize = 0;
     this.btnVistaIconos.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnVistaIconos.Image = global::Refaccionaria.App.Properties.Resources.VistaIconos;
     this.btnVistaIconos.Location = new System.Drawing.Point(610, 6);
     this.btnVistaIconos.Name = "btnVistaIconos";
     this.btnVistaIconos.Size = new System.Drawing.Size(21, 21);
     this.btnVistaIconos.TabIndex = 2;
     this.btnVistaIconos.UseVisualStyleBackColor = true;
     this.btnVistaIconos.Click += new System.EventHandler(this.btnVistaIconos_Click);
     //
     // txFinder
     //
     this.txFinder.Etiqueta = "";
     this.txFinder.EtiquetaColor = System.Drawing.Color.Gray;
     this.txFinder.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txFinder.Location = new System.Drawing.Point(142, 7);
     this.txFinder.Name = "txFinder";
     this.txFinder.PasarEnfoqueConEnter = false;
     this.txFinder.SeleccionarTextoAlEnfoque = false;
     this.txFinder.Size = new System.Drawing.Size(462, 21);
     this.txFinder.TabIndex = 1;
     this.txFinder.TextChanged += new System.EventHandler(this.txFinder_TextChanged);
     //
     // pnlBusqueda
     //
     this.pnlBusqueda.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.pnlBusqueda.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(188)))), ((int)(((byte)(216)))));
     this.pnlBusqueda.Controls.Add(this.txtCodigo);
     this.pnlBusqueda.Controls.Add(this.txFinder);
     this.pnlBusqueda.Controls.Add(this.btnVistaDetalle);
     this.pnlBusqueda.Controls.Add(this.btnVistaIconos);
     this.pnlBusqueda.Location = new System.Drawing.Point(0, 0);
     this.pnlBusqueda.Name = "pnlBusqueda";
     this.pnlBusqueda.Size = new System.Drawing.Size(918, 34);
     this.pnlBusqueda.TabIndex = 10;
     //
     // txtCodigo
     //
     this.txtCodigo.Enabled = false;
     this.txtCodigo.Etiqueta = "Código";
     this.txtCodigo.EtiquetaColor = System.Drawing.Color.Gray;
     this.txtCodigo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCodigo.Location = new System.Drawing.Point(6, 7);
     this.txtCodigo.Name = "txtCodigo";
     this.txtCodigo.PasarEnfoqueConEnter = false;
     this.txtCodigo.SeleccionarTextoAlEnfoque = false;
     this.txtCodigo.Size = new System.Drawing.Size(130, 21);
     this.txtCodigo.TabIndex = 9;
     //
     // DirectorioVentasBusca
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(79)))), ((int)(((byte)(109)))));
     this.Controls.Add(this.pnlBusqueda);
     this.Name = "DirectorioVentasBusca";
     this.Size = new System.Drawing.Size(670, 129);
     this.pnlBusqueda.ResumeLayout(false);
     this.pnlBusqueda.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.map                  = new GMap.NET.WindowsForms.GMapControl();
     this.cbShowPokemon        = new System.Windows.Forms.CheckBox();
     this.buttonRefreshPokemon = new System.Windows.Forms.Button();
     this.cbShowPokeStops      = new System.Windows.Forms.CheckBox();
     this.buttonRefreshForts   = new System.Windows.Forms.Button();
     this.button1              = new System.Windows.Forms.Button();
     this.label3               = new System.Windows.Forms.Label();
     this.label2               = new System.Windows.Forms.Label();
     this.label1               = new System.Windows.Forms.Label();
     this.textBox3             = new System.Windows.Forms.TextBox();
     this.textBox2             = new System.Windows.Forms.TextBox();
     this.textBox1             = new System.Windows.Forms.TextBox();
     this.panel1               = new System.Windows.Forms.Panel();
     this.btnGetPoints         = new System.Windows.Forms.Button();
     this.lblAddress           = new System.Windows.Forms.Label();
     this.tbAddress            = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // map
     //
     this.map.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.map.Bearing             = 0F;
     this.map.CanDragMap          = true;
     this.map.EmptyTileColor      = System.Drawing.Color.Navy;
     this.map.GrayScaleMode       = false;
     this.map.HelperLineOption    = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
     this.map.LevelsKeepInMemmory = 5;
     this.map.Location            = new System.Drawing.Point(5, 5);
     this.map.Margin             = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.map.MarkersEnabled     = true;
     this.map.MaxZoom            = 2;
     this.map.MinZoom            = 2;
     this.map.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.map.Name                  = "map";
     this.map.NegativeMode          = false;
     this.map.PolygonsEnabled       = true;
     this.map.RetryLoadTile         = 0;
     this.map.RoutesEnabled         = true;
     this.map.ScaleMode             = GMap.NET.WindowsForms.ScaleModes.Integer;
     this.map.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
     this.map.ShowTileGridLines     = false;
     this.map.Size                  = new System.Drawing.Size(1031, 496);
     this.map.TabIndex              = 1;
     this.map.Zoom                  = 0D;
     this.map.OnMarkerClick        += new GMap.NET.WindowsForms.MarkerClick(this.map_OnMarkerClick);
     this.map.OnMapDrag            += new GMap.NET.MapDrag(this.map_OnMapDrag);
     this.map.Load                 += new System.EventHandler(this.map_Load);
     //
     // cbShowPokemon
     //
     this.cbShowPokemon.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbShowPokemon.AutoSize   = true;
     this.cbShowPokemon.Checked    = true;
     this.cbShowPokemon.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowPokemon.Location   = new System.Drawing.Point(151, 12);
     this.cbShowPokemon.Margin     = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbShowPokemon.Name       = "cbShowPokemon";
     this.cbShowPokemon.Size       = new System.Drawing.Size(127, 21);
     this.cbShowPokemon.TabIndex   = 22;
     this.cbShowPokemon.Text       = "Show Pokemon";
     this.cbShowPokemon.UseVisualStyleBackColor = true;
     this.cbShowPokemon.Visible            = false;
     this.cbShowPokemon.CheckStateChanged += new System.EventHandler(this.cbShowPokemon_CheckedChanged);
     //
     // buttonRefreshPokemon
     //
     this.buttonRefreshPokemon.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonRefreshPokemon.AutoSize = true;
     this.buttonRefreshPokemon.Location = new System.Drawing.Point(332, 2);
     this.buttonRefreshPokemon.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.buttonRefreshPokemon.Name     = "buttonRefreshPokemon";
     this.buttonRefreshPokemon.Size     = new System.Drawing.Size(175, 33);
     this.buttonRefreshPokemon.TabIndex = 20;
     this.buttonRefreshPokemon.Text     = "Refresh Pokemon";
     this.buttonRefreshPokemon.UseVisualStyleBackColor = true;
     this.buttonRefreshPokemon.Visible = false;
     this.buttonRefreshPokemon.Click  += new System.EventHandler(this.cbShowPokemon_CheckedChanged);
     //
     // cbShowPokeStops
     //
     this.cbShowPokeStops.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbShowPokeStops.AutoSize   = true;
     this.cbShowPokeStops.Checked    = true;
     this.cbShowPokeStops.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowPokeStops.Location   = new System.Drawing.Point(5, 12);
     this.cbShowPokeStops.Margin     = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.cbShowPokeStops.Name       = "cbShowPokeStops";
     this.cbShowPokeStops.Size       = new System.Drawing.Size(129, 21);
     this.cbShowPokeStops.TabIndex   = 19;
     this.cbShowPokeStops.Text       = "Show PokeStop";
     this.cbShowPokeStops.UseVisualStyleBackColor = true;
     this.cbShowPokeStops.Visible         = false;
     this.cbShowPokeStops.CheckedChanged += new System.EventHandler(this.cbShowPokeStops_CheckedChanged);
     //
     // buttonRefreshForts
     //
     this.buttonRefreshForts.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonRefreshForts.AutoSize = true;
     this.buttonRefreshForts.Location = new System.Drawing.Point(495, 2);
     this.buttonRefreshForts.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.buttonRefreshForts.Name     = "buttonRefreshForts";
     this.buttonRefreshForts.Size     = new System.Drawing.Size(184, 33);
     this.buttonRefreshForts.TabIndex = 21;
     this.buttonRefreshForts.Text     = "Refresh Pokestops";
     this.buttonRefreshForts.UseVisualStyleBackColor = true;
     this.buttonRefreshForts.Visible = false;
     this.buttonRefreshForts.Click  += new System.EventHandler(this.cbShowPokeStops_CheckedChanged);
     //
     // button1
     //
     this.button1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button1.Location = new System.Drawing.Point(752, 60);
     this.button1.Margin   = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(177, 28);
     this.button1.TabIndex = 18;
     this.button1.Text     = "Set Location";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(507, 65);
     this.label3.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(59, 17);
     this.label3.TabIndex = 17;
     this.label3.Text     = "Altitude:";
     //
     // label2
     //
     this.label2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(248, 65);
     this.label2.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(75, 17);
     this.label2.TabIndex = 16;
     this.label2.Text     = "Longitude:";
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(1, 65);
     this.label1.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(63, 17);
     this.label1.TabIndex = 15;
     this.label1.Text     = "Latitude:";
     //
     // textBox3
     //
     this.textBox3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox3.Location = new System.Drawing.Point(575, 64);
     this.textBox3.Margin   = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(165, 22);
     this.textBox3.TabIndex = 14;
     //
     // textBox2
     //
     this.textBox2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox2.Location     = new System.Drawing.Point(332, 64);
     this.textBox2.Margin       = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.textBox2.Name         = "textBox2";
     this.textBox2.Size         = new System.Drawing.Size(165, 22);
     this.textBox2.TabIndex     = 13;
     this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // textBox1
     //
     this.textBox1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox1.Location     = new System.Drawing.Point(73, 64);
     this.textBox1.Margin       = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.textBox1.Name         = "textBox1";
     this.textBox1.Size         = new System.Drawing.Size(165, 22);
     this.textBox1.TabIndex     = 12;
     this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.Controls.Add(this.cbShowPokeStops);
     this.panel1.Controls.Add(this.cbShowPokemon);
     this.panel1.Controls.Add(this.buttonRefreshPokemon);
     this.panel1.Controls.Add(this.buttonRefreshForts);
     this.panel1.Controls.Add(this.btnGetPoints);
     this.panel1.Controls.Add(this.lblAddress);
     this.panel1.Controls.Add(this.tbAddress);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.textBox2);
     this.panel1.Controls.Add(this.textBox3);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Location = new System.Drawing.Point(3, 412);
     this.panel1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(936, 91);
     this.panel1.TabIndex = 23;
     //
     // btnGetPoints
     //
     this.btnGetPoints.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnGetPoints.Location = new System.Drawing.Point(495, 36);
     this.btnGetPoints.Margin   = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.btnGetPoints.Name     = "btnGetPoints";
     this.btnGetPoints.Size     = new System.Drawing.Size(144, 28);
     this.btnGetPoints.TabIndex = 25;
     this.btnGetPoints.Text     = "Get Point";
     this.btnGetPoints.UseVisualStyleBackColor = true;
     this.btnGetPoints.Click += new System.EventHandler(this.BtnGetPointsClick);
     //
     // lblAddress
     //
     this.lblAddress.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblAddress.AutoSize = true;
     this.lblAddress.Location = new System.Drawing.Point(5, 39);
     this.lblAddress.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblAddress.Name     = "lblAddress";
     this.lblAddress.Size     = new System.Drawing.Size(64, 17);
     this.lblAddress.TabIndex = 24;
     this.lblAddress.Text     = "Address:";
     //
     // tbAddress
     //
     this.tbAddress.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbAddress.Location = new System.Drawing.Point(73, 36);
     this.tbAddress.Margin   = new System.Windows.Forms.Padding(5, 5, 5, 5);
     this.tbAddress.Name     = "tbAddress";
     this.tbAddress.Size     = new System.Drawing.Size(415, 22);
     this.tbAddress.TabIndex = 23;
     //
     // LocationPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.map);
     this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.Name   = "LocationPanel";
     this.Size   = new System.Drawing.Size(945, 506);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }