Inheritance: Control
Esempio n. 1
1
        public ChangeSettings()
        {
            InitializeComponent();

            for (int i = 0; i < Types.Length; i++)
            {
                if (Types[i] != typeof(bool))
                {
                    TextBox tb = new TextBox();
                    tb.Text = set[Names[i, 0]].ToString();
                    tb.Size = new Size(100, lineDist);
                    tb.Location = new Point(185, i * (lineDist + 5) + 20);
                    Controls.Add(tb);
                    controlList.Add(tb);
                    toolTip1.SetToolTip(tb, Names[i, 2]);
                }
                else
                {
                    CheckBox cb = new CheckBox();
                    cb.Checked = (bool)set[Names[i, 0]];
                    cb.Location = new Point(185, i * (lineDist + 5) + 20);
                    Controls.Add(cb);
                    controlList.Add(cb);
                    toolTip1.SetToolTip(cb, Names[i, 2]);
                }

                Label l = new Label();
                l.Text = Names[i, 1];
                l.AutoSize = true;
                l.Location = new Point(180 - TextRenderer.MeasureText(l.Text, new Font(l.Font.FontFamily, l.Font.Size, l.Font.Style)).Width, i * (lineDist + 5) + 20);
                Controls.Add(l);
                toolTip1.SetToolTip(l, Names[i, 2]);
            }
        }
Esempio n. 2
1
		protected TextBox BuildDirPanel(Control parent, String name)
		{
			Panel panel = new Panel();
			panel.Dock = DockStyle.Top;
			panel.Height = 60;

			Label l = new Label();
			l.Location = new Point(0, 0);
			l.Dock = DockStyle.Left;
			l.Text = name;
			l.AutoSize = true;
			panel.Controls.Add(l);

			TextBox textBox = new TextBox();
			textBox.Location = new Point(10, 20);
			textBox.Width = ((ICustPanel)this).PreferredSize.Width - 40;
			panel.Controls.Add(textBox);
			
			// Don't have a reasonable directory browser and don't feel
			// like doing the P/Invoke for the underlying one.  Sigh.
			/*****
			Button b = new Button();
			b.Location = new Point(120, 20);
			b.Width = 20;
			b.Text = "...";
			b.Tag = textBox;
			b.Click += new EventHandler(DirButtonClicked);
			panel.Controls.Add(b);
			*****/
			
			parent.Controls.Add(panel);
			
			return textBox;
		}
Esempio n. 3
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.label1 = new System.Windows.Forms.Label();
			this.txtLine = new System.Windows.Forms.TextBox();
			this.btnOK = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(24, 18);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(72, 16);
			this.label1.TabIndex = 0;
			this.label1.Text = "Line Number";
			// 
			// txtLine
			// 
			this.txtLine.Location = new System.Drawing.Point(104, 16);
			this.txtLine.Name = "txtLine";
			this.txtLine.Size = new System.Drawing.Size(112, 20);
			this.txtLine.TabIndex = 1;
			this.txtLine.Text = "";
			// 
			// btnOK
			// 
			this.btnOK.Location = new System.Drawing.Point(240, 16);
			this.btnOK.Name = "btnOK";
			this.btnOK.TabIndex = 2;
			this.btnOK.Text = "&OK";
			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
			// 
			// btnCancel
			// 
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnCancel.Location = new System.Drawing.Point(240, 48);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.TabIndex = 3;
			this.btnCancel.Text = "&Cancel";
			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
			// 
			// Goto
			// 
			this.AcceptButton = this.btnOK;
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.btnCancel;
			this.ClientSize = new System.Drawing.Size(338, 87);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.txtLine);
			this.Controls.Add(this.label1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "Goto";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Go To";
			this.ResumeLayout(false);

		}
        public override Figure Turn(Label[,] _Labels, int[] posI, int[] posJ)
        {
            Figure name = new turnedRightT();

            int positionI = posI[2], positionJ = posJ[2];
            if (positionI + 1 < 10)
            {
                if (name.CanMoveRight(_Labels, posI, posJ))
                {
                    for (int i = 0; i < 4; i++)
                    {
                        _Labels[posI[i], posJ[i]].Tag = "0";
                    }
                    for (int i = 1; i < 4; i++)
                    {
                        posI[i] = positionI - 2 + i;
                        posJ[i] = positionJ;
                    }
                    posI[0] = positionI;
                    posJ[0] = positionJ - 1;
                    name = new turnedOverT();
                    for (int i = 0; i < 4; i++)
                    {
                        _Labels[posI[i], posJ[i]].Tag = "6";
                    }
                }
            }
            return name;
        }
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()
		{
			this.btnRun = new System.Windows.Forms.Button();
			this.btnAbout = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.checkBox1 = new System.Windows.Forms.CheckBox();
			this.SuspendLayout();
			// 
			// btnRun
			// 
			this.btnRun.Location = new System.Drawing.Point(448, 56);
			this.btnRun.Name = "btnRun";
			this.btnRun.Size = new System.Drawing.Size(72, 23);
			this.btnRun.TabIndex = 2;
			this.btnRun.Text = "Run";
			this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
			// 
			// btnAbout
			// 
			this.btnAbout.Location = new System.Drawing.Point(528, 56);
			this.btnAbout.Name = "btnAbout";
			this.btnAbout.TabIndex = 3;
			this.btnAbout.Text = "Close";
			this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label1.Location = new System.Drawing.Point(16, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(558, 18);
			this.label1.TabIndex = 4;
			this.label1.Text = "The sample demonstrates how to create percent stacked line chart in an excel work" +
				"book.";
			// 
			// checkBox1
			// 
			this.checkBox1.Location = new System.Drawing.Point(24, 48);
			this.checkBox1.Name = "checkBox1";
			this.checkBox1.Size = new System.Drawing.Size(160, 24);
			this.checkBox1.TabIndex = 5;
			this.checkBox1.Text = "Stacked markers chart";
			// 
			// Form1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(616, 94);
			this.Controls.Add(this.checkBox1);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.btnAbout);
			this.Controls.Add(this.btnRun);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "Form1";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Chart sample";
			this.ResumeLayout(false);

		}
Esempio n. 6
0
        private void AddSelection(string text, Type dataType, object[] items, object dataSource, string dataMember)
        {
            int row = uxTable.RowCount++ - 1;
            uxTable.RowStyles.Insert(row, new RowStyle(SizeType.Absolute, 30));

            var label = new Label();
            label.Text = text;
            label.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;

            var combobox = new ComboBox();
            combobox.DropDownStyle = ComboBoxStyle.DropDownList;
            combobox.DataSource = items;
            //combobox.DataBindings.Add("SelectedValue", dataSource, dataMember, true);
            combobox.SelectedValueChanged += (sender, e) =>
                                             {
                                             	object value = Enum.Parse(dataType, combobox.SelectedItem.ToString());
                                             	GetType().GetProperty(dataMember).SetValue(dataSource, value, null);
                                             };
            combobox.SelectedValue = GetType().GetProperty(dataMember).GetValue(dataSource, null);

            uxTable.Controls.Add(label, 0, row);
            uxTable.Controls.Add(combobox, 1, row);

            uxTable.SetColumnSpan(combobox, 2);
        }
Esempio n. 7
0
		private void InitializeComponent()
		{
			this.testLabel = new System.Windows.Forms.Label();
			testLabel.Text = "test";
			this.statBar = new System.Windows.Forms.StatusBar();
			this.msgPanel = new System.Windows.Forms.StatusBarPanel();
			((System.ComponentModel.ISupportInitialize)(this.msgPanel)).BeginInit();
			this.SuspendLayout();
			this.statBar.Location = new System.Drawing.Point(0, 400);
			this.statBar.Name = "statBar";
			this.statBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
																					   this.msgPanel
																					   });

			this.statBar.ShowPanels = true;
			this.statBar.Size = new System.Drawing.Size(536, 22);
			this.statBar.TabIndex = 0;
			this.statBar.DrawItem += new System.Windows.Forms.StatusBarDrawItemEventHandler(this.statBar_DrawItem);
			this.Controls.Add(this.statBar);
			// 
			// msgPanel
			// 
			this.msgPanel.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
			this.msgPanel.Style = System.Windows.Forms.StatusBarPanelStyle.OwnerDraw;
			this.msgPanel.Width = 341;
			this.Controls.Add(this.statBar);
			((System.ComponentModel.ISupportInitialize)(this.msgPanel)).EndInit();
			this.ResumeLayout(false);
		}
        private void AddUpdatedLabel(string fieldName, string labelCaption)
        {
            if (String.IsNullOrEmpty(labelCaption))
                return;
            Label newLabel = new Label();
            newLabel.AutoSize = true;
            newLabel.Location = new System.Drawing.Point(labelUpdateIssueNote.Location.X, labelUpdateIssueNote.Location.Y);
            newLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            newLabel.Name = "labelUpdateField_" + fieldName;
            newLabel.Size = new System.Drawing.Size(44, 13);
            newLabel.TabIndex = 4;
            newLabel.Text = labelCaption;
            newLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            Controls.Add(newLabel);
            if (newLabel.Size.Width > Size.Width - newLabel.Location.X - 10)
                this.Size = new Size(newLabel.Location.X + newLabel.Size.Width + 10, this.Size.Height);

            SuspendLayout();
            int newLabelHeight = newLabel.Height + 5;
            Size = new System.Drawing.Size(Size.Width, Size.Height + newLabelHeight);
            MinimumSize = new System.Drawing.Size(MinimumSize.Width, MinimumSize.Height + newLabelHeight);
            labelUpdateIssueNote.MoveControl(0, newLabelHeight);
            TextBoxDescription.MoveControl(0, newLabelHeight);
            BtnSaveButton.MoveControl(0, newLabelHeight);
            BtnCancelButton.MoveControl(0, newLabelHeight);
            ResumeLayout(false);
        }
Esempio n. 9
0
        private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            try
            {
                Label lb = new Label();
                lb.AutoSize = true;
                lb.Margin = new Padding(3, 3, 3, 3);
                lb.BorderStyle = BorderStyle.FixedSingle;
                lb.Text = string.Format("{0} - {1}", this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString(), this.dataGridView1.SelectedRows[0].Cells[1].Value.ToString());
                lb.Tag = string.Format("{0} {1}", this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString(), this.dataGridView1.SelectedRows[0].Cells[2].Value.ToString());
                OnButtonClick lbClick = (object sender1, EventArgs e1) =>
                {
                    lb.Dispose();
                };
                lb.DoubleClick += new EventHandler(lbClick);

                this.flowLayoutPanel1.Controls.Add(lb);
            }
            catch (Exception ex)
            {
                //MessageBox.Show(ex.ToString());
                MessageBox.Show(ex.Message);
                return;
            }
        }
 private void InitializeComponent()
 {
     this.btnViewReport = new BitmapButton();
     this.label3 = new Label();
     this.lblMessage = new Label();
     base.SuspendLayout();
     this.btnViewReport.BackColor = Color.FromArgb(0xcb, 0xd7, 0xdf);
     this.btnViewReport.BorderColor = ARGBColors.DarkBlue;
     this.btnViewReport.BorderDrawing = true;
     this.btnViewReport.FocusRectangleEnabled = false;
     this.btnViewReport.Image = null;
     this.btnViewReport.ImageBorderColor = ARGBColors.Chocolate;
     this.btnViewReport.ImageBorderEnabled = true;
     this.btnViewReport.ImageDropShadow = true;
     this.btnViewReport.ImageFocused = null;
     this.btnViewReport.ImageInactive = null;
     this.btnViewReport.ImageMouseOver = null;
     this.btnViewReport.ImageNormal = null;
     this.btnViewReport.ImagePressed = null;
     this.btnViewReport.InnerBorderColor = ARGBColors.LightGray;
     this.btnViewReport.InnerBorderColor_Focus = ARGBColors.LightBlue;
     this.btnViewReport.InnerBorderColor_MouseOver = ARGBColors.Gold;
     this.btnViewReport.Location = new Point(0x73, 130);
     this.btnViewReport.Name = "btnViewReport";
     this.btnViewReport.OffsetPressedContent = true;
     this.btnViewReport.Padding2 = 5;
     this.btnViewReport.Size = new Size(0xc9, 0x27);
     this.btnViewReport.StretchImage = false;
     this.btnViewReport.TabIndex = 2;
     this.btnViewReport.Text = "View Report";
     this.btnViewReport.TextDropShadow = false;
     this.btnViewReport.UseVisualStyleBackColor = false;
     this.btnViewReport.Click += new EventHandler(this.btnOK_Click);
     this.label3.AutoSize = true;
     this.label3.BackColor = ARGBColors.Transparent;
     this.label3.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.label3.ForeColor = ARGBColors.White;
     this.label3.Location = new Point(0xb3, 7);
     this.label3.Name = "label3";
     this.label3.Size = new Size(0, 0x10);
     this.label3.TabIndex = 9;
     this.lblMessage.BackColor = ARGBColors.Transparent;
     this.lblMessage.Location = new Point(12, 0x2c);
     this.lblMessage.Name = "lblMessage";
     this.lblMessage.Size = new Size(0x196, 0x4d);
     this.lblMessage.TabIndex = 13;
     this.lblMessage.Text = "label1";
     this.lblMessage.TextAlign = ContentAlignment.MiddleCenter;
     base.AutoScaleMode = AutoScaleMode.None;
     this.BackColor = Color.FromArgb(0x9f, 180, 0xc1);
     base.ClientSize = new Size(430, 0xda);
     base.Controls.Add(this.lblMessage);
     base.Controls.Add(this.btnViewReport);
     base.Icon = Resources.shk_icon;
     base.Name = "TutorialBattleReportPopup";
     base.ShowClose = true;
     base.Controls.SetChildIndex(this.btnViewReport, 0);
     base.Controls.SetChildIndex(this.lblMessage, 0);
     base.ResumeLayout(false);
 }
Esempio n. 11
0
		public osd_screen (int num, OSD aosd)
		{
			number=num;
			osd=aosd;
			
			num+=1;
			
			this.tabPage = new System.Windows.Forms.TabPage();		
			this.panelItems=new Panel[64];
			this.panelItems_default = new Panel[64];
			this.LIST_items=new System.Windows.Forms.TreeView();
			this.rbtSortCategory = new System.Windows.Forms.RadioButton();
            this.rbtSortAlphabetic = new System.Windows.Forms.RadioButton();
			this.groupBox = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.NUM_Y = new System.Windows.Forms.NumericUpDown();
            this.NUM_X = new System.Windows.Forms.NumericUpDown();
			this.pictureBox = new System.Windows.Forms.PictureBox();
			this.chkSign = new System.Windows.Forms.CheckBox();
			
			this.tabPage.SuspendLayout();
			this.groupBox.SuspendLayout();
			this.pictureBox.SuspendLayout();
		}
Esempio n. 12
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.labName = new System.Windows.Forms.Label();
			this.cmb = new System.Windows.Forms.ComboBox();
			this.SuspendLayout();
			// 
			// labName
			// 
			this.labName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.labName.Location = new System.Drawing.Point(0, 0);
			this.labName.Name = "labName";
			this.labName.Size = new System.Drawing.Size(96, 16);
			this.labName.TabIndex = 0;
			// 
			// cmb
			// 
			this.cmb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmb.Location = new System.Drawing.Point(0, 16);
			this.cmb.Name = "cmb";
			this.cmb.Size = new System.Drawing.Size(96, 21);
			this.cmb.TabIndex = 1;
			this.cmb.SelectedIndexChanged += new System.EventHandler(this.cmb_SelectedIndexChanged);
			// 
			// EnumParam
			// 
			this.Controls.Add(this.cmb);
			this.Controls.Add(this.labName);
			this.Name = "EnumParam";
			this.Size = new System.Drawing.Size(96, 36);
			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.label1 = new System.Windows.Forms.Label();
     this.cbMouseActive = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(240, 176);
     this.label1.TabIndex = 2;
     this.label1.Text = "label1";
     //
     // cbMouseActive
     //
     this.cbMouseActive.Location = new System.Drawing.Point(16, 176);
     this.cbMouseActive.Name = "cbMouseActive";
     this.cbMouseActive.Size = new System.Drawing.Size(128, 24);
     this.cbMouseActive.TabIndex = 3;
     this.cbMouseActive.Text = "Only MouseActive";
     //
     // SpritesUnderCursor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(240, 197);
     this.Controls.Add(this.cbMouseActive);
     this.Controls.Add(this.label1);
     this.Name = "SpritesUnderCursor";
     this.Text = "SpritesUnderCursor";
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.SpritesUnderCursor_Paint);
     this.ResumeLayout(false);
 }
Esempio n. 14
0
        public FormSplash()
        {
            InitializeComponent();
            labelVersion.Text = string.Format("Version {0}  ", System.Reflection.Assembly.GetExecutingAssembly().GetName().Version);

            if (!string.IsNullOrEmpty(Branding.SplashImageFile) && File.Exists(Branding.SplashImageFile))
            {
                labelVersion.Dock = DockStyle.Top;
                pictureBox1.Image = new Bitmap(Branding.SplashImageFile);
                pictureBox1.Dock = DockStyle.None;
                pictureBox1.Left = 0;
                pictureBox1.Top = labelVersion.Bottom + 1;
                Label linkCopyright = new Label();
                linkCopyright.Text = "Copyright © 2004-2010 Slyce Software Limited";
                linkCopyright.Font = new Font(new FontFamily("Verdana"), 8, FontStyle.Italic);
                this.Width = pictureBox1.Width;
                this.Height = pictureBox1.Height + labelVersion.Height + linkCopyright.Height;
                this.Controls.Add(linkCopyright);
                linkCopyright.Dock = DockStyle.Bottom;
                linkCopyright.TextAlign = ContentAlignment.MiddleRight;
            }
            else
            {
                pictureBox1.Width = pictureBox1.Image.Width;
                pictureBox1.Height = pictureBox1.Image.Height;
                this.Width = pictureBox1.Width;
                this.Height = pictureBox1.Height;
            }
        }
        /// <summary>
        /// Imports the toolStripContainer with all his nice controls into the given form
        /// also adds the controls from this.pnlContentHolder to masterFormContents.pnlContentHolder
        /// </summary>
        public static void InitializeContent(Form newForm,
            Label lblTooltip,
            ToolStripContainer toolStripContainer,
            Panel pnlContentHolder,
            CNNProjectHolder cnnProjectHolder)
        {
            MasterForm masterFormContents = new MasterForm(newForm, cnnProjectHolder);

            // import
            toolStripContainer = masterFormContents.toolStripContainer1;
            newForm.Controls.Add(toolStripContainer);

            // control replacement
            newForm.Controls.Remove(pnlContentHolder);
            newForm.Controls.Remove(lblTooltip);
            masterFormContents.pnlContentHolder.Controls.Clear();

            foreach (Control control in pnlContentHolder.Controls)
            {
                masterFormContents.pnlContentHolder.Controls.Add(control);
            }

            int time = (cnnProjectHolder.CNNProject.ExpertMode) ? 1 : 5000;

            masterFormContents.ShowPictureBoxBalloon(lblTooltip.Text, time, newForm, true);
            masterFormContents.lblHeading.Text = newForm.Text;
        }
Esempio n. 16
0
 public output(int num)
 {
     m_num=num;
     InitializeComponent();
     m_Bars = new List<VerticalProgressBar>(m_num);
     mLabels = new List<Label>(m_num);
     VerticalProgressBar temp;
     Label lbl;
     for (int i = 0; i < m_num; i++)
     {
         temp = new VerticalProgressBar();
         temp.Top = 0;
         temp.Width = barW;
         temp.Height=barH;
         temp.Left = (barW + barM) * i;
         temp.Value = 0;
         temp.Maximum = 255;
         temp.Style = Styles.Solid;
         lbl = new Label();
         lbl.Text = string.Format("{0}", i + 1);
         lbl.Top = temp.Bottom + lbl.Margin.Top;
         lbl.Left = temp.Left;
         lbl.Width = barW;
         lbl.Height = 40;
         mLabels.Add(lbl);
         m_Bars.Add(temp);
         this.Controls.Add(temp);
         this.Controls.Add(lbl);
     }
 }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.operation = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// operation
			// 
			this.operation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.operation.Dock = System.Windows.Forms.DockStyle.Fill;
			this.operation.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.operation.Location = new System.Drawing.Point(0, 0);
			this.operation.Name = "operation";
			this.operation.Size = new System.Drawing.Size(320, 40);
			this.operation.TabIndex = 0;
			this.operation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// LongRunningOperationDisplay
			// 
			this.BackColor = System.Drawing.Color.LightYellow;
			this.ClientSize = new System.Drawing.Size(320, 40);
			this.ControlBox = false;
			this.Controls.Add(this.operation);
			this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "LongRunningOperationDisplay";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
			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.pocBx = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // pocBx
     //
     this.pocBx.Location = new System.Drawing.Point(128, 8);
     this.pocBx.Name = "pocBx";
     this.pocBx.Size = new System.Drawing.Size(80, 20);
     this.pocBx.TabIndex = 5;
     this.pocBx.Text = "0";
     this.pocBx.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(104, 24);
     this.label1.TabIndex = 4;
     this.label1.Text = "Percent of Charges";
     //
     // Edit_Ceiling_POC_Ctrl
     //
     this.Controls.Add(this.pocBx);
     this.Controls.Add(this.label1);
     this.Name = "Edit_Ceiling_POC_Ctrl";
     this.Size = new System.Drawing.Size(264, 48);
     this.ResumeLayout(false);
 }
Esempio n. 19
0
        private void InitializeComponent()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(237, 312);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(0, 13);
            this.label1.TabIndex = 0;
            // 
            // SubtitleForm
            // 
            this.ClientSize = new System.Drawing.Size(595, 635);
            this.ControlBox = false;
            this.Controls.Add(this.label1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "SubtitleForm";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        public void processResult()
        {
            kidAnswer[0] = textBoxA1.Text.ToLower().Replace(" ","");
            kidAnswer[1] = textBoxA2.Text.ToLower().Replace(" ","");
            kidAnswer[2] = textBoxA3.Text.ToLower().Replace(" ","");
            kidAnswer[3] = textBoxA4.Text.ToLower().Replace(" ","");
            kidAnswer[4] = textBoxA5.Text.ToLower().Replace(" ","");
            kidAnswer[5] = textBoxA6.Text.ToLower().Replace(" ","");

            int i = 0;

            Label[] myLabel = new Label[7];
            myLabel[0] = label2;
            myLabel[1] = label3;
            myLabel[2] = label4;
            myLabel[3] = label5;
            myLabel[4] = label6;
            myLabel[5] = label7;

            for (i = 0; i < 6; i++)
            {
                if (kidAnswer[i] == rightAnswer[i])
                {

                     myLabel[i].Text = "Correct\nAnswer";
                     myLabel[i].ForeColor = System.Drawing.Color.Green;
                }
                else
                {
                    myLabel[i].Text = "Wrong\nAnswer";
                    myLabel[i].ForeColor = System.Drawing.Color.Red;
                }
            }
        }
Esempio n. 21
0
 private void InitializeComponent()
 {
     this.tbxPrintName = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     base.SuspendLayout();
     this.tbxPrintName.set_Location(new System.Drawing.Point(0x4c, 12));
     this.tbxPrintName.set_Margin(new System.Windows.Forms.Padding(4, 4, 4, 4));
     this.tbxPrintName.set_Name("tbxPrintName");
     this.tbxPrintName.set_Size(new System.Drawing.Size(0x1bd, 0x16));
     this.tbxPrintName.set_TabIndex(0);
     this.label1.set_AutoSize(true);
     this.label1.set_Location(new System.Drawing.Point(13, 0x12));
     this.label1.set_Margin(new System.Windows.Forms.Padding(4, 0, 4, 0));
     this.label1.set_Name("label1");
     this.label1.set_Size(new System.Drawing.Size(0x27, 0x10));
     this.label1.set_TabIndex(1);
     this.label1.set_Text("ФИО");
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(8f, 16f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.set_ClientSize(new System.Drawing.Size(0x213, 0x1cf));
     base.Controls.Add(this.label1);
     base.Controls.Add(this.tbxPrintName);
     this.set_Font(new System.Drawing.Font("Microsoft Sans Serif", 9.75f));
     base.set_Margin(new System.Windows.Forms.Padding(4, 4, 4, 4));
     base.set_Name("AddBenefitResident");
     this.set_Text("AddBenefitResident");
     base.add_Load(new System.EventHandler(this.AddBenefitResident_Load));
     base.ResumeLayout(false);
     base.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.cboParticipantIDValue = new LookUpEdit();
     this.cboPartType = new LookUpEdit();
     this.label4 = new Label();
     this.cboParticipantIDValue.Properties.BeginInit();
     this.cboPartType.Properties.BeginInit();
     base.SuspendLayout();
     this.cboParticipantIDValue.Location = new Point(0x36, 0x29);
     this.cboParticipantIDValue.Name = "cboParticipantIDValue";
     this.cboParticipantIDValue.Size = new Size(0xbc, 0x17);
     this.cboParticipantIDValue.TabIndex = 6;
     this.cboPartType.Location = new Point(0x36, 12);
     this.cboPartType.Name = "cboPartType";
     this.cboPartType.Size = new Size(0xbc, 0x17);
     this.cboPartType.TabIndex = 4;
     this.label4.AutoSize = true;
     this.label4.Location = new Point(11, 15);
     this.label4.Name = "label4";
     this.label4.Size = new Size(0x29, 12);
     this.label4.TabIndex = 5;
     this.label4.Text = "类型:";
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.cboParticipantIDValue);
     base.Controls.Add(this.cboPartType);
     base.Controls.Add(this.label4);
     base.Name = "ParticipantTypeEdit";
     base.Size = new Size(0xfe, 0x4a);
     this.cboParticipantIDValue.Properties.EndInit();
     this.cboPartType.Properties.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Esempio n. 23
0
 public void AssignCommandToLabel()
 {
     TestViewModel viewModel = new TestViewModel();
     using(var label = new Label()) {
         label.SetCommand(viewModel.TestCommand);
     }
 }
        private void label_click(object sender, EventArgs e)
        {
            if (timer1.Enabled == true) {
                return;
            }
            sw1.Start();
            Label labelClicked = sender as Label;
            if (labelClicked != null)
            {
                
                if (labelClicked.ForeColor.Equals(Color.Black)) 
                    return;

                if (firstClick == null)
                {
                    firstClick = labelClicked;
                    firstClick.ForeColor = Color.Black;
                    return;
                }

                secondClick = labelClicked;
                secondClick.ForeColor = Color.Black;
                checkIfWon();
                if (firstClick.Text == secondClick.Text) {
                    firstClick = null;
                    secondClick = null;
                    return;
                }
                timer1.Start();
            }
        }
        public new void Load(Tabs _tabs)
        {
            for (int i = 0; i < Properties.Length; i += 3)
            {
                int y = i * 9;

                string propertyName = Properties[i];
                string text = Properties[i + 1];
                string type = Properties[i + 2];

                Label label = new Label();
                label.Text = text;
                label.Location = new Point(0, y);
                label.Font = new Font("Calibri", 12);
                this.Controls.Add(label);

                switch (type)
                {
                    case "boolean":
                        break;
                }
            }
            this.tabs = _tabs;
            tabs.AddTab("Ustawienia", this);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.uiGeneratingLabel = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // uiGeneratingLabel
     //
     this.uiGeneratingLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.uiGeneratingLabel.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.uiGeneratingLabel.Location = new System.Drawing.Point(82, 45);
     this.uiGeneratingLabel.Name = "uiGeneratingLabel";
     this.uiGeneratingLabel.TabIndex = 0;
     this.uiGeneratingLabel.Text = "Generating...";
     //
     // GeneratingWindow
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.Window;
     this.ClientSize = new System.Drawing.Size(264, 112);
     this.Controls.Add(this.uiGeneratingLabel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "GeneratingWindow";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.ResumeLayout(false);
 }
Esempio n. 27
0
        internal void ImprimirGasto(Label msjError, decimal monto, string gasto)
        {
            try
            {
                string ticket = Settings.Default.ticketGasto.Replace("##FECHA", DateTime.Now.ToString("dd-MM-yyyy")).
                Replace("##HORA", DateTime.Now.ToShortTimeString()).Replace("##NRO", obtenerNroTicketCocina().ToString());
                ticket = ticket + string.Format("{0:C}", monto).PadLeft(8) + "    " + gasto + "\r\n";

                try
                {
                    guardarArchivoTemp(ticket, out cantLineas);
                    configurarImpresora(ref formulario, cantLineas, 0);
                    formulario.PrinterSettings.PrinterName = obtenerImpresora("Tickets");// PrinterSettings.InstalledPrinters[2];//Seleccionar impresora cocina
                    formulario.Print();
                }
                catch (Exception e)
                {
                    msjError.Text = e.Message;
                }
            }
            catch (Exception ex)
            {
                msjError.Text = ex.Message;
                LoggerProxy.Error(ex.Message + " - " + ex.StackTrace);
            }
        }
        /// <summary>
        /// Changes data of an existing Kunde/Kontakt
        /// </summary>
        /// <param name="k">The to-be-changed Kunde/Kontakt</param>
        /// <param name="errorlabel">The label in which errormessages may be written</param>
        public void Change(KundeKontaktTable k, Label errorlabel)
        {
            errorlabel.Hide();

            IRule lnhsv = new LettersNumbersHyphenSpaceValidator();
            IRule lhv = new LettersHyphenValidator();
            IRule lengthv = new StringLength150Validator();

            DataBindingFramework.BindFromString(k.Vorname, "Vorname", errorlabel, true, lhv, lengthv);
            DataBindingFramework.BindFromString(k.NachnameFirmenname, "Nachname", errorlabel, false, lnhsv, lengthv);

            if (errorlabel.Visible)
            {
                throw new InvalidInputException();
            }

            // else save new Kunde or Kontakt in database
            if (k.Vorname.Length == 0)
            {
                this.logger.Log(Logger.Level.Info, "No first name will be stored.");
            }

            this.logger.Log(Logger.Level.Info, "User requested to change " + (k.Type == false ? "Kunde" : "Kontakt") + " with ID " + k.ID);

            // Update data
            try
            {
                DALFactory.GetDAL().UpdateKundeKontakte(k);
            }
            catch (SQLiteException)
            {
                throw;
            }
        }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			this.btnBack = new System.Windows.Forms.Button();
			this.btnNext = new System.Windows.Forms.Button();
			this.Pick_Searches = new OGen.NTier.presentationlayer.winforms.ucPick_Searches();
			this.label1 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// btnBack
			// 
			this.btnBack.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnBack.Location = new System.Drawing.Point(16, 248);
			this.btnBack.Name = "btnBack";
			this.btnBack.Size = new System.Drawing.Size(72, 23);
			this.btnBack.TabIndex = 9;
			this.btnBack.Text = "<< &Back";
			// 
			// btnNext
			// 
			this.btnNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNext.Location = new System.Drawing.Point(208, 248);
			this.btnNext.Name = "btnNext";
			this.btnNext.Size = new System.Drawing.Size(72, 23);
			this.btnNext.TabIndex = 8;
			this.btnNext.Text = "&Next >>";
			// 
			// Pick_Searches
			// 
			this.Pick_Searches.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.Pick_Searches.Location = new System.Drawing.Point(8, 24);
			this.Pick_Searches.Name = "Pick_Searches";
			this.Pick_Searches.Size = new System.Drawing.Size(280, 216);
			this.Pick_Searches.TabIndex = 10;
			// 
			// label1
			// 
			this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.label1.Location = new System.Drawing.Point(8, 0);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(280, 23);
			this.label1.TabIndex = 11;
			this.label1.Text = "Choose Search:";
			this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// frmManage_Updates_Create_step020
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(296, 277);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.Pick_Searches);
			this.Controls.Add(this.btnBack);
			this.Controls.Add(this.btnNext);
			this.Name = "frmManage_Updates_Create_step020";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Updates - Create";
			this.ResumeLayout(false);

		}
Esempio n. 30
0
        public MethodParamForm(MethodCallInfo methodInfo)
        {
            _methodCallInfo = methodInfo;

            InitializeComponent();

            lblMethodTitle.Text = string.Format("{0} : {1}", methodInfo.MethodSignatureShort, methodInfo.ReturnType.Name);
            this.Parameters = new List<object>();
            _parameterControls = new List<Control>();

            int rowIndex = 0;
            foreach (var parameter in methodInfo.Parameters)
            {
                var lbl = new Label();
                tableLayoutPanel1.Controls.Add(lbl, 0, rowIndex);
                lbl.Dock = DockStyle.Fill;
                lbl.Text = string.Format("{0} : {1}", parameter.Name, parameter.ParameterType.Name);

                var ctrl = ParameterControlFactory.GetControl(parameter);
                tableLayoutPanel1.Controls.Add(ctrl, 1, rowIndex);
                ctrl.Dock = DockStyle.Fill;
                _parameterControls.Add(ctrl);
                rowIndex++;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grpLogin     = new System.Windows.Forms.GroupBox();
     this.label3       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.label1       = new System.Windows.Forms.Label();
     this.txtPassword  = new System.Windows.Forms.TextBox();
     this.txtLastName  = new System.Windows.Forms.TextBox();
     this.cmdConnect   = new System.Windows.Forms.Button();
     this.txtFirstName = new System.Windows.Forms.TextBox();
     this.label4       = new System.Windows.Forms.Label();
     this.lblName      = new System.Windows.Forms.Label();
     this.lblBalance   = new System.Windows.Forms.Label();
     this.label6       = new System.Windows.Forms.Label();
     this.label5       = new System.Windows.Forms.Label();
     this.txtFind      = new System.Windows.Forms.TextBox();
     this.cmdFind      = new System.Windows.Forms.Button();
     this.txtTransfer  = new System.Windows.Forms.TextBox();
     this.cmdTransfer  = new System.Windows.Forms.Button();
     this.label7       = new System.Windows.Forms.Label();
     this.lstFind      = new System.Windows.Forms.ListView();
     this.colName      = new System.Windows.Forms.ColumnHeader();
     this.colOnline    = new System.Windows.Forms.ColumnHeader();
     this.colUuid      = new System.Windows.Forms.ColumnHeader();
     this.grpLogin.SuspendLayout();
     this.SuspendLayout();
     //
     // grpLogin
     //
     this.grpLogin.Controls.Add(this.label3);
     this.grpLogin.Controls.Add(this.label2);
     this.grpLogin.Controls.Add(this.label1);
     this.grpLogin.Controls.Add(this.txtPassword);
     this.grpLogin.Controls.Add(this.txtLastName);
     this.grpLogin.Controls.Add(this.cmdConnect);
     this.grpLogin.Controls.Add(this.txtFirstName);
     this.grpLogin.Enabled  = false;
     this.grpLogin.Location = new System.Drawing.Point(16, 344);
     this.grpLogin.Name     = "grpLogin";
     this.grpLogin.Size     = new System.Drawing.Size(560, 80);
     this.grpLogin.TabIndex = 50;
     this.grpLogin.TabStop  = false;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(280, 24);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(120, 16);
     this.label3.TabIndex = 50;
     this.label3.Text     = "Password";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(152, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(120, 16);
     this.label2.TabIndex = 50;
     this.label2.Text     = "Last Name";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 16);
     this.label1.TabIndex = 50;
     this.label1.Text     = "First Name";
     //
     // txtPassword
     //
     this.txtPassword.Location     = new System.Drawing.Point(280, 40);
     this.txtPassword.Name         = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size         = new System.Drawing.Size(120, 20);
     this.txtPassword.TabIndex     = 2;
     this.txtPassword.Text         = "";
     //
     // txtLastName
     //
     this.txtLastName.Location = new System.Drawing.Point(152, 40);
     this.txtLastName.Name     = "txtLastName";
     this.txtLastName.Size     = new System.Drawing.Size(112, 20);
     this.txtLastName.TabIndex = 1;
     this.txtLastName.Text     = "";
     //
     // cmdConnect
     //
     this.cmdConnect.Location = new System.Drawing.Point(424, 40);
     this.cmdConnect.Name     = "cmdConnect";
     this.cmdConnect.Size     = new System.Drawing.Size(120, 24);
     this.cmdConnect.TabIndex = 3;
     this.cmdConnect.Text     = "Connect";
     this.cmdConnect.Click   += new System.EventHandler(this.cmdConnect_Click);
     //
     // txtFirstName
     //
     this.txtFirstName.Location = new System.Drawing.Point(16, 40);
     this.txtFirstName.Name     = "txtFirstName";
     this.txtFirstName.Size     = new System.Drawing.Size(120, 20);
     this.txtFirstName.TabIndex = 0;
     this.txtFirstName.Text     = "";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(48, 16);
     this.label4.TabIndex = 50;
     this.label4.Text     = "Name:";
     //
     // lblName
     //
     this.lblName.Location = new System.Drawing.Point(64, 8);
     this.lblName.Name     = "lblName";
     this.lblName.Size     = new System.Drawing.Size(184, 16);
     this.lblName.TabIndex = 50;
     //
     // lblBalance
     //
     this.lblBalance.Location  = new System.Drawing.Point(512, 8);
     this.lblBalance.Name      = "lblBalance";
     this.lblBalance.Size      = new System.Drawing.Size(64, 16);
     this.lblBalance.TabIndex  = 50;
     this.lblBalance.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(456, 8);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(56, 16);
     this.label6.TabIndex = 50;
     this.label6.Text     = "Balance:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 40);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(88, 16);
     this.label5.TabIndex = 50;
     this.label5.Text     = "People Search";
     //
     // txtFind
     //
     this.txtFind.Enabled  = false;
     this.txtFind.Location = new System.Drawing.Point(16, 56);
     this.txtFind.Name     = "txtFind";
     this.txtFind.Size     = new System.Drawing.Size(184, 20);
     this.txtFind.TabIndex = 4;
     this.txtFind.Text     = "";
     //
     // cmdFind
     //
     this.cmdFind.Enabled  = false;
     this.cmdFind.Location = new System.Drawing.Point(208, 56);
     this.cmdFind.Name     = "cmdFind";
     this.cmdFind.Size     = new System.Drawing.Size(48, 24);
     this.cmdFind.TabIndex = 5;
     this.cmdFind.Text     = "Find";
     this.cmdFind.Click   += new System.EventHandler(this.cmdFind_Click);
     //
     // txtTransfer
     //
     this.txtTransfer.Enabled   = false;
     this.txtTransfer.Location  = new System.Drawing.Point(360, 192);
     this.txtTransfer.MaxLength = 7;
     this.txtTransfer.Name      = "txtTransfer";
     this.txtTransfer.Size      = new System.Drawing.Size(104, 20);
     this.txtTransfer.TabIndex  = 7;
     this.txtTransfer.Text      = "";
     //
     // cmdTransfer
     //
     this.cmdTransfer.Enabled  = false;
     this.cmdTransfer.Location = new System.Drawing.Point(472, 192);
     this.cmdTransfer.Name     = "cmdTransfer";
     this.cmdTransfer.Size     = new System.Drawing.Size(104, 24);
     this.cmdTransfer.TabIndex = 8;
     this.cmdTransfer.Text     = "Transfer Lindens";
     this.cmdTransfer.Click   += new System.EventHandler(this.cmdTransfer_Click);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(360, 176);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(88, 16);
     this.label7.TabIndex = 17;
     this.label7.Text     = "Amount:";
     //
     // lstFind
     //
     this.lstFind.Activation         = System.Windows.Forms.ItemActivation.OneClick;
     this.lstFind.AllowColumnReorder = true;
     this.lstFind.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colOnline,
         this.colUuid
     });
     this.lstFind.FullRowSelect = true;
     this.lstFind.HideSelection = false;
     this.lstFind.Location      = new System.Drawing.Point(16, 88);
     this.lstFind.Name          = "lstFind";
     this.lstFind.Size          = new System.Drawing.Size(336, 248);
     this.lstFind.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     this.lstFind.TabIndex      = 6;
     this.lstFind.View          = System.Windows.Forms.View.Details;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 120;
     //
     // colOnline
     //
     this.colOnline.Text  = "Online";
     this.colOnline.Width = 50;
     //
     // colUuid
     //
     this.colUuid.Text  = "UUID";
     this.colUuid.Width = 150;
     //
     // frmGridAccountant
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(592, 437);
     this.Controls.Add(this.lstFind);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.cmdTransfer);
     this.Controls.Add(this.txtTransfer);
     this.Controls.Add(this.txtFind);
     this.Controls.Add(this.cmdFind);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.lblBalance);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.lblName);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.grpLogin);
     this.Name  = "frmGridAccountant";
     this.Text  = "Grid Accountant";
     this.Load += new System.EventHandler(this.frmGridAccountant_Load);
     this.grpLogin.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 32
0
 private void InitializeComponent()
 {
     this.hsbFrameRate = new System.Windows.Forms.HScrollBar();
     this.lblFrameRate = new System.Windows.Forms.Label();
     this.clbWindows   = new System.Windows.Forms.CheckedListBox();
     this.btnRefresh   = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // hsbFrameRate
     //
     this.hsbFrameRate.LargeChange   = 1;
     this.hsbFrameRate.Location      = new System.Drawing.Point(8, 24);
     this.hsbFrameRate.Maximum       = 30;
     this.hsbFrameRate.Minimum       = 1;
     this.hsbFrameRate.Name          = "hsbFrameRate";
     this.hsbFrameRate.Size          = new System.Drawing.Size(184, 17);
     this.hsbFrameRate.TabIndex      = 0;
     this.hsbFrameRate.Value         = 5;
     this.hsbFrameRate.ValueChanged += new System.EventHandler(this.hsbFrameRate_ValueChanged);
     //
     // lblFrameRate
     //
     this.lblFrameRate.Location = new System.Drawing.Point(8, 8);
     this.lblFrameRate.Name     = "lblFrameRate";
     this.lblFrameRate.Size     = new System.Drawing.Size(184, 16);
     this.lblFrameRate.TabIndex = 1;
     this.lblFrameRate.Text     = "Frame Rate (1 - 30): 5 / second";
     //
     // clbWindows
     //
     this.clbWindows.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.clbWindows.HorizontalScrollbar = true;
     this.clbWindows.Location            = new System.Drawing.Point(8, 56);
     this.clbWindows.Name       = "clbWindows";
     this.clbWindows.Size       = new System.Drawing.Size(336, 94);
     this.clbWindows.TabIndex   = 2;
     this.clbWindows.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.clbWindows_ItemCheck);
     //
     // btnRefresh
     //
     this.btnRefresh.Location = new System.Drawing.Point(208, 18);
     this.btnRefresh.Name     = "btnRefresh";
     this.btnRefresh.Size     = new System.Drawing.Size(80, 23);
     this.btnRefresh.TabIndex = 3;
     this.btnRefresh.Text     = "Refresh List";
     this.btnRefresh.Click   += new System.EventHandler(this.btnRefresh_Click);
     //
     // frmScreenScraper
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(352, 158);
     this.Controls.Add(this.btnRefresh);
     this.Controls.Add(this.clbWindows);
     this.Controls.Add(this.lblFrameRate);
     this.Controls.Add(this.hsbFrameRate);
     this.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.Name     = "frmScreenScraper";
     this.Text     = "Screen Scraper - please select window";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmScreenScraper_Closing);
     this.Load    += new System.EventHandler(this.frmScreenScraper_Load);
     this.ResumeLayout(false);
 }
Esempio n. 33
0
 private void InitializeComponent()
 {
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.numScaleX     = new System.Windows.Forms.NumericInputBox();
     this.label4        = new System.Windows.Forms.Label();
     this.numRotX       = new System.Windows.Forms.NumericInputBox();
     this.numTransX     = new System.Windows.Forms.NumericInputBox();
     this.label5        = new System.Windows.Forms.Label();
     this.label6        = new System.Windows.Forms.Label();
     this.numScaleY     = new System.Windows.Forms.NumericInputBox();
     this.numTransY     = new System.Windows.Forms.NumericInputBox();
     this.numRotY       = new System.Windows.Forms.NumericInputBox();
     this.numScaleZ     = new System.Windows.Forms.NumericInputBox();
     this.numTransZ     = new System.Windows.Forms.NumericInputBox();
     this.numRotZ       = new System.Windows.Forms.NumericInputBox();
     this.label7        = new System.Windows.Forms.Label();
     this.numFrame      = new System.Windows.Forms.NumericUpDown();
     this.lblFrameCount = new System.Windows.Forms.Label();
     this.btnPrev       = new System.Windows.Forms.Button();
     this.btnNext       = new System.Windows.Forms.Button();
     this.listKeyframes = new System.Windows.Forms.ListBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.panel1        = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.numFrame)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Location    = new System.Drawing.Point(10, 51);
     this.label1.Margin      = new System.Windows.Forms.Padding(0);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(70, 20);
     this.label1.TabIndex    = 0;
     this.label1.Text        = "Scale";
     this.label1.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Location    = new System.Drawing.Point(10, 89);
     this.label2.Margin      = new System.Windows.Forms.Padding(0);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(70, 20);
     this.label2.TabIndex    = 1;
     this.label2.Text        = "Translation";
     this.label2.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label3.Location    = new System.Drawing.Point(10, 70);
     this.label3.Margin      = new System.Windows.Forms.Padding(0);
     this.label3.Name        = "label3";
     this.label3.Size        = new System.Drawing.Size(70, 20);
     this.label3.TabIndex    = 2;
     this.label3.Text        = "Rotation";
     this.label3.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // numScaleX
     //
     this.numScaleX.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numScaleX.Location      = new System.Drawing.Point(79, 51);
     this.numScaleX.Margin        = new System.Windows.Forms.Padding(0);
     this.numScaleX.Name          = "numScaleX";
     this.numScaleX.Size          = new System.Drawing.Size(70, 20);
     this.numScaleX.TabIndex      = 3;
     this.numScaleX.Text          = "0";
     this.numScaleX.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // label4
     //
     this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label4.Location    = new System.Drawing.Point(79, 32);
     this.label4.Margin      = new System.Windows.Forms.Padding(0);
     this.label4.Name        = "label4";
     this.label4.Size        = new System.Drawing.Size(70, 20);
     this.label4.TabIndex    = 4;
     this.label4.Text        = "X";
     this.label4.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // numRotX
     //
     this.numRotX.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numRotX.Location      = new System.Drawing.Point(79, 70);
     this.numRotX.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numRotX.Name          = "numRotX";
     this.numRotX.Size          = new System.Drawing.Size(70, 20);
     this.numRotX.TabIndex      = 6;
     this.numRotX.Text          = "0";
     this.numRotX.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numTransX
     //
     this.numTransX.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numTransX.Location      = new System.Drawing.Point(79, 89);
     this.numTransX.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numTransX.Name          = "numTransX";
     this.numTransX.Size          = new System.Drawing.Size(70, 20);
     this.numTransX.TabIndex      = 9;
     this.numTransX.Text          = "0";
     this.numTransX.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // label5
     //
     this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label5.Location    = new System.Drawing.Point(148, 32);
     this.label5.Margin      = new System.Windows.Forms.Padding(0);
     this.label5.Name        = "label5";
     this.label5.Size        = new System.Drawing.Size(70, 20);
     this.label5.TabIndex    = 7;
     this.label5.Text        = "Y";
     this.label5.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label6
     //
     this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label6.Location    = new System.Drawing.Point(217, 32);
     this.label6.Margin      = new System.Windows.Forms.Padding(0);
     this.label6.Name        = "label6";
     this.label6.Size        = new System.Drawing.Size(70, 20);
     this.label6.TabIndex    = 8;
     this.label6.Text        = "Z";
     this.label6.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // numScaleY
     //
     this.numScaleY.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numScaleY.Location      = new System.Drawing.Point(148, 51);
     this.numScaleY.Margin        = new System.Windows.Forms.Padding(0);
     this.numScaleY.Name          = "numScaleY";
     this.numScaleY.Size          = new System.Drawing.Size(70, 20);
     this.numScaleY.TabIndex      = 4;
     this.numScaleY.Text          = "0";
     this.numScaleY.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numTransY
     //
     this.numTransY.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numTransY.Location      = new System.Drawing.Point(148, 89);
     this.numTransY.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numTransY.Name          = "numTransY";
     this.numTransY.Size          = new System.Drawing.Size(70, 20);
     this.numTransY.TabIndex      = 10;
     this.numTransY.Text          = "0";
     this.numTransY.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numRotY
     //
     this.numRotY.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numRotY.Location      = new System.Drawing.Point(148, 70);
     this.numRotY.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numRotY.Name          = "numRotY";
     this.numRotY.Size          = new System.Drawing.Size(70, 20);
     this.numRotY.TabIndex      = 7;
     this.numRotY.Text          = "0";
     this.numRotY.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numScaleZ
     //
     this.numScaleZ.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numScaleZ.Location      = new System.Drawing.Point(217, 51);
     this.numScaleZ.Margin        = new System.Windows.Forms.Padding(0);
     this.numScaleZ.Name          = "numScaleZ";
     this.numScaleZ.Size          = new System.Drawing.Size(70, 20);
     this.numScaleZ.TabIndex      = 5;
     this.numScaleZ.Text          = "0";
     this.numScaleZ.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numTransZ
     //
     this.numTransZ.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numTransZ.Location      = new System.Drawing.Point(217, 89);
     this.numTransZ.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numTransZ.Name          = "numTransZ";
     this.numTransZ.Size          = new System.Drawing.Size(70, 20);
     this.numTransZ.TabIndex      = 11;
     this.numTransZ.Text          = "0";
     this.numTransZ.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // numRotZ
     //
     this.numRotZ.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numRotZ.Location      = new System.Drawing.Point(217, 70);
     this.numRotZ.Margin        = new System.Windows.Forms.Padding(0, 10, 0, 10);
     this.numRotZ.Name          = "numRotZ";
     this.numRotZ.Size          = new System.Drawing.Size(70, 20);
     this.numRotZ.TabIndex      = 8;
     this.numRotZ.Text          = "0";
     this.numRotZ.ValueChanged += new System.EventHandler(this.BoxChanged);
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(37, 5);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(61, 20);
     this.label7.TabIndex  = 15;
     this.label7.Text      = "Frame:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // numFrame
     //
     this.numFrame.Location = new System.Drawing.Point(104, 5);
     this.numFrame.Minimum  = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numFrame.Name     = "numFrame";
     this.numFrame.Size     = new System.Drawing.Size(58, 20);
     this.numFrame.TabIndex = 0;
     this.numFrame.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numFrame.ValueChanged += new System.EventHandler(this.numFrame_ValueChanged);
     //
     // lblFrameCount
     //
     this.lblFrameCount.Location  = new System.Drawing.Point(168, 5);
     this.lblFrameCount.Name      = "lblFrameCount";
     this.lblFrameCount.Size      = new System.Drawing.Size(45, 20);
     this.lblFrameCount.TabIndex  = 17;
     this.lblFrameCount.Text      = "/ 10";
     this.lblFrameCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnPrev
     //
     this.btnPrev.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrev.Location  = new System.Drawing.Point(219, 4);
     this.btnPrev.Name      = "btnPrev";
     this.btnPrev.Size      = new System.Drawing.Size(23, 23);
     this.btnPrev.TabIndex  = 1;
     this.btnPrev.Text      = "<";
     this.btnPrev.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnPrev.UseVisualStyleBackColor = true;
     this.btnPrev.Click += new System.EventHandler(this.btnPrev_Click);
     //
     // btnNext
     //
     this.btnNext.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNext.Location  = new System.Drawing.Point(244, 4);
     this.btnNext.Name      = "btnNext";
     this.btnNext.Size      = new System.Drawing.Size(23, 23);
     this.btnNext.TabIndex  = 2;
     this.btnNext.Text      = ">";
     this.btnNext.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnNext.UseVisualStyleBackColor = true;
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // listKeyframes
     //
     this.listKeyframes.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listKeyframes.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listKeyframes.FormattingEnabled = true;
     this.listKeyframes.IntegralHeight    = false;
     this.listKeyframes.ItemHeight        = 14;
     this.listKeyframes.Location          = new System.Drawing.Point(3, 16);
     this.listKeyframes.Name                  = "listKeyframes";
     this.listKeyframes.Size                  = new System.Drawing.Size(294, 76);
     this.listKeyframes.TabIndex              = 18;
     this.listKeyframes.SelectedIndexChanged += new System.EventHandler(this.listKeyframes_SelectedIndexChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.listKeyframes);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(300, 95);
     this.groupBox1.TabIndex = 21;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Keyframes";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.btnNext);
     this.panel1.Controls.Add(this.numRotY);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.numTransY);
     this.panel1.Controls.Add(this.btnPrev);
     this.panel1.Controls.Add(this.numScaleX);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numScaleY);
     this.panel1.Controls.Add(this.lblFrameCount);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.numRotZ);
     this.panel1.Controls.Add(this.numFrame);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.numTransZ);
     this.panel1.Controls.Add(this.numRotX);
     this.panel1.Controls.Add(this.numTransX);
     this.panel1.Controls.Add(this.numScaleZ);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 95);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(300, 117);
     this.panel1.TabIndex = 23;
     //
     // AnimEditControl
     //
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Name = "AnimEditControl";
     this.Size = new System.Drawing.Size(300, 212);
     ((System.ComponentModel.ISupportInitialize)(this.numFrame)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            this.panel1 = new System.Windows.Forms.Panel();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.listKeyframes = new System.Windows.Forms.ListBox();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label7 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.btnNext = new System.Windows.Forms.Button();
            this.btnPrev = new System.Windows.Forms.Button();
            this.lblFrameCount = new System.Windows.Forms.Label();
            this.numStart = new System.Windows.Forms.NumericInputBox();
            this.numEnd = new System.Windows.Forms.NumericInputBox();
            this.numFrame = new System.Windows.Forms.NumericUpDown();
            this.label1 = new System.Windows.Forms.Label();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.lightCtrl = new System.Windows.Forms.CLRControl();
            this.panel1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numFrame)).BeginInit();
            this.tabPage3.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.tabControl1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(221, 200);
            this.panel1.TabIndex = 23;
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(221, 200);
            this.tabControl1.TabIndex = 18;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.panel2);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(213, 174);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Lighting";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.listKeyframes);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(213, 102);
            this.groupBox1.TabIndex = 21;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Keyframes";
            // 
            // listKeyframes
            // 
            this.listKeyframes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listKeyframes.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.listKeyframes.FormattingEnabled = true;
            this.listKeyframes.IntegralHeight = false;
            this.listKeyframes.ItemHeight = 14;
            this.listKeyframes.Location = new System.Drawing.Point(3, 16);
            this.listKeyframes.Name = "listKeyframes";
            this.listKeyframes.Size = new System.Drawing.Size(207, 83);
            this.listKeyframes.TabIndex = 18;
            this.listKeyframes.SelectedIndexChanged += new System.EventHandler(this.listKeyframes_SelectedIndexChanged);
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.SystemColors.Control;
            this.panel2.Controls.Add(this.label7);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.btnNext);
            this.panel2.Controls.Add(this.btnPrev);
            this.panel2.Controls.Add(this.lblFrameCount);
            this.panel2.Controls.Add(this.numStart);
            this.panel2.Controls.Add(this.numEnd);
            this.panel2.Controls.Add(this.numFrame);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel2.Location = new System.Drawing.Point(0, 102);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(213, 72);
            this.panel2.TabIndex = 22;
            // 
            // label7
            // 
            this.label7.Location = new System.Drawing.Point(3, 3);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(41, 20);
            this.label7.TabIndex = 15;
            this.label7.Text = "Frame:";
            this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label3
            // 
            this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.label3.Location = new System.Drawing.Point(6, 45);
            this.label3.Margin = new System.Windows.Forms.Padding(0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(70, 20);
            this.label3.TabIndex = 2;
            this.label3.Text = "End Point Z";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // btnNext
            // 
            this.btnNext.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnNext.Location = new System.Drawing.Point(187, 1);
            this.btnNext.Name = "btnNext";
            this.btnNext.Size = new System.Drawing.Size(23, 23);
            this.btnNext.TabIndex = 2;
            this.btnNext.Text = ">";
            this.btnNext.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            this.btnNext.UseVisualStyleBackColor = true;
            this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
            // 
            // btnPrev
            // 
            this.btnPrev.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnPrev.Location = new System.Drawing.Point(162, 1);
            this.btnPrev.Name = "btnPrev";
            this.btnPrev.Size = new System.Drawing.Size(23, 23);
            this.btnPrev.TabIndex = 1;
            this.btnPrev.Text = "<";
            this.btnPrev.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            this.btnPrev.UseVisualStyleBackColor = true;
            this.btnPrev.Click += new System.EventHandler(this.btnPrev_Click);
            // 
            // lblFrameCount
            // 
            this.lblFrameCount.Location = new System.Drawing.Point(114, 3);
            this.lblFrameCount.Name = "lblFrameCount";
            this.lblFrameCount.Size = new System.Drawing.Size(51, 20);
            this.lblFrameCount.TabIndex = 17;
            this.lblFrameCount.Text = "/ 10";
            this.lblFrameCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // numStart
            // 
            this.numStart.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.numStart.Location = new System.Drawing.Point(75, 26);
            this.numStart.Margin = new System.Windows.Forms.Padding(0);
            this.numStart.Name = "numStart";
            this.numStart.Size = new System.Drawing.Size(70, 20);
            this.numStart.TabIndex = 3;
            this.numStart.Text = "0";
            this.numStart.ValueChanged += new System.EventHandler(this.BoxChanged);
            // 
            // numEnd
            // 
            this.numEnd.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.numEnd.Location = new System.Drawing.Point(75, 45);
            this.numEnd.Margin = new System.Windows.Forms.Padding(0, 10, 0, 10);
            this.numEnd.Name = "numEnd";
            this.numEnd.Size = new System.Drawing.Size(70, 20);
            this.numEnd.TabIndex = 6;
            this.numEnd.Text = "0";
            this.numEnd.ValueChanged += new System.EventHandler(this.BoxChanged);
            // 
            // numFrame
            // 
            this.numFrame.Location = new System.Drawing.Point(50, 3);
            this.numFrame.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numFrame.Name = "numFrame";
            this.numFrame.Size = new System.Drawing.Size(58, 20);
            this.numFrame.TabIndex = 0;
            this.numFrame.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numFrame.ValueChanged += new System.EventHandler(this.numFrame_ValueChanged);
            // 
            // label1
            // 
            this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.label1.Location = new System.Drawing.Point(6, 26);
            this.label1.Margin = new System.Windows.Forms.Padding(0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(70, 20);
            this.label1.TabIndex = 0;
            this.label1.Text = "Start Point Z";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.lightCtrl);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(213, 174);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Light Color";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // lightCtrl
            // 
            this.lightCtrl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lightCtrl.Location = new System.Drawing.Point(0, 0);
            this.lightCtrl.Name = "lightCtrl";
            this.lightCtrl.Size = new System.Drawing.Size(213, 174);
            this.lightCtrl.TabIndex = 0;
            // 
            // SCN0FogEditControl
            // 
            this.Controls.Add(this.panel1);
            this.Name = "SCN0FogEditControl";
            this.Size = new System.Drawing.Size(221, 200);
            this.panel1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numFrame)).EndInit();
            this.tabPage3.ResumeLayout(false);
            this.ResumeLayout(false);

        }
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()
 {
     this.groupBox1    = new System.Windows.Forms.GroupBox();
     this.pgBar        = new System.Windows.Forms.ProgressBar();
     this.lblStatus    = new System.Windows.Forms.Label();
     this.btnCancel    = new System.Windows.Forms.Button();
     this.btnStart     = new System.Windows.Forms.Button();
     this.chkLeaveCopy = new System.Windows.Forms.CheckBox();
     this.lstProtocol  = new System.Windows.Forms.ComboBox();
     this.label5       = new System.Windows.Forms.Label();
     this.lstAuthType  = new System.Windows.Forms.ComboBox();
     this.label4       = new System.Windows.Forms.Label();
     this.chkSSL       = new System.Windows.Forms.CheckBox();
     this.textPassword = new System.Windows.Forms.TextBox();
     this.textUser     = new System.Windows.Forms.TextBox();
     this.textServer   = new System.Windows.Forms.TextBox();
     this.label3       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.label1       = new System.Windows.Forms.Label();
     this.lstMail      = new System.Windows.Forms.ListView();
     this.colFrom      = new System.Windows.Forms.ColumnHeader();
     this.colSubject   = new System.Windows.Forms.ColumnHeader();
     this.colDate      = new System.Windows.Forms.ColumnHeader();
     this.btnDel       = new System.Windows.Forms.Button();
     this.lblTotal     = new System.Windows.Forms.Label();
     this.label6       = new System.Windows.Forms.Label();
     this.webMail      = new System.Windows.Forms.WebBrowser();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.pgBar);
     this.groupBox1.Controls.Add(this.lblStatus);
     this.groupBox1.Controls.Add(this.btnCancel);
     this.groupBox1.Controls.Add(this.btnStart);
     this.groupBox1.Controls.Add(this.chkLeaveCopy);
     this.groupBox1.Controls.Add(this.lstProtocol);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.lstAuthType);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.chkSSL);
     this.groupBox1.Controls.Add(this.textPassword);
     this.groupBox1.Controls.Add(this.textUser);
     this.groupBox1.Controls.Add(this.textServer);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(232, 328);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Account Information";
     //
     // pgBar
     //
     this.pgBar.Location = new System.Drawing.Point(8, 312);
     this.pgBar.Name     = "pgBar";
     this.pgBar.Size     = new System.Drawing.Size(216, 8);
     this.pgBar.TabIndex = 15;
     //
     // lblStatus
     //
     this.lblStatus.AutoSize = true;
     this.lblStatus.Location = new System.Drawing.Point(8, 272);
     this.lblStatus.Name     = "lblStatus";
     this.lblStatus.Size     = new System.Drawing.Size(0, 13);
     this.lblStatus.TabIndex = 14;
     //
     // btnCancel
     //
     this.btnCancel.Enabled  = false;
     this.btnCancel.Location = new System.Drawing.Point(128, 240);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(88, 24);
     this.btnCancel.TabIndex = 13;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(32, 240);
     this.btnStart.Name     = "btnStart";
     this.btnStart.Size     = new System.Drawing.Size(88, 24);
     this.btnStart.TabIndex = 12;
     this.btnStart.Text     = "Start";
     this.btnStart.Click   += new System.EventHandler(this.btnStart_Click);
     //
     // chkLeaveCopy
     //
     this.chkLeaveCopy.Location = new System.Drawing.Point(8, 208);
     this.chkLeaveCopy.Name     = "chkLeaveCopy";
     this.chkLeaveCopy.Size     = new System.Drawing.Size(208, 16);
     this.chkLeaveCopy.TabIndex = 11;
     this.chkLeaveCopy.Text     = "Leave a copy of message on server";
     //
     // lstProtocol
     //
     this.lstProtocol.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstProtocol.Location              = new System.Drawing.Point(80, 176);
     this.lstProtocol.Name                  = "lstProtocol";
     this.lstProtocol.Size                  = new System.Drawing.Size(136, 21);
     this.lstProtocol.TabIndex              = 10;
     this.lstProtocol.SelectedIndexChanged += new System.EventHandler(this.lstProtocol_SelectedIndexChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(8, 178);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(46, 13);
     this.label5.TabIndex = 9;
     this.label5.Text     = "Protocol";
     //
     // lstAuthType
     //
     this.lstAuthType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstAuthType.Location      = new System.Drawing.Point(80, 144);
     this.lstAuthType.Name          = "lstAuthType";
     this.lstAuthType.Size          = new System.Drawing.Size(136, 21);
     this.lstAuthType.TabIndex      = 8;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(8, 146);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(56, 13);
     this.label4.TabIndex = 7;
     this.label4.Text     = "Auth Type";
     //
     // chkSSL
     //
     this.chkSSL.Location = new System.Drawing.Point(8, 120);
     this.chkSSL.Name     = "chkSSL";
     this.chkSSL.Size     = new System.Drawing.Size(208, 16);
     this.chkSSL.TabIndex = 6;
     this.chkSSL.Text     = "SSL connection";
     //
     // textPassword
     //
     this.textPassword.Location     = new System.Drawing.Point(80, 86);
     this.textPassword.Name         = "textPassword";
     this.textPassword.PasswordChar = '*';
     this.textPassword.Size         = new System.Drawing.Size(136, 20);
     this.textPassword.TabIndex     = 5;
     //
     // textUser
     //
     this.textUser.Location = new System.Drawing.Point(80, 54);
     this.textUser.Name     = "textUser";
     this.textUser.Size     = new System.Drawing.Size(136, 20);
     this.textUser.TabIndex = 4;
     //
     // textServer
     //
     this.textServer.Location = new System.Drawing.Point(80, 22);
     this.textServer.Name     = "textServer";
     this.textServer.Size     = new System.Drawing.Size(136, 20);
     this.textServer.TabIndex = 3;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(8, 88);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(53, 13);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Password";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(29, 13);
     this.label2.TabIndex = 1;
     this.label2.Text     = "User";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(38, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Server";
     //
     // lstMail
     //
     this.lstMail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colFrom,
         this.colSubject,
         this.colDate
     });
     this.lstMail.FullRowSelect = true;
     this.lstMail.HideSelection = false;
     this.lstMail.Location      = new System.Drawing.Point(248, 16);
     this.lstMail.Name          = "lstMail";
     this.lstMail.Size          = new System.Drawing.Size(474, 168);
     this.lstMail.TabIndex      = 1;
     this.lstMail.UseCompatibleStateImageBehavior = false;
     this.lstMail.View   = System.Windows.Forms.View.Details;
     this.lstMail.Click += new System.EventHandler(this.lstMail_Click);
     //
     // colFrom
     //
     this.colFrom.Text  = "From";
     this.colFrom.Width = 100;
     //
     // colSubject
     //
     this.colSubject.Text  = "Subject";
     this.colSubject.Width = 200;
     //
     // colDate
     //
     this.colDate.Text  = "Date";
     this.colDate.Width = 150;
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(650, 186);
     this.btnDel.Name     = "btnDel";
     this.btnDel.Size     = new System.Drawing.Size(72, 24);
     this.btnDel.TabIndex = 3;
     this.btnDel.Text     = "Delete";
     this.btnDel.Click   += new System.EventHandler(this.btnDel_Click);
     //
     // lblTotal
     //
     this.lblTotal.AutoSize = true;
     this.lblTotal.Location = new System.Drawing.Point(256, 192);
     this.lblTotal.Name     = "lblTotal";
     this.lblTotal.Size     = new System.Drawing.Size(0, 13);
     this.lblTotal.TabIndex = 4;
     //
     // label6
     //
     this.label6.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.label6.Location  = new System.Drawing.Point(16, 352);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(216, 48);
     this.label6.TabIndex  = 5;
     this.label6.Text      = "Warning: if \"leave a copy of message on server\" is not checked,  the emails on th" +
                             "e server will be deleted !";
     //
     // webMail
     //
     this.webMail.Location    = new System.Drawing.Point(248, 216);
     this.webMail.MinimumSize = new System.Drawing.Size(20, 20);
     this.webMail.Name        = "webMail";
     this.webMail.Size        = new System.Drawing.Size(474, 184);
     this.webMail.TabIndex    = 6;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(734, 412);
     this.Controls.Add(this.webMail);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.lblTotal);
     this.Controls.Add(this.btnDel);
     this.Controls.Add(this.lstMail);
     this.Controls.Add(this.groupBox1);
     this.Name    = "Form1";
     this.Text    = "Form1";
     this.Load   += new System.EventHandler(this.Form1_Load);
     this.Resize += new System.EventHandler(this.Form1_Resize);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 36
0
        public Panel panlm(int n, bool flag, int height, string state, string leibie, string time, string detil, string url, string messageid)
        {
            var pan1 = new System.Windows.Forms.Panel();

            // pan1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            pan1.Location = new System.Drawing.Point(0, height);
            pan1.Name     = "panelm_" + n;
            pan1.Size     = new System.Drawing.Size(660, 70);
            pan1.TabIndex = 1;
            pan1.Visible  = flag;
            //
            // ckb_1
            //
            var ckb_1 = new System.Windows.Forms.CheckBox();

            ckb_1.AutoSize  = true;
            ckb_1.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            ckb_1.ForeColor = System.Drawing.Color.Red;
            ckb_1.Location  = new System.Drawing.Point(10, 10);
            ckb_1.Name      = "ckb_" + n;
            ckb_1.Size      = new System.Drawing.Size(75, 21);
            ckb_1.TabIndex  = 0;
            ckb_1.Text      = "【" + state.Replace("2", "未读").Replace("3", "未读").Replace("5", "已读") + "】";
            ckb_1.UseVisualStyleBackColor = true;
            ckb_1.Tag = messageid;
            //
            // labed_1
            //
            var labed_1 = new System.Windows.Forms.Label();

            labed_1.AutoSize = true;
            labed_1.Font     = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labed_1.Location = new System.Drawing.Point(82, 10);
            labed_1.Name     = "labed_" + n;
            labed_1.Size     = new System.Drawing.Size(34, 60);
            labed_1.TabIndex = 1;
            labed_1.Text     = leibie;

            //
            // labtime_1
            //
            var labtime_1 = new System.Windows.Forms.Label();

            labtime_1.AutoSize = true;
            labtime_1.Font     = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labtime_1.Location = new System.Drawing.Point(564, 12);
            labtime_1.Name     = "labtime_1";
            labtime_1.Size     = new System.Drawing.Size(76, 17);
            labtime_1.TabIndex = 3;
            labtime_1.Text     = Convert.ToDateTime(time).ToString("MM-dd HH:mm");
            //
            // labcontent_1
            //
            var labcontent_1 = new System.Windows.Forms.Label();

            labcontent_1.AutoEllipsis = true;
            labcontent_1.Font         = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labcontent_1.Location     = new System.Drawing.Point(82, 38);
            labcontent_1.Name         = "labcontent_1";
            labcontent_1.Size         = new System.Drawing.Size(501, 23);
            labcontent_1.TabIndex     = 4;
            labcontent_1.Text         = detil;
            //
            // lineShape2
            //
            var lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();

            lineShape2.BorderColor = System.Drawing.Color.Silver;
            lineShape2.Name        = "lineShape_" + n;
            lineShape2.X1          = 3;
            lineShape2.X2          = 650;
            lineShape2.Y1          = 65;
            lineShape2.Y2          = 65;
            //
            // shapeContainer2
            //
            var shapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();

            shapeContainer2.Location = new System.Drawing.Point(0, 0);
            shapeContainer2.Margin   = new System.Windows.Forms.Padding(0);
            shapeContainer2.Name     = "shapeContainer_" + n;
            shapeContainer2.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
                lineShape2
            });
            shapeContainer2.Size     = new System.Drawing.Size(650, 70);
            shapeContainer2.TabIndex = 5;
            shapeContainer2.TabStop  = false;

            //
            // labqianwang_1
            //
            var labqianwang_1 = new System.Windows.Forms.Label();

            labqianwang_1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(204)))), ((int)(((byte)(204)))));
            labqianwang_1.AutoSize  = true;
            labqianwang_1.Cursor    = System.Windows.Forms.Cursors.Hand;
            labqianwang_1.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labqianwang_1.Location  = new System.Drawing.Point(589, 38);
            labqianwang_1.Name      = "labqianwang_" + n;
            labqianwang_1.Size      = new System.Drawing.Size(44, 17);
            labqianwang_1.TabIndex  = 6;
            labqianwang_1.TabStop   = true;
            //labqianwang_1.Text = "前往》";
            labqianwang_1.Tag    = url;
            labqianwang_1.Click += new System.EventHandler(labMessage_Click);
            pan1.Controls.Add(labqianwang_1);
            pan1.Controls.Add(labcontent_1);
            pan1.Controls.Add(labtime_1);

            pan1.Controls.Add(labed_1);
            pan1.Controls.Add(ckb_1);
            pan1.Controls.Add(shapeContainer2);

            return(pan1);
        }
Esempio n. 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.mainMenu1                         = new System.Windows.Forms.MainMenu();
     this.menuItem1                         = new System.Windows.Forms.MenuItem();
     this.menuFileOpenDiagram               = new System.Windows.Forms.MenuItem();
     this.menuFileOpenParameters            = new System.Windows.Forms.MenuItem();
     this.menuFileSeparator                 = new System.Windows.Forms.MenuItem();
     this.menuFileExit                      = new System.Windows.Forms.MenuItem();
     this.menuItem6                         = new System.Windows.Forms.MenuItem();
     this.menuModelChooseDiagramFile        = new System.Windows.Forms.MenuItem();
     this.menuModelChooseParameterFile      = new System.Windows.Forms.MenuItem();
     this.menuModelSetInputDirectory        = new System.Windows.Forms.MenuItem();
     this.menuModelSetOutputDirectory       = new System.Windows.Forms.MenuItem();
     this.menuModelRun                      = new System.Windows.Forms.MenuItem();
     this.menuEnvironment                   = new System.Windows.Forms.MenuItem();
     this.menuEnvironmentSetModuleDirectory = new System.Windows.Forms.MenuItem();
     this.menuHelp            = new System.Windows.Forms.MenuItem();
     this.menuHelpAbout       = new System.Windows.Forms.MenuItem();
     this.label3              = new System.Windows.Forms.Label();
     this.openFileDialog      = new System.Windows.Forms.OpenFileDialog();
     this.txtStatusDisplay    = new System.Windows.Forms.TextBox();
     this.udFrameCount        = new System.Windows.Forms.NumericUpDown();
     this.statusBar           = new System.Windows.Forms.StatusBar();
     this.sbTextPanel         = new System.Windows.Forms.StatusBarPanel();
     this.btnRun              = new System.Windows.Forms.Button();
     this.btnStop             = new System.Windows.Forms.Button();
     this.logDisplay          = new System.Windows.Forms.RichTextBox();
     this.timer               = new System.Windows.Forms.Timer(this.components);
     this.btnAbort            = new System.Windows.Forms.Button();
     this.folderBrowser       = new System.Windows.Forms.FolderBrowserDialog();
     this.progressBar         = new System.Windows.Forms.ProgressBar();
     this.timerCommandlineRun = new System.Windows.Forms.Timer(this.components);
     this.menuHelpFile        = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.udFrameCount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbTextPanel)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem6,
         this.menuEnvironment,
         this.menuHelp
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuFileOpenDiagram,
         this.menuFileOpenParameters,
         this.menuFileSeparator,
         this.menuFileExit
     });
     this.menuItem1.Text = "&File";
     //
     // menuFileOpenDiagram
     //
     this.menuFileOpenDiagram.Enabled = false;
     this.menuFileOpenDiagram.Index   = 0;
     this.menuFileOpenDiagram.Text    = "Open Diagram File...";
     this.menuFileOpenDiagram.Visible = false;
     this.menuFileOpenDiagram.Click  += new System.EventHandler(this.menuFileOpenDiagram_Click);
     //
     // menuFileOpenParameters
     //
     this.menuFileOpenParameters.Enabled = false;
     this.menuFileOpenParameters.Index   = 1;
     this.menuFileOpenParameters.Text    = "Open Parameter File...";
     this.menuFileOpenParameters.Visible = false;
     this.menuFileOpenParameters.Click  += new System.EventHandler(this.menuFileOpenParameters_Click);
     //
     // menuFileSeparator
     //
     this.menuFileSeparator.Enabled = false;
     this.menuFileSeparator.Index   = 2;
     this.menuFileSeparator.Text    = "-";
     this.menuFileSeparator.Visible = false;
     //
     // menuFileExit
     //
     this.menuFileExit.Index    = 3;
     this.menuFileExit.Shortcut = System.Windows.Forms.Shortcut.AltF4;
     this.menuFileExit.Text     = "E&xit";
     this.menuFileExit.Click   += new System.EventHandler(this.menuFileExit_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 1;
     this.menuItem6.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuModelChooseDiagramFile,
         this.menuModelChooseParameterFile,
         this.menuModelSetInputDirectory,
         this.menuModelSetOutputDirectory,
         this.menuModelRun
     });
     this.menuItem6.Text = "&Model";
     //
     // menuModelChooseDiagramFile
     //
     this.menuModelChooseDiagramFile.Index    = 0;
     this.menuModelChooseDiagramFile.Shortcut = System.Windows.Forms.Shortcut.CtrlD;
     this.menuModelChooseDiagramFile.Text     = "Choose Diagram File...";
     this.menuModelChooseDiagramFile.Click   += new System.EventHandler(this.menuModelChooseDiagramFile_Click);
     //
     // menuModelChooseParameterFile
     //
     this.menuModelChooseParameterFile.Index    = 1;
     this.menuModelChooseParameterFile.Shortcut = System.Windows.Forms.Shortcut.CtrlP;
     this.menuModelChooseParameterFile.Text     = "Choose Parameter File...";
     this.menuModelChooseParameterFile.Click   += new System.EventHandler(this.menuModelChooseParameterFile_Click);
     //
     // menuModelSetInputDirectory
     //
     this.menuModelSetInputDirectory.Index    = 2;
     this.menuModelSetInputDirectory.Shortcut = System.Windows.Forms.Shortcut.CtrlI;
     this.menuModelSetInputDirectory.Text     = "Set Input Directory...";
     this.menuModelSetInputDirectory.Click   += new System.EventHandler(this.menuModelSetInputDirectory_Click);
     //
     // menuModelSetOutputDirectory
     //
     this.menuModelSetOutputDirectory.Index    = 3;
     this.menuModelSetOutputDirectory.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
     this.menuModelSetOutputDirectory.Text     = "Set Output Directory...";
     this.menuModelSetOutputDirectory.Click   += new System.EventHandler(this.menuModelSetOutputDirectory_Click);
     //
     // menuModelRun
     //
     this.menuModelRun.Index    = 4;
     this.menuModelRun.Shortcut = System.Windows.Forms.Shortcut.F5;
     this.menuModelRun.Text     = "Run Model...";
     this.menuModelRun.Click   += new System.EventHandler(this.menuModelRun_Click);
     //
     // menuEnvironment
     //
     this.menuEnvironment.Enabled = false;
     this.menuEnvironment.Index   = 2;
     this.menuEnvironment.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuEnvironmentSetModuleDirectory
     });
     this.menuEnvironment.Text    = "Environment";
     this.menuEnvironment.Visible = false;
     //
     // menuEnvironmentSetModuleDirectory
     //
     this.menuEnvironmentSetModuleDirectory.Index  = 0;
     this.menuEnvironmentSetModuleDirectory.Text   = "Set Module Directory...";
     this.menuEnvironmentSetModuleDirectory.Click += new System.EventHandler(this.menuEnvironmentSetModuleDirectory_Click);
     //
     // menuHelp
     //
     this.menuHelp.Index = 3;
     this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuHelpFile,
         this.menuHelpAbout
     });
     this.menuHelp.Text = "Help";
     //
     // menuHelpAbout
     //
     this.menuHelpAbout.Index  = 1;
     this.menuHelpAbout.Text   = "About Desktop EarLab...";
     this.menuHelpAbout.Click += new System.EventHandler(this.menuHelpAbout_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(8, 88);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(68, 16);
     this.label3.TabIndex = 7;
     this.label3.Text     = "Frame count";
     //
     // txtStatusDisplay
     //
     this.txtStatusDisplay.AcceptsReturn = true;
     this.txtStatusDisplay.AcceptsTab    = true;
     this.txtStatusDisplay.BackColor     = System.Drawing.SystemColors.Control;
     this.txtStatusDisplay.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtStatusDisplay.Location      = new System.Drawing.Point(8, 8);
     this.txtStatusDisplay.Multiline     = true;
     this.txtStatusDisplay.Name          = "txtStatusDisplay";
     this.txtStatusDisplay.ReadOnly      = true;
     this.txtStatusDisplay.Size          = new System.Drawing.Size(536, 72);
     this.txtStatusDisplay.TabIndex      = 14;
     this.txtStatusDisplay.TabStop       = false;
     this.txtStatusDisplay.Text          = "Status Display";
     //
     // udFrameCount
     //
     this.udFrameCount.Location = new System.Drawing.Point(8, 104);
     this.udFrameCount.Maximum  = new System.Decimal(new int[] {
         1000000,
         0,
         0,
         0
     });
     this.udFrameCount.Name          = "udFrameCount";
     this.udFrameCount.Size          = new System.Drawing.Size(72, 20);
     this.udFrameCount.TabIndex      = 1;
     this.udFrameCount.ValueChanged += new System.EventHandler(this.udFrameCount_ValueChanged);
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 347);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.sbTextPanel
     });
     this.statusBar.ShowPanels = true;
     this.statusBar.Size       = new System.Drawing.Size(552, 22);
     this.statusBar.TabIndex   = 16;
     //
     // sbTextPanel
     //
     this.sbTextPanel.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.sbTextPanel.Text      = "Not Ready";
     this.sbTextPanel.Width     = 200;
     //
     // btnRun
     //
     this.btnRun.Enabled   = false;
     this.btnRun.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnRun.Location  = new System.Drawing.Point(104, 104);
     this.btnRun.Name      = "btnRun";
     this.btnRun.TabIndex  = 2;
     this.btnRun.Text      = "Run";
     this.btnRun.Click    += new System.EventHandler(this.btnRun_Click);
     //
     // btnStop
     //
     this.btnStop.Enabled   = false;
     this.btnStop.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnStop.Location  = new System.Drawing.Point(192, 104);
     this.btnStop.Name      = "btnStop";
     this.btnStop.TabIndex  = 3;
     this.btnStop.Text      = "Stop";
     this.btnStop.Click    += new System.EventHandler(this.btnStop_Click);
     //
     // logDisplay
     //
     this.logDisplay.AcceptsTab   = true;
     this.logDisplay.Location     = new System.Drawing.Point(8, 128);
     this.logDisplay.Name         = "logDisplay";
     this.logDisplay.ReadOnly     = true;
     this.logDisplay.ScrollBars   = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.logDisplay.Size         = new System.Drawing.Size(536, 216);
     this.logDisplay.TabIndex     = 19;
     this.logDisplay.TabStop      = false;
     this.logDisplay.Text         = "";
     this.logDisplay.TextChanged += new System.EventHandler(this.logDisplay_TextChanged);
     //
     // timer
     //
     this.timer.Tick += new System.EventHandler(this.timer_Tick);
     //
     // btnAbort
     //
     this.btnAbort.Enabled   = false;
     this.btnAbort.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnAbort.Location  = new System.Drawing.Point(280, 104);
     this.btnAbort.Name      = "btnAbort";
     this.btnAbort.TabIndex  = 20;
     this.btnAbort.Text      = "Abort";
     this.btnAbort.Click    += new System.EventHandler(this.btnAbort_Click);
     //
     // progressBar
     //
     this.progressBar.Location = new System.Drawing.Point(200, 352);
     this.progressBar.Name     = "progressBar";
     this.progressBar.Size     = new System.Drawing.Size(328, 16);
     this.progressBar.TabIndex = 21;
     //
     // timerCommandlineRun
     //
     this.timerCommandlineRun.Tick += new System.EventHandler(this.timerCommandlineRun_Tick);
     //
     // menuHelpFile
     //
     this.menuHelpFile.Index  = 0;
     this.menuHelpFile.Text   = "Desktop EarLab Help...";
     this.menuHelpFile.Click += new System.EventHandler(this.menuHelpFile_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(552, 369);
     this.Controls.Add(this.progressBar);
     this.Controls.Add(this.btnAbort);
     this.Controls.Add(this.logDisplay);
     this.Controls.Add(this.btnStop);
     this.Controls.Add(this.btnRun);
     this.Controls.Add(this.udFrameCount);
     this.Controls.Add(this.txtStatusDisplay);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.statusBar);
     this.Icon             = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu             = this.mainMenu1;
     this.MinimumSize      = new System.Drawing.Size(448, 381);
     this.Name             = "Form1";
     this.StartPosition    = System.Windows.Forms.FormStartPosition.Manual;
     this.Text             = "Earlab Simulator";
     this.Resize          += new System.EventHandler(this.Form1_Resize);
     this.Closing         += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
     this.Load            += new System.EventHandler(this.Form1_Load);
     this.LocationChanged += new System.EventHandler(this.Form1_LocationChanged);
     ((System.ComponentModel.ISupportInitialize)(this.udFrameCount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sbTextPanel)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fAbout));
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.c*K    = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Arial Black", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(4, 15);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(280, 42);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "iSecurViewer-1.5";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Arial Black", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(16, 64);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(264, 24);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "By Brian Schau";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(24, 96);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(248, 21);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Please visit my website at:";
     //
     // label4
     //
     this.label4.Font      = new System.Drawing.Font("Arial Black", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location  = new System.Drawing.Point(8, 128);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(264, 19);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "http://www.schau.com/";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(24, 168);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(248, 46);
     this.label5.TabIndex = 4;
     this.label5.Text     = "On my website you will find the latest version of iSecurViewer, iSecur, Manuals, " +
                            "FAQs and lots of other information.";
     //
     // c*K
     //
     this.c*K.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.c*K.Location     = new System.Drawing.Point(112, 240);
     this.c*K.Name         = "c*K";
     this.c*K.Size         = new System.Drawing.Size(75, 21);
     this.c*K.TabIndex     = 5;
     this.c*K.Text         = "OK";
     this.c*K.Click       += new System.EventHandler(this.cOK_Click);
     //
     // fAbout
     //
     this.AcceptButton      = this.c*K;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.c*K;
     this.ClientSize        = new System.Drawing.Size(285, 276);
     this.ControlBox        = false;
     this.Controls.Add(this.c*K);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "fAbout";
     this.Text            = "About iSecurViewer";
     this.ResumeLayout(false);
 }
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()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
			this._meXmlFile = new ActiveQConfiguration.ManageElement();
			this._meMailDir = new ActiveQConfiguration.ManageElement();
			this.label7 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this._cbDeleteWhenProcessed = new System.Windows.Forms.CheckBox();
			this._tbIntervalTask = new ActiveQLibrary.CustomControl.NumEdit();
			this._tbIntervalMail = new ActiveQLibrary.CustomControl.NumEdit();
			this._tbWorker = new ActiveQLibrary.CustomControl.NumEdit();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this._bOk = new ActiveQLibrary.CustomControl.ButtonXP();
			this._bApply = new ActiveQLibrary.CustomControl.ButtonXP();
			this._bReset = new ActiveQLibrary.CustomControl.ButtonXP();
			this.panel1 = new System.Windows.Forms.Panel();
			this.panel7 = new System.Windows.Forms.Panel();
			this._tbActiveMailLicense = new System.Windows.Forms.TextBox();
			this.label10 = new System.Windows.Forms.Label();
			this.panel6 = new System.Windows.Forms.Panel();
			this.panel5 = new System.Windows.Forms.Panel();
			this.label8 = new System.Windows.Forms.Label();
			this._tbMaxBytesEvent = new ActiveQLibrary.CustomControl.NumEdit();
			this._tbMaxBytesError = new ActiveQLibrary.CustomControl.NumEdit();
			this.label9 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.panel3 = new System.Windows.Forms.Panel();
			this.panel2 = new System.Windows.Forms.Panel();
			this.panel8 = new System.Windows.Forms.Panel();
			this.panel9 = new System.Windows.Forms.Panel();
			this._meSmtpServer = new ActiveQConfiguration.ManageElementSmtpServer();
			this.panel11 = new System.Windows.Forms.Panel();
			this._toolTipOk = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipReset = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipApply = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipErrorLog = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipEventLog = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipIntervalMail = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipIntervalTask = new System.Windows.Forms.ToolTip(this.components);
			this._toolTipSimJobs = new System.Windows.Forms.ToolTip(this.components);
			this.panel4 = new System.Windows.Forms.Panel();
			this.panel1.SuspendLayout();
			this.panel7.SuspendLayout();
			this.panel6.SuspendLayout();
			this.panel5.SuspendLayout();
			this.panel3.SuspendLayout();
			this.panel2.SuspendLayout();
			this.panel8.SuspendLayout();
			this.panel9.SuspendLayout();
			this.panel11.SuspendLayout();
			this.panel4.SuspendLayout();
			this.SuspendLayout();
			// 
			// _meXmlFile
			// 
			this._meXmlFile.FirstColor = System.Drawing.Color.Transparent;
			this._meXmlFile.FontText = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
			this._meXmlFile.LastColor = System.Drawing.SystemColors.Window;
			this._meXmlFile.Location = new System.Drawing.Point(8, 8);
			this._meXmlFile.Name = "_meXmlFile";
			this._meXmlFile.Pen = false;
			this._meXmlFile.PenColor = System.Drawing.Color.Silver;
			this._meXmlFile.Size = new System.Drawing.Size(400, 173);
			this._meXmlFile.SizePen = 0;
			this._meXmlFile.TabIndex = 9;
			this._meXmlFile.TextAddButtonToolTip = "Add a xml file";
			this._meXmlFile.TextColor = System.Drawing.Color.DimGray;
			this._meXmlFile.TextContents = "XML Tasks";
			this._meXmlFile.TextRemoveButtonToolTip = "Remove a xml file";
			this._meXmlFile.TypeAdd = ActiveQConfiguration.ManageElement.TypeAddition.fileXml;
			// 
			// _meMailDir
			// 
			this._meMailDir.FirstColor = System.Drawing.Color.Transparent;
			this._meMailDir.FontText = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
			this._meMailDir.LastColor = System.Drawing.SystemColors.Window;
			this._meMailDir.Location = new System.Drawing.Point(8, 8);
			this._meMailDir.Name = "_meMailDir";
			this._meMailDir.Pen = false;
			this._meMailDir.PenColor = System.Drawing.Color.Silver;
			this._meMailDir.Size = new System.Drawing.Size(400, 174);
			this._meMailDir.SizePen = 0;
			this._meMailDir.TabIndex = 8;
			this._meMailDir.TextAddButtonToolTip = "Add a directoy";
			this._meMailDir.TextColor = System.Drawing.Color.DimGray;
			this._meMailDir.TextContents = "Mail directories";
			this._meMailDir.TextRemoveButtonToolTip = "Remove a directoy";
			this._meMailDir.TypeAdd = ActiveQConfiguration.ManageElement.TypeAddition.dir;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(328, 8);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(32, 16);
			this.label7.TabIndex = 40;
			this.label7.Text = "sec.";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(152, 8);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(32, 16);
			this.label6.TabIndex = 39;
			this.label6.Text = "sec.";
			// 
			// _cbDeleteWhenProcessed
			// 
			this._cbDeleteWhenProcessed.Location = new System.Drawing.Point(168, 8);
			this._cbDeleteWhenProcessed.Name = "_cbDeleteWhenProcessed";
			this._cbDeleteWhenProcessed.Size = new System.Drawing.Size(168, 16);
			this._cbDeleteWhenProcessed.TabIndex = 34;
			this._cbDeleteWhenProcessed.Text = "Delete mail when processed";
			// 
			// _tbIntervalTask
			// 
			this._tbIntervalTask.InputType = ActiveQLibrary.CustomControl.NumEdit.NumEditType.Integer;
			this._tbIntervalTask.Location = new System.Drawing.Point(288, 5);
			this._tbIntervalTask.Name = "_tbIntervalTask";
			this._tbIntervalTask.Size = new System.Drawing.Size(32, 20);
			this._tbIntervalTask.TabIndex = 32;
			this._tbIntervalTask.Text = "";
			// 
			// _tbIntervalMail
			// 
			this._tbIntervalMail.InputType = ActiveQLibrary.CustomControl.NumEdit.NumEditType.Integer;
			this._tbIntervalMail.Location = new System.Drawing.Point(112, 6);
			this._tbIntervalMail.Name = "_tbIntervalMail";
			this._tbIntervalMail.Size = new System.Drawing.Size(32, 20);
			this._tbIntervalMail.TabIndex = 30;
			this._tbIntervalMail.Text = "";
			// 
			// _tbWorker
			// 
			this._tbWorker.InputType = ActiveQLibrary.CustomControl.NumEdit.NumEditType.Integer;
			this._tbWorker.Location = new System.Drawing.Point(112, 5);
			this._tbWorker.Name = "_tbWorker";
			this._tbWorker.Size = new System.Drawing.Size(43, 20);
			this._tbWorker.TabIndex = 28;
			this._tbWorker.Text = "";
			// 
			// label3
			// 
			this.label3.BackColor = System.Drawing.Color.Transparent;
			this.label3.Location = new System.Drawing.Point(184, 8);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(104, 16);
			this.label3.TabIndex = 31;
			this.label3.Text = "Interval check task : ";
			// 
			// label2
			// 
			this.label2.BackColor = System.Drawing.Color.Transparent;
			this.label2.Location = new System.Drawing.Point(8, 8);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(104, 16);
			this.label2.TabIndex = 29;
			this.label2.Text = "Interval check mail : ";
			// 
			// label1
			// 
			this.label1.BackColor = System.Drawing.Color.Transparent;
			this.label1.Location = new System.Drawing.Point(8, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(104, 16);
			this.label1.TabIndex = 27;
			this.label1.Text = "Simultaneous jobs : ";
			// 
			// _bOk
			// 
			this._bOk._Image = null;
			this._bOk.DefaultScheme = false;
			this._bOk.Image = ((System.Drawing.Bitmap)(resources.GetObject("_bOk.Image")));
			this._bOk.Location = new System.Drawing.Point(242, 2);
			this._bOk.Name = "_bOk";
			this._bOk.Scheme = ActiveQLibrary.CustomControl.ButtonXP.Schemes.Silver;
			this._bOk.Size = new System.Drawing.Size(80, 30);
			this._bOk.SizeImgButton = new System.Drawing.Size(24, 24);
			this._bOk.TabIndex = 43;
			this._bOk.Text = "Ok";
			this._bOk.Click += new System.EventHandler(this._bOk_Click);
			// 
			// _bApply
			// 
			this._bApply._Image = null;
			this._bApply.DefaultScheme = false;
			this._bApply.Image = ((System.Drawing.Bitmap)(resources.GetObject("_bApply.Image")));
			this._bApply.Location = new System.Drawing.Point(144, 2);
			this._bApply.Name = "_bApply";
			this._bApply.Scheme = ActiveQLibrary.CustomControl.ButtonXP.Schemes.Silver;
			this._bApply.Size = new System.Drawing.Size(88, 30);
			this._bApply.SizeImgButton = new System.Drawing.Size(24, 24);
			this._bApply.TabIndex = 42;
			this._bApply.Text = "Apply";
			this._bApply.Click += new System.EventHandler(this._bApply_Click);
			// 
			// _bReset
			// 
			this._bReset._Image = null;
			this._bReset.DefaultScheme = false;
			this._bReset.Image = ((System.Drawing.Bitmap)(resources.GetObject("_bReset.Image")));
			this._bReset.Location = new System.Drawing.Point(46, 2);
			this._bReset.Name = "_bReset";
			this._bReset.Scheme = ActiveQLibrary.CustomControl.ButtonXP.Schemes.Silver;
			this._bReset.Size = new System.Drawing.Size(88, 30);
			this._bReset.SizeImgButton = new System.Drawing.Size(0, 0);
			this._bReset.TabIndex = 41;
			this._bReset.Text = "Reset";
			this._bReset.Click += new System.EventHandler(this._bReset_Click);
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.Color.LightSteelBlue;
			this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this.panel7,
																				 this.panel6,
																				 this.panel3,
																				 this.panel2});
			this.panel1.Location = new System.Drawing.Point(8, 8);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(384, 168);
			this.panel1.TabIndex = 44;
			// 
			// panel7
			// 
			this.panel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel7.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this._tbActiveMailLicense,
																				 this.label10});
			this.panel7.Location = new System.Drawing.Point(8, 128);
			this.panel7.Name = "panel7";
			this.panel7.Size = new System.Drawing.Size(368, 32);
			this.panel7.TabIndex = 5;
			// 
			// _tbActiveMailLicense
			// 
			this._tbActiveMailLicense.Location = new System.Drawing.Point(106, 5);
			this._tbActiveMailLicense.Name = "_tbActiveMailLicense";
			this._tbActiveMailLicense.Size = new System.Drawing.Size(252, 20);
			this._tbActiveMailLicense.TabIndex = 40;
			this._tbActiveMailLicense.Text = "";
			// 
			// label10
			// 
			this.label10.BackColor = System.Drawing.Color.Transparent;
			this.label10.Location = new System.Drawing.Point(6, 8);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(106, 16);
			this.label10.TabIndex = 39;
			this.label10.Text = "ActiveMail license :";
			// 
			// panel6
			// 
			this.panel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel6.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this.panel5,
																				 this.label4,
																				 this.label5});
			this.panel6.Location = new System.Drawing.Point(8, 88);
			this.panel6.Name = "panel6";
			this.panel6.Size = new System.Drawing.Size(368, 32);
			this.panel6.TabIndex = 4;
			// 
			// panel5
			// 
			this.panel5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel5.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this.label8,
																				 this._tbMaxBytesEvent,
																				 this._tbMaxBytesError,
																				 this.label9});
			this.panel5.Location = new System.Drawing.Point(-1, -1);
			this.panel5.Name = "panel5";
			this.panel5.Size = new System.Drawing.Size(368, 32);
			this.panel5.TabIndex = 40;
			// 
			// label8
			// 
			this.label8.BackColor = System.Drawing.Color.Transparent;
			this.label8.Location = new System.Drawing.Point(6, 8);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(121, 16);
			this.label8.TabIndex = 39;
			this.label8.Text = "Max size event logfile :";
			// 
			// _tbMaxBytesEvent
			// 
			this._tbMaxBytesEvent.InputType = ActiveQLibrary.CustomControl.NumEdit.NumEditType.Integer;
			this._tbMaxBytesEvent.Location = new System.Drawing.Point(127, 5);
			this._tbMaxBytesEvent.Name = "_tbMaxBytesEvent";
			this._tbMaxBytesEvent.Size = new System.Drawing.Size(52, 20);
			this._tbMaxBytesEvent.TabIndex = 36;
			this._tbMaxBytesEvent.Text = "";
			// 
			// _tbMaxBytesError
			// 
			this._tbMaxBytesError.InputType = ActiveQLibrary.CustomControl.NumEdit.NumEditType.Integer;
			this._tbMaxBytesError.Location = new System.Drawing.Point(302, 5);
			this._tbMaxBytesError.Name = "_tbMaxBytesError";
			this._tbMaxBytesError.Size = new System.Drawing.Size(52, 20);
			this._tbMaxBytesError.TabIndex = 38;
			this._tbMaxBytesError.Text = "";
			// 
			// label9
			// 
			this.label9.BackColor = System.Drawing.Color.Transparent;
			this.label9.Location = new System.Drawing.Point(182, 9);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(116, 16);
			this.label9.TabIndex = 37;
			this.label9.Text = "Max size error logfile :";
			// 
			// label4
			// 
			this.label4.BackColor = System.Drawing.Color.Transparent;
			this.label4.Location = new System.Drawing.Point(6, 8);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(121, 16);
			this.label4.TabIndex = 39;
			this.label4.Text = "Max size event logfile :";
			// 
			// label5
			// 
			this.label5.BackColor = System.Drawing.Color.Transparent;
			this.label5.Location = new System.Drawing.Point(182, 9);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(116, 16);
			this.label5.TabIndex = 37;
			this.label5.Text = "Max size error logfile :";
			// 
			// panel3
			// 
			this.panel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel3.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this._tbIntervalMail,
																				 this.label6,
																				 this.label2,
																				 this.label7,
																				 this._tbIntervalTask,
																				 this.label3});
			this.panel3.Location = new System.Drawing.Point(8, 48);
			this.panel3.Name = "panel3";
			this.panel3.Size = new System.Drawing.Size(368, 32);
			this.panel3.TabIndex = 1;
			// 
			// panel2
			// 
			this.panel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel2.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this._tbWorker,
																				 this.label1,
																				 this._cbDeleteWhenProcessed});
			this.panel2.Location = new System.Drawing.Point(8, 8);
			this.panel2.Name = "panel2";
			this.panel2.Size = new System.Drawing.Size(368, 32);
			this.panel2.TabIndex = 0;
			// 
			// panel8
			// 
			this.panel8.BackColor = System.Drawing.Color.LightSteelBlue;
			this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel8.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this._meMailDir});
			this.panel8.Location = new System.Drawing.Point(402, 8);
			this.panel8.Name = "panel8";
			this.panel8.Size = new System.Drawing.Size(416, 188);
			this.panel8.TabIndex = 45;
			// 
			// panel9
			// 
			this.panel9.BackColor = System.Drawing.Color.LightSteelBlue;
			this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel9.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this._meXmlFile});
			this.panel9.Location = new System.Drawing.Point(402, 204);
			this.panel9.Name = "panel9";
			this.panel9.Size = new System.Drawing.Size(416, 188);
			this.panel9.TabIndex = 46;
			// 
			// _meSmtpServer
			// 
			this._meSmtpServer.FirstColor = System.Drawing.Color.Transparent;
			this._meSmtpServer.FontText = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
			this._meSmtpServer.LastColor = System.Drawing.Color.White;
			this._meSmtpServer.Location = new System.Drawing.Point(5, 6);
			this._meSmtpServer.Name = "_meSmtpServer";
			this._meSmtpServer.Pen = false;
			this._meSmtpServer.PenColor = System.Drawing.Color.Silver;
			this._meSmtpServer.Size = new System.Drawing.Size(368, 152);
			this._meSmtpServer.SizePen = 0;
			this._meSmtpServer.TabIndex = 0;
			this._meSmtpServer.TextAddButtonToolTip = "Add a SMTP server";
			this._meSmtpServer.TextColor = System.Drawing.Color.DimGray;
			this._meSmtpServer.TextContents = "SMTP Server";
			this._meSmtpServer.TextRemoveButtonToolTip = "Remove a SMTP server";
			this._meSmtpServer.TextTestToolTip = "Test a SMTP server";
			// 
			// panel11
			// 
			this.panel11.BackColor = System.Drawing.Color.LightSteelBlue;
			this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel11.Controls.AddRange(new System.Windows.Forms.Control[] {
																				  this._bReset,
																				  this._bApply,
																				  this._bOk});
			this.panel11.Location = new System.Drawing.Point(8, 356);
			this.panel11.Name = "panel11";
			this.panel11.Size = new System.Drawing.Size(384, 37);
			this.panel11.TabIndex = 48;
			// 
			// panel4
			// 
			this.panel4.BackColor = System.Drawing.Color.LightSteelBlue;
			this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panel4.Controls.AddRange(new System.Windows.Forms.Control[] {
																				 this._meSmtpServer});
			this.panel4.Location = new System.Drawing.Point(8, 185);
			this.panel4.Name = "panel4";
			this.panel4.Size = new System.Drawing.Size(385, 165);
			this.panel4.TabIndex = 49;
			// 
			// MainForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(822, 397);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.panel4,
																		  this.panel11,
																		  this.panel9,
																		  this.panel8,
																		  this.panel1});
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.Name = "MainForm";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "ActiveQ Configuration";
			this.Load += new System.EventHandler(this.MainForm_Load);
			this.Paint += new System.Windows.Forms.PaintEventHandler(this._meSmtpServer_Paint);
			this.panel1.ResumeLayout(false);
			this.panel7.ResumeLayout(false);
			this.panel6.ResumeLayout(false);
			this.panel5.ResumeLayout(false);
			this.panel3.ResumeLayout(false);
			this.panel2.ResumeLayout(false);
			this.panel8.ResumeLayout(false);
			this.panel9.ResumeLayout(false);
			this.panel11.ResumeLayout(false);
			this.panel4.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Esempio n. 40
0
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmAddFoodCost));
     this.Label1         = new System.Windows.Forms.Label();
     base.Load          += new System.EventHandler(frmAddFoodCost_Load);
     this.Label2         = new System.Windows.Forms.Label();
     this.Label3         = new System.Windows.Forms.Label();
     this.ComboBox1      = new System.Windows.Forms.ComboBox();
     this.NumericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.Label4         = new System.Windows.Forms.Label();
     this.NumericUpDown2 = new System.Windows.Forms.NumericUpDown();
     this.Button1        = new System.Windows.Forms.Button();
     this.Button1.Click += new System.EventHandler(this.Button1_Click);
     this.Button2        = new System.Windows.Forms.Button();
     this.Label5         = new System.Windows.Forms.Label();
     this.GroupBox1      = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize) this.NumericUpDown1).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.NumericUpDown2).BeginInit();
     this.GroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     //Label1
     //
     this.Label1.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label1.ForeColor = System.Drawing.Color.Navy;
     this.Label1.Location  = new System.Drawing.Point(18, 25);
     this.Label1.Name      = "Label1";
     this.Label1.Size      = new System.Drawing.Size(376, 23);
     this.Label1.TabIndex  = 5;
     //
     //Label2
     //
     this.Label2.Location  = new System.Drawing.Point(18, 58);
     this.Label2.Name      = "Label2";
     this.Label2.Size      = new System.Drawing.Size(48, 23);
     this.Label2.TabIndex  = 6;
     this.Label2.Text      = "数量:";
     this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //Label3
     //
     this.Label3.Location  = new System.Drawing.Point(122, 58);
     this.Label3.Name      = "Label3";
     this.Label3.Size      = new System.Drawing.Size(72, 23);
     this.Label3.TabIndex  = 7;
     this.Label3.Text      = "组成类别:";
     this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //ComboBox1
     //
     this.ComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ComboBox1.Items.AddRange(new object[] { "主料", "辅料", "佐料", "其它" });
     this.ComboBox1.Location = new System.Drawing.Point(184, 59);
     this.ComboBox1.Name     = "ComboBox1";
     this.ComboBox1.Size     = new System.Drawing.Size(72, 20);
     this.ComboBox1.TabIndex = 1;
     //
     //NumericUpDown1
     //
     this.NumericUpDown1.Location  = new System.Drawing.Point(57, 59);
     this.NumericUpDown1.Name      = "NumericUpDown1";
     this.NumericUpDown1.Size      = new System.Drawing.Size(64, 21);
     this.NumericUpDown1.TabIndex  = 0;
     this.NumericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //Label4
     //
     this.Label4.Location  = new System.Drawing.Point(258, 58);
     this.Label4.Name      = "Label4";
     this.Label4.Size      = new System.Drawing.Size(56, 23);
     this.Label4.TabIndex  = 8;
     this.Label4.Text      = "损耗率:";
     this.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //NumericUpDown2
     //
     this.NumericUpDown2.Location  = new System.Drawing.Point(309, 59);
     this.NumericUpDown2.Name      = "NumericUpDown2";
     this.NumericUpDown2.Size      = new System.Drawing.Size(59, 21);
     this.NumericUpDown2.TabIndex  = 2;
     this.NumericUpDown2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //Button1
     //
     this.Button1.Location = new System.Drawing.Point(240, 112);
     this.Button1.Name     = "Button1";
     this.Button1.TabIndex = 3;
     this.Button1.Text     = "确定(&O)";
     //
     //Button2
     //
     this.Button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Button2.Location     = new System.Drawing.Point(320, 112);
     this.Button2.Name         = "Button2";
     this.Button2.TabIndex     = 4;
     this.Button2.Text         = "取消(&C)";
     //
     //Label5
     //
     this.Label5.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label5.Location  = new System.Drawing.Point(367, 58);
     this.Label5.Name      = "Label5";
     this.Label5.Size      = new System.Drawing.Size(11, 23);
     this.Label5.TabIndex  = 9;
     this.Label5.Text      = "%";
     this.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //GroupBox1
     //
     this.GroupBox1.Controls.Add(this.ComboBox1);
     this.GroupBox1.Controls.Add(this.NumericUpDown2);
     this.GroupBox1.Controls.Add(this.NumericUpDown1);
     this.GroupBox1.Controls.Add(this.Label4);
     this.GroupBox1.Controls.Add(this.Label5);
     this.GroupBox1.Controls.Add(this.Label1);
     this.GroupBox1.Controls.Add(this.Label2);
     this.GroupBox1.Controls.Add(this.Label3);
     this.GroupBox1.Location = new System.Drawing.Point(9, 7);
     this.GroupBox1.Name     = "GroupBox1";
     this.GroupBox1.Size     = new System.Drawing.Size(399, 89);
     this.GroupBox1.TabIndex = 10;
     this.GroupBox1.TabStop  = false;
     this.GroupBox1.Text     = "原料信息";
     //
     //frmAddFoodCost
     //
     this.AcceptButton      = this.Button1;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.CancelButton      = this.Button2;
     this.ClientSize        = new System.Drawing.Size(418, 152);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.Button2);
     this.Controls.Add(this.Button1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = (System.Drawing.Icon)(resources.GetObject("$this.Icon"));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAddFoodCost";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "添加原料";
     ((System.ComponentModel.ISupportInitialize) this.NumericUpDown1).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.NumericUpDown2).EndInit();
     this.GroupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.NumX = new System.Windows.Forms.NumericUpDown();
     this.NumY = new System.Windows.Forms.NumericUpDown();
     this.NumZ = new System.Windows.Forms.NumericUpDown();
     this.TextBoxSubregionName = new System.Windows.Forms.TextBox();
     this.ButtonAddSubregion   = new System.Windows.Forms.Button();
     this.ButtonDelRegion      = new System.Windows.Forms.Button();
     this.ButtonClearRegion    = new System.Windows.Forms.Button();
     this.TextBoxRegionName    = new System.Windows.Forms.TextBox();
     this.CheckBoxSet          = new System.Windows.Forms.CheckBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.NumPriority            = new System.Windows.Forms.NumericUpDown();
     this.label2                 = new System.Windows.Forms.Label();
     this.TextBoxTypeName        = new System.Windows.Forms.TextBox();
     this.label3                 = new System.Windows.Forms.Label();
     this.label4                 = new System.Windows.Forms.Label();
     this.TextBoxMusicName       = new System.Windows.Forms.TextBox();
     this.label5                 = new System.Windows.Forms.Label();
     this.TextBoxRuneName        = new System.Windows.Forms.TextBox();
     this.label6                 = new System.Windows.Forms.Label();
     this.NumMaxZ                = new System.Windows.Forms.NumericUpDown();
     this.label8                 = new System.Windows.Forms.Label();
     this.checkBoxSmartNoHousing = new System.Windows.Forms.CheckBox();
     this.checkBoxLogoutDelay    = new System.Windows.Forms.CheckBox();
     this.checkBoxGuardsDisabled = new System.Windows.Forms.CheckBox();
     this.label7                 = new System.Windows.Forms.Label();
     this.NumMinZ                = new System.Windows.Forms.NumericUpDown();
     this.ButtonResetGoLoc       = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.NumX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumZ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumPriority)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumMaxZ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumMinZ)).BeginInit();
     this.SuspendLayout();
     //
     // NumX
     //
     this.NumX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.NumX.Location    = new System.Drawing.Point(309, 7);
     this.NumX.Name        = "NumX";
     this.NumX.Size        = new System.Drawing.Size(48, 20);
     this.NumX.TabIndex    = 1;
     this.NumX.Value       = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.NumX.ValueChanged += new System.EventHandler(this.NumX_ValueChanged);
     //
     // NumY
     //
     this.NumY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.NumY.Location    = new System.Drawing.Point(363, 7);
     this.NumY.Maximum     = new decimal(new int[] {
         10000,
         0,
         0,
         0
     });
     this.NumY.Name     = "NumY";
     this.NumY.Size     = new System.Drawing.Size(48, 20);
     this.NumY.TabIndex = 2;
     this.NumY.Value    = new decimal(new int[] {
         5699,
         0,
         0,
         0
     });
     this.NumY.ValueChanged += new System.EventHandler(this.NumY_ValueChanged);
     //
     // NumZ
     //
     this.NumZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.NumZ.Location    = new System.Drawing.Point(417, 7);
     this.NumZ.Maximum     = new decimal(new int[] {
         127,
         0,
         0,
         0
     });
     this.NumZ.Minimum = new decimal(new int[] {
         128,
         0,
         0,
         -2147483648
     });
     this.NumZ.Name     = "NumZ";
     this.NumZ.Size     = new System.Drawing.Size(48, 20);
     this.NumZ.TabIndex = 3;
     this.NumZ.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.NumZ.ValueChanged += new System.EventHandler(this.NumZ_ValueChanged);
     //
     // TextBoxSubregionName
     //
     this.TextBoxSubregionName.Location = new System.Drawing.Point(97, 105);
     this.TextBoxSubregionName.Name     = "TextBoxSubregionName";
     this.TextBoxSubregionName.Size     = new System.Drawing.Size(160, 20);
     this.TextBoxSubregionName.TabIndex = 4;
     //
     // ButtonAddSubregion
     //
     this.ButtonAddSubregion.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ButtonAddSubregion.Location  = new System.Drawing.Point(3, 102);
     this.ButtonAddSubregion.Name      = "ButtonAddSubregion";
     this.ButtonAddSubregion.Size      = new System.Drawing.Size(88, 23);
     this.ButtonAddSubregion.TabIndex  = 6;
     this.ButtonAddSubregion.Text      = "Add Subregion";
     this.ButtonAddSubregion.Click    += new System.EventHandler(this.ButtonAddSubsection_Click);
     //
     // ButtonDelRegion
     //
     this.ButtonDelRegion.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ButtonDelRegion.Location  = new System.Drawing.Point(263, 102);
     this.ButtonDelRegion.Name      = "ButtonDelRegion";
     this.ButtonDelRegion.Size      = new System.Drawing.Size(94, 23);
     this.ButtonDelRegion.TabIndex  = 7;
     this.ButtonDelRegion.Text      = "Delete Region";
     this.ButtonDelRegion.Click    += new System.EventHandler(this.ButtonDelRegion_Click);
     //
     // ButtonClearRegion
     //
     this.ButtonClearRegion.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ButtonClearRegion.Location  = new System.Drawing.Point(362, 102);
     this.ButtonClearRegion.Name      = "ButtonClearRegion";
     this.ButtonClearRegion.Size      = new System.Drawing.Size(86, 23);
     this.ButtonClearRegion.TabIndex  = 8;
     this.ButtonClearRegion.Text      = "Clear Region";
     this.ButtonClearRegion.Click    += new System.EventHandler(this.ButtonClearRegion_Click);
     //
     // TextBoxRegionName
     //
     this.TextBoxRegionName.Location     = new System.Drawing.Point(97, 7);
     this.TextBoxRegionName.Name         = "TextBoxRegionName";
     this.TextBoxRegionName.Size         = new System.Drawing.Size(160, 20);
     this.TextBoxRegionName.TabIndex     = 9;
     this.TextBoxRegionName.TextChanged += new System.EventHandler(this.TextBoxRegionName_TextChanged);
     //
     // CheckBoxSet
     //
     this.CheckBoxSet.Appearance      = System.Windows.Forms.Appearance.Button;
     this.CheckBoxSet.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.CheckBoxSet.Location        = new System.Drawing.Point(471, 7);
     this.CheckBoxSet.Name            = "CheckBoxSet";
     this.CheckBoxSet.Size            = new System.Drawing.Size(48, 24);
     this.CheckBoxSet.TabIndex        = 11;
     this.CheckBoxSet.Text            = "Set";
     this.CheckBoxSet.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.CheckBoxSet.Click          += new System.EventHandler(this.CheckBoxSet_Click);
     this.CheckBoxSet.CheckedChanged += new System.EventHandler(this.CheckBoxSet_CheckedChanged);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(52, 10);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(41, 13);
     this.label1.TabIndex  = 12;
     this.label1.Text      = "Region";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // NumPriority
     //
     this.NumPriority.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.NumPriority.Location    = new System.Drawing.Point(309, 76);
     this.NumPriority.Name        = "NumPriority";
     this.NumPriority.Size        = new System.Drawing.Size(48, 20);
     this.NumPriority.TabIndex    = 13;
     this.NumPriority.Value       = new decimal(new int[] {
         50,
         0,
         0,
         0
     });
     this.NumPriority.ValueChanged += new System.EventHandler(this.NumPriority_ValueChanged);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(269, 79);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(38, 13);
     this.label2.TabIndex  = 14;
     this.label2.Text      = "Priority";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TextBoxTypeName
     //
     this.TextBoxTypeName.Location     = new System.Drawing.Point(97, 30);
     this.TextBoxTypeName.Name         = "TextBoxTypeName";
     this.TextBoxTypeName.Size         = new System.Drawing.Size(160, 20);
     this.TextBoxTypeName.TabIndex     = 15;
     this.TextBoxTypeName.TextChanged += new System.EventHandler(this.TextBoxTypeName_TextChanged);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Location  = new System.Drawing.Point(62, 34);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(31, 13);
     this.label3.TabIndex  = 16;
     this.label3.Text      = "Type";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Location  = new System.Drawing.Point(58, 79);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(35, 13);
     this.label4.TabIndex  = 18;
     this.label4.Text      = "Music";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TextBoxMusicName
     //
     this.TextBoxMusicName.Location     = new System.Drawing.Point(97, 76);
     this.TextBoxMusicName.Name         = "TextBoxMusicName";
     this.TextBoxMusicName.Size         = new System.Drawing.Size(160, 20);
     this.TextBoxMusicName.TabIndex     = 17;
     this.TextBoxMusicName.TextChanged += new System.EventHandler(this.TextBoxMusicName_TextChanged);
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Location  = new System.Drawing.Point(27, 56);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(64, 13);
     this.label5.TabIndex  = 20;
     this.label5.Text      = "Rune Name";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TextBoxRuneName
     //
     this.TextBoxRuneName.Location     = new System.Drawing.Point(97, 53);
     this.TextBoxRuneName.Name         = "TextBoxRuneName";
     this.TextBoxRuneName.Size         = new System.Drawing.Size(160, 20);
     this.TextBoxRuneName.TabIndex     = 19;
     this.TextBoxRuneName.TextChanged += new System.EventHandler(this.TextBoxRuneName_TextChanged);
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.Location  = new System.Drawing.Point(263, 10);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(42, 13);
     this.label6.TabIndex  = 21;
     this.label6.Text      = "Go Loc";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // NumMaxZ
     //
     this.NumMaxZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.NumMaxZ.Location    = new System.Drawing.Point(309, 53);
     this.NumMaxZ.Maximum     = new decimal(new int[] {
         127,
         0,
         0,
         0
     });
     this.NumMaxZ.Minimum = new decimal(new int[] {
         128,
         0,
         0,
         -2147483648
     });
     this.NumMaxZ.Name     = "NumMaxZ";
     this.NumMaxZ.Size     = new System.Drawing.Size(48, 20);
     this.NumMaxZ.TabIndex = 22;
     this.NumMaxZ.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.NumMaxZ.ValueChanged += new System.EventHandler(this.NumMaxZ_ValueChanged);
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Location  = new System.Drawing.Point(273, 56);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(34, 13);
     this.label8.TabIndex  = 24;
     this.label8.Text      = "MaxZ";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // checkBoxSmartNoHousing
     //
     this.checkBoxSmartNoHousing.AutoSize = true;
     this.checkBoxSmartNoHousing.Location = new System.Drawing.Point(363, 55);
     this.checkBoxSmartNoHousing.Name     = "checkBoxSmartNoHousing";
     this.checkBoxSmartNoHousing.Size     = new System.Drawing.Size(106, 17);
     this.checkBoxSmartNoHousing.TabIndex = 30;
     this.checkBoxSmartNoHousing.Text     = "SmartNoHousing";
     this.checkBoxSmartNoHousing.UseVisualStyleBackColor = true;
     this.checkBoxSmartNoHousing.CheckedChanged         += new System.EventHandler(this.checkBoxSmartNoHousing_CheckedChanged);
     //
     // checkBoxLogoutDelay
     //
     this.checkBoxLogoutDelay.AutoSize = true;
     this.checkBoxLogoutDelay.Location = new System.Drawing.Point(363, 33);
     this.checkBoxLogoutDelay.Name     = "checkBoxLogoutDelay";
     this.checkBoxLogoutDelay.Size     = new System.Drawing.Size(86, 17);
     this.checkBoxLogoutDelay.TabIndex = 31;
     this.checkBoxLogoutDelay.Text     = "LogoutDelay";
     this.checkBoxLogoutDelay.UseVisualStyleBackColor = true;
     this.checkBoxLogoutDelay.CheckedChanged         += new System.EventHandler(this.checkBoxLogoutDelay_CheckedChanged);
     //
     // checkBoxGuardsDisabled
     //
     this.checkBoxGuardsDisabled.AutoSize = true;
     this.checkBoxGuardsDisabled.Location = new System.Drawing.Point(363, 78);
     this.checkBoxGuardsDisabled.Name     = "checkBoxGuardsDisabled";
     this.checkBoxGuardsDisabled.Size     = new System.Drawing.Size(101, 17);
     this.checkBoxGuardsDisabled.TabIndex = 32;
     this.checkBoxGuardsDisabled.Text     = "GuardsDisabled";
     this.checkBoxGuardsDisabled.UseVisualStyleBackColor = true;
     this.checkBoxGuardsDisabled.CheckedChanged         += new System.EventHandler(this.checkBoxGuardsDisabled_CheckedChanged);
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Location  = new System.Drawing.Point(276, 34);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(31, 13);
     this.label7.TabIndex  = 34;
     this.label7.Text      = "MinZ";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // NumMinZ
     //
     this.NumMinZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.NumMinZ.Location    = new System.Drawing.Point(309, 30);
     this.NumMinZ.Maximum     = new decimal(new int[] {
         127,
         0,
         0,
         0
     });
     this.NumMinZ.Minimum = new decimal(new int[] {
         128,
         0,
         0,
         -2147483648
     });
     this.NumMinZ.Name     = "NumMinZ";
     this.NumMinZ.Size     = new System.Drawing.Size(48, 20);
     this.NumMinZ.TabIndex = 33;
     this.NumMinZ.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.NumMinZ.ValueChanged += new System.EventHandler(this.NumMinZ_ValueChanged);
     //
     // ButtonResetGoLoc
     //
     this.ButtonResetGoLoc.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ButtonResetGoLoc.Location  = new System.Drawing.Point(454, 102);
     this.ButtonResetGoLoc.Name      = "ButtonResetGoLoc";
     this.ButtonResetGoLoc.Size      = new System.Drawing.Size(86, 23);
     this.ButtonResetGoLoc.TabIndex  = 35;
     this.ButtonResetGoLoc.Text      = "Reset Go Loc";
     this.ButtonResetGoLoc.Click    += new System.EventHandler(this.ButtonResetGoLoc_Click);
     //
     // RegionPanel
     //
     this.Controls.Add(this.ButtonResetGoLoc);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.NumMinZ);
     this.Controls.Add(this.checkBoxGuardsDisabled);
     this.Controls.Add(this.checkBoxLogoutDelay);
     this.Controls.Add(this.checkBoxSmartNoHousing);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.NumMaxZ);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.TextBoxRuneName);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.TextBoxMusicName);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.TextBoxTypeName);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.NumPriority);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.CheckBoxSet);
     this.Controls.Add(this.TextBoxRegionName);
     this.Controls.Add(this.ButtonClearRegion);
     this.Controls.Add(this.ButtonDelRegion);
     this.Controls.Add(this.ButtonAddSubregion);
     this.Controls.Add(this.TextBoxSubregionName);
     this.Controls.Add(this.NumZ);
     this.Controls.Add(this.NumY);
     this.Controls.Add(this.NumX);
     this.Name = "RegionPanel";
     this.Size = new System.Drawing.Size(560, 128);
     ((System.ComponentModel.ISupportInitialize)(this.NumX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumZ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumPriority)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumMaxZ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NumMinZ)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 42
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CWndPostit));
     this.m_cadre           = new System.Windows.Forms.Panel();
     this.m_btnMove         = new System.Windows.Forms.PictureBox();
     this.pictureBox1       = new System.Windows.Forms.PictureBox();
     this.m_panelBas        = new sc2i.win32.common.C2iPanel(this.components);
     this.m_chkPublic       = new System.Windows.Forms.CheckBox();
     this.label2            = new System.Windows.Forms.Label();
     this.m_lblAuteur       = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.m_txtTexte        = new sc2i.win32.common.C2iTextBox();
     this.m_panelTitre      = new System.Windows.Forms.Panel();
     this.m_panelValidation = new System.Windows.Forms.Panel();
     this.m_btnAnnuler      = new System.Windows.Forms.PictureBox();
     this.m_btnValider      = new System.Windows.Forms.PictureBox();
     this.m_btnEditer       = new System.Windows.Forms.PictureBox();
     this.pictureBox2       = new System.Windows.Forms.PictureBox();
     this.m_txtTitre        = new sc2i.win32.common.C2iTextBox();
     this.m_btnFermer       = new System.Windows.Forms.PictureBox();
     this.m_btnPoubelle     = new System.Windows.Forms.PictureBox();
     this.m_btnResize       = new System.Windows.Forms.PictureBox();
     this.m_extModeEdition  = new sc2i.win32.common.CExtModeEdition();
     this.m_extStyle        = new sc2i.win32.common.CExtStyle();
     this.m_dtExpiration    = new sc2i.win32.common.C2iDateTimeExPicker();
     this.m_cadre.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnMove)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.m_panelBas.SuspendLayout();
     this.m_panelTitre.SuspendLayout();
     this.m_panelValidation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnAnnuler)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnValider)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnEditer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnFermer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnPoubelle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnResize)).BeginInit();
     this.SuspendLayout();
     //
     // m_cadre
     //
     this.m_cadre.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.m_cadre.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_cadre.Controls.Add(this.m_btnMove);
     this.m_cadre.Controls.Add(this.pictureBox1);
     this.m_cadre.Controls.Add(this.m_panelBas);
     this.m_cadre.Controls.Add(this.m_txtTexte);
     this.m_cadre.Controls.Add(this.m_panelTitre);
     this.m_cadre.Controls.Add(this.m_btnResize);
     this.m_cadre.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.m_cadre.ForeColor = System.Drawing.Color.Black;
     this.m_cadre.Location  = new System.Drawing.Point(0, 0);
     this.m_extModeEdition.SetModeEdition(this.m_cadre, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_cadre.Name = "m_cadre";
     this.m_cadre.Size = new System.Drawing.Size(360, 336);
     this.m_extStyle.SetStyleBackColor(this.m_cadre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_cadre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_cadre.TabIndex = 1;
     //
     // m_btnMove
     //
     this.m_btnMove.Cursor   = System.Windows.Forms.Cursors.SizeAll;
     this.m_btnMove.Image    = ((System.Drawing.Image)(resources.GetObject("m_btnMove.Image")));
     this.m_btnMove.Location = new System.Drawing.Point(4, 0);
     this.m_extModeEdition.SetModeEdition(this.m_btnMove, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_btnMove.Name     = "m_btnMove";
     this.m_btnMove.Size     = new System.Drawing.Size(20, 24);
     this.m_btnMove.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.m_extStyle.SetStyleBackColor(this.m_btnMove, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnMove, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnMove.TabIndex   = 6;
     this.m_btnMove.TabStop    = false;
     this.m_btnMove.MouseMove += new System.Windows.Forms.MouseEventHandler(this.m_btnMove_MouseMove);
     this.m_btnMove.MouseDown += new System.Windows.Forms.MouseEventHandler(this.m_btnMove_MouseDown);
     this.m_btnMove.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.m_btnMove_MouseUp);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(153)))), ((int)(((byte)(102)))));
     this.pictureBox1.Location  = new System.Drawing.Point(4, 292);
     this.m_extModeEdition.SetModeEdition(this.pictureBox1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(348, 1);
     this.m_extStyle.SetStyleBackColor(this.pictureBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.pictureBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop  = false;
     //
     // m_panelBas
     //
     this.m_panelBas.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_panelBas.Controls.Add(this.m_dtExpiration);
     this.m_panelBas.Controls.Add(this.m_chkPublic);
     this.m_panelBas.Controls.Add(this.label2);
     this.m_panelBas.Controls.Add(this.m_lblAuteur);
     this.m_panelBas.Controls.Add(this.label1);
     this.m_panelBas.Location    = new System.Drawing.Point(0, 294);
     this.m_panelBas.LockEdition = false;
     this.m_extModeEdition.SetModeEdition(this.m_panelBas, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_panelBas.Name = "m_panelBas";
     this.m_panelBas.Size = new System.Drawing.Size(340, 40);
     this.m_extStyle.SetStyleBackColor(this.m_panelBas, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelBas, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelBas.TabIndex = 4;
     //
     // m_chkPublic
     //
     this.m_chkPublic.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.m_chkPublic.Location = new System.Drawing.Point(192, 24);
     this.m_extModeEdition.SetModeEdition(this.m_chkPublic, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_chkPublic.Name = "m_chkPublic";
     this.m_chkPublic.Size = new System.Drawing.Size(145, 17);
     this.m_extStyle.SetStyleBackColor(this.m_chkPublic, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_chkPublic, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_chkPublic.TabIndex = 5;
     this.m_chkPublic.Checked  = true;
     this.m_chkPublic.Text     = "Public Note|829";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(4, 20);
     this.m_extModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(66, 18);
     this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Expiration|826";
     //
     // m_lblAuteur
     //
     this.m_lblAuteur.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.m_lblAuteur.Location = new System.Drawing.Point(76, 4);
     this.m_extModeEdition.SetModeEdition(this.m_lblAuteur, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_lblAuteur.Name = "m_lblAuteur";
     this.m_lblAuteur.Size = new System.Drawing.Size(254, 16);
     this.m_extStyle.SetStyleBackColor(this.m_lblAuteur, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_lblAuteur, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_lblAuteur.TabIndex = 1;
     this.m_lblAuteur.Text     = "User name|30117";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 4);
     this.m_extModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 16);
     this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.label1.TabIndex = 0;
     this.label1.Text     = "User: |245";
     //
     // m_txtTexte
     //
     this.m_txtTexte.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtTexte.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.m_txtTexte.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.m_txtTexte.ForeColor   = System.Drawing.Color.Black;
     this.m_txtTexte.Location    = new System.Drawing.Point(4, 24);
     this.m_txtTexte.LockEdition = false;
     this.m_extModeEdition.SetModeEdition(this.m_txtTexte, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_txtTexte.Multiline = true;
     this.m_txtTexte.Name      = "m_txtTexte";
     this.m_txtTexte.Size      = new System.Drawing.Size(352, 264);
     this.m_extStyle.SetStyleBackColor(this.m_txtTexte, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_txtTexte, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_txtTexte.TabIndex     = 3;
     this.m_txtTexte.Text         = "Enter Note text here|825";
     this.m_txtTexte.TextChanged += new System.EventHandler(this.m_txtTexte_TextChanged);
     this.m_txtTexte.Validated   += new System.EventHandler(this.m_txtTexte_Validated);
     //
     // m_panelTitre
     //
     this.m_panelTitre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.m_panelTitre.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.m_panelTitre.Controls.Add(this.m_panelValidation);
     this.m_panelTitre.Controls.Add(this.m_btnEditer);
     this.m_panelTitre.Controls.Add(this.pictureBox2);
     this.m_panelTitre.Controls.Add(this.m_txtTitre);
     this.m_panelTitre.Controls.Add(this.m_btnFermer);
     this.m_panelTitre.Controls.Add(this.m_btnPoubelle);
     this.m_panelTitre.Location = new System.Drawing.Point(24, 2);
     this.m_extModeEdition.SetModeEdition(this.m_panelTitre, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_panelTitre.Name = "m_panelTitre";
     this.m_panelTitre.Size = new System.Drawing.Size(332, 20);
     this.m_extStyle.SetStyleBackColor(this.m_panelTitre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelTitre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelTitre.TabIndex = 2;
     //
     // m_panelValidation
     //
     this.m_panelValidation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.m_panelValidation.Controls.Add(this.m_btnAnnuler);
     this.m_panelValidation.Controls.Add(this.m_btnValider);
     this.m_panelValidation.Location = new System.Drawing.Point(278, 0);
     this.m_extModeEdition.SetModeEdition(this.m_panelValidation, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_panelValidation.Name = "m_panelValidation";
     this.m_panelValidation.Size = new System.Drawing.Size(40, 20);
     this.m_extStyle.SetStyleBackColor(this.m_panelValidation, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelValidation, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelValidation.TabIndex = 8;
     //
     // m_btnAnnuler
     //
     this.m_btnAnnuler.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btnAnnuler.Image    = ((System.Drawing.Image)(resources.GetObject("m_btnAnnuler.Image")));
     this.m_btnAnnuler.Location = new System.Drawing.Point(20, 2);
     this.m_extModeEdition.SetModeEdition(this.m_btnAnnuler, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_btnAnnuler.Name     = "m_btnAnnuler";
     this.m_btnAnnuler.Size     = new System.Drawing.Size(16, 16);
     this.m_btnAnnuler.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.m_extStyle.SetStyleBackColor(this.m_btnAnnuler, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnAnnuler, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnAnnuler.TabIndex = 6;
     this.m_btnAnnuler.TabStop  = false;
     this.m_btnAnnuler.Click   += new System.EventHandler(this.m_btnAnnuler_Click);
     //
     // m_btnValider
     //
     this.m_btnValider.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btnValider.Image    = ((System.Drawing.Image)(resources.GetObject("m_btnValider.Image")));
     this.m_btnValider.Location = new System.Drawing.Point(4, 2);
     this.m_extModeEdition.SetModeEdition(this.m_btnValider, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_btnValider.Name     = "m_btnValider";
     this.m_btnValider.Size     = new System.Drawing.Size(16, 16);
     this.m_btnValider.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.m_extStyle.SetStyleBackColor(this.m_btnValider, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnValider, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnValider.TabIndex = 5;
     this.m_btnValider.TabStop  = false;
     this.m_btnValider.Click   += new System.EventHandler(this.m_btnValider_Click);
     //
     // m_btnEditer
     //
     this.m_btnEditer.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.m_btnEditer.Image    = ((System.Drawing.Image)(resources.GetObject("m_btnEditer.Image")));
     this.m_btnEditer.Location = new System.Drawing.Point(281, 4);
     this.m_extModeEdition.SetModeEdition(this.m_btnEditer, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_btnEditer.Name = "m_btnEditer";
     this.m_btnEditer.Size = new System.Drawing.Size(16, 16);
     this.m_extStyle.SetStyleBackColor(this.m_btnEditer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnEditer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnEditer.TabIndex = 7;
     this.m_btnEditer.TabStop  = false;
     this.m_btnEditer.Click   += new System.EventHandler(this.m_btnEditer_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(247)))), ((int)(((byte)(184)))));
     this.pictureBox2.Location  = new System.Drawing.Point(276, 0);
     this.m_extModeEdition.SetModeEdition(this.pictureBox2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(2, 32);
     this.m_extStyle.SetStyleBackColor(this.pictureBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.pictureBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.pictureBox2.TabIndex = 4;
     this.pictureBox2.TabStop  = false;
     //
     // m_txtTitre
     //
     this.m_txtTitre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtTitre.BackColor   = System.Drawing.SystemColors.ActiveCaption;
     this.m_txtTitre.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.m_txtTitre.ForeColor   = System.Drawing.SystemColors.ActiveCaptionText;
     this.m_txtTitre.Location    = new System.Drawing.Point(4, 4);
     this.m_txtTitre.LockEdition = false;
     this.m_extModeEdition.SetModeEdition(this.m_txtTitre, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_txtTitre.Name = "m_txtTitre";
     this.m_txtTitre.Size = new System.Drawing.Size(268, 13);
     this.m_extStyle.SetStyleBackColor(this.m_txtTitre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_txtTitre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_txtTitre.TabIndex   = 3;
     this.m_txtTitre.Text       = "Title|824";
     this.m_txtTitre.Validated += new System.EventHandler(this.m_txtTitre_Validated);
     //
     // m_btnFermer
     //
     this.m_btnFermer.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.m_btnFermer.Image    = ((System.Drawing.Image)(resources.GetObject("m_btnFermer.Image")));
     this.m_btnFermer.Location = new System.Drawing.Point(316, 4);
     this.m_extModeEdition.SetModeEdition(this.m_btnFermer, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_btnFermer.Name     = "m_btnFermer";
     this.m_btnFermer.Size     = new System.Drawing.Size(14, 14);
     this.m_btnFermer.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.m_extStyle.SetStyleBackColor(this.m_btnFermer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnFermer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnFermer.TabIndex = 4;
     this.m_btnFermer.TabStop  = false;
     this.m_btnFermer.Click   += new System.EventHandler(this.m_btnFermer_Click);
     //
     // m_btnPoubelle
     //
     this.m_btnPoubelle.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.m_btnPoubelle.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.m_btnPoubelle.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btnPoubelle.Image     = ((System.Drawing.Image)(resources.GetObject("m_btnPoubelle.Image")));
     this.m_btnPoubelle.Location  = new System.Drawing.Point(297, 2);
     this.m_extModeEdition.SetModeEdition(this.m_btnPoubelle, sc2i.win32.common.TypeModeEdition.DisableSurEdition);
     this.m_btnPoubelle.Name     = "m_btnPoubelle";
     this.m_btnPoubelle.Size     = new System.Drawing.Size(16, 16);
     this.m_btnPoubelle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.m_extStyle.SetStyleBackColor(this.m_btnPoubelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnPoubelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnPoubelle.TabIndex = 4;
     this.m_btnPoubelle.TabStop  = false;
     this.m_btnPoubelle.Click   += new System.EventHandler(this.m_btnPoubelle_Click);
     //
     // m_btnResize
     //
     this.m_btnResize.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.m_btnResize.Cursor   = System.Windows.Forms.Cursors.SizeNWSE;
     this.m_btnResize.Image    = ((System.Drawing.Image)(resources.GetObject("m_btnResize.Image")));
     this.m_btnResize.Location = new System.Drawing.Point(344, 320);
     this.m_extModeEdition.SetModeEdition(this.m_btnResize, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_btnResize.Name     = "m_btnResize";
     this.m_btnResize.Size     = new System.Drawing.Size(12, 12);
     this.m_btnResize.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.m_extStyle.SetStyleBackColor(this.m_btnResize, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnResize, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnResize.TabIndex   = 4;
     this.m_btnResize.TabStop    = false;
     this.m_btnResize.MouseMove += new System.Windows.Forms.MouseEventHandler(this.m_btnResize_MouseMove);
     this.m_btnResize.Click     += new System.EventHandler(this.m_btnResize_Click);
     this.m_btnResize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.m_btnResize_MouseDown);
     this.m_btnResize.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.m_btnResize_MouseUp);
     //
     // m_extModeEdition
     //
     this.m_extModeEdition.ModeEdition = true;
     //
     // m_dtExpiration
     //
     this.m_dtExpiration.Checked      = true;
     this.m_dtExpiration.CustomFormat = null;
     this.m_dtExpiration.Format       = System.Windows.Forms.DateTimePickerFormat.Short;
     this.m_dtExpiration.Location     = new System.Drawing.Point(76, 18);
     this.m_dtExpiration.LockEdition  = false;
     this.m_extModeEdition.SetModeEdition(this.m_dtExpiration, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_dtExpiration.Name = "m_dtExpiration";
     this.m_dtExpiration.Size = new System.Drawing.Size(102, 20);
     this.m_extStyle.SetStyleBackColor(this.m_dtExpiration, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_dtExpiration, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_dtExpiration.TabIndex            = 7;
     this.m_dtExpiration.TextNull            = "";
     this.m_dtExpiration.Value.DateTimeValue = new System.DateTime(2010, 10, 14, 8, 54, 22, 421);
     //
     // CWndPostit
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(204)))));
     this.Controls.Add(this.m_cadre);
     this.m_extModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome);
     this.Name = "CWndPostit";
     this.Size = new System.Drawing.Size(360, 336);
     this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.Resize += new System.EventHandler(this.CWndPostit_Resize);
     this.Move   += new System.EventHandler(this.CWndPostit_Move);
     this.m_cadre.ResumeLayout(false);
     this.m_cadre.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnMove)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.m_panelBas.ResumeLayout(false);
     this.m_panelTitre.ResumeLayout(false);
     this.m_panelTitre.PerformLayout();
     this.m_panelValidation.ResumeLayout(false);
     this.m_panelValidation.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnAnnuler)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnValider)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnEditer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnFermer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnPoubelle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnResize)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.TL     = new System.Windows.Forms.TextBox();
     this.TR     = new System.Windows.Forms.TextBox();
     this.TM     = new System.Windows.Forms.TextBox();
     this.Pixel  = new System.Windows.Forms.TextBox();
     this.MR     = new System.Windows.Forms.TextBox();
     this.ML     = new System.Windows.Forms.TextBox();
     this.BM     = new System.Windows.Forms.TextBox();
     this.BR     = new System.Windows.Forms.TextBox();
     this.BL     = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.Factor = new System.Windows.Forms.TextBox();
     this.Offset = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.OK     = new System.Windows.Forms.Button();
     this.Cancel = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // TL
     //
     this.TL.Location = new System.Drawing.Point(24, 24);
     this.TL.Name     = "TL";
     this.TL.Size     = new System.Drawing.Size(24, 20);
     this.TL.TabIndex = 0;
     this.TL.Text     = "0";
     //
     // TR
     //
     this.TR.Location = new System.Drawing.Point(104, 24);
     this.TR.Name     = "TR";
     this.TR.Size     = new System.Drawing.Size(24, 20);
     this.TR.TabIndex = 1;
     this.TR.Text     = "0";
     //
     // TM
     //
     this.TM.Location = new System.Drawing.Point(64, 24);
     this.TM.Name     = "TM";
     this.TM.Size     = new System.Drawing.Size(24, 20);
     this.TM.TabIndex = 2;
     this.TM.Text     = "0";
     //
     // Pixel
     //
     this.Pixel.Location = new System.Drawing.Point(64, 56);
     this.Pixel.Name     = "Pixel";
     this.Pixel.Size     = new System.Drawing.Size(24, 20);
     this.Pixel.TabIndex = 5;
     this.Pixel.Text     = "1";
     //
     // MR
     //
     this.MR.Location = new System.Drawing.Point(104, 56);
     this.MR.Name     = "MR";
     this.MR.Size     = new System.Drawing.Size(24, 20);
     this.MR.TabIndex = 4;
     this.MR.Text     = "0";
     //
     // ML
     //
     this.ML.Location = new System.Drawing.Point(24, 56);
     this.ML.Name     = "ML";
     this.ML.Size     = new System.Drawing.Size(24, 20);
     this.ML.TabIndex = 3;
     this.ML.Text     = "0";
     //
     // BM
     //
     this.BM.Location = new System.Drawing.Point(64, 88);
     this.BM.Name     = "BM";
     this.BM.Size     = new System.Drawing.Size(24, 20);
     this.BM.TabIndex = 8;
     this.BM.Text     = "0";
     //
     // BR
     //
     this.BR.Location = new System.Drawing.Point(104, 88);
     this.BR.Name     = "BR";
     this.BR.Size     = new System.Drawing.Size(24, 20);
     this.BR.TabIndex = 7;
     this.BR.Text     = "0";
     //
     // BL
     //
     this.BL.Location = new System.Drawing.Point(24, 88);
     this.BL.Name     = "BL";
     this.BL.Size     = new System.Drawing.Size(24, 20);
     this.BL.TabIndex = 6;
     this.BL.Text     = "0";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(144, 96);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(8, 23);
     this.label1.TabIndex = 9;
     this.label1.Text     = "/";
     //
     // Factor
     //
     this.Factor.Location = new System.Drawing.Point(168, 88);
     this.Factor.Name     = "Factor";
     this.Factor.Size     = new System.Drawing.Size(24, 20);
     this.Factor.TabIndex = 10;
     this.Factor.Text     = "1";
     //
     // Offset
     //
     this.Offset.Location = new System.Drawing.Point(232, 88);
     this.Offset.Name     = "Offset";
     this.Offset.Size     = new System.Drawing.Size(24, 20);
     this.Offset.TabIndex = 11;
     this.Offset.Text     = "0";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(208, 96);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(8, 23);
     this.label2.TabIndex = 12;
     this.label2.Text     = "+";
     //
     // OK
     //
     this.OK.Location = new System.Drawing.Point(48, 144);
     this.OK.Name     = "OK";
     this.OK.TabIndex = 13;
     this.OK.Text     = "OK";
     //
     // Cancel
     //
     this.Cancel.Location = new System.Drawing.Point(168, 144);
     this.Cancel.Name     = "Cancel";
     this.Cancel.TabIndex = 14;
     this.Cancel.Text     = "Cancel";
     //
     // Convolution
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(280, 181);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.Cancel,
         this.OK,
         this.label2,
         this.Offset,
         this.Factor,
         this.label1,
         this.BM,
         this.BR,
         this.BL,
         this.Pixel,
         this.MR,
         this.ML,
         this.TM,
         this.TR,
         this.TL
     });
     this.Name = "Convolution";
     this.Text = "Convolution";
     this.CenterToParent();
     this.ResumeLayout(false);
 }
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()
 {
     this.Button2 = new System.Windows.Forms.Button();
     this.SelectEmployeeButton = 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.tb_Division = new System.Windows.Forms.TextBox();
     this.tb_Salary   = new System.Windows.Forms.TextBox();
     this.tb_Name     = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // Button2
     //
     this.Button2.Location = new System.Drawing.Point(240, 120);
     this.Button2.Name     = "Button2";
     this.Button2.Size     = new System.Drawing.Size(133, 39);
     this.Button2.TabIndex = 30;
     this.Button2.Text     = "Close";
     this.Button2.Click   += new System.EventHandler(this.Button2_Click);
     //
     // SelectEmployeeButton
     //
     this.SelectEmployeeButton.Location = new System.Drawing.Point(240, 56);
     this.SelectEmployeeButton.Name     = "SelectEmployeeButton";
     this.SelectEmployeeButton.Size     = new System.Drawing.Size(133, 40);
     this.SelectEmployeeButton.TabIndex = 29;
     this.SelectEmployeeButton.Text     = "Select Employee";
     this.SelectEmployeeButton.Click   += new System.EventHandler(this.SelectEmployeeButton_Click);
     //
     // Label3
     //
     this.Label3.Location = new System.Drawing.Point(32, 80);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(184, 20);
     this.Label3.TabIndex = 28;
     this.Label3.Text     = "Division";
     //
     // Label2
     //
     this.Label2.Location = new System.Drawing.Point(32, 144);
     this.Label2.Name     = "Label2";
     this.Label2.Size     = new System.Drawing.Size(184, 20);
     this.Label2.TabIndex = 27;
     this.Label2.Text     = "Salary";
     //
     // Label1
     //
     this.Label1.Location = new System.Drawing.Point(32, 24);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(184, 20);
     this.Label1.TabIndex = 26;
     this.Label1.Text     = "Name";
     //
     // tb_Division
     //
     this.tb_Division.Location = new System.Drawing.Point(32, 104);
     this.tb_Division.Name     = "tb_Division";
     this.tb_Division.Size     = new System.Drawing.Size(184, 22);
     this.tb_Division.TabIndex = 25;
     this.tb_Division.Text     = "";
     //
     // tb_Salary
     //
     this.tb_Salary.Location = new System.Drawing.Point(32, 160);
     this.tb_Salary.Name     = "tb_Salary";
     this.tb_Salary.Size     = new System.Drawing.Size(184, 22);
     this.tb_Salary.TabIndex = 24;
     this.tb_Salary.Text     = "";
     //
     // tb_Name
     //
     this.tb_Name.Location = new System.Drawing.Point(32, 40);
     this.tb_Name.Name     = "tb_Name";
     this.tb_Name.Size     = new System.Drawing.Size(184, 22);
     this.tb_Name.TabIndex = 23;
     this.tb_Name.Text     = "";
     //
     // ModalForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(400, 207);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.Button2,
         this.SelectEmployeeButton,
         this.Label3,
         this.Label2,
         this.Label1,
         this.tb_Division,
         this.tb_Salary,
         this.tb_Name
     });
     this.Name = "ModalForm";
     this.Text = "ModalForm";
     this.ResumeLayout(false);
 }
Esempio n. 45
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.components           = new System.ComponentModel.Container();
     this.lbl_nomcollaborateur = new System.Windows.Forms.Label();
     this.m_txtIdentite        = new sc2i.win32.common.C2iTextBox();
     this.c2iPanelOmbre4       = new sc2i.win32.common.C2iPanelOmbre();
     this.m_tabControl         = new sc2i.win32.common.C2iTabControl(this.components);
     this.m_pageSaisiActivite  = new Crownwood.Magic.Controls.TabPage();
     this.m_panelSaisie        = new timos.CControleSaisieDesActivitesActeur();
     this.m_panelCle.SuspendLayout();
     this.m_panelMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).BeginInit();
     this.c2iPanelOmbre4.SuspendLayout();
     this.m_tabControl.SuspendLayout();
     this.m_pageSaisiActivite.SuspendLayout();
     this.SuspendLayout();
     //
     // m_btnAnnulerModifications
     //
     this.m_extLinkField.SetLinkField(this.m_btnAnnulerModifications, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnAnnulerModifications, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_btnValiderModifications
     //
     this.m_extLinkField.SetLinkField(this.m_btnValiderModifications, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnValiderModifications, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_btnSupprimerObjet
     //
     this.m_extLinkField.SetLinkField(this.m_btnSupprimerObjet, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnSupprimerObjet, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_btnEditerObjet
     //
     this.m_extLinkField.SetLinkField(this.m_btnEditerObjet, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnEditerObjet, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_panelNavigation
     //
     this.m_panelNavigation.Location = new System.Drawing.Point(612, 0);
     this.m_extStyle.SetStyleBackColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_panelCle
     //
     this.m_panelCle.Location = new System.Drawing.Point(528, 0);
     this.m_extStyle.SetStyleBackColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_panelMenu
     //
     this.m_panelMenu.Size = new System.Drawing.Size(748, 28);
     this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_btnHistorique
     //
     this.m_extStyle.SetStyleBackColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // lbl_nomcollaborateur
     //
     this.m_extLinkField.SetLinkField(this.lbl_nomcollaborateur, "");
     this.lbl_nomcollaborateur.Location = new System.Drawing.Point(16, 12);
     this.m_gestionnaireModeEdition.SetModeEdition(this.lbl_nomcollaborateur, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extModulesAssociator.SetModules(this.lbl_nomcollaborateur, "");
     this.lbl_nomcollaborateur.Name = "lbl_nomcollaborateur";
     this.lbl_nomcollaborateur.Size = new System.Drawing.Size(133, 13);
     this.m_extStyle.SetStyleBackColor(this.lbl_nomcollaborateur, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.lbl_nomcollaborateur, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.lbl_nomcollaborateur.TabIndex = 4002;
     this.lbl_nomcollaborateur.Text     = "Collaborator identity|550";
     //
     // m_txtIdentite
     //
     this.m_extLinkField.SetLinkField(this.m_txtIdentite, "IdentiteComplete");
     this.m_txtIdentite.Location    = new System.Drawing.Point(175, 8);
     this.m_txtIdentite.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtIdentite, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_extModulesAssociator.SetModules(this.m_txtIdentite, "");
     this.m_txtIdentite.Name     = "m_txtIdentite";
     this.m_txtIdentite.ReadOnly = true;
     this.m_txtIdentite.Size     = new System.Drawing.Size(281, 20);
     this.m_extStyle.SetStyleBackColor(this.m_txtIdentite, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_txtIdentite, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_txtIdentite.TabIndex = 0;
     this.m_txtIdentite.Text     = "[IdentiteComplete]";
     //
     // c2iPanelOmbre4
     //
     this.c2iPanelOmbre4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.c2iPanelOmbre4.Controls.Add(this.lbl_nomcollaborateur);
     this.c2iPanelOmbre4.Controls.Add(this.m_txtIdentite);
     this.c2iPanelOmbre4.ForeColor = System.Drawing.Color.Black;
     this.m_extLinkField.SetLinkField(this.c2iPanelOmbre4, "");
     this.c2iPanelOmbre4.Location    = new System.Drawing.Point(8, 52);
     this.c2iPanelOmbre4.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre4, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extModulesAssociator.SetModules(this.c2iPanelOmbre4, "");
     this.c2iPanelOmbre4.Name = "c2iPanelOmbre4";
     this.c2iPanelOmbre4.Size = new System.Drawing.Size(488, 56);
     this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel);
     this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel);
     this.c2iPanelOmbre4.TabIndex = 0;
     //
     // m_tabControl
     //
     this.m_tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.m_tabControl.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.m_tabControl.BoldSelectedPage    = true;
     this.m_tabControl.ControlBottomOffset = 16;
     this.m_tabControl.ControlRightOffset  = 16;
     this.m_tabControl.ForeColor           = System.Drawing.Color.Black;
     this.m_tabControl.IDEPixelArea        = false;
     this.m_extLinkField.SetLinkField(this.m_tabControl, "");
     this.m_tabControl.Location = new System.Drawing.Point(8, 114);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabControl, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extModulesAssociator.SetModules(this.m_tabControl, "");
     this.m_tabControl.Name          = "m_tabControl";
     this.m_tabControl.Ombre         = true;
     this.m_tabControl.PositionTop   = true;
     this.m_tabControl.SelectedIndex = 0;
     this.m_tabControl.SelectedTab   = this.m_pageSaisiActivite;
     this.m_tabControl.Size          = new System.Drawing.Size(716, 443);
     this.m_extStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel);
     this.m_extStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel);
     this.m_tabControl.TabIndex = 4004;
     this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] {
         this.m_pageSaisiActivite
     });
     this.m_tabControl.TextColor = System.Drawing.Color.Black;
     //
     // m_pageSaisiActivite
     //
     this.m_pageSaisiActivite.Controls.Add(this.m_panelSaisie);
     this.m_extLinkField.SetLinkField(this.m_pageSaisiActivite, "");
     this.m_pageSaisiActivite.Location = new System.Drawing.Point(0, 25);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageSaisiActivite, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extModulesAssociator.SetModules(this.m_pageSaisiActivite, "");
     this.m_pageSaisiActivite.Name = "m_pageSaisiActivite";
     this.m_pageSaisiActivite.Size = new System.Drawing.Size(700, 402);
     this.m_extStyle.SetStyleBackColor(this.m_pageSaisiActivite, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_pageSaisiActivite, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_pageSaisiActivite.TabIndex = 10;
     this.m_pageSaisiActivite.Title    = "Enter Activity times|551";
     //
     // m_panelSaisie
     //
     this.m_panelSaisie.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.m_extLinkField.SetLinkField(this.m_panelSaisie, "");
     this.m_panelSaisie.Location    = new System.Drawing.Point(0, 0);
     this.m_panelSaisie.LockEdition = true;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelSaisie, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_extModulesAssociator.SetModules(this.m_panelSaisie, "");
     this.m_panelSaisie.Name = "m_panelSaisie";
     this.m_panelSaisie.Size = new System.Drawing.Size(700, 399);
     this.m_extStyle.SetStyleBackColor(this.m_panelSaisie, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelSaisie, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelSaisie.TabIndex       = 0;
     this.m_panelSaisie.OnChangeDates += new System.EventHandler(this.m_panelSaisie_OnChangeDates);
     //
     // CFormEditionActiviteActeur
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(748, 569);
     this.Controls.Add(this.m_tabControl);
     this.Controls.Add(this.c2iPanelOmbre4);
     this.m_extLinkField.SetLinkField(this, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extModulesAssociator.SetModules(this, "");
     this.Name = "CFormEditionActiviteActeur";
     this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.Controls.SetChildIndex(this.m_panelMenu, 0);
     this.Controls.SetChildIndex(this.c2iPanelOmbre4, 0);
     this.Controls.SetChildIndex(this.m_tabControl, 0);
     this.m_panelCle.ResumeLayout(false);
     this.m_panelCle.PerformLayout();
     this.m_panelMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).EndInit();
     this.c2iPanelOmbre4.ResumeLayout(false);
     this.c2iPanelOmbre4.PerformLayout();
     this.m_tabControl.ResumeLayout(false);
     this.m_tabControl.PerformLayout();
     this.m_pageSaisiActivite.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1       = new System.Windows.Forms.Label();
     this.bCheckSyntax = new System.Windows.Forms.Button();
     this.panel1       = new System.Windows.Forms.Panel();
     this.tbCode       = new System.Windows.Forms.TextBox();
     this.splitter1    = new System.Windows.Forms.Splitter();
     this.lbErrors     = new System.Windows.Forms.ListBox();
     this.label2       = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(98, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(144, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Visual Basic Function Code";
     //
     // bCheckSyntax
     //
     this.bCheckSyntax.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bCheckSyntax.Location = new System.Drawing.Point(365, 3);
     this.bCheckSyntax.Name     = "bCheckSyntax";
     this.bCheckSyntax.Size     = new System.Drawing.Size(82, 23);
     this.bCheckSyntax.TabIndex = 2;
     this.bCheckSyntax.Text     = "Check Syntax";
     this.bCheckSyntax.Click   += new System.EventHandler(this.bCheckSyntax_Click);
     //
     // 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.tbCode);
     this.panel1.Controls.Add(this.splitter1);
     this.panel1.Controls.Add(this.lbErrors);
     this.panel1.Location = new System.Drawing.Point(13, 31);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(439, 252);
     this.panel1.TabIndex = 4;
     //
     // tbCode
     //
     this.tbCode.AcceptsReturn = true;
     this.tbCode.AcceptsTab    = true;
     this.tbCode.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.tbCode.HideSelection = false;
     this.tbCode.Location      = new System.Drawing.Point(87, 0);
     this.tbCode.Multiline     = true;
     this.tbCode.Name          = "tbCode";
     this.tbCode.ScrollBars    = System.Windows.Forms.ScrollBars.Both;
     this.tbCode.Size          = new System.Drawing.Size(352, 252);
     this.tbCode.TabIndex      = 2;
     this.tbCode.WordWrap      = false;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(0, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(5, 252);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // lbErrors
     //
     this.lbErrors.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.lbErrors.HorizontalScrollbar = true;
     this.lbErrors.IntegralHeight      = false;
     this.lbErrors.Location            = new System.Drawing.Point(0, 0);
     this.lbErrors.Name                  = "lbErrors";
     this.lbErrors.Size                  = new System.Drawing.Size(82, 252);
     this.lbErrors.TabIndex              = 0;
     this.lbErrors.SelectedIndexChanged += new System.EventHandler(this.lbErrors_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(15, 7);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(69, 15);
     this.label2.TabIndex = 5;
     this.label2.Text     = "Msgs";
     //
     // CodeCtl
     //
     this.Controls.Add(this.label2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bCheckSyntax);
     this.Controls.Add(this.label1);
     this.Name = "CodeCtl";
     this.Size = new System.Drawing.Size(472, 288);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.exitButton     = new System.Windows.Forms.Button();
     this.headerLabel    = new System.Windows.Forms.Label();
     this.continueButton = new System.Windows.Forms.Button();
     this.infoTextBox    = new System.Windows.Forms.TextBox();
     this.countLabel     = new System.Windows.Forms.Label();
     this.pictureBox     = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // exitButton
     //
     this.exitButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.exitButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.exitButton.Location  = new System.Drawing.Point(331, 351);
     this.exitButton.Name      = "exitButton";
     this.exitButton.Size      = new System.Drawing.Size(83, 23);
     this.exitButton.TabIndex  = 2;
     this.exitButton.Text      = "&Exit";
     this.exitButton.UseVisualStyleBackColor = true;
     this.exitButton.Click += new System.EventHandler(this.ExitButtonClick);
     //
     // headerLabel
     //
     this.headerLabel.AutoSize  = true;
     this.headerLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.headerLabel.Location  = new System.Drawing.Point(34, 13);
     this.headerLabel.Name      = "headerLabel";
     this.headerLabel.Size      = new System.Drawing.Size(300, 13);
     this.headerLabel.TabIndex  = 0;
     this.headerLabel.Text      = "Error occurred in FlashDevelop. Here are details of the error:";
     //
     // continueButton
     //
     this.continueButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.continueButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.continueButton.Location  = new System.Drawing.Point(421, 351);
     this.continueButton.Name      = "continueButton";
     this.continueButton.Size      = new System.Drawing.Size(90, 23);
     this.continueButton.TabIndex  = 1;
     this.continueButton.Text      = "&Continue";
     this.continueButton.UseVisualStyleBackColor = true;
     this.continueButton.Click += new System.EventHandler(this.ContinueButtonClick);
     //
     // infoTextBox
     // Font needs to be set here so that controls resize correctly in high-dpi
     //
     this.infoTextBox.Font       = Globals.Settings.ConsoleFont;
     this.infoTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.infoTextBox.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.infoTextBox.Location   = new System.Drawing.Point(13, 35);
     this.infoTextBox.Multiline  = true;
     this.infoTextBox.Name       = "infoTextBox";
     this.infoTextBox.Size       = new System.Drawing.Size(497, 309);
     this.infoTextBox.TabIndex   = 3;
     this.infoTextBox.WordWrap   = false;
     //
     // countLabel
     //
     this.countLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.countLabel.AutoSize  = true;
     this.countLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.countLabel.Location  = new System.Drawing.Point(14, 355);
     this.countLabel.Name      = "countLabel";
     this.countLabel.Size      = new System.Drawing.Size(109, 13);
     this.countLabel.TabIndex  = 0;
     this.countLabel.Text      = "Errors in this session:";
     //
     // pictureBox
     //
     this.pictureBox.Location = new System.Drawing.Point(13, 12);
     this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox.Name     = "pictureBox";
     this.pictureBox.Size     = new System.Drawing.Size(16, 16);
     this.pictureBox.TabIndex = 6;
     this.pictureBox.TabStop  = false;
     //
     // ErrorDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.continueButton;
     this.ClientSize          = new System.Drawing.Size(522, 386);
     this.Controls.Add(this.pictureBox);
     this.Controls.Add(this.countLabel);
     this.Controls.Add(this.infoTextBox);
     this.Controls.Add(this.continueButton);
     this.Controls.Add(this.headerLabel);
     this.Controls.Add(this.exitButton);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(350, 290);
     this.Name          = "ErrorDialog";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = " Error";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmKh07));
     this.label1     = new System.Windows.Forms.Label();
     this.ngay       = new System.Windows.Forms.DateTimePicker();
     this.cmbNgay    = new System.Windows.Forms.ComboBox();
     this.butMoi     = new System.Windows.Forms.Button();
     this.butSua     = new System.Windows.Forms.Button();
     this.butLuu     = new System.Windows.Forms.Button();
     this.butBoqua   = new System.Windows.Forms.Button();
     this.butKetthuc = new System.Windows.Forms.Button();
     this.dataGrid1  = new System.Windows.Forms.DataGrid();
     this.ten        = new System.Windows.Forms.TextBox();
     this.dk         = new System.Windows.Forms.TextBox();
     this.label2     = new System.Windows.Forms.Label();
     this.butHuy     = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(2, 4);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(40, 23);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "&Ngày :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ngay
     //
     this.ngay.CustomFormat = "dd/MM/yyyy";
     this.ngay.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.ngay.Location     = new System.Drawing.Point(40, 4);
     this.ngay.Name         = "ngay";
     this.ngay.Size         = new System.Drawing.Size(88, 20);
     this.ngay.TabIndex     = 1;
     this.ngay.Visible      = false;
     this.ngay.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.ngay_KeyDown);
     //
     // cmbNgay
     //
     this.cmbNgay.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbNgay.Location              = new System.Drawing.Point(40, 4);
     this.cmbNgay.Name                  = "cmbNgay";
     this.cmbNgay.Size                  = new System.Drawing.Size(88, 21);
     this.cmbNgay.TabIndex              = 2;
     this.cmbNgay.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.cmbNgay_KeyDown);
     this.cmbNgay.SelectedIndexChanged += new System.EventHandler(this.cmbNgay_SelectedIndexChanged);
     //
     // butMoi
     //
     this.butMoi.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butMoi.Image")));
     this.butMoi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butMoi.Location   = new System.Drawing.Point(164, 500);
     this.butMoi.Name       = "butMoi";
     this.butMoi.Size       = new System.Drawing.Size(75, 28);
     this.butMoi.TabIndex   = 6;
     this.butMoi.Text       = "   &Mới";
     this.butMoi.Click     += new System.EventHandler(this.butMoi_Click);
     //
     // butSua
     //
     this.butSua.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butSua.Image")));
     this.butSua.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSua.Location   = new System.Drawing.Point(239, 500);
     this.butSua.Name       = "butSua";
     this.butSua.Size       = new System.Drawing.Size(75, 28);
     this.butSua.TabIndex   = 7;
     this.butSua.Text       = "     &Sửa";
     this.butSua.Click     += new System.EventHandler(this.butSua_Click);
     //
     // butLuu
     //
     this.butLuu.Enabled    = false;
     this.butLuu.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butLuu.Image")));
     this.butLuu.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLuu.Location   = new System.Drawing.Point(314, 500);
     this.butLuu.Name       = "butLuu";
     this.butLuu.Size       = new System.Drawing.Size(75, 28);
     this.butLuu.TabIndex   = 4;
     this.butLuu.Text       = "    &Lưu";
     this.butLuu.Click     += new System.EventHandler(this.butLuu_Click);
     //
     // butBoqua
     //
     this.butBoqua.Enabled    = false;
     this.butBoqua.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butBoqua.Image")));
     this.butBoqua.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butBoqua.Location   = new System.Drawing.Point(389, 500);
     this.butBoqua.Name       = "butBoqua";
     this.butBoqua.Size       = new System.Drawing.Size(82, 28);
     this.butBoqua.TabIndex   = 5;
     this.butBoqua.Text       = "     &Bỏ qua";
     this.butBoqua.Click     += new System.EventHandler(this.butBoqua_Click);
     //
     // butKetthuc
     //
     this.butKetthuc.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butKetthuc.Image")));
     this.butKetthuc.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butKetthuc.Location   = new System.Drawing.Point(555, 500);
     this.butKetthuc.Name       = "butKetthuc";
     this.butKetthuc.Size       = new System.Drawing.Size(86, 28);
     this.butKetthuc.TabIndex   = 9;
     this.butKetthuc.Text       = "&Kết thúc";
     this.butKetthuc.Click     += new System.EventHandler(this.butKetthuc_Click);
     //
     // dataGrid1
     //
     this.dataGrid1.AlternatingBackColor = System.Drawing.Color.Lavender;
     this.dataGrid1.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.BackgroundColor      = System.Drawing.SystemColors.Control;
     this.dataGrid1.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.dataGrid1.CaptionBackColor     = System.Drawing.SystemColors.Control;
     this.dataGrid1.CaptionFont          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.dataGrid1.CaptionForeColor     = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.DataMember           = "";
     this.dataGrid1.FlatMode             = true;
     this.dataGrid1.Font                = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.dataGrid1.ForeColor           = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.GridLineColor       = System.Drawing.Color.Gainsboro;
     this.dataGrid1.GridLineStyle       = System.Windows.Forms.DataGridLineStyle.None;
     this.dataGrid1.HeaderFont          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dataGrid1.HeaderForeColor     = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.LinkColor           = System.Drawing.Color.Teal;
     this.dataGrid1.Location            = new System.Drawing.Point(8, 10);
     this.dataGrid1.Name                = "dataGrid1";
     this.dataGrid1.ParentRowsBackColor = System.Drawing.Color.Gainsboro;
     this.dataGrid1.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
     this.dataGrid1.ReadOnly            = true;
     this.dataGrid1.RowHeaderWidth      = 10;
     this.dataGrid1.SelectionBackColor  = System.Drawing.Color.CadetBlue;
     this.dataGrid1.SelectionForeColor  = System.Drawing.Color.WhiteSmoke;
     this.dataGrid1.Size                = new System.Drawing.Size(776, 485);
     this.dataGrid1.TabIndex            = 3;
     this.dataGrid1.CurrentCellChanged += new System.EventHandler(this.dataGrid1_CurrentCellChanged);
     //
     // ten
     //
     this.ten.BackColor = System.Drawing.SystemColors.HighlightText;
     this.ten.Enabled   = false;
     this.ten.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.ten.Location  = new System.Drawing.Point(130, 4);
     this.ten.Name      = "ten";
     this.ten.Size      = new System.Drawing.Size(422, 21);
     this.ten.TabIndex  = 42;
     this.ten.Text      = "";
     //
     // dk
     //
     this.dk.BackColor = System.Drawing.SystemColors.HighlightText;
     this.dk.Enabled   = false;
     this.dk.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.dk.Location  = new System.Drawing.Point(568, 4);
     this.dk.Name      = "dk";
     this.dk.Size      = new System.Drawing.Size(216, 21);
     this.dk.TabIndex  = 43;
     this.dk.Text      = "";
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location  = new System.Drawing.Point(556, 3);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(8, 23);
     this.label2.TabIndex  = 44;
     this.label2.Text      = "=";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // butHuy
     //
     this.butHuy.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butHuy.Image")));
     this.butHuy.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butHuy.Location   = new System.Drawing.Point(471, 500);
     this.butHuy.Name       = "butHuy";
     this.butHuy.Size       = new System.Drawing.Size(84, 28);
     this.butHuy.TabIndex   = 8;
     this.butHuy.Text       = "    &Hủy";
     this.butHuy.Click     += new System.EventHandler(this.butHuy_Click);
     //
     // frmKh07
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(792, 573);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.butHuy,
         this.label2,
         this.dk,
         this.ten,
         this.cmbNgay,
         this.ngay,
         this.label1,
         this.dataGrid1,
         this.butKetthuc,
         this.butBoqua,
         this.butLuu,
         this.butSua,
         this.butMoi
     });
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "frmKh07";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Tình hình sản xuất kinh doanh dược ";
     this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
     this.Load         += new System.EventHandler(this.frmKh07_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     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.huePicker        = new IPLab.HuePicker( );
     this.groupBox1        = new System.Windows.Forms.GroupBox( );
     this.maxHBox          = new System.Windows.Forms.TextBox( );
     this.label2           = new System.Windows.Forms.Label( );
     this.minHBox          = new System.Windows.Forms.TextBox( );
     this.label1           = new System.Windows.Forms.Label( );
     this.groupBox2        = new System.Windows.Forms.GroupBox( );
     this.saturationSlider = new AForge.Controls.ColorSlider( );
     this.maxSBox          = new System.Windows.Forms.TextBox( );
     this.minSBox          = new System.Windows.Forms.TextBox( );
     this.label4           = new System.Windows.Forms.Label( );
     this.label3           = new System.Windows.Forms.Label( );
     this.groupBox3        = new System.Windows.Forms.GroupBox( );
     this.luminanceSlider  = new AForge.Controls.ColorSlider( );
     this.maxLBox          = new System.Windows.Forms.TextBox( );
     this.minLBox          = new System.Windows.Forms.TextBox( );
     this.label5           = new System.Windows.Forms.Label( );
     this.label6           = new System.Windows.Forms.Label( );
     this.groupBox5        = new System.Windows.Forms.GroupBox( );
     this.filterPreview    = new IPLab.FilterPreview( );
     this.groupBox4        = new System.Windows.Forms.GroupBox( );
     this.updateLCheck     = new System.Windows.Forms.CheckBox( );
     this.fillLBox         = new System.Windows.Forms.TextBox( );
     this.label9           = new System.Windows.Forms.Label( );
     this.updateSCheck     = new System.Windows.Forms.CheckBox( );
     this.fillSBox         = new System.Windows.Forms.TextBox( );
     this.label8           = new System.Windows.Forms.Label( );
     this.updateHCheck     = new System.Windows.Forms.CheckBox( );
     this.fillHBox         = new System.Windows.Forms.TextBox( );
     this.label7           = new System.Windows.Forms.Label( );
     this.fillTypeCombo    = new System.Windows.Forms.ComboBox( );
     this.label10          = new System.Windows.Forms.Label( );
     this.cancelButton     = new System.Windows.Forms.Button( );
     this.okButton         = new System.Windows.Forms.Button( );
     this.groupBox1.SuspendLayout( );
     this.groupBox2.SuspendLayout( );
     this.groupBox3.SuspendLayout( );
     this.groupBox5.SuspendLayout( );
     this.groupBox4.SuspendLayout( );
     this.SuspendLayout( );
     //
     // huePicker
     //
     this.huePicker.Location       = new System.Drawing.Point(53, 50);
     this.huePicker.Name           = "huePicker";
     this.huePicker.Size           = new System.Drawing.Size(170, 170);
     this.huePicker.TabIndex       = 0;
     this.huePicker.Type           = IPLab.HuePickerType.Region;
     this.huePicker.ValuesChanged += new System.EventHandler(this.huePicker_ValuesChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.maxHBox);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.minHBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.huePicker);
     this.groupBox1.Location = new System.Drawing.Point(10, 10);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(280, 230);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Hue";
     //
     // maxHBox
     //
     this.maxHBox.Location     = new System.Drawing.Point(218, 20);
     this.maxHBox.Name         = "maxHBox";
     this.maxHBox.Size         = new System.Drawing.Size(50, 20);
     this.maxHBox.TabIndex     = 4;
     this.maxHBox.Text         = "";
     this.maxHBox.TextChanged += new System.EventHandler(this.maxHBox_TextChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(186, 23);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(39, 15);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Max:";
     //
     // minHBox
     //
     this.minHBox.Location     = new System.Drawing.Point(40, 20);
     this.minHBox.Name         = "minHBox";
     this.minHBox.Size         = new System.Drawing.Size(50, 20);
     this.minHBox.TabIndex     = 2;
     this.minHBox.Text         = "";
     this.minHBox.TextChanged += new System.EventHandler(this.minHBox_TextChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 23);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(31, 17);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Min:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.saturationSlider);
     this.groupBox2.Controls.Add(this.maxSBox);
     this.groupBox2.Controls.Add(this.minSBox);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Location = new System.Drawing.Point(10, 245);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(280, 75);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Saturation";
     //
     // saturationSlider
     //
     this.saturationSlider.Location       = new System.Drawing.Point(8, 45);
     this.saturationSlider.Name           = "saturationSlider";
     this.saturationSlider.Size           = new System.Drawing.Size(262, 23);
     this.saturationSlider.TabIndex       = 4;
     this.saturationSlider.Type           = AForge.Controls.ColorSlider.ColorSliderType.InnerGradient;
     this.saturationSlider.ValuesChanged += new System.EventHandler(this.saturationSlider_ValuesChanged);
     //
     // maxSBox
     //
     this.maxSBox.Location     = new System.Drawing.Point(218, 20);
     this.maxSBox.Name         = "maxSBox";
     this.maxSBox.Size         = new System.Drawing.Size(50, 20);
     this.maxSBox.TabIndex     = 3;
     this.maxSBox.Text         = "";
     this.maxSBox.TextChanged += new System.EventHandler(this.maxSBox_TextChanged);
     //
     // minSBox
     //
     this.minSBox.Location     = new System.Drawing.Point(40, 20);
     this.minSBox.Name         = "minSBox";
     this.minSBox.Size         = new System.Drawing.Size(50, 20);
     this.minSBox.TabIndex     = 2;
     this.minSBox.Text         = "";
     this.minSBox.TextChanged += new System.EventHandler(this.minSBox_TextChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(186, 23);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(30, 17);
     this.label4.TabIndex = 1;
     this.label4.Text     = "Max:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 23);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(30, 16);
     this.label3.TabIndex = 0;
     this.label3.Text     = "Min:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.luminanceSlider);
     this.groupBox3.Controls.Add(this.maxLBox);
     this.groupBox3.Controls.Add(this.minLBox);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Location = new System.Drawing.Point(10, 325);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(280, 75);
     this.groupBox3.TabIndex = 3;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Luminance";
     //
     // luminanceSlider
     //
     this.luminanceSlider.Location       = new System.Drawing.Point(8, 45);
     this.luminanceSlider.Name           = "luminanceSlider";
     this.luminanceSlider.Size           = new System.Drawing.Size(262, 23);
     this.luminanceSlider.TabIndex       = 9;
     this.luminanceSlider.Type           = AForge.Controls.ColorSlider.ColorSliderType.InnerGradient;
     this.luminanceSlider.ValuesChanged += new System.EventHandler(this.luminanceSlider_ValuesChanged);
     //
     // maxLBox
     //
     this.maxLBox.Location     = new System.Drawing.Point(218, 20);
     this.maxLBox.Name         = "maxLBox";
     this.maxLBox.Size         = new System.Drawing.Size(50, 20);
     this.maxLBox.TabIndex     = 8;
     this.maxLBox.Text         = "";
     this.maxLBox.TextChanged += new System.EventHandler(this.maxLBox_TextChanged);
     //
     // minLBox
     //
     this.minLBox.Location     = new System.Drawing.Point(40, 20);
     this.minLBox.Name         = "minLBox";
     this.minLBox.Size         = new System.Drawing.Size(50, 20);
     this.minLBox.TabIndex     = 7;
     this.minLBox.Text         = "";
     this.minLBox.TextChanged += new System.EventHandler(this.minLBox_TextChanged);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(186, 23);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(30, 17);
     this.label5.TabIndex = 6;
     this.label5.Text     = "Max:";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 23);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(30, 16);
     this.label6.TabIndex = 5;
     this.label6.Text     = "Min:";
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.filterPreview);
     this.groupBox5.Location = new System.Drawing.Point(300, 10);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(170, 175);
     this.groupBox5.TabIndex = 4;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Preview";
     //
     // filterPreview
     //
     this.filterPreview.Image    = null;
     this.filterPreview.Location = new System.Drawing.Point(10, 15);
     this.filterPreview.Name     = "filterPreview";
     this.filterPreview.Size     = new System.Drawing.Size(150, 150);
     this.filterPreview.TabIndex = 0;
     this.filterPreview.TabStop  = false;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.updateLCheck);
     this.groupBox4.Controls.Add(this.fillLBox);
     this.groupBox4.Controls.Add(this.label9);
     this.groupBox4.Controls.Add(this.updateSCheck);
     this.groupBox4.Controls.Add(this.fillSBox);
     this.groupBox4.Controls.Add(this.label8);
     this.groupBox4.Controls.Add(this.updateHCheck);
     this.groupBox4.Controls.Add(this.fillHBox);
     this.groupBox4.Controls.Add(this.label7);
     this.groupBox4.Location = new System.Drawing.Point(300, 190);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(170, 100);
     this.groupBox4.TabIndex = 5;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "Fill Color";
     //
     // updateLCheck
     //
     this.updateLCheck.Checked         = true;
     this.updateLCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.updateLCheck.Location        = new System.Drawing.Point(125, 70);
     this.updateLCheck.Name            = "updateLCheck";
     this.updateLCheck.Size            = new System.Drawing.Size(14, 24);
     this.updateLCheck.TabIndex        = 8;
     this.updateLCheck.CheckedChanged += new System.EventHandler(this.updateLCheck_CheckedChanged);
     //
     // fillLBox
     //
     this.fillLBox.Location     = new System.Drawing.Point(40, 70);
     this.fillLBox.Name         = "fillLBox";
     this.fillLBox.Size         = new System.Drawing.Size(50, 20);
     this.fillLBox.TabIndex     = 7;
     this.fillLBox.Text         = "";
     this.fillLBox.TextChanged += new System.EventHandler(this.fillLBox_TextChanged);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(10, 73);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(20, 16);
     this.label9.TabIndex = 6;
     this.label9.Text     = "L:";
     //
     // updateSCheck
     //
     this.updateSCheck.Checked         = true;
     this.updateSCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.updateSCheck.Location        = new System.Drawing.Point(125, 45);
     this.updateSCheck.Name            = "updateSCheck";
     this.updateSCheck.Size            = new System.Drawing.Size(14, 24);
     this.updateSCheck.TabIndex        = 5;
     this.updateSCheck.CheckedChanged += new System.EventHandler(this.updateSCheck_CheckedChanged);
     //
     // fillSBox
     //
     this.fillSBox.Location     = new System.Drawing.Point(40, 45);
     this.fillSBox.Name         = "fillSBox";
     this.fillSBox.Size         = new System.Drawing.Size(50, 20);
     this.fillSBox.TabIndex     = 4;
     this.fillSBox.Text         = "";
     this.fillSBox.TextChanged += new System.EventHandler(this.fillSBox_TextChanged);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(10, 48);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(20, 16);
     this.label8.TabIndex = 3;
     this.label8.Text     = "S:";
     //
     // updateHCheck
     //
     this.updateHCheck.Checked         = true;
     this.updateHCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.updateHCheck.Location        = new System.Drawing.Point(125, 20);
     this.updateHCheck.Name            = "updateHCheck";
     this.updateHCheck.Size            = new System.Drawing.Size(14, 24);
     this.updateHCheck.TabIndex        = 2;
     this.updateHCheck.CheckedChanged += new System.EventHandler(this.updateHCheck_CheckedChanged);
     //
     // fillHBox
     //
     this.fillHBox.Location     = new System.Drawing.Point(40, 20);
     this.fillHBox.Name         = "fillHBox";
     this.fillHBox.Size         = new System.Drawing.Size(50, 20);
     this.fillHBox.TabIndex     = 1;
     this.fillHBox.Text         = "";
     this.fillHBox.TextChanged += new System.EventHandler(this.fillHBox_TextChanged);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(10, 23);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(20, 16);
     this.label7.TabIndex = 0;
     this.label7.Text     = "H:";
     //
     // fillTypeCombo
     //
     this.fillTypeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.fillTypeCombo.Items.AddRange(new object[] {
         "Outside",
         "Inside"
     });
     this.fillTypeCombo.Location              = new System.Drawing.Point(350, 300);
     this.fillTypeCombo.Name                  = "fillTypeCombo";
     this.fillTypeCombo.Size                  = new System.Drawing.Size(120, 21);
     this.fillTypeCombo.TabIndex              = 10;
     this.fillTypeCombo.SelectedIndexChanged += new System.EventHandler(this.fillTypeCombo_SelectedIndexChanged);
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(300, 303);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(50, 14);
     this.label10.TabIndex = 13;
     this.label10.Text     = "Fill type:";
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.cancelButton.Location     = new System.Drawing.Point(395, 378);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.TabIndex     = 12;
     this.cancelButton.Text         = "Cancel";
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.okButton.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.okButton.Location     = new System.Drawing.Point(310, 378);
     this.okButton.Name         = "okButton";
     this.okButton.TabIndex     = 11;
     this.okButton.Text         = "Ok";
     //
     // HSLFilteringForm
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(479, 408);
     this.Controls.Add(this.fillTypeCombo);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "HSLFilteringForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "HSL Filtering";
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
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()
 {
     this.label1            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.label6            = new System.Windows.Forms.Label();
     this.AppEdit           = new System.Windows.Forms.TextBox();
     this.ArgEdit           = new System.Windows.Forms.TextBox();
     this.HintEdit          = new System.Windows.Forms.TextBox();
     this.WorkingDirEdit    = new System.Windows.Forms.TextBox();
     this.SuccessStatusEdit = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(63, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Application:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(62, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Arguments:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(8, 134);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(85, 16);
     this.label5.TabIndex = 6;
     this.label5.Text     = "Success Status:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(8, 88);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(97, 16);
     this.label6.TabIndex = 5;
     this.label6.Text     = "Working Directory:";
     //
     // AppEdit
     //
     this.AppEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.AppEdit.Location = new System.Drawing.Point(8, 24);
     this.AppEdit.Name     = "AppEdit";
     this.AppEdit.ReadOnly = true;
     this.AppEdit.Size     = new System.Drawing.Size(326, 20);
     this.AppEdit.TabIndex = 1;
     this.AppEdit.Text     = "textBox1";
     //
     // ArgEdit
     //
     this.ArgEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.ArgEdit.Location = new System.Drawing.Point(8, 64);
     this.ArgEdit.Name     = "ArgEdit";
     this.ArgEdit.ReadOnly = true;
     this.ArgEdit.Size     = new System.Drawing.Size(326, 20);
     this.ArgEdit.TabIndex = 2;
     this.ArgEdit.Text     = "textBox2";
     //
     // HintEdit
     //
     this.HintEdit.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.HintEdit.Location  = new System.Drawing.Point(8, 160);
     this.HintEdit.Multiline = true;
     this.HintEdit.Name      = "HintEdit";
     this.HintEdit.ReadOnly  = true;
     this.HintEdit.Size      = new System.Drawing.Size(326, 64);
     this.HintEdit.TabIndex  = 5;
     this.HintEdit.Text      = "textBox3";
     //
     // WorkingDirEdit
     //
     this.WorkingDirEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.WorkingDirEdit.Location = new System.Drawing.Point(8, 104);
     this.WorkingDirEdit.Name     = "WorkingDirEdit";
     this.WorkingDirEdit.ReadOnly = true;
     this.WorkingDirEdit.Size     = new System.Drawing.Size(326, 20);
     this.WorkingDirEdit.TabIndex = 3;
     this.WorkingDirEdit.Text     = "textBox5";
     //
     // SuccessStatusEdit
     //
     this.SuccessStatusEdit.Location = new System.Drawing.Point(96, 131);
     this.SuccessStatusEdit.Name     = "SuccessStatusEdit";
     this.SuccessStatusEdit.ReadOnly = true;
     this.SuccessStatusEdit.Size     = new System.Drawing.Size(80, 20);
     this.SuccessStatusEdit.TabIndex = 4;
     this.SuccessStatusEdit.Text     = "textBox6";
     //
     // JobInfoDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(344, 230);
     this.Controls.Add(this.WorkingDirEdit);
     this.Controls.Add(this.SuccessStatusEdit);
     this.Controls.Add(this.HintEdit);
     this.Controls.Add(this.ArgEdit);
     this.Controls.Add(this.AppEdit);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MinimumSize     = new System.Drawing.Size(352, 256);
     this.Name            = "JobInfoDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Job Description";
     this.TopMost         = true;
     this.ResumeLayout(false);
 }
Esempio n. 51
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components  = new System.ComponentModel.Container();
            this.statusBar   = new System.Windows.Forms.StatusBar();
            this.exit_button = new System.Windows.Forms.Button();
            this.label       = new System.Windows.Forms.Label();
            this.label1      = new System.Windows.Forms.Label();
            this.label2      = new System.Windows.Forms.Label();
            this.label3      = new System.Windows.Forms.Label();
            this.label4      = new System.Windows.Forms.Label();
            this.label5      = new System.Windows.Forms.Label();
            this.label6      = new System.Windows.Forms.Label();
            this.label7      = new System.Windows.Forms.Label();
            this.label8      = new System.Windows.Forms.Label();
            this.label9      = new System.Windows.Forms.Label();
            this.label10     = new System.Windows.Forms.Label();
            this.label11     = new System.Windows.Forms.Label();
            this.label12     = new System.Windows.Forms.Label();
            this.muteA       = new System.Windows.Forms.Button();
            this.flangeB     = new System.Windows.Forms.Button();
            this.muteB       = new System.Windows.Forms.Button();
            this.lowpass     = new System.Windows.Forms.Button();
            this.echoA       = new System.Windows.Forms.Button();
            this.timer       = new System.Windows.Forms.Timer(this.components);
            this.label13     = new System.Windows.Forms.Label();
            this.label14     = new System.Windows.Forms.Label();
            this.label15     = new System.Windows.Forms.Label();
            this.label16     = new System.Windows.Forms.Label();
            this.label17     = new System.Windows.Forms.Label();
            this.label18     = new System.Windows.Forms.Label();
            this.label19     = new System.Windows.Forms.Label();
            this.label20     = new System.Windows.Forms.Label();
            this.label21     = new System.Windows.Forms.Label();
            this.label22     = new System.Windows.Forms.Label();
            this.label23     = new System.Windows.Forms.Label();
            this.label24     = new System.Windows.Forms.Label();
            this.SuspendLayout();
            //
            // statusBar
            //
            this.statusBar.Location = new System.Drawing.Point(0, 371);
            this.statusBar.Name     = "statusBar";
            this.statusBar.Size     = new System.Drawing.Size(496, 24);
            this.statusBar.TabIndex = 22;
            //
            // exit_button
            //
            this.exit_button.Location = new System.Drawing.Point(200, 336);
            this.exit_button.Name     = "exit_button";
            this.exit_button.Size     = new System.Drawing.Size(72, 24);
            this.exit_button.TabIndex = 23;
            this.exit_button.Text     = "Exit";
            this.exit_button.Click   += new System.EventHandler(this.exit_button_Click);
            //
            // label
            //
            this.label.Location  = new System.Drawing.Point(14, 16);
            this.label.Name      = "label";
            this.label.Size      = new System.Drawing.Size(264, 32);
            this.label.TabIndex  = 24;
            this.label.Text      = "Copyright (c) Firelight Technologies 2004-2011";
            this.label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(0, 0);
            this.label1.Name     = "label1";
            this.label1.TabIndex = 42;
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(88, 136);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(48, 16);
            this.label2.TabIndex = 26;
            this.label2.Text     = "lowpass";
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(152, 136);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(80, 16);
            this.label3.TabIndex = 27;
            this.label3.Text     = "mastergroup";

            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(256, 176);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(64, 16);
            this.label4.TabIndex = 28;
            this.label4.Text     = "flange";
            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(408, 208);
            this.label5.Name     = "label5";
            this.label5.Size     = new System.Drawing.Size(64, 16);
            this.label5.TabIndex = 29;
            this.label5.Text     = "d.ogg";
            //
            // label6
            //
            this.label6.Location = new System.Drawing.Point(256, 104);
            this.label6.Name     = "label6";
            this.label6.Size     = new System.Drawing.Size(64, 16);
            this.label6.TabIndex = 30;
            this.label6.Text     = "echo";
            //
            // label7
            //
            this.label7.Location = new System.Drawing.Point(408, 48);
            this.label7.Name     = "label7";
            this.label7.Size     = new System.Drawing.Size(88, 16);
            this.label7.TabIndex = 31;
            this.label7.Text     = "drumloop.wav";
            //
            // label8
            //
            this.label8.Location = new System.Drawing.Point(408, 168);
            this.label8.Name     = "label8";
            this.label8.Size     = new System.Drawing.Size(64, 16);
            this.label8.TabIndex = 32;
            this.label8.Text     = "c.ogg";
            //
            // label9
            //
            this.label9.Location = new System.Drawing.Point(408, 96);
            this.label9.Name     = "label9";
            this.label9.Size     = new System.Drawing.Size(64, 16);
            this.label9.TabIndex = 33;
            this.label9.Text     = "jaguar.wav";
            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(328, 80);
            this.label10.Name     = "label10";
            this.label10.Size     = new System.Drawing.Size(64, 16);
            this.label10.TabIndex = 34;
            this.label10.Text     = "groupA";
            //
            // label11
            //
            this.label11.Location = new System.Drawing.Point(320, 208);
            this.label11.Name     = "label11";
            this.label11.Size     = new System.Drawing.Size(64, 16);
            this.label11.TabIndex = 35;
            this.label11.Text     = "groupB";
            //
            // label12
            //
            this.label12.Location = new System.Drawing.Point(408, 240);
            this.label12.Name     = "label12";
            this.label12.Size     = new System.Drawing.Size(64, 16);
            this.label12.TabIndex = 36;
            this.label12.Text     = "e.ogg";
            //
            // muteA
            //
            this.muteA.Location = new System.Drawing.Point(32, 224);
            this.muteA.Name     = "muteA";
            this.muteA.Size     = new System.Drawing.Size(96, 32);
            this.muteA.TabIndex = 37;
            this.muteA.Text     = "Mute/Unmute group A";
            this.muteA.Click   += new System.EventHandler(this.muteA_Click);
            //
            // flangeB
            //
            this.flangeB.Location = new System.Drawing.Point(144, 264);
            this.flangeB.Name     = "flangeB";
            this.flangeB.Size     = new System.Drawing.Size(96, 32);
            this.flangeB.TabIndex = 38;
            this.flangeB.Text     = "Flange on group B";
            this.flangeB.Click   += new System.EventHandler(this.flangeB_Click);
            //
            // muteB
            //
            this.muteB.Location = new System.Drawing.Point(144, 224);
            this.muteB.Name     = "muteB";
            this.muteB.Size     = new System.Drawing.Size(96, 32);
            this.muteB.TabIndex = 39;
            this.muteB.Text     = "Mute/Unmute group B";
            this.muteB.Click   += new System.EventHandler(this.muteB_Click);
            //
            // lowpass
            //
            this.lowpass.Location = new System.Drawing.Point(32, 304);
            this.lowpass.Name     = "lowpass";
            this.lowpass.Size     = new System.Drawing.Size(96, 48);
            this.lowpass.TabIndex = 40;
            this.lowpass.Text     = "Lowpass on master group (everything)";
            this.lowpass.Click   += new System.EventHandler(this.lowpass_Click);
            //
            // echoA
            //
            this.echoA.Location = new System.Drawing.Point(32, 264);
            this.echoA.Name     = "echoA";
            this.echoA.Size     = new System.Drawing.Size(96, 32);
            this.echoA.TabIndex = 41;
            this.echoA.Text     = "Echo on group A";
            this.echoA.Click   += new System.EventHandler(this.echoA_Click);
            //
            // timer
            //
            this.timer.Enabled  = true;
            this.timer.Interval = 10;
            this.timer.Tick    += new System.EventHandler(this.timer_Tick);
            //
            // label13
            //
            this.label13.Location = new System.Drawing.Point(8, 136);
            this.label13.Name     = "label13";
            this.label13.Size     = new System.Drawing.Size(64, 16);
            this.label13.TabIndex = 43;
            this.label13.Text     = "soundcard";
            //
            // label14
            //
            this.label14.Location = new System.Drawing.Point(232, 120);
            this.label14.Name     = "label14";
            this.label14.Size     = new System.Drawing.Size(16, 16);
            this.label14.TabIndex = 44;
            this.label14.Text     = "/";
            //
            // label15
            //
            this.label15.Location = new System.Drawing.Point(304, 96);
            this.label15.Name     = "label15";
            this.label15.Size     = new System.Drawing.Size(16, 16);
            this.label15.TabIndex = 45;
            this.label15.Text     = "/";
            //
            // label16
            //
            this.label16.Location = new System.Drawing.Point(384, 64);
            this.label16.Name     = "label16";
            this.label16.Size     = new System.Drawing.Size(16, 16);
            this.label16.TabIndex = 46;
            this.label16.Text     = "/";
            //
            // label17
            //
            this.label17.Location = new System.Drawing.Point(384, 192);
            this.label17.Name     = "label17";
            this.label17.Size     = new System.Drawing.Size(16, 16);
            this.label17.TabIndex = 47;
            this.label17.Text     = "/";
            //
            // label18
            //
            this.label18.Location = new System.Drawing.Point(232, 152);
            this.label18.Name     = "label18";
            this.label18.Size     = new System.Drawing.Size(16, 16);
            this.label18.TabIndex = 48;
            this.label18.Text     = "\\";
            //
            // label19
            //
            this.label19.Location = new System.Drawing.Point(304, 192);
            this.label19.Name     = "label19";
            this.label19.Size     = new System.Drawing.Size(16, 16);
            this.label19.TabIndex = 49;
            this.label19.Text     = "\\";
            //
            // label20
            //
            this.label20.Location = new System.Drawing.Point(384, 232);
            this.label20.Name     = "label20";
            this.label20.Size     = new System.Drawing.Size(16, 16);
            this.label20.TabIndex = 50;
            this.label20.Text     = "\\";
            //
            // label21
            //
            this.label21.Location = new System.Drawing.Point(72, 136);
            this.label21.Name     = "label21";
            this.label21.Size     = new System.Drawing.Size(16, 16);
            this.label21.TabIndex = 51;
            this.label21.Text     = "-";
            //
            // label22
            //
            this.label22.Location = new System.Drawing.Point(136, 136);
            this.label22.Name     = "label22";
            this.label22.Size     = new System.Drawing.Size(16, 16);
            this.label22.TabIndex = 52;
            this.label22.Text     = "-";
            //
            // label23
            //
            this.label23.Location = new System.Drawing.Point(376, 208);
            this.label23.Name     = "label23";
            this.label23.Size     = new System.Drawing.Size(16, 16);
            this.label23.TabIndex = 53;
            this.label23.Text     = "-";
            //
            // label24
            //
            this.label24.Location = new System.Drawing.Point(384, 88);
            this.label24.Name     = "label24";
            this.label24.Size     = new System.Drawing.Size(16, 16);
            this.label24.TabIndex = 54;
            this.label24.Text     = "\\";
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(496, 395);
            this.Controls.Add(this.label24);
            this.Controls.Add(this.label23);
            this.Controls.Add(this.label22);
            this.Controls.Add(this.label21);
            this.Controls.Add(this.label20);
            this.Controls.Add(this.label19);
            this.Controls.Add(this.label18);
            this.Controls.Add(this.label17);
            this.Controls.Add(this.label16);
            this.Controls.Add(this.label15);
            this.Controls.Add(this.label14);
            this.Controls.Add(this.label13);
            this.Controls.Add(this.echoA);
            this.Controls.Add(this.lowpass);
            this.Controls.Add(this.muteB);
            this.Controls.Add(this.flangeB);
            this.Controls.Add(this.muteA);
            this.Controls.Add(this.label12);
            this.Controls.Add(this.label11);
            this.Controls.Add(this.label10);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.label);
            this.Controls.Add(this.exit_button);
            this.Controls.Add(this.statusBar);
            this.Name  = "Form1";
            this.Text  = "Sub-mixing example";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
        }
Esempio n. 52
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.htmluiControl1 = new Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panel4 = new System.Windows.Forms.Panel();
            this.label2 = new System.Windows.Forms.Label();
            this.radioButton2 = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
            this.radioButton1 = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
            ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).BeginInit();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
            this.gradientPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // htmluiControl1
            // 
            this.htmluiControl1.AutoScroll = true;
            this.htmluiControl1.AutoScrollMinSize = new System.Drawing.Size(567, 340);
            this.htmluiControl1.BackColor = System.Drawing.Color.White;
            this.htmluiControl1.DefaultFormat.BackgroundColor = System.Drawing.SystemColors.Control;
            this.htmluiControl1.DefaultFormat.ForeColor = System.Drawing.SystemColors.ControlText;
            this.htmluiControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.htmluiControl1.Location = new System.Drawing.Point(0, 0);
            this.htmluiControl1.Name = "htmluiControl1";
            this.htmluiControl1.Size = new System.Drawing.Size(584, 355);
            this.htmluiControl1.TabIndex = 0;
            this.htmluiControl1.Text = resources.GetString("htmluiControl1.Text");
            this.htmluiControl1.LoadFinished += new System.EventHandler(this.htmluiControl1_LoadFinished);
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.White;
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(this.panel3);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(10, 10);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(138, 475);
            this.panel1.TabIndex = 1;
            // 
            // panel3
            // 
            this.panel3.BackColor = System.Drawing.Color.Silver;
            this.panel3.Controls.Add(this.panel4);
            this.panel3.Location = new System.Drawing.Point(8, 24);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(120, 136);
            this.panel3.TabIndex = 2;
            // 
            // panel4
            // 
            this.panel4.BackColor = System.Drawing.Color.White;
            this.panel4.Controls.Add(this.label2);
            this.panel4.Controls.Add(this.radioButton2);
            this.panel4.Controls.Add(this.radioButton1);
            this.panel4.Location = new System.Drawing.Point(2, 2);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(116, 132);
            this.panel4.TabIndex = 5;
            // 
            // label2
            // 
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label2.BackColor = System.Drawing.Color.White;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.Black;
            this.label2.Location = new System.Drawing.Point(-2, 0);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(120, 24);
            this.label2.TabIndex = 6;
            this.label2.Text = "Format style";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // radioButton2
            // 
            this.radioButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.radioButton2.DrawFocusRectangle = false;
            this.radioButton2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radioButton2.ForeColor = System.Drawing.Color.Green;
            this.radioButton2.Location = new System.Drawing.Point(4, 74);
            this.radioButton2.MetroColor = System.Drawing.Color.Silver;
            this.radioButton2.Name = "radioButton2";
            this.radioButton2.Size = new System.Drawing.Size(108, 40);
            this.radioButton2.Style = Syncfusion.Windows.Forms.Tools.RadioButtonAdvStyle.Metro;
            this.radioButton2.TabIndex = 5;
            this.radioButton2.TabStop = false;
            this.radioButton2.Text = "Format green";
            this.radioButton2.ThemesEnabled = false;
            // 
            // radioButton1
            // 
            this.radioButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.radioButton1.Checked = true;
            this.radioButton1.DrawFocusRectangle = false;
            this.radioButton1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radioButton1.ForeColor = System.Drawing.Color.Orange;
            this.radioButton1.Location = new System.Drawing.Point(4, 34);
            this.radioButton1.MetroColor = System.Drawing.Color.Silver;
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(108, 42);
            this.radioButton1.Style = Syncfusion.Windows.Forms.Tools.RadioButtonAdvStyle.Metro;
            this.radioButton1.TabIndex = 4;
            this.radioButton1.Text = "Format orange";
            this.radioButton1.ThemesEnabled = false;
            // 
            // panel2
            // 
            this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel2.BackColor = System.Drawing.Color.White;
            this.panel2.Controls.Add(this.label4);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Location = new System.Drawing.Point(149, 10);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(586, 112);
            this.panel2.TabIndex = 2;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.ForeColor = System.Drawing.Color.Black;
            this.label4.Location = new System.Drawing.Point(8, 88);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(105, 15);
            this.label4.TabIndex = 5;
            this.label4.Text = "HTMLUI Output";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.Black;
            this.label3.Location = new System.Drawing.Point(8, 8);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(73, 15);
            this.label3.TabIndex = 4;
            this.label3.Text = "Style code";
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label1.BackColor = System.Drawing.Color.White;
            this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.Maroon;
            this.label1.Location = new System.Drawing.Point(16, 32);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(562, 48);
            this.label1.TabIndex = 3;
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // gradientPanel1
            // 
            this.gradientPanel1.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.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gradientPanel1.Controls.Add(this.htmluiControl1);
            this.gradientPanel1.Location = new System.Drawing.Point(149, 128);
            this.gradientPanel1.Name = "gradientPanel1";
            this.gradientPanel1.Size = new System.Drawing.Size(586, 357);
            this.gradientPanel1.TabIndex = 3;
            // 
            // Form1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
            this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
            this.CaptionAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.ClientSize = new System.Drawing.Size(745, 495);
            this.Controls.Add(this.gradientPanel1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.DropShadow = true;
            this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IconAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.IconTextRelation = System.Windows.Forms.LeftRightAlignment.Left;
            this.MetroColor = System.Drawing.Color.White;
            this.MinimumSize = new System.Drawing.Size(757, 531);
            this.Name = "Form1";
            this.Padding = new System.Windows.Forms.Padding(10);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Formatting Demo";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).EndInit();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
            this.gradientPanel1.ResumeLayout(false);
            this.ResumeLayout(false);

		}
Esempio n. 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.txtOutput        = new System.Windows.Forms.TextBox();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.lblRobotID       = new System.Windows.Forms.Label();
     this.chkBarcodeNull   = new System.Windows.Forms.CheckBox();
     this.chkRobotNull     = new System.Windows.Forms.CheckBox();
     this.chkRobotNameNull = new System.Windows.Forms.CheckBox();
     this.chkRobotIDNull   = new System.Windows.Forms.CheckBox();
     this.txtPlateBarcode  = new System.Windows.Forms.TextBox();
     this.txtRobotName     = new System.Windows.Forms.TextBox();
     this.lblPlateBarcode  = new System.Windows.Forms.Label();
     this.lblRobotName     = new System.Windows.Forms.Label();
     this.btnGetPlateTypes = new System.Windows.Forms.Button();
     this.btnGetPlateType  = new System.Windows.Forms.Button();
     this.btnGetPlateInfo  = new System.Windows.Forms.Button();
     this.btnGetPlateID    = new System.Windows.Forms.Button();
     this.txtRobotID       = new System.Windows.Forms.TextBox();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.txtOutput);
     this.groupBox2.Location = new System.Drawing.Point(0, 144);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(792, 372);
     this.groupBox2.TabIndex = 7;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Output";
     //
     // txtOutput
     //
     this.txtOutput.Location  = new System.Drawing.Point(8, 24);
     this.txtOutput.Multiline = true;
     this.txtOutput.Name      = "txtOutput";
     this.txtOutput.ReadOnly  = true;
     this.txtOutput.Size      = new System.Drawing.Size(776, 336);
     this.txtOutput.TabIndex  = 12;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lblRobotID);
     this.groupBox1.Controls.Add(this.chkBarcodeNull);
     this.groupBox1.Controls.Add(this.chkRobotNull);
     this.groupBox1.Controls.Add(this.chkRobotNameNull);
     this.groupBox1.Controls.Add(this.chkRobotIDNull);
     this.groupBox1.Controls.Add(this.txtPlateBarcode);
     this.groupBox1.Controls.Add(this.txtRobotName);
     this.groupBox1.Controls.Add(this.lblPlateBarcode);
     this.groupBox1.Controls.Add(this.lblRobotName);
     this.groupBox1.Controls.Add(this.btnGetPlateTypes);
     this.groupBox1.Controls.Add(this.btnGetPlateType);
     this.groupBox1.Controls.Add(this.btnGetPlateInfo);
     this.groupBox1.Controls.Add(this.btnGetPlateID);
     this.groupBox1.Controls.Add(this.txtRobotID);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(792, 144);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Input";
     //
     // lblRobotID
     //
     this.lblRobotID.Location  = new System.Drawing.Point(56, 24);
     this.lblRobotID.Name      = "lblRobotID";
     this.lblRobotID.Size      = new System.Drawing.Size(216, 16);
     this.lblRobotID.TabIndex  = 17;
     this.lblRobotID.Text      = "Robot ID : ";
     this.lblRobotID.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // chkBarcodeNull
     //
     this.chkBarcodeNull.Location        = new System.Drawing.Point(552, 72);
     this.chkBarcodeNull.Name            = "chkBarcodeNull";
     this.chkBarcodeNull.Size            = new System.Drawing.Size(48, 14);
     this.chkBarcodeNull.TabIndex        = 11;
     this.chkBarcodeNull.Text            = "Null";
     this.chkBarcodeNull.CheckedChanged += new System.EventHandler(this.chkBarcodeNull_CheckedChanged);
     //
     // chkRobotNull
     //
     this.chkRobotNull.Location        = new System.Drawing.Point(608, 40);
     this.chkRobotNull.Name            = "chkRobotNull";
     this.chkRobotNull.Size            = new System.Drawing.Size(104, 14);
     this.chkRobotNull.TabIndex        = 10;
     this.chkRobotNull.Text            = "Robot Null";
     this.chkRobotNull.CheckedChanged += new System.EventHandler(this.chkRobotNull_CheckedChanged);
     //
     // chkRobotNameNull
     //
     this.chkRobotNameNull.Location        = new System.Drawing.Point(552, 48);
     this.chkRobotNameNull.Name            = "chkRobotNameNull";
     this.chkRobotNameNull.Size            = new System.Drawing.Size(48, 14);
     this.chkRobotNameNull.TabIndex        = 9;
     this.chkRobotNameNull.Text            = "Null";
     this.chkRobotNameNull.CheckedChanged += new System.EventHandler(this.chkRobotNameNull_CheckedChanged);
     //
     // chkRobotIDNull
     //
     this.chkRobotIDNull.Location        = new System.Drawing.Point(552, 24);
     this.chkRobotIDNull.Name            = "chkRobotIDNull";
     this.chkRobotIDNull.Size            = new System.Drawing.Size(48, 16);
     this.chkRobotIDNull.TabIndex        = 8;
     this.chkRobotIDNull.Text            = "Null";
     this.chkRobotIDNull.CheckedChanged += new System.EventHandler(this.chkRobotIDNull_CheckedChanged);
     //
     // txtPlateBarcode
     //
     this.txtPlateBarcode.Location = new System.Drawing.Point(272, 64);
     this.txtPlateBarcode.Name     = "txtPlateBarcode";
     this.txtPlateBarcode.Size     = new System.Drawing.Size(256, 20);
     this.txtPlateBarcode.TabIndex = 3;
     //
     // txtRobotName
     //
     this.txtRobotName.Location = new System.Drawing.Point(272, 40);
     this.txtRobotName.Name     = "txtRobotName";
     this.txtRobotName.Size     = new System.Drawing.Size(256, 20);
     this.txtRobotName.TabIndex = 2;
     //
     // lblPlateBarcode
     //
     this.lblPlateBarcode.Location  = new System.Drawing.Point(56, 72);
     this.lblPlateBarcode.Name      = "lblPlateBarcode";
     this.lblPlateBarcode.Size      = new System.Drawing.Size(216, 16);
     this.lblPlateBarcode.TabIndex  = 10;
     this.lblPlateBarcode.Text      = "Barcode / Plate ID / Plate Type ID : ";
     this.lblPlateBarcode.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // lblRobotName
     //
     this.lblRobotName.Location  = new System.Drawing.Point(56, 48);
     this.lblRobotName.Name      = "lblRobotName";
     this.lblRobotName.Size      = new System.Drawing.Size(216, 16);
     this.lblRobotName.TabIndex  = 9;
     this.lblRobotName.Text      = "Robot Name : ";
     this.lblRobotName.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // btnGetPlateTypes
     //
     this.btnGetPlateTypes.Location = new System.Drawing.Point(616, 104);
     this.btnGetPlateTypes.Name     = "btnGetPlateTypes";
     this.btnGetPlateTypes.Size     = new System.Drawing.Size(112, 24);
     this.btnGetPlateTypes.TabIndex = 7;
     this.btnGetPlateTypes.Text     = "GetPlateTypes";
     this.btnGetPlateTypes.Click   += new System.EventHandler(this.btnGetPlateTypes_Click);
     //
     // btnGetPlateType
     //
     this.btnGetPlateType.Location = new System.Drawing.Point(432, 104);
     this.btnGetPlateType.Name     = "btnGetPlateType";
     this.btnGetPlateType.Size     = new System.Drawing.Size(112, 24);
     this.btnGetPlateType.TabIndex = 6;
     this.btnGetPlateType.Text     = "GetPlateType";
     this.btnGetPlateType.Click   += new System.EventHandler(this.btnGetPlateType_Click);
     //
     // btnGetPlateInfo
     //
     this.btnGetPlateInfo.Location = new System.Drawing.Point(248, 104);
     this.btnGetPlateInfo.Name     = "btnGetPlateInfo";
     this.btnGetPlateInfo.Size     = new System.Drawing.Size(112, 24);
     this.btnGetPlateInfo.TabIndex = 5;
     this.btnGetPlateInfo.Text     = "GetPlateInfo";
     this.btnGetPlateInfo.Click   += new System.EventHandler(this.btnGetPlateInfo_Click);
     //
     // btnGetPlateID
     //
     this.btnGetPlateID.Location = new System.Drawing.Point(72, 104);
     this.btnGetPlateID.Name     = "btnGetPlateID";
     this.btnGetPlateID.Size     = new System.Drawing.Size(112, 24);
     this.btnGetPlateID.TabIndex = 4;
     this.btnGetPlateID.Text     = "GetPlateID";
     this.btnGetPlateID.Click   += new System.EventHandler(this.btnGetPlateID_Click);
     //
     // txtRobotID
     //
     this.txtRobotID.Location = new System.Drawing.Point(272, 16);
     this.txtRobotID.Name     = "txtRobotID";
     this.txtRobotID.Size     = new System.Drawing.Size(256, 20);
     this.txtRobotID.TabIndex = 1;
     //
     // PlateInfoProviderTester
     //
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "PlateInfoProviderTester";
     this.Size = new System.Drawing.Size(792, 515);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.button2             = new System.Windows.Forms.Button();
     this.button1             = new System.Windows.Forms.Button();
     this.label1              = new System.Windows.Forms.Label();
     this.callsCheckbox       = new System.Windows.Forms.CheckBox();
     this.allocationsCheckbox = new System.Windows.Forms.CheckBox();
     this.assembliesCheckbox  = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // button2
     //
     this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button2.Location     = new System.Drawing.Point(168, 160);
     this.button2.Name         = "button2";
     this.button2.Size         = new System.Drawing.Size(72, 24);
     this.button2.TabIndex     = 5;
     this.button2.Text         = "Cancel";
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location     = new System.Drawing.Point(88, 160);
     this.button1.Name         = "button1";
     this.button1.Size         = new System.Drawing.Size(72, 24);
     this.button1.TabIndex     = 4;
     this.button1.Text         = "OK";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(216, 16);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Select the events displayed in the call tree view.";
     //
     // callsCheckbox
     //
     this.callsCheckbox.Checked    = true;
     this.callsCheckbox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.callsCheckbox.Enabled    = false;
     this.callsCheckbox.Location   = new System.Drawing.Point(24, 40);
     this.callsCheckbox.Name       = "callsCheckbox";
     this.callsCheckbox.Size       = new System.Drawing.Size(216, 16);
     this.callsCheckbox.TabIndex   = 7;
     this.callsCheckbox.Text       = "Function &calls";
     //
     // allocationsCheckbox
     //
     this.allocationsCheckbox.Location = new System.Drawing.Point(24, 64);
     this.allocationsCheckbox.Name     = "allocationsCheckbox";
     this.allocationsCheckbox.Size     = new System.Drawing.Size(216, 16);
     this.allocationsCheckbox.TabIndex = 8;
     this.allocationsCheckbox.Text     = "&Allocations";
     //
     // assembliesCheckbox
     //
     this.assembliesCheckbox.Location = new System.Drawing.Point(24, 88);
     this.assembliesCheckbox.Name     = "assembliesCheckbox";
     this.assembliesCheckbox.Size     = new System.Drawing.Size(216, 16);
     this.assembliesCheckbox.TabIndex = 9;
     this.assembliesCheckbox.Text     = "A&ssembly loads";
     //
     // ViewFilter
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(250, 199);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.assembliesCheckbox,
         this.allocationsCheckbox,
         this.callsCheckbox,
         this.label1,
         this.button2,
         this.button1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "ViewFilter";
     this.Text            = "View Filter";
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kryptonPanel1         = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonNumericUpDown1 = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kbtnFlash             = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonLabel1         = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.label1);
     this.kryptonPanel1.Controls.Add(this.kbtnFlash);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.kryptonNumericUpDown1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(997, 500);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kryptonNumericUpDown1
     //
     this.kryptonNumericUpDown1.Location = new System.Drawing.Point(264, 52);
     this.kryptonNumericUpDown1.Maximum  = new decimal(new int[] {
         120,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown1.Name = "kryptonNumericUpDown1";
     this.kryptonNumericUpDown1.Size = new System.Drawing.Size(120, 28);
     this.kryptonNumericUpDown1.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown1.TabIndex = 0;
     //
     // kbtnFlash
     //
     this.kbtnFlash.Location = new System.Drawing.Point(390, 52);
     this.kbtnFlash.Name     = "kbtnFlash";
     this.kbtnFlash.Size     = new System.Drawing.Size(90, 28);
     this.kbtnFlash.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnFlash.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnFlash.TabIndex    = 1;
     this.kbtnFlash.Values.Text = "&Flash";
     this.kbtnFlash.Click      += new System.EventHandler(this.kbtnFlash_Click);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(50, 32);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(115, 26);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "kryptonLabel1";
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, 478);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(997, 22);
     this.statusStrip1.TabIndex   = 2;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(56, 72);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(52, 21);
     this.label1.TabIndex = 2;
     this.label1.Text     = "label1";
     //
     // FlashingLabelTest
     //
     this.ClientSize = new System.Drawing.Size(997, 500);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.kryptonPanel1);
     this.Name  = "FlashingLabelTest";
     this.Load += new System.EventHandler(this.FlashingLabelTest_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
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()
 {
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.generateButton       = new System.Windows.Forms.Button();
     this.pointsPanel          = new BufferedPanel();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.showInactiveCheck    = new System.Windows.Forms.CheckBox();
     this.showConnectionsCheck = new System.Windows.Forms.CheckBox();
     this.mapPanel             = new BufferedPanel();
     this.groupBox3            = new System.Windows.Forms.GroupBox();
     this.stopButton           = new System.Windows.Forms.Button();
     this.startButton          = new System.Windows.Forms.Button();
     this.currentIterationBox  = new System.Windows.Forms.TextBox();
     this.label8        = new System.Windows.Forms.Label();
     this.label7        = new System.Windows.Forms.Label();
     this.radiusBox     = new System.Windows.Forms.TextBox();
     this.label4        = new System.Windows.Forms.Label();
     this.rateBox       = new System.Windows.Forms.TextBox();
     this.label5        = new System.Windows.Forms.Label();
     this.iterationsBox = new System.Windows.Forms.TextBox();
     this.label6        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.sizeBox       = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.generateButton);
     this.groupBox1.Controls.Add(this.pointsPanel);
     this.groupBox1.Location = new System.Drawing.Point(10, 10);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(220, 295);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Points";
     //
     // generateButton
     //
     this.generateButton.Location = new System.Drawing.Point(10, 260);
     this.generateButton.Name     = "generateButton";
     this.generateButton.TabIndex = 1;
     this.generateButton.Text     = "&Generate";
     this.generateButton.Click   += new System.EventHandler(this.generateButton_Click);
     //
     // pointsPanel
     //
     this.pointsPanel.BackColor   = System.Drawing.Color.White;
     this.pointsPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pointsPanel.Location    = new System.Drawing.Point(10, 20);
     this.pointsPanel.Name        = "pointsPanel";
     this.pointsPanel.Size        = new System.Drawing.Size(200, 200);
     this.pointsPanel.TabIndex    = 0;
     this.pointsPanel.Paint      += new System.Windows.Forms.PaintEventHandler(this.pointsPanel_Paint);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.showInactiveCheck);
     this.groupBox2.Controls.Add(this.showConnectionsCheck);
     this.groupBox2.Controls.Add(this.mapPanel);
     this.groupBox2.Location = new System.Drawing.Point(240, 10);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(220, 295);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Map";
     //
     // showInactiveCheck
     //
     this.showInactiveCheck.Checked         = true;
     this.showInactiveCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.showInactiveCheck.Location        = new System.Drawing.Point(10, 265);
     this.showInactiveCheck.Name            = "showInactiveCheck";
     this.showInactiveCheck.Size            = new System.Drawing.Size(160, 16);
     this.showInactiveCheck.TabIndex        = 2;
     this.showInactiveCheck.Text            = "Show Inactive Neurons";
     this.showInactiveCheck.CheckedChanged += new System.EventHandler(this.showInactiveCheck_CheckedChanged);
     //
     // showConnectionsCheck
     //
     this.showConnectionsCheck.Checked         = true;
     this.showConnectionsCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.showConnectionsCheck.Location        = new System.Drawing.Point(10, 240);
     this.showConnectionsCheck.Name            = "showConnectionsCheck";
     this.showConnectionsCheck.Size            = new System.Drawing.Size(150, 16);
     this.showConnectionsCheck.TabIndex        = 1;
     this.showConnectionsCheck.Text            = "Show Connections";
     this.showConnectionsCheck.CheckedChanged += new System.EventHandler(this.showConnectionsCheck_CheckedChanged);
     //
     // mapPanel
     //
     this.mapPanel.BackColor   = System.Drawing.Color.White;
     this.mapPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.mapPanel.Location    = new System.Drawing.Point(10, 20);
     this.mapPanel.Name        = "mapPanel";
     this.mapPanel.Size        = new System.Drawing.Size(200, 200);
     this.mapPanel.TabIndex    = 0;
     this.mapPanel.Paint      += new System.Windows.Forms.PaintEventHandler(this.mapPanel_Paint);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.stopButton);
     this.groupBox3.Controls.Add(this.startButton);
     this.groupBox3.Controls.Add(this.currentIterationBox);
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.radiusBox);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.rateBox);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.iterationsBox);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.sizeBox);
     this.groupBox3.Controls.Add(this.label1);
     this.groupBox3.Location = new System.Drawing.Point(470, 10);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(180, 295);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Neural Network";
     //
     // stopButton
     //
     this.stopButton.Enabled  = false;
     this.stopButton.Location = new System.Drawing.Point(95, 260);
     this.stopButton.Name     = "stopButton";
     this.stopButton.TabIndex = 16;
     this.stopButton.Text     = "S&top";
     this.stopButton.Click   += new System.EventHandler(this.stopButton_Click);
     //
     // startButton
     //
     this.startButton.Location = new System.Drawing.Point(10, 260);
     this.startButton.Name     = "startButton";
     this.startButton.TabIndex = 15;
     this.startButton.Text     = "&Start";
     this.startButton.Click   += new System.EventHandler(this.startButton_Click);
     //
     // currentIterationBox
     //
     this.currentIterationBox.Location = new System.Drawing.Point(110, 160);
     this.currentIterationBox.Name     = "currentIterationBox";
     this.currentIterationBox.ReadOnly = true;
     this.currentIterationBox.Size     = new System.Drawing.Size(60, 20);
     this.currentIterationBox.TabIndex = 14;
     this.currentIterationBox.Text     = "";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(10, 162);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(100, 16);
     this.label8.TabIndex = 13;
     this.label8.Text     = "Curren iteration:";
     //
     // label7
     //
     this.label7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label7.Location    = new System.Drawing.Point(10, 148);
     this.label7.Name        = "label7";
     this.label7.Size        = new System.Drawing.Size(160, 2);
     this.label7.TabIndex    = 12;
     //
     // radiusBox
     //
     this.radiusBox.Location = new System.Drawing.Point(110, 120);
     this.radiusBox.Name     = "radiusBox";
     this.radiusBox.Size     = new System.Drawing.Size(60, 20);
     this.radiusBox.TabIndex = 11;
     this.radiusBox.Text     = "";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 122);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 16);
     this.label4.TabIndex = 10;
     this.label4.Text     = "Initial radius:";
     //
     // rateBox
     //
     this.rateBox.Location = new System.Drawing.Point(110, 95);
     this.rateBox.Name     = "rateBox";
     this.rateBox.Size     = new System.Drawing.Size(60, 20);
     this.rateBox.TabIndex = 9;
     this.rateBox.Text     = "";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(10, 97);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 16);
     this.label5.TabIndex = 8;
     this.label5.Text     = "Initial learning rate:";
     //
     // iterationsBox
     //
     this.iterationsBox.Location = new System.Drawing.Point(110, 70);
     this.iterationsBox.Name     = "iterationsBox";
     this.iterationsBox.Size     = new System.Drawing.Size(60, 20);
     this.iterationsBox.TabIndex = 7;
     this.iterationsBox.Text     = "";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(10, 72);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(60, 16);
     this.label6.TabIndex = 6;
     this.label6.Text     = "Iteraions:";
     //
     // label3
     //
     this.label3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label3.Location    = new System.Drawing.Point(10, 60);
     this.label3.Name        = "label3";
     this.label3.Size        = new System.Drawing.Size(160, 2);
     this.label3.TabIndex    = 3;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 41);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(150, 15);
     this.label2.TabIndex = 2;
     this.label2.Text     = "(neurons count = size * size)";
     //
     // sizeBox
     //
     this.sizeBox.Location = new System.Drawing.Point(110, 20);
     this.sizeBox.Name     = "sizeBox";
     this.sizeBox.Size     = new System.Drawing.Size(60, 20);
     this.sizeBox.TabIndex = 1;
     this.sizeBox.Text     = "";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 22);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(54, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Size:";
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(659, 315);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Text            = "Kohonen SOM 2D Organizing";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.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()
 {
     this.DS              = new regionalrateforcityvalidity_default.vistaForm();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.grpScaglioni    = new System.Windows.Forms.GroupBox();
     this.button3         = new System.Windows.Forms.Button();
     this.button2         = new System.Windows.Forms.Button();
     this.button1         = new System.Windows.Forms.Button();
     this.dataGrid1       = new System.Windows.Forms.DataGrid();
     this.label3          = new System.Windows.Forms.Label();
     this.grpComune       = new System.Windows.Forms.GroupBox();
     this.txtGeoComune    = new System.Windows.Forms.TextBox();
     this.label2          = new System.Windows.Forms.Label();
     this.cmbTipoRitenuta = new System.Windows.Forms.ComboBox();
     this.label1          = new System.Windows.Forms.Label();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.grpScaglioni.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.grpComune.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // DS
     //
     this.DS.DataSetName = "vistaForm";
     this.DS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(120, 88);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(120, 20);
     this.textBox1.TabIndex = 3;
     this.textBox1.Tag      = "regionalrateforcityvalidity.validitystart";
     this.textBox1.Text     = "";
     //
     // grpScaglioni
     //
     this.grpScaglioni.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.grpScaglioni.Controls.Add(this.button3);
     this.grpScaglioni.Controls.Add(this.button2);
     this.grpScaglioni.Controls.Add(this.button1);
     this.grpScaglioni.Controls.Add(this.dataGrid1);
     this.grpScaglioni.Location = new System.Drawing.Point(8, 135);
     this.grpScaglioni.Name     = "grpScaglioni";
     this.grpScaglioni.Size     = new System.Drawing.Size(408, 264);
     this.grpScaglioni.TabIndex = 51;
     this.grpScaglioni.TabStop  = false;
     this.grpScaglioni.Text     = "Scaglioni della ritenuta";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(320, 16);
     this.button3.Name     = "button3";
     this.button3.TabIndex = 46;
     this.button3.TabStop  = false;
     this.button3.Tag      = "delete";
     this.button3.Text     = "Elimina";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(232, 16);
     this.button2.Name     = "button2";
     this.button2.TabIndex = 45;
     this.button2.TabStop  = false;
     this.button2.Tag      = "edit.single";
     this.button2.Text     = "Modifica";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(144, 16);
     this.button1.Name     = "button1";
     this.button1.TabIndex = 44;
     this.button1.TabStop  = false;
     this.button1.Tag      = "insert.single";
     this.button1.Text     = "Nuovo";
     //
     // dataGrid1
     //
     this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(8, 48);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.Size            = new System.Drawing.Size(392, 208);
     this.dataGrid1.TabIndex        = 43;
     this.dataGrid1.Tag             = "regionalrateforcitybracket.default.single";
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 88);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(104, 23);
     this.label3.TabIndex  = 49;
     this.label3.Text      = "Data Inizio Struttura";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // grpComune
     //
     this.grpComune.Controls.Add(this.txtGeoComune);
     this.grpComune.Location = new System.Drawing.Point(112, 32);
     this.grpComune.Name     = "grpComune";
     this.grpComune.Size     = new System.Drawing.Size(288, 48);
     this.grpComune.TabIndex = 2;
     this.grpComune.TabStop  = false;
     this.grpComune.Tag      = "AutoChoose.txtGeoComune.default";
     //
     // txtGeoComune
     //
     this.txtGeoComune.Location = new System.Drawing.Point(8, 16);
     this.txtGeoComune.Name     = "txtGeoComune";
     this.txtGeoComune.Size     = new System.Drawing.Size(272, 20);
     this.txtGeoComune.TabIndex = 0;
     this.txtGeoComune.Tag      = "geo_cityview.title?regionalrateforcityvalidityview.city";
     this.txtGeoComune.Text     = "";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 48);
     this.label2.Name      = "label2";
     this.label2.TabIndex  = 47;
     this.label2.Text      = "Comune";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // cmbTipoRitenuta
     //
     this.cmbTipoRitenuta.DataSource    = this.DS.tax;
     this.cmbTipoRitenuta.DisplayMember = "description";
     this.cmbTipoRitenuta.Location      = new System.Drawing.Point(120, 8);
     this.cmbTipoRitenuta.Name          = "cmbTipoRitenuta";
     this.cmbTipoRitenuta.Size          = new System.Drawing.Size(192, 21);
     this.cmbTipoRitenuta.TabIndex      = 1;
     this.cmbTipoRitenuta.Tag           = "regionalrateforcityvalidity.taxcode";
     this.cmbTipoRitenuta.ValueMember   = "taxcode";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 16);
     this.label1.Name      = "label1";
     this.label1.TabIndex  = 52;
     this.label1.Text      = "Tipo Ritenuta";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.cmbTipoRitenuta);
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.grpComune);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(408, 120);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Dati Generali";
     //
     // Frm_regionalrateforcityvalidity_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(424, 414);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.grpScaglioni);
     this.Name = "Frm_regionalrateforcityvalidity_default";
     this.Text = "frmstrutturaaliquoteregionalipercomune";
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.grpScaglioni.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.grpComune.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 58
0
 /// <summary>
 ///    Required method for Designer support - do not modify
 ///    the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormWinGrep));
     this.txtResults            = new System.Windows.Forms.TextBox();
     this.lblResults            = new System.Windows.Forms.Label();
     this.txtFiles              = new System.Windows.Forms.TextBox();
     this.lblDir                = new System.Windows.Forms.Label();
     this.btnBrowse             = new System.Windows.Forms.Button();
     this.txtSearchText         = new System.Windows.Forms.TextBox();
     this.lblFiles              = new System.Windows.Forms.Label();
     this.lblSearchText         = new System.Windows.Forms.Label();
     this.btnSearch             = new System.Windows.Forms.Button();
     this.txtDir                = new System.Windows.Forms.TextBox();
     this.ckCountLines          = new System.Windows.Forms.CheckBox();
     this.ckCountLines.Checked  = true;
     this.lblCurFile            = new System.Windows.Forms.Label();
     this.txtCurFile            = new System.Windows.Forms.TextBox();
     this.ckRecursive           = new System.Windows.Forms.CheckBox();
     this.ckRecursive.Checked   = true;
     this.ckLineNumbers         = new System.Windows.Forms.CheckBox();
     this.ckLineNumbers.Checked = true;
     this.ckIgnoreCase          = new System.Windows.Forms.CheckBox();
     this.ckJustFiles           = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // txtResults
     //
     this.txtResults.BackColor  = System.Drawing.SystemColors.Info;
     this.txtResults.Cursor     = System.Windows.Forms.Cursors.Arrow;
     this.txtResults.Location   = new System.Drawing.Point(12, 204);
     this.txtResults.Multiline  = true;
     this.txtResults.Name       = "txtResults";
     this.txtResults.ReadOnly   = true;
     this.txtResults.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtResults.Size       = new System.Drawing.Size(472, 216);
     this.txtResults.TabIndex   = 9;
     this.txtResults.Text       = "";
     this.txtResults.WordWrap   = false;
     //
     // lblResults
     //
     this.lblResults.Location = new System.Drawing.Point(12, 192);
     this.lblResults.Name     = "lblResults";
     this.lblResults.Size     = new System.Drawing.Size(56, 12);
     this.lblResults.TabIndex = 10;
     this.lblResults.Text     = "Results";
     //
     // txtFiles
     //
     this.txtFiles.BackColor = System.Drawing.SystemColors.Window;
     this.txtFiles.Location  = new System.Drawing.Point(12, 68);
     this.txtFiles.Name      = "txtFiles";
     this.txtFiles.Size      = new System.Drawing.Size(180, 20);
     this.txtFiles.TabIndex  = 5;
     this.txtFiles.Text      = "";
     this.txtFiles.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtFiles_KeyDown);
     //
     // lblDir
     //
     this.lblDir.Location = new System.Drawing.Point(12, 12);
     this.lblDir.Name     = "lblDir";
     this.lblDir.Size     = new System.Drawing.Size(60, 12);
     this.lblDir.TabIndex = 0;
     this.lblDir.Text     = "Directory";
     //
     // btnBrowse
     //
     this.btnBrowse.Location = new System.Drawing.Point(456, 24);
     this.btnBrowse.Name     = "btnBrowse";
     this.btnBrowse.Size     = new System.Drawing.Size(28, 20);
     this.btnBrowse.TabIndex = 2;
     this.btnBrowse.Text     = "...";
     this.btnBrowse.Click   += new System.EventHandler(this.btnDir_Click);
     //
     // txtSearchText
     //
     this.txtSearchText.BackColor    = System.Drawing.SystemColors.Window;
     this.txtSearchText.Location     = new System.Drawing.Point(204, 68);
     this.txtSearchText.Name         = "txtSearchText";
     this.txtSearchText.Size         = new System.Drawing.Size(280, 20);
     this.txtSearchText.TabIndex     = 7;
     this.txtSearchText.Text         = "";
     this.txtSearchText.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtSearchText_KeyDown);
     this.txtSearchText.TextChanged += new System.EventHandler(this.txtSearchText_TextChanged);
     //
     // lblFiles
     //
     this.lblFiles.Location = new System.Drawing.Point(12, 56);
     this.lblFiles.Name     = "lblFiles";
     this.lblFiles.Size     = new System.Drawing.Size(84, 12);
     this.lblFiles.TabIndex = 4;
     this.lblFiles.Text     = "Files";
     //
     // lblSearchText
     //
     this.lblSearchText.Location = new System.Drawing.Point(204, 56);
     this.lblSearchText.Name     = "lblSearchText";
     this.lblSearchText.Size     = new System.Drawing.Size(196, 12);
     this.lblSearchText.TabIndex = 6;
     this.lblSearchText.Text     = "Search Pattern (Regular Expression)";
     //
     // btnSearch
     //
     this.btnSearch.Enabled  = false;
     this.btnSearch.Location = new System.Drawing.Point(424, 116);
     this.btnSearch.Name     = "btnSearch";
     this.btnSearch.Size     = new System.Drawing.Size(60, 24);
     this.btnSearch.TabIndex = 8;
     this.btnSearch.Text     = "Search";
     this.btnSearch.Click   += new System.EventHandler(this.btnSearch_Click);
     //
     // txtDir
     //
     this.txtDir.BackColor    = System.Drawing.SystemColors.Window;
     this.txtDir.Location     = new System.Drawing.Point(12, 24);
     this.txtDir.Name         = "txtDir";
     this.txtDir.Size         = new System.Drawing.Size(436, 20);
     this.txtDir.TabIndex     = 1;
     this.txtDir.Text         = "";
     this.txtDir.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtDir_KeyDown);
     this.txtDir.TextChanged += new System.EventHandler(this.txtDir_TextChanged);
     //
     // ckCountLines
     //
     this.ckCountLines.Location = new System.Drawing.Point(12, 124);
     this.ckCountLines.Name     = "ckCountLines";
     this.ckCountLines.Size     = new System.Drawing.Size(84, 16);
     this.ckCountLines.TabIndex = 3;
     this.ckCountLines.Text     = "Count Lines";
     //
     // lblCurFile
     //
     this.lblCurFile.Location = new System.Drawing.Point(12, 152);
     this.lblCurFile.Name     = "lblCurFile";
     this.lblCurFile.Size     = new System.Drawing.Size(84, 12);
     this.lblCurFile.TabIndex = 11;
     this.lblCurFile.Text     = "Current File";
     //
     // txtCurFile
     //
     this.txtCurFile.BackColor = System.Drawing.SystemColors.Info;
     this.txtCurFile.Location  = new System.Drawing.Point(12, 164);
     this.txtCurFile.Name      = "txtCurFile";
     this.txtCurFile.ReadOnly  = true;
     this.txtCurFile.Size      = new System.Drawing.Size(472, 20);
     this.txtCurFile.TabIndex  = 12;
     this.txtCurFile.Text      = "";
     //
     // ckRecursive
     //
     this.ckRecursive.Location = new System.Drawing.Point(12, 100);
     this.ckRecursive.Name     = "ckRecursive";
     this.ckRecursive.Size     = new System.Drawing.Size(84, 16);
     this.ckRecursive.TabIndex = 13;
     this.ckRecursive.Text     = "Recursive";
     //
     // ckLineNumbers
     //
     this.ckLineNumbers.Location = new System.Drawing.Point(104, 100);
     this.ckLineNumbers.Name     = "ckLineNumbers";
     this.ckLineNumbers.Size     = new System.Drawing.Size(96, 16);
     this.ckLineNumbers.TabIndex = 14;
     this.ckLineNumbers.Text     = "Line Numbers";
     //
     // ckIgnoreCase
     //
     this.ckIgnoreCase.Location = new System.Drawing.Point(104, 124);
     this.ckIgnoreCase.Name     = "ckIgnoreCase";
     this.ckIgnoreCase.Size     = new System.Drawing.Size(96, 16);
     this.ckIgnoreCase.TabIndex = 15;
     this.ckIgnoreCase.Text     = "Ignore Case";
     //
     // ckJustFiles
     //
     this.ckJustFiles.Location = new System.Drawing.Point(208, 100);
     this.ckJustFiles.Name     = "ckJustFiles";
     this.ckJustFiles.Size     = new System.Drawing.Size(84, 16);
     this.ckJustFiles.TabIndex = 16;
     this.ckJustFiles.Text     = "Just Files";
     this.ckJustFiles.Click   += new System.EventHandler(this.ckJustFiles_Click);
     //
     // FormWinGrep
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(494, 432);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.ckJustFiles,
         this.ckIgnoreCase,
         this.ckLineNumbers,
         this.ckRecursive,
         this.lblCurFile,
         this.txtCurFile,
         this.btnBrowse,
         this.lblResults,
         this.txtResults,
         this.lblSearchText,
         this.txtSearchText,
         this.lblFiles,
         this.txtFiles,
         this.btnSearch,
         this.ckCountLines,
         this.lblDir,
         this.txtDir
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "FormWinGrep";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Win Grep";
     this.ResumeLayout(false);
 }
Esempio n. 59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.FirstSerieGroupBox             = new Nevron.UI.WinForm.Controls.NGroupBox();
     this.label3                         = new System.Windows.Forms.Label();
     this.label5                         = new System.Windows.Forms.Label();
     this.label10                        = new System.Windows.Forms.Label();
     this.FirstDisplayOnLegendComboBox   = new Nevron.UI.WinForm.Controls.NComboBox();
     this.FirstSeriesLegendModeComboBox  = new Nevron.UI.WinForm.Controls.NComboBox();
     this.FirstSeriesFormatTextBox       = new Nevron.UI.WinForm.Controls.NTextBox();
     this.FirstTextStyleButton           = new Nevron.UI.WinForm.Controls.NButton();
     this.SecondSerieGroupBox            = new Nevron.UI.WinForm.Controls.NGroupBox();
     this.label1                         = new System.Windows.Forms.Label();
     this.label6                         = new System.Windows.Forms.Label();
     this.label9                         = new System.Windows.Forms.Label();
     this.SecondDisplayOnLegendComboBox  = new Nevron.UI.WinForm.Controls.NComboBox();
     this.SecondSeriesLegendModeComboBox = new Nevron.UI.WinForm.Controls.NComboBox();
     this.SecondSeriesFormatTextBox      = new Nevron.UI.WinForm.Controls.NTextBox();
     this.SecondTextStyleButton          = new Nevron.UI.WinForm.Controls.NButton();
     this.ThirdSerieGroupBox             = new Nevron.UI.WinForm.Controls.NGroupBox();
     this.label2                         = new System.Windows.Forms.Label();
     this.label4                         = new System.Windows.Forms.Label();
     this.label7                         = new System.Windows.Forms.Label();
     this.ThirdDisplayOnLegendComboBox   = new Nevron.UI.WinForm.Controls.NComboBox();
     this.ThirdSeriesLegendModeComboBox  = new Nevron.UI.WinForm.Controls.NComboBox();
     this.ThirdSeriesFormatTextBox       = new Nevron.UI.WinForm.Controls.NTextBox();
     this.ThirdTextStyleButton           = new Nevron.UI.WinForm.Controls.NButton();
     this.PositiveDataButton             = new Nevron.UI.WinForm.Controls.NButton();
     this.PositiveAndNegativeDataButton  = new Nevron.UI.WinForm.Controls.NButton();
     this.label8                         = new System.Windows.Forms.Label();
     this.DataPointsNumericUpDown        = new Nevron.UI.WinForm.Controls.NNumericUpDown();
     this.DataGroupBox                   = new Nevron.UI.WinForm.Controls.NGroupBox();
     this.FirstSerieGroupBox.SuspendLayout();
     this.SecondSerieGroupBox.SuspendLayout();
     this.ThirdSerieGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DataPointsNumericUpDown)).BeginInit();
     this.DataGroupBox.SuspendLayout();
     this.SuspendLayout();
     //
     // FirstSerieGroupBox
     //
     this.FirstSerieGroupBox.Controls.Add(this.label3);
     this.FirstSerieGroupBox.Controls.Add(this.label5);
     this.FirstSerieGroupBox.Controls.Add(this.label10);
     this.FirstSerieGroupBox.Controls.Add(this.FirstDisplayOnLegendComboBox);
     this.FirstSerieGroupBox.Controls.Add(this.FirstSeriesLegendModeComboBox);
     this.FirstSerieGroupBox.Controls.Add(this.FirstSeriesFormatTextBox);
     this.FirstSerieGroupBox.Controls.Add(this.FirstTextStyleButton);
     this.FirstSerieGroupBox.ImageIndex = 0;
     this.FirstSerieGroupBox.Location   = new System.Drawing.Point(8, 0);
     this.FirstSerieGroupBox.Name       = "FirstSerieGroupBox";
     this.FirstSerieGroupBox.Size       = new System.Drawing.Size(168, 184);
     this.FirstSerieGroupBox.TabIndex   = 0;
     this.FirstSerieGroupBox.TabStop    = false;
     this.FirstSerieGroupBox.Text       = "First series";
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(8, 16);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(152, 16);
     this.label3.TabIndex  = 4;
     this.label3.Text      = "Display on legend:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(8, 63);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(152, 16);
     this.label5.TabIndex  = 4;
     this.label5.Text      = "Series legend mode:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(8, 110);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(152, 16);
     this.label10.TabIndex  = 6;
     this.label10.Text      = "Format:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FirstDisplayOnLegendComboBox
     //
     this.FirstDisplayOnLegendComboBox.ListProperties.CheckBoxDataMember = "";
     this.FirstDisplayOnLegendComboBox.ListProperties.DataSource         = null;
     this.FirstDisplayOnLegendComboBox.ListProperties.DisplayMember      = "";
     this.FirstDisplayOnLegendComboBox.Location              = new System.Drawing.Point(8, 37);
     this.FirstDisplayOnLegendComboBox.Name                  = "FirstDisplayOnLegendComboBox";
     this.FirstDisplayOnLegendComboBox.Size                  = new System.Drawing.Size(152, 21);
     this.FirstDisplayOnLegendComboBox.TabIndex              = 6;
     this.FirstDisplayOnLegendComboBox.SelectedIndexChanged += new System.EventHandler(this.FirstDisplayOnLegendComboBox_SelectedIndexChanged);
     //
     // FirstSeriesLegendModeComboBox
     //
     this.FirstSeriesLegendModeComboBox.ListProperties.CheckBoxDataMember = "";
     this.FirstSeriesLegendModeComboBox.ListProperties.DataSource         = null;
     this.FirstSeriesLegendModeComboBox.ListProperties.DisplayMember      = "";
     this.FirstSeriesLegendModeComboBox.Location              = new System.Drawing.Point(8, 84);
     this.FirstSeriesLegendModeComboBox.Name                  = "FirstSeriesLegendModeComboBox";
     this.FirstSeriesLegendModeComboBox.Size                  = new System.Drawing.Size(152, 21);
     this.FirstSeriesLegendModeComboBox.TabIndex              = 6;
     this.FirstSeriesLegendModeComboBox.SelectedIndexChanged += new System.EventHandler(this.FirstSeriesLegendModeComboBox_SelectedIndexChanged);
     //
     // FirstSeriesFormatTextBox
     //
     this.FirstSeriesFormatTextBox.Location     = new System.Drawing.Point(8, 131);
     this.FirstSeriesFormatTextBox.Name         = "FirstSeriesFormatTextBox";
     this.FirstSeriesFormatTextBox.Size         = new System.Drawing.Size(152, 18);
     this.FirstSeriesFormatTextBox.TabIndex     = 6;
     this.FirstSeriesFormatTextBox.Text         = "FirstSeriesFormatTextBox";
     this.FirstSeriesFormatTextBox.TextChanged += new System.EventHandler(this.FirstSeriesFormatTextBox_TextChanged);
     //
     // FirstTextStyleButton
     //
     this.FirstTextStyleButton.Location = new System.Drawing.Point(8, 156);
     this.FirstTextStyleButton.Name     = "FirstTextStyleButton";
     this.FirstTextStyleButton.Size     = new System.Drawing.Size(152, 23);
     this.FirstTextStyleButton.TabIndex = 3;
     this.FirstTextStyleButton.Text     = "Text Style";
     this.FirstTextStyleButton.Click   += new System.EventHandler(this.FirstTextStyleButton_Click);
     //
     // SecondSerieGroupBox
     //
     this.SecondSerieGroupBox.Controls.Add(this.label1);
     this.SecondSerieGroupBox.Controls.Add(this.label6);
     this.SecondSerieGroupBox.Controls.Add(this.label9);
     this.SecondSerieGroupBox.Controls.Add(this.SecondDisplayOnLegendComboBox);
     this.SecondSerieGroupBox.Controls.Add(this.SecondSeriesLegendModeComboBox);
     this.SecondSerieGroupBox.Controls.Add(this.SecondSeriesFormatTextBox);
     this.SecondSerieGroupBox.Controls.Add(this.SecondTextStyleButton);
     this.SecondSerieGroupBox.ImageIndex = 0;
     this.SecondSerieGroupBox.Location   = new System.Drawing.Point(8, 184);
     this.SecondSerieGroupBox.Name       = "SecondSerieGroupBox";
     this.SecondSerieGroupBox.Size       = new System.Drawing.Size(168, 184);
     this.SecondSerieGroupBox.TabIndex   = 1;
     this.SecondSerieGroupBox.TabStop    = false;
     this.SecondSerieGroupBox.Text       = "Second series";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(152, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Display on legend:";
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(8, 64);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(152, 16);
     this.label6.TabIndex  = 5;
     this.label6.Text      = "Series legend mode:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(8, 104);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(152, 16);
     this.label9.TabIndex  = 5;
     this.label9.Text      = "Format:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // SecondDisplayOnLegendComboBox
     //
     this.SecondDisplayOnLegendComboBox.ListProperties.CheckBoxDataMember = "";
     this.SecondDisplayOnLegendComboBox.ListProperties.DataSource         = null;
     this.SecondDisplayOnLegendComboBox.ListProperties.DisplayMember      = "";
     this.SecondDisplayOnLegendComboBox.Location              = new System.Drawing.Point(8, 32);
     this.SecondDisplayOnLegendComboBox.Name                  = "SecondDisplayOnLegendComboBox";
     this.SecondDisplayOnLegendComboBox.Size                  = new System.Drawing.Size(152, 21);
     this.SecondDisplayOnLegendComboBox.TabIndex              = 7;
     this.SecondDisplayOnLegendComboBox.SelectedIndexChanged += new System.EventHandler(this.SecondDisplayOnLegendComboBox_SelectedIndexChanged);
     //
     // SecondSeriesLegendModeComboBox
     //
     this.SecondSeriesLegendModeComboBox.ListProperties.CheckBoxDataMember = "";
     this.SecondSeriesLegendModeComboBox.ListProperties.DataSource         = null;
     this.SecondSeriesLegendModeComboBox.ListProperties.DisplayMember      = "";
     this.SecondSeriesLegendModeComboBox.Location              = new System.Drawing.Point(8, 80);
     this.SecondSeriesLegendModeComboBox.Name                  = "SecondSeriesLegendModeComboBox";
     this.SecondSeriesLegendModeComboBox.Size                  = new System.Drawing.Size(152, 21);
     this.SecondSeriesLegendModeComboBox.TabIndex              = 7;
     this.SecondSeriesLegendModeComboBox.SelectedIndexChanged += new System.EventHandler(this.SecondSeriesLegendModeComboBox_SelectedIndexChanged);
     //
     // SecondSeriesFormatTextBox
     //
     this.SecondSeriesFormatTextBox.Location     = new System.Drawing.Point(8, 128);
     this.SecondSeriesFormatTextBox.Name         = "SecondSeriesFormatTextBox";
     this.SecondSeriesFormatTextBox.Size         = new System.Drawing.Size(152, 18);
     this.SecondSeriesFormatTextBox.TabIndex     = 7;
     this.SecondSeriesFormatTextBox.Text         = "textBox1";
     this.SecondSeriesFormatTextBox.TextChanged += new System.EventHandler(this.SecondSeriesFormatTextBox_TextChanged);
     //
     // SecondTextStyleButton
     //
     this.SecondTextStyleButton.Location = new System.Drawing.Point(8, 152);
     this.SecondTextStyleButton.Name     = "SecondTextStyleButton";
     this.SecondTextStyleButton.Size     = new System.Drawing.Size(152, 23);
     this.SecondTextStyleButton.TabIndex = 4;
     this.SecondTextStyleButton.Text     = "Text Style";
     this.SecondTextStyleButton.Click   += new System.EventHandler(this.SecondTextStyleButton_Click);
     //
     // ThirdSerieGroupBox
     //
     this.ThirdSerieGroupBox.Controls.Add(this.label2);
     this.ThirdSerieGroupBox.Controls.Add(this.label4);
     this.ThirdSerieGroupBox.Controls.Add(this.label7);
     this.ThirdSerieGroupBox.Controls.Add(this.ThirdDisplayOnLegendComboBox);
     this.ThirdSerieGroupBox.Controls.Add(this.ThirdSeriesLegendModeComboBox);
     this.ThirdSerieGroupBox.Controls.Add(this.ThirdSeriesFormatTextBox);
     this.ThirdSerieGroupBox.Controls.Add(this.ThirdTextStyleButton);
     this.ThirdSerieGroupBox.ImageIndex = 0;
     this.ThirdSerieGroupBox.Location   = new System.Drawing.Point(8, 368);
     this.ThirdSerieGroupBox.Name       = "ThirdSerieGroupBox";
     this.ThirdSerieGroupBox.Size       = new System.Drawing.Size(168, 184);
     this.ThirdSerieGroupBox.TabIndex   = 2;
     this.ThirdSerieGroupBox.TabStop    = false;
     this.ThirdSerieGroupBox.Text       = "Third series";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(152, 16);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Display on legend:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(8, 63);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(152, 16);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "Series legend mode:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(8, 110);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(152, 16);
     this.label7.TabIndex  = 3;
     this.label7.Text      = "Format:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ThirdDisplayOnLegendComboBox
     //
     this.ThirdDisplayOnLegendComboBox.ListProperties.CheckBoxDataMember = "";
     this.ThirdDisplayOnLegendComboBox.ListProperties.DataSource         = null;
     this.ThirdDisplayOnLegendComboBox.ListProperties.DisplayMember      = "";
     this.ThirdDisplayOnLegendComboBox.Location              = new System.Drawing.Point(8, 37);
     this.ThirdDisplayOnLegendComboBox.Name                  = "ThirdDisplayOnLegendComboBox";
     this.ThirdDisplayOnLegendComboBox.Size                  = new System.Drawing.Size(152, 21);
     this.ThirdDisplayOnLegendComboBox.TabIndex              = 8;
     this.ThirdDisplayOnLegendComboBox.SelectedIndexChanged += new System.EventHandler(this.ThirdDisplayOnLegendComboBox_SelectedIndexChanged);
     //
     // ThirdSeriesLegendModeComboBox
     //
     this.ThirdSeriesLegendModeComboBox.ListProperties.CheckBoxDataMember = "";
     this.ThirdSeriesLegendModeComboBox.ListProperties.DataSource         = null;
     this.ThirdSeriesLegendModeComboBox.ListProperties.DisplayMember      = "";
     this.ThirdSeriesLegendModeComboBox.Location              = new System.Drawing.Point(8, 84);
     this.ThirdSeriesLegendModeComboBox.Name                  = "ThirdSeriesLegendModeComboBox";
     this.ThirdSeriesLegendModeComboBox.Size                  = new System.Drawing.Size(152, 21);
     this.ThirdSeriesLegendModeComboBox.TabIndex              = 8;
     this.ThirdSeriesLegendModeComboBox.SelectedIndexChanged += new System.EventHandler(this.ThirdSeriesLegendModeComboBox_SelectedIndexChanged);
     //
     // ThirdSeriesFormatTextBox
     //
     this.ThirdSeriesFormatTextBox.Location     = new System.Drawing.Point(8, 131);
     this.ThirdSeriesFormatTextBox.Name         = "ThirdSeriesFormatTextBox";
     this.ThirdSeriesFormatTextBox.Size         = new System.Drawing.Size(152, 18);
     this.ThirdSeriesFormatTextBox.TabIndex     = 8;
     this.ThirdSeriesFormatTextBox.Text         = "textBox1";
     this.ThirdSeriesFormatTextBox.TextChanged += new System.EventHandler(this.ThirdSeriesFormatTextBox_TextChanged);
     //
     // ThirdTextStyleButton
     //
     this.ThirdTextStyleButton.Location = new System.Drawing.Point(8, 156);
     this.ThirdTextStyleButton.Name     = "ThirdTextStyleButton";
     this.ThirdTextStyleButton.Size     = new System.Drawing.Size(152, 23);
     this.ThirdTextStyleButton.TabIndex = 5;
     this.ThirdTextStyleButton.Text     = "Text Style";
     this.ThirdTextStyleButton.Click   += new System.EventHandler(this.ThirdTextStyleButton_Click);
     //
     // PositiveDataButton
     //
     this.PositiveDataButton.Location = new System.Drawing.Point(8, 64);
     this.PositiveDataButton.Name     = "PositiveDataButton";
     this.PositiveDataButton.Size     = new System.Drawing.Size(152, 23);
     this.PositiveDataButton.TabIndex = 3;
     this.PositiveDataButton.Text     = "Positive data";
     this.PositiveDataButton.Click   += new System.EventHandler(this.PositiveDataButton_Click);
     //
     // PositiveAndNegativeDataButton
     //
     this.PositiveAndNegativeDataButton.Location = new System.Drawing.Point(8, 88);
     this.PositiveAndNegativeDataButton.Name     = "PositiveAndNegativeDataButton";
     this.PositiveAndNegativeDataButton.Size     = new System.Drawing.Size(152, 23);
     this.PositiveAndNegativeDataButton.TabIndex = 4;
     this.PositiveAndNegativeDataButton.Text     = "Positive and Negative data";
     this.PositiveAndNegativeDataButton.Click   += new System.EventHandler(this.PositiveAndNegativeDataButton_Click);
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(8, 32);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(72, 20);
     this.label8.TabIndex  = 5;
     this.label8.Text      = "Data points:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // DataPointsNumericUpDown
     //
     this.DataPointsNumericUpDown.Location = new System.Drawing.Point(80, 32);
     this.DataPointsNumericUpDown.Maximum  = new decimal(new int[] {
         15,
         0,
         0,
         0
     });
     this.DataPointsNumericUpDown.Name     = "DataPointsNumericUpDown";
     this.DataPointsNumericUpDown.Size     = new System.Drawing.Size(80, 20);
     this.DataPointsNumericUpDown.TabIndex = 0;
     this.DataPointsNumericUpDown.Value    = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     //
     // DataGroupBox
     //
     this.DataGroupBox.Controls.Add(this.label8);
     this.DataGroupBox.Controls.Add(this.PositiveAndNegativeDataButton);
     this.DataGroupBox.Controls.Add(this.DataPointsNumericUpDown);
     this.DataGroupBox.Controls.Add(this.PositiveDataButton);
     this.DataGroupBox.Location = new System.Drawing.Point(8, 552);
     this.DataGroupBox.Name     = "DataGroupBox";
     this.DataGroupBox.Size     = new System.Drawing.Size(168, 120);
     this.DataGroupBox.TabIndex = 6;
     this.DataGroupBox.TabStop  = false;
     this.DataGroupBox.Text     = "Data";
     //
     // NLegendSeriesAssignmentUC
     //
     this.Controls.Add(this.DataGroupBox);
     this.Controls.Add(this.ThirdSerieGroupBox);
     this.Controls.Add(this.SecondSerieGroupBox);
     this.Controls.Add(this.FirstSerieGroupBox);
     this.Name = "NLegendSeriesAssignmentUC";
     this.Size = new System.Drawing.Size(180, 680);
     this.FirstSerieGroupBox.ResumeLayout(false);
     this.SecondSerieGroupBox.ResumeLayout(false);
     this.ThirdSerieGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DataPointsNumericUpDown)).EndInit();
     this.DataGroupBox.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AboutForm));
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.linkLabel1  = new System.Windows.Forms.LinkLabel();
     this.label1      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.label3      = new System.Windows.Forms.Label();
     this.label4      = new System.Windows.Forms.Label();
     this.linkLabel2  = new System.Windows.Forms.LinkLabel();
     this.button1     = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(8, 8);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(100, 82);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // linkLabel1
     //
     this.linkLabel1.Location     = new System.Drawing.Point(8, 160);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(288, 16);
     this.linkLabel1.TabIndex     = 1;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "Visit Davide Homepage";
     this.linkLabel1.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 96);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(288, 56);
     this.label1.TabIndex = 2;
     this.label1.Text     = "With RegExTest you can fully test your regular expression against a target text. " +
                            "RegExTest allows you even to use and test grouping functions.";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(108, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(180, 32);
     this.label2.TabIndex = 3;
     this.label2.Text     = "RegExTest";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(112, 36);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(176, 20);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Regular Expression Tester";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(112, 56);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(176, 23);
     this.label4.TabIndex = 5;
     this.label4.Text     = "(c) Davide Mauri 2002/2003";
     //
     // linkLabel2
     //
     this.linkLabel2.Location     = new System.Drawing.Point(8, 176);
     this.linkLabel2.Name         = "linkLabel2";
     this.linkLabel2.Size         = new System.Drawing.Size(288, 16);
     this.linkLabel2.TabIndex     = 6;
     this.linkLabel2.TabStop      = true;
     this.linkLabel2.Text         = "Visit SourceForge Project Page (Support and download)";
     this.linkLabel2.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button1.Location  = new System.Drawing.Point(112, 200);
     this.button1.Name      = "button1";
     this.button1.TabIndex  = 7;
     this.button1.Text      = "Close";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // FormAbout
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(298, 226);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.linkLabel2);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.pictureBox1);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "AboutForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "About";
     this.ResumeLayout(false);
 }