Inheritance: TextBoxBase
    	public void buildGui()
    	{
    		var topPanel = this.add_Panel();
    		Path = topPanel.insert_Above<TextBox>(20);
			sourceCode = topPanel.add_SourceCodeEditor();
			dataGridView = sourceCode.insert_Above<Panel>(100).add_DataGridView();
			leftPanel = topPanel.insert_Left<Panel>(300);									
			
			Path.onEnter(loadFiles);
			Path.onDrop(
				(fileOrFolder)=>{
									Path.set_Text(fileOrFolder);
									loadFiles(fileOrFolder);
								}); 	   	   	   	   
			dataGridView.SelectionChanged+= 
				(sender,e) => {
						if (dataGridView.SelectedRows.size() == 1)
						{
							var selectedRow = dataGridView.SelectedRows[0]; 
							var filePath = selectedRow.Cells[0].Value.str();
							var filename = selectedRow.Cells[1].Value.str();
							var lineNumber = selectedRow.Cells[2].Value.str();
							"opening up source code: {0}".info(filePath);
							sourceCode.open(filePath.pathCombine(filename));  
							sourceCode.gotoLine(lineNumber.toInt() + 1);
							dataGridView.focus();
						}
				  };
								
		}
        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]);
            }
        }
示例#3
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;
		}
示例#4
0
 public ProcessLayer()
 {
     m_lb_Status = null;
     m_txt_Log = null;
     bIsRun = false;
     bIsShow = false;
 }
示例#5
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Labelled));
     this.groupBox1 = new GroupBox();
     this.textBox1 = new TextBox();
     this.groupBox1.SuspendLayout();
     base.SuspendLayout();
     this.groupBox1.Controls.Add(this.textBox1);
     this.groupBox1.Location = new Point(13, 10);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new Size(0x128, 0x189);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "标签说明:";
     this.textBox1.Location = new Point(7, 0x15);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Size(0x11b, 0x162);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text = resources.GetString("textBox1.Text");
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x141, 0x199);
     base.Controls.Add(this.groupBox1);
     base.FormBorderStyle = FormBorderStyle.FixedDialog;
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "Labelled";
     base.StartPosition = FormStartPosition.CenterScreen;
     this.Text = "Labelled";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     base.ResumeLayout(false);
 }
示例#6
0
        public ByteArrayPanel( ResourceContentControl parentControl )
        {
            textHexCheckBox = new CheckBox( );
            textBox = new TextBox( );

            SuspendLayout( );

            Dock = DockStyle.Fill;
            DockPadding.All = 5;

            textHexCheckBox.FlatStyle = FlatStyle.System;
            textHexCheckBox.Location = new Point( 3, 3 );
            textHexCheckBox.TabIndex = 1;
            textHexCheckBox.Text = "Show as Hex";
            textHexCheckBox.Checked = false;
            textHexCheckBox.CheckedChanged += new EventHandler( OnCheckedChangedTextCheckBox );

            textBox.Location = new Point( 3, 30 );
            textBox.Multiline = true;
            textBox.ReadOnly = true;
            textBox.ScrollBars = ScrollBars.Vertical;
            textBox.Font = new Font( FontFamily.GenericMonospace, 8 );
            textBox.WordWrap = true;

            Controls.Add( textBox );
            Controls.Add( textHexCheckBox );

            ResumeLayout( false );
        }
        static void Main(string[] args)
        {
            int n = 4;

            int[] nizBrojeva;  // deklaracija reference na niz

            // TODO: nizBrojeva inicijalizirati kao niz duljine n (pojedine èlanove ostaviti neinicijaliziranima) te ispisati sve èlanove takvog neinicijaliziranog niza




            Control[] nizKontrola;  // deklaracija reference na niz 

            // TODO: nizKontrola inicijalizirati kao niz duljine n (pojedine èlanove ostaviti neinicijaliziranima) te ispisati sve èlanove takvog neinicijaliziranog niza




            // TODO: Pokrenuti program te ispis prekopirati u datoteku "InicijalizacijaNiza.txt" u ovom projektu. Obrazložiti ispise u gornja dva sluèaja.

            // inicijalizacija pojedinih èlanova
            nizKontrola[0] = new Button();
            nizKontrola[1] = new Form();
            nizKontrola[2] = nizKontrola[0];
            nizKontrola[3] = new TextBox();

            for (int i = 0; i < n; ++i)
            {
                Console.WriteLine(string.Format("{0}. kontrola: {1}", i, nizKontrola[i]));
            }

            Console.WriteLine("GOTOVO!!!");
            Console.ReadKey();
        }
        public void TestShowWithEvents()
        {
            //---------------Set up test pack-------------------
            System.Windows.Forms.DateTimePicker dateTimePicker = new System.Windows.Forms.DateTimePicker();
            dateTimePicker.ShowCheckBox = true;
            System.Windows.Forms.Form form = new System.Windows.Forms.Form();
            System.Windows.Forms.TextBox textBox = new System.Windows.Forms.TextBox();
            form.Controls.Add(textBox);
            textBox.Dock = System.Windows.Forms.DockStyle.Fill;
            textBox.Multiline = true;
            form.Controls.Add(dateTimePicker);
            dateTimePicker.Dock = System.Windows.Forms.DockStyle.Top;
            dateTimePicker.ValueChanged += delegate
                                               {
                                                   textBox.Text += "EventFired";
                                               };
            System.Windows.Forms.Button button = new System.Windows.Forms.Button();
            form.Controls.Add(button);
            button.Dock = System.Windows.Forms.DockStyle.Bottom;
            button.Click += delegate
                                {
                                    dateTimePicker.Checked = !dateTimePicker.Checked;
                                };
            //-------------Assert Preconditions -------------

            //---------------Execute Test ----------------------
            form.ShowDialog();
            //---------------Test Result -----------------------

        }
示例#9
0
 public FindGolfIdDialog(ref TextBox tb)
 {
     this.tb = tb;
     InitializeComponent();
     golfId_textBox.Text = this.tb.Text;
     UpdateTable();
 }
示例#10
0
        // Default Constructor
        //
        // Requires the passing of Main_Screen (object of type Main:Form) to allow
        // for all other classes to interface with the main UI to allow for both
        // debug updates and progress reports.
        public ErrorHandler(Main Main_Screen)
        {
            // Initializes the localized reference form objects
            ErrorBox = Main_Screen.textBox1;

            MainUIReference = Main_Screen;
        }
示例#11
0
        public MirTextBox()
        {
            BackColour = Color.Black;

            TextBox = new TextBox
            {

                BackColor = BackColour,
                BorderStyle = BorderStyle.None,
                Font = new Font(Settings.FontName, 10F),
                ForeColor = ForeColour,
                Location = DisplayLocation,
                Size = Size,
                Visible = Visible,
                Tag = this,

            };

            TextBox.VisibleChanged += TextBox_VisibleChanged;
            TextBox.ParentChanged += TextBox_VisibleChanged;
            TextBox.KeyUp += TextBoxOnKeyUp;
            Shown += MirTextBox_Shown;
            TextBox.MouseMove += CMain.CMain_MouseMove;

            //    TextBox.TextChanged += new EventHandler(TextBox_TextChanged);
               //     TextBox.AutoCompleteSource =
             //           AutoCompleteSource.CustomSource;
             //   TextBox.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
        }
示例#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.button1 = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(56, 64);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(168, 80);
     this.button1.TabIndex = 0;
     this.button1.Text = "button1";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(64, 184);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(176, 20);
     this.textBox1.TabIndex = 1;
     this.textBox1.Text = "textBox1";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(292, 273);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this.textBox1,
                                                                   this.button1});
     this.Name = "Form1";
     this.Text = "Form1";
     this.ResumeLayout(false);
 }
示例#13
0
        private ChemtoolsGui()
        {
            this.Text = "ChemTools";
            this.Size = new Size(640, 640);

            input = new TextBox();
            input.Location = new Point(20, 20);
            input.Size = new Size(250, 20);
            input.TextChanged += new EventHandler(InputChanged);
            input.KeyDown += new KeyEventHandler(InputKeyDown);

            output = new RichTextBox();
            output.Location = new Point(50, 160);
            output.Size = new Size(250, 300);

            savedList = new ListBox();
            savedList.Location = new Point(300, 20);
            savedList.Size = new Size(300, 120);
            savedList.SelectedIndexChanged += new EventHandler(ListSelectChange);
            savedList.KeyDown += new KeyEventHandler(ListKeyDown);
            savedList.BeginUpdate();
            savedList.Items.Add("H2O");
            savedList.Items.Add("CO2");
            savedList.Items.Add("C4H10+O2=CO2+H2O");
            savedList.Items.Add("44.0095gCO2");
            savedList.EndUpdate();

            savedOutput = new RichTextBox();
            savedOutput.Location = new Point(300, 160);
            savedOutput.Size = new Size(250, 300);

            btnAdd = new Button();
            btnAdd.Location = new Point(180, 50);
            btnAdd.Text = "Save";
            btnAdd.Click += new EventHandler(AddClick);

            btnDelete = new Button();
            btnDelete.Location = new Point(180, 100);
            btnDelete.Text = "Delete";
            btnDelete.Click += new EventHandler(DeleteClick);

            btnClear = new Button();
            btnClear.Location = new Point(20, 50);
            btnClear.Text = "Clear";
            btnClear.Click += new EventHandler(ClearClick);

            btnReset = new Button();
            btnReset.Location = new Point(20, 100);
            btnReset.Text = "Reset All";
            btnReset.Click += new EventHandler(ResetClick);

            this.Controls.Add(input);
            this.Controls.Add(output);
            this.Controls.Add(savedList);
            this.Controls.Add(savedOutput);
            this.Controls.Add(btnAdd);
            this.Controls.Add(btnDelete);
            this.Controls.Add(btnClear);
            this.Controls.Add(btnReset);
        }
示例#14
0
文件: Login.cs 项目: stevesloka/bvcms
		private void onLoginLoad(object sender, EventArgs e)
		{
			this.CenterToScreen();
			this.Location = new Point(this.Location.X, this.Location.Y / 2);

			updateViews();

			//if (Program.settings.popupForVersion < 1) {
			//	MessageBox.Show("The Check-In program has been updated,\nplease verify the following settings:\n\n" +
			//		"Login Page\n\n- Server name (e.g. <yourchurch>.tpsdb.com)\n- Username\n- Password\n- Printer\n- Advanced Page Size (Optional)\n\n" +
			//		"Settings Page\n\n- Campus\n- Early Checkin Hours\n- Late Checkin Minutes\n- Checkboxes at the bottom", "New Version", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

			//	Program.settings.setPopupForVersion(1);
			//}

			keyboard = new CommonKeyboard(this);
			keyboard.Show();
			attachKeyboard();

			URL.Text = Program.settings.subdomain;
			username.Text = Program.settings.user;

			if (username.Text.Length > 0) {
				current = password;
				this.ActiveControl = password;
			} else {
				current = URL;
				this.ActiveControl = URL;
			}
		}
示例#15
0
		public simple_node_editor(simple_element se,node_info ninf,NodeGenerator.NodeGenerator _ng)
		{
			InitializeComponent();
			if (se!=null)
			{
				extended_simple_element ese=se as extended_simple_element;
				if (ese!=null)
				{
					this.se=ese;
				}
				else
				{
					this.se=new extended_simple_element();
					this.se.val_field_type_name=se.val_field_type_name;
					this.se.field_name=se.field_name;
					this.se.field_type=se.field_type;
				}
			}
			if (this.se==null)
			{
				this.se=new extended_simple_element();
			}
			this.ninf=ninf;
			this.ng=_ng;

			set_element();
		}
示例#16
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();
 }
 /// <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);
 }
示例#18
0
        /// <summary>
        /// @author:khoaht
        /// @cratedate:9/17/2008
        /// @description: Lay dinh dang diem
        /// </summary>
        /// <param name="txtBox"></param>
        public static void GetMarkString(TextBox txtBox)
        {
            string mark = txtBox.Text;
            string strMark = "";
            if (mark.Length == 1)
            {
                if (char.IsNumber(mark[0]))
                    strMark = mark;
            }
            else if (mark.Length == 2)
            {
                if (char.IsNumber(mark[0]) && char.IsNumber(mark[1]))
                    strMark = mark[0] + "." + mark[1];
            }
            else if (mark.Length == 3)
            {
                if (char.IsNumber(mark[0]) && char.IsNumber(mark[2]) && mark[1] == '.')
                    strMark = mark;
            }
            else if (mark.Length == 4)
            {
                if (char.IsNumber(mark[0]) && char.IsNumber(mark[2]) && char.IsNumber(mark[3]))
                    strMark = mark[0] + "." + mark[2] + mark[3];
            }
            else if (mark.Length > 4)
                strMark = mark.Substring(3, 1);

            txtBox.Text = strMark;
            txtBox.SelectionStart = strMark.Length;
        }
        public ProjectReferencePanel(ISelectReferenceDialog selectDialog)
        {
            this.selectDialog = selectDialog;

            ColumnHeader nameHeader = new ColumnHeader();
            nameHeader.Text  = ResourceService.GetString("Dialog.SelectReferenceDialog.ProjectReferencePanel.NameHeader");
            nameHeader.Width = 170;
            Columns.Add(nameHeader);

            ColumnHeader directoryHeader = new ColumnHeader();
            directoryHeader.Text  = ResourceService.GetString("Dialog.SelectReferenceDialog.ProjectReferencePanel.DirectoryHeader");
            directoryHeader.Width = 290;
            Columns.Add(directoryHeader);

            View = View.Details;
            Dock = DockStyle.Fill;
            FullRowSelect = true;

            ItemActivate += delegate { AddReference(); };
            PopulateListView();

            Panel upperPanel = new Panel { Dock = DockStyle.Top, Height = 20 };
            filterTextBox = new TextBox { Width = 150, Dock = DockStyle.Right };
            filterTextBox.TextChanged += delegate { Search(); };

            upperPanel.Controls.Add(filterTextBox);

            this.Controls.Add(upperPanel);
        }
示例#20
0
 private void setChange(TextBox txt1, TextBox txt2)
 {
     txt1.Text = "";
     txt2.Text = "";
     txt1.Enabled = !txt1.Enabled;
     txt2.Enabled = !txt2.Enabled;
 }
        private void btnAdd_Click(object sender, EventArgs e)
        {
            if (initAdd != maxAdd)
            {
                TextBox txF = new TextBox();
                TextBox txL = new TextBox();
                TextBox txM = new TextBox();

                initY += 36;

                recpt.addTextBox(txF, 6, initY, 220, 30, "txtFname" + initAdd.ToString());
                recpt.addTextBox(txL, 235, initY, 220, 30, "txtLname" + initAdd.ToString());
                recpt.addTextBox(txM, 464, initY, 220, 30, "txtEmail" + initAdd.ToString());
                btnAdd.Location = new Point(690, initY);
                btnRemove.Location = new Point(727, initY);

                initAdd++;

                this.panel1.Controls.Add(txF);
                this.panel1.Controls.Add(txL);
                this.panel1.Controls.Add(txM);
            }
            else
            {
                btnAdd.Visible = false;
            }
        }
示例#22
0
 internal void ShowFormGetWebURL(TextBox targetTextbox)
 {
     _targetTextbox = targetTextbox;
     this.Show();
     this.BringToFront();
     //selectDefaultNodeSafely();
 }
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="AFilterFindPanelObject">The FilterFindPanel Object on the main form</param>
        /// <param name="ASuspenseAccountsAllowed">Used to determine if the suspense accounts control be shown.</param>
        public TUC_AccountsListFilterFind(TFilterAndFindPanel AFilterFindPanelObject, bool ASuspenseAccountsAllowed)
        {
            FSuspenseAccountsAllowed = ASuspenseAccountsAllowed;

            FFilterTxtAccountCode = (TextBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("txtAccountCode");
            FFilterCmbAccountType = (TCmbAutoComplete)AFilterFindPanelObject.FilterPanelControls.FindControlByName("cmbAccountType");
            FFilterTxtDescrEnglish = (TextBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("txtDescrEnglish");
            FFilterTxtDescrLocal = (TextBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("txtDescrLocal");
            FFilterChkBankAccount = (CheckBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("chkBankAccount");

            if (ASuspenseAccountsAllowed)
            {
                FFilterChkSuspenseAccount = (CheckBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("chkSuspenseAccount");
            }

            FFilterChkActive = (CheckBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("chkActive");
            FFilterChkSummary = (CheckBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("chkSummary");
            FFilterChkForeign = (CheckBox)AFilterFindPanelObject.FilterPanelControls.FindControlByName("chkForeign");

            FFindTxtAccountCode = (TextBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("txtAccountCode");
            FFindCmbAccountType = (TCmbAutoComplete)AFilterFindPanelObject.FindPanelControls.FindControlByName("cmbAccountType");
            FFindTxtDescrEnglish = (TextBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("txtDescrEnglish");
            FFindTxtDescrLocal = (TextBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("txtDescrLocal");
            FFindChkBankAccount = (CheckBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("chkBankAccount");

            if (ASuspenseAccountsAllowed)
            {
                FFindChkSuspenseAccount = (CheckBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("chkSuspenseAccount");
            }

            FFindChkActive = (CheckBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("chkActive");
            FFindChkSummary = (CheckBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("chkSummary");
            FFindChkForeign = (CheckBox)AFilterFindPanelObject.FindPanelControls.FindControlByName("chkForeign");
        }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.textBoxOutput = new System.Windows.Forms.TextBox();
			this.SuspendLayout();
			// 
			// textBoxOutput
			// 
			this.textBoxOutput.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.textBoxOutput.Location = new System.Drawing.Point(8, 8);
			this.textBoxOutput.Multiline = true;
			this.textBoxOutput.Name = "textBoxOutput";
			this.textBoxOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.textBoxOutput.Size = new System.Drawing.Size(832, 552);
			this.textBoxOutput.TabIndex = 0;
			this.textBoxOutput.Text = "";
			this.textBoxOutput.WordWrap = false;
			// 
			// SimpleOutputForm
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(848, 566);
			this.Controls.Add(this.textBoxOutput);
			this.Name = "SimpleOutputForm";
			this.Text = "SimpleOutputForm";
			this.ResumeLayout(false);

		}
示例#25
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.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);

		}
 /// <summary>
 /// Та же самая проверка только массивом
 /// </summary>
 /// <param name="_textBox"></param>
 /// <param name="_message"></param>
 /// <returns></returns>
 public static bool Checking_TextBox(TextBox[] _textBox , String[] _message)
 {
     for ( int i = 0; i < _textBox.Length; i++ )
         if ( !Checking_TextBox( _textBox[i] , _message[i] ) )   //Если хоть один false то нет смысла проверять остальные
             return false;
     return true;
 }
 public VendingDisplayController(TextBox displayTextBox, ICoinPurse coinPurse)
 {
     Display = displayTextBox;
     CoinPurse = coinPurse;
     CoinPurse.RegisterObserver(this);
     DisplayMessage(IntialMessage);
 }
示例#28
0
        private void InitialiseComponent()
        {
            this.OKButton = new Button();
            this.CancelButton = new Button();
            this.UserInput = new TextBox();

            //Form Properties
            this.Size = new System.Drawing.Size(280, 160);

            //OKButton Properties
            this.OKButton.Location = new System.Drawing.Point(10, 60);
            this.OKButton.Size = new System.Drawing.Size(120, 20);
            this.OKButton.Click += new EventHandler(OKButtonClicked);
            this.OKButton.Enabled = false; //unclickable until user inputs string in the search field
            this.OKButton.Text = "Retrieve WebPage";

            //CancelButton Properties
            this.CancelButton.Location = new System.Drawing.Point(140, 60);
            this.CancelButton.Size = new System.Drawing.Size(120,20);
            this.CancelButton.Click+= new EventHandler(CancelButtonClicked);
            this.CancelButton.Text = "Cancel";

            //UserInput Properties
            this.UserInput.Location = new System.Drawing.Point(0,0);//10,25
            this.UserInput.TextChanged+=new EventHandler(UserInputTextChanged);
            this.UserInput.Size = new System.Drawing.Size(230, 10);

            //Controls
            this.Controls.AddRange(new Control[] { this.OKButton, this.CancelButton, this.UserInput });
        }
示例#29
0
 internal CustomListBoxTextEditor(CustomListBox listBox, TextBox textBox)
 {
     _listBox = listBox;
     _textBox = textBox;
     _textBox.Validating += OnValidating;
     _textBox.KeyDown += OnKeyDown;
 }
示例#30
0
        private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.button1.Location = new System.Drawing.Point(245, 0);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(45, 42);
            this.button1.TabIndex = 0;
            this.button1.Text = "Find";
            this.button1.UseVisualStyleBackColor = true;
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(0, 12);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(230, 20);
            this.textBox1.TabIndex = 1;
            // 
            // frmFind
            // 
            this.ClientSize = new System.Drawing.Size(292, 56);
            this.Controls.Add(this.textBox1);
            this.Controls.Add(this.button1);
            this.Name = "frmFind";
            this.Text = "Find";
            this.ResumeLayout(false);
            this.PerformLayout();

        }
示例#31
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.txtExcelPath    = new System.Windows.Forms.TextBox();
     this.label1          = new System.Windows.Forms.Label();
     this.cmbTableName    = new System.Windows.Forms.ComboBox();
     this.label2          = new System.Windows.Forms.Label();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.btnDialog       = new DevComponents.DotNetBar.ButtonX();
     this.btnSure         = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // txtExcelPath
     //
     this.txtExcelPath.Location = new System.Drawing.Point(56, 16);
     this.txtExcelPath.Name     = "txtExcelPath";
     this.txtExcelPath.ReadOnly = true;
     this.txtExcelPath.Size     = new System.Drawing.Size(200, 21);
     this.txtExcelPath.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 20);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(42, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "路径:";
     //
     // cmbTableName
     //
     this.cmbTableName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTableName.Location      = new System.Drawing.Point(56, 48);
     this.cmbTableName.Name          = "cmbTableName";
     this.cmbTableName.Size          = new System.Drawing.Size(200, 20);
     this.cmbTableName.TabIndex      = 3;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 50);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(42, 16);
     this.label2.TabIndex = 5;
     this.label2.Text     = "表名:";
     //
     // btnDialog
     //
     this.btnDialog.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnDialog.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnDialog.Location       = new System.Drawing.Point(262, 14);
     this.btnDialog.Name           = "btnDialog";
     this.btnDialog.Size           = new System.Drawing.Size(41, 22);
     this.btnDialog.TabIndex       = 6;
     this.btnDialog.Text           = "...";
     this.btnDialog.Click         += new System.EventHandler(this.btnDialog_Click);
     //
     // btnSure
     //
     this.btnSure.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSure.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSure.Location       = new System.Drawing.Point(262, 46);
     this.btnSure.Name           = "btnSure";
     this.btnSure.Size           = new System.Drawing.Size(41, 22);
     this.btnSure.TabIndex       = 7;
     this.btnSure.Text           = "确定";
     this.btnSure.Click         += new System.EventHandler(this.btnSure_Click);
     //
     // frmExcelInfo
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(316, 93);
     this.Controls.Add(this.btnSure);
     this.Controls.Add(this.btnDialog);
     this.Controls.Add(this.cmbTableName);
     this.Controls.Add(this.txtExcelPath);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmExcelInfo";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "读取Excel条件设置";
     this.Load           += new System.EventHandler(this.frmExcelInfo_Load);
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.frmExcelInfo_Closing);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components   = new System.ComponentModel.Container();
     this.label5       = new System.Windows.Forms.Label();
     this.groupBox3    = new System.Windows.Forms.GroupBox();
     this.ddInterval   = new System.Windows.Forms.NumericUpDown();
     this.btnOK        = new System.Windows.Forms.Button();
     this.btnCancel    = new System.Windows.Forms.Button();
     this.groupBox4    = new System.Windows.Forms.GroupBox();
     this.efDBPassword = new System.Windows.Forms.TextBox();
     this.efRetypePwd  = new System.Windows.Forms.TextBox();
     this.label3       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.efDBUser     = new System.Windows.Forms.TextBox();
     this.label1       = new System.Windows.Forms.Label();
     this.efSystemDSN  = new System.Windows.Forms.TextBox();
     this.label7       = new System.Windows.Forms.Label();
     this.m_Validator  = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox2    = new System.Windows.Forms.GroupBox();
     this.cbEnableSSL  = new System.Windows.Forms.CheckBox();
     this.efSMTPport   = new System.Windows.Forms.TextBox();
     this.efSMTPpwd    = new System.Windows.Forms.TextBox();
     this.efSMTPretype = new System.Windows.Forms.TextBox();
     this.label6       = new System.Windows.Forms.Label();
     this.label8       = new System.Windows.Forms.Label();
     this.efSMTPuser   = new System.Windows.Forms.TextBox();
     this.label9       = new System.Windows.Forms.Label();
     this.label10      = new System.Windows.Forms.Label();
     this.efSMTPserver = new System.Windows.Forms.TextBox();
     this.label4       = new System.Windows.Forms.Label();
     this.groupBox5    = new System.Windows.Forms.GroupBox();
     this.label11      = new System.Windows.Forms.Label();
     this.efNotifyTo   = new System.Windows.Forms.TextBox();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddInterval)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_Validator)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.SuspendLayout();
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 24);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(104, 16);
     this.label5.TabIndex = 4;
     this.label5.Text     = "Interval (hours)";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.ddInterval);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Location = new System.Drawing.Point(8, 183);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(312, 56);
     this.groupBox3.TabIndex = 12;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Sync Interval";
     //
     // ddInterval
     //
     this.ddInterval.Location = new System.Drawing.Point(136, 20);
     this.ddInterval.Maximum  = new decimal(new int[] {
         24,
         0,
         0,
         0
     });
     this.ddInterval.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.ddInterval.Name     = "ddInterval";
     this.ddInterval.Size     = new System.Drawing.Size(160, 20);
     this.ddInterval.TabIndex = 13;
     this.ddInterval.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(338, 333);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new System.Drawing.Size(120, 24);
     this.btnOK.TabIndex = 14;
     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(530, 334);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(120, 24);
     this.btnCancel.TabIndex     = 15;
     this.btnCancel.Text         = "Cancel";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.efDBPassword);
     this.groupBox4.Controls.Add(this.efRetypePwd);
     this.groupBox4.Controls.Add(this.label3);
     this.groupBox4.Controls.Add(this.label2);
     this.groupBox4.Controls.Add(this.efDBUser);
     this.groupBox4.Controls.Add(this.label1);
     this.groupBox4.Controls.Add(this.efSystemDSN);
     this.groupBox4.Controls.Add(this.label7);
     this.groupBox4.Location = new System.Drawing.Point(8, 12);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(312, 154);
     this.groupBox4.TabIndex = 1;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "MySQL ODBC";
     //
     // efDBPassword
     //
     this.efDBPassword.Location     = new System.Drawing.Point(136, 81);
     this.efDBPassword.Name         = "efDBPassword";
     this.efDBPassword.PasswordChar = '*';
     this.efDBPassword.Size         = new System.Drawing.Size(160, 20);
     this.efDBPassword.TabIndex     = 15;
     //
     // efRetypePwd
     //
     this.efRetypePwd.Location     = new System.Drawing.Point(136, 116);
     this.efRetypePwd.Name         = "efRetypePwd";
     this.efRetypePwd.PasswordChar = '*';
     this.efRetypePwd.Size         = new System.Drawing.Size(160, 20);
     this.efRetypePwd.TabIndex     = 16;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 116);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(104, 16);
     this.label3.TabIndex = 13;
     this.label3.Text     = "Retype Password";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 83);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(104, 16);
     this.label2.TabIndex = 12;
     this.label2.Text     = "DB Password";
     //
     // efDBUser
     //
     this.efDBUser.Location = new System.Drawing.Point(136, 49);
     this.efDBUser.Name     = "efDBUser";
     this.efDBUser.Size     = new System.Drawing.Size(160, 20);
     this.efDBUser.TabIndex = 14;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 53);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(104, 16);
     this.label1.TabIndex = 11;
     this.label1.Text     = "DB User";
     //
     // efSystemDSN
     //
     this.efSystemDSN.CausesValidation = false;
     this.efSystemDSN.Location         = new System.Drawing.Point(136, 16);
     this.efSystemDSN.Name             = "efSystemDSN";
     this.efSystemDSN.Size             = new System.Drawing.Size(160, 20);
     this.efSystemDSN.TabIndex         = 2;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(16, 20);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(104, 16);
     this.label7.TabIndex = 0;
     this.label7.Text     = "System DSN";
     //
     // m_Validator
     //
     this.m_Validator.ContainerControl = this;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cbEnableSSL);
     this.groupBox2.Controls.Add(this.efSMTPport);
     this.groupBox2.Controls.Add(this.efSMTPpwd);
     this.groupBox2.Controls.Add(this.efSMTPretype);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.label8);
     this.groupBox2.Controls.Add(this.efSMTPuser);
     this.groupBox2.Controls.Add(this.label9);
     this.groupBox2.Controls.Add(this.label10);
     this.groupBox2.Controls.Add(this.efSMTPserver);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Location = new System.Drawing.Point(338, 12);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(312, 227);
     this.groupBox2.TabIndex = 16;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "SMTP Server";
     //
     // cbEnableSSL
     //
     this.cbEnableSSL.AutoSize = true;
     this.cbEnableSSL.Location = new System.Drawing.Point(136, 180);
     this.cbEnableSSL.Name     = "cbEnableSSL";
     this.cbEnableSSL.Size     = new System.Drawing.Size(82, 17);
     this.cbEnableSSL.TabIndex = 20;
     this.cbEnableSSL.Text     = "Enable SSL";
     this.cbEnableSSL.UseVisualStyleBackColor = true;
     //
     // efSMTPport
     //
     this.efSMTPport.CausesValidation = false;
     this.efSMTPport.Location         = new System.Drawing.Point(136, 49);
     this.efSMTPport.Name             = "efSMTPport";
     this.efSMTPport.Size             = new System.Drawing.Size(160, 20);
     this.efSMTPport.TabIndex         = 19;
     //
     // efSMTPpwd
     //
     this.efSMTPpwd.Location     = new System.Drawing.Point(136, 113);
     this.efSMTPpwd.Name         = "efSMTPpwd";
     this.efSMTPpwd.PasswordChar = '*';
     this.efSMTPpwd.Size         = new System.Drawing.Size(160, 20);
     this.efSMTPpwd.TabIndex     = 16;
     //
     // efSMTPretype
     //
     this.efSMTPretype.Location     = new System.Drawing.Point(136, 145);
     this.efSMTPretype.Name         = "efSMTPretype";
     this.efSMTPretype.PasswordChar = '*';
     this.efSMTPretype.Size         = new System.Drawing.Size(160, 20);
     this.efSMTPretype.TabIndex     = 17;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 149);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(104, 16);
     this.label6.TabIndex = 13;
     this.label6.Text     = "Retype Password";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(16, 116);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(104, 16);
     this.label8.TabIndex = 14;
     this.label8.Text     = "Password";
     //
     // efSMTPuser
     //
     this.efSMTPuser.Location = new System.Drawing.Point(136, 81);
     this.efSMTPuser.Name     = "efSMTPuser";
     this.efSMTPuser.Size     = new System.Drawing.Size(160, 20);
     this.efSMTPuser.TabIndex = 15;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(16, 85);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(104, 16);
     this.label9.TabIndex = 12;
     this.label9.Text     = "User";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(16, 49);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(104, 16);
     this.label10.TabIndex = 3;
     this.label10.Text     = "Port";
     //
     // efSMTPserver
     //
     this.efSMTPserver.CausesValidation = false;
     this.efSMTPserver.Location         = new System.Drawing.Point(136, 16);
     this.efSMTPserver.Name             = "efSMTPserver";
     this.efSMTPserver.Size             = new System.Drawing.Size(160, 20);
     this.efSMTPserver.TabIndex         = 2;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 16);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(104, 16);
     this.label4.TabIndex = 0;
     this.label4.Text     = "Domain Name";
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.label11);
     this.groupBox5.Controls.Add(this.efNotifyTo);
     this.groupBox5.Location = new System.Drawing.Point(8, 257);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(642, 56);
     this.groupBox5.TabIndex = 17;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Notify To";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(16, 22);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(104, 16);
     this.label11.TabIndex = 18;
     this.label11.Text     = "Email(s)";
     //
     // efNotifyTo
     //
     this.efNotifyTo.Location = new System.Drawing.Point(136, 19);
     this.efNotifyTo.Name     = "efNotifyTo";
     this.efNotifyTo.Size     = new System.Drawing.Size(490, 20);
     this.efNotifyTo.TabIndex = 17;
     //
     // ParamsWin
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(681, 370);
     this.ControlBox        = false;
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.groupBox3);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "ParamsWin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "OneAssistance - Setup";
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddInterval)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_Validator)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.ResumeLayout(false);
 }
示例#33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.butCancel   = new OpenDental.UI.Button();
     this.butOK       = new OpenDental.UI.Button();
     this.textDateTP  = new OpenDental.ValidDate();
     this.label1      = new System.Windows.Forms.Label();
     this.textHeading = new System.Windows.Forms.TextBox();
     this.textNote    = new System.Windows.Forms.TextBox();
     this.label2      = new System.Windows.Forms.Label();
     this.label3      = new System.Windows.Forms.Label();
     this.butDelete   = new OpenDental.UI.Button();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize = true;
     this.butCancel.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.Location = new System.Drawing.Point(515, 348);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex = 0;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize = true;
     this.butOK.BtnShape = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.Location = new System.Drawing.Point(515, 310);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 1;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // textDateTP
     //
     this.textDateTP.Location = new System.Drawing.Point(102, 24);
     this.textDateTP.Name     = "textDateTP";
     this.textDateTP.Size     = new System.Drawing.Size(85, 20);
     this.textDateTP.TabIndex = 3;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(11, 26);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(89, 16);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Date";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textHeading
     //
     this.textHeading.Location = new System.Drawing.Point(102, 59);
     this.textHeading.Name     = "textHeading";
     this.textHeading.Size     = new System.Drawing.Size(489, 20);
     this.textHeading.TabIndex = 4;
     //
     // textNote
     //
     this.textNote.AcceptsReturn = true;
     this.textNote.Location      = new System.Drawing.Point(102, 94);
     this.textNote.Multiline     = true;
     this.textNote.Name          = "textNote";
     this.textNote.Size          = new System.Drawing.Size(489, 181);
     this.textNote.TabIndex      = 5;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(11, 61);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(89, 16);
     this.label2.TabIndex  = 6;
     this.label2.Text      = "Heading";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(11, 96);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(89, 16);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Note";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // butDelete
     //
     this.butDelete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butDelete.Autosize   = true;
     this.butDelete.BtnShape   = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butDelete.BtnStyle   = OpenDental.UI.enumType.XPStyle.Silver;
     this.butDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butDelete.Location   = new System.Drawing.Point(103, 348);
     this.butDelete.Name       = "butDelete";
     this.butDelete.Size       = new System.Drawing.Size(86, 26);
     this.butDelete.TabIndex   = 8;
     this.butDelete.Text       = "Delete";
     this.butDelete.Click     += new System.EventHandler(this.butDelete_Click);
     //
     // FormTreatPlanEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(642, 402);
     this.Controls.Add(this.butDelete);
     this.Controls.Add(this.textNote);
     this.Controls.Add(this.textHeading);
     this.Controls.Add(this.textDateTP);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormTreatPlanEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Treatment Plan";
     this.Load         += new System.EventHandler(this.FormTreatPlanEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlAdministrator = new System.Windows.Forms.Panel();
     this.btnBilling       = new System.Windows.Forms.Button();
     this.lblAdmin         = new System.Windows.Forms.Label();
     this.btnDoctors       = new System.Windows.Forms.Button();
     this.lblAdministrator = new System.Windows.Forms.Label();
     this.pnlDoctors       = new System.Windows.Forms.Panel();
     this.label1           = new System.Windows.Forms.Label();
     this.txtPatientID     = new System.Windows.Forms.TextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.btnDischarge     = new System.Windows.Forms.Button();
     this.label2           = new System.Windows.Forms.Label();
     this.pnlNurses        = new System.Windows.Forms.Panel();
     this.label4           = new System.Windows.Forms.Label();
     this.button1          = new System.Windows.Forms.Button();
     this.lblNurses        = new System.Windows.Forms.Label();
     this.btnQuit          = new System.Windows.Forms.Button();
     this.pnlAdministrator.SuspendLayout();
     this.pnlDoctors.SuspendLayout();
     this.pnlNurses.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlAdministrator
     //
     this.pnlAdministrator.Controls.Add(this.btnBilling);
     this.pnlAdministrator.Controls.Add(this.lblAdmin);
     this.pnlAdministrator.Controls.Add(this.btnDoctors);
     this.pnlAdministrator.Controls.Add(this.lblAdministrator);
     this.pnlAdministrator.Location = new System.Drawing.Point(16, 8);
     this.pnlAdministrator.Name     = "pnlAdministrator";
     this.pnlAdministrator.Size     = new System.Drawing.Size(320, 120);
     this.pnlAdministrator.TabIndex = 0;
     this.pnlAdministrator.Visible  = false;
     //
     // btnBilling
     //
     this.btnBilling.Location = new System.Drawing.Point(160, 80);
     this.btnBilling.Name     = "btnBilling";
     this.btnBilling.Size     = new System.Drawing.Size(136, 23);
     this.btnBilling.TabIndex = 5;
     this.btnBilling.Text     = "Bill Patient";
     this.btnBilling.Click   += new System.EventHandler(this.btnBilling_Click);
     //
     // lblAdmin
     //
     this.lblAdmin.AutoSize = true;
     this.lblAdmin.Location = new System.Drawing.Point(16, 32);
     this.lblAdmin.Name     = "lblAdmin";
     this.lblAdmin.Size     = new System.Drawing.Size(168, 13);
     this.lblAdmin.TabIndex = 4;
     this.lblAdmin.Text     = "Please select one of the following:";
     //
     // btnDoctors
     //
     this.btnDoctors.Location = new System.Drawing.Point(8, 80);
     this.btnDoctors.Name     = "btnDoctors";
     this.btnDoctors.Size     = new System.Drawing.Size(136, 23);
     this.btnDoctors.TabIndex = 1;
     this.btnDoctors.Text     = "Manage Doctors";
     this.btnDoctors.Click   += new System.EventHandler(this.btnDoctors_Click);
     //
     // lblAdministrator
     //
     this.lblAdministrator.AutoSize = true;
     this.lblAdministrator.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAdministrator.Location = new System.Drawing.Point(16, 8);
     this.lblAdministrator.Name     = "lblAdministrator";
     this.lblAdministrator.Size     = new System.Drawing.Size(111, 17);
     this.lblAdministrator.TabIndex = 0;
     this.lblAdministrator.Text     = "Administration";
     //
     // pnlDoctors
     //
     this.pnlDoctors.Controls.Add(this.label1);
     this.pnlDoctors.Controls.Add(this.txtPatientID);
     this.pnlDoctors.Controls.Add(this.label3);
     this.pnlDoctors.Controls.Add(this.btnDischarge);
     this.pnlDoctors.Controls.Add(this.label2);
     this.pnlDoctors.Location = new System.Drawing.Point(344, 8);
     this.pnlDoctors.Name     = "pnlDoctors";
     this.pnlDoctors.Size     = new System.Drawing.Size(320, 120);
     this.pnlDoctors.TabIndex = 2;
     this.pnlDoctors.Visible  = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 56);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(57, 13);
     this.label1.TabIndex = 7;
     this.label1.Text     = "Patient ID:";
     //
     // txtPatientID
     //
     this.txtPatientID.Location = new System.Drawing.Point(80, 56);
     this.txtPatientID.Name     = "txtPatientID";
     this.txtPatientID.Size     = new System.Drawing.Size(72, 20);
     this.txtPatientID.TabIndex = 6;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 32);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(163, 13);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Please elect one of the following:";
     //
     // btnDischarge
     //
     this.btnDischarge.Location = new System.Drawing.Point(16, 80);
     this.btnDischarge.Name     = "btnDischarge";
     this.btnDischarge.Size     = new System.Drawing.Size(136, 23);
     this.btnDischarge.TabIndex = 1;
     this.btnDischarge.Text     = "Discharge Patient";
     this.btnDischarge.Click   += new System.EventHandler(this.btnDischarge_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(32, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 17);
     this.label2.TabIndex = 0;
     this.label2.Text     = "Doctors";
     //
     // pnlNurses
     //
     this.pnlNurses.Controls.Add(this.label4);
     this.pnlNurses.Controls.Add(this.button1);
     this.pnlNurses.Controls.Add(this.lblNurses);
     this.pnlNurses.Location = new System.Drawing.Point(16, 136);
     this.pnlNurses.Name     = "pnlNurses";
     this.pnlNurses.Size     = new System.Drawing.Size(320, 120);
     this.pnlNurses.TabIndex = 3;
     this.pnlNurses.Visible  = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(16, 32);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(135, 13);
     this.label4.TabIndex = 5;
     this.label4.Text     = "Select one of the following:";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(16, 80);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(136, 23);
     this.button1.TabIndex = 2;
     this.button1.Text     = "Patient List";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // lblNurses
     //
     this.lblNurses.AutoSize = true;
     this.lblNurses.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNurses.Location = new System.Drawing.Point(32, 8);
     this.lblNurses.Name     = "lblNurses";
     this.lblNurses.Size     = new System.Drawing.Size(59, 17);
     this.lblNurses.TabIndex = 0;
     this.lblNurses.Text     = "Nurses";
     //
     // btnQuit
     //
     this.btnQuit.Location = new System.Drawing.Point(216, 320);
     this.btnQuit.Name     = "btnQuit";
     this.btnQuit.Size     = new System.Drawing.Size(75, 23);
     this.btnQuit.TabIndex = 4;
     this.btnQuit.Text     = "Quit";
     this.btnQuit.Click   += new System.EventHandler(this.btnQuit_Click);
     //
     // frmMenu
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(672, 470);
     this.Controls.Add(this.btnQuit);
     this.Controls.Add(this.pnlDoctors);
     this.Controls.Add(this.pnlAdministrator);
     this.Controls.Add(this.pnlNurses);
     this.Name  = "frmMenu";
     this.Text  = "Menu";
     this.Load += new System.EventHandler(this.frmMenu_Load);
     this.pnlAdministrator.ResumeLayout(false);
     this.pnlAdministrator.PerformLayout();
     this.pnlDoctors.ResumeLayout(false);
     this.pnlDoctors.PerformLayout();
     this.pnlNurses.ResumeLayout(false);
     this.pnlNurses.PerformLayout();
     this.ResumeLayout(false);
 }
示例#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.panel1   = new System.Windows.Forms.Panel();
     this.button1  = new Syncfusion.Windows.Forms.ButtonAdv();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.textBox1 = 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.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(222)))));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.textBox3);
     this.panel1.Controls.Add(this.textBox2);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(192, 136);
     this.panel1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Office2007;
     this.button1.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.Location       = new System.Drawing.Point(56, 104);
     this.button1.Name           = "button1";
     this.button1.Size           = new System.Drawing.Size(80, 24);
     this.button1.TabIndex       = 6;
     this.button1.Text           = "Total";
     this.button1.UseVisualStyle = true;
     this.button1.Click         += new System.EventHandler(this.button1_Click);
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(80, 72);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(100, 20);
     this.textBox3.TabIndex = 5;
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(80, 40);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(100, 20);
     this.textBox2.TabIndex = 4;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(80, 8);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(100, 20);
     this.textBox1.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(16, 72);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(64, 23);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Sum";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 40);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 23);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Number2";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Number1";
     //
     // DataEntryControl
     //
     this.Controls.Add(this.panel1);
     this.Name = "DataEntryControl";
     this.Size = new System.Drawing.Size(192, 136);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
示例#36
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(FormScreenGroups));
     this.textDateFrom = new System.Windows.Forms.TextBox();
     this.label2       = new System.Windows.Forms.Label();
     this.textDateTo   = new System.Windows.Forms.TextBox();
     this.butRefresh   = new OpenDental.UI.Button();
     this.butAdd       = new OpenDental.UI.Button();
     this.butClose     = new OpenDental.UI.Button();
     this.gridMain     = new OpenDental.UI.ODGrid();
     this.butLeft      = new OpenDental.UI.Button();
     this.butRight     = new OpenDental.UI.Button();
     this.butToday     = new OpenDental.UI.Button();
     this.label1       = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // textDateFrom
     //
     this.textDateFrom.Location    = new System.Drawing.Point(150, 52);
     this.textDateFrom.Name        = "textDateFrom";
     this.textDateFrom.Size        = new System.Drawing.Size(69, 20);
     this.textDateFrom.TabIndex    = 74;
     this.textDateFrom.Validating += new System.ComponentModel.CancelEventHandler(this.textDateFrom_Validating);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(218, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(25, 13);
     this.label2.TabIndex  = 77;
     this.label2.Text      = "To";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textDateTo
     //
     this.textDateTo.Location    = new System.Drawing.Point(243, 52);
     this.textDateTo.Name        = "textDateTo";
     this.textDateTo.Size        = new System.Drawing.Size(75, 20);
     this.textDateTo.TabIndex    = 76;
     this.textDateTo.Validating += new System.ComponentModel.CancelEventHandler(this.textDateTo_Validating);
     //
     // butRefresh
     //
     this.butRefresh.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRefresh.Autosize            = true;
     this.butRefresh.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRefresh.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRefresh.CornerRadius        = 4F;
     this.butRefresh.Location            = new System.Drawing.Point(326, 51);
     this.butRefresh.Name     = "butRefresh";
     this.butRefresh.Size     = new System.Drawing.Size(55, 21);
     this.butRefresh.TabIndex = 78;
     this.butRefresh.Text     = "Refresh";
     this.butRefresh.Click   += new System.EventHandler(this.butRefresh_Click);
     //
     // butAdd
     //
     this.butAdd.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAdd.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.butAdd.Autosize     = true;
     this.butAdd.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAdd.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAdd.CornerRadius = 4F;
     this.butAdd.Image        = global::OpenDental.Properties.Resources.Add;
     this.butAdd.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butAdd.Location     = new System.Drawing.Point(441, 48);
     this.butAdd.Name         = "butAdd";
     this.butAdd.Size         = new System.Drawing.Size(70, 24);
     this.butAdd.TabIndex     = 79;
     this.butAdd.Text         = "Add";
     this.butAdd.Click       += new System.EventHandler(this.butAdd_Click);
     //
     // butClose
     //
     this.butClose.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butClose.Autosize     = true;
     this.butClose.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butClose.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butClose.CornerRadius = 4F;
     this.butClose.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butClose.Location     = new System.Drawing.Point(442, 540);
     this.butClose.Name         = "butClose";
     this.butClose.Size         = new System.Drawing.Size(70, 24);
     this.butClose.TabIndex     = 79;
     this.butClose.Text         = "Close";
     this.butClose.Click       += new System.EventHandler(this.butClose_Click);
     //
     // gridMain
     //
     this.gridMain.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.gridMain.CellFont            = new System.Drawing.Font("Microsoft Sans Serif", 8.5F);
     this.gridMain.HasAddButton        = false;
     this.gridMain.HasDropDowns        = false;
     this.gridMain.HasMultilineHeaders = false;
     this.gridMain.HeaderFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Bold);
     this.gridMain.HeaderHeight        = 15;
     this.gridMain.HScrollVisible      = false;
     this.gridMain.Location            = new System.Drawing.Point(13, 82);
     this.gridMain.Name             = "gridMain";
     this.gridMain.ScrollValue      = 0;
     this.gridMain.Size             = new System.Drawing.Size(499, 444);
     this.gridMain.TabIndex         = 80;
     this.gridMain.Title            = "Screening Groups";
     this.gridMain.TitleFont        = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.gridMain.TitleHeight      = 18;
     this.gridMain.TranslationName  = "TableGroups";
     this.gridMain.CellDoubleClick += new OpenDental.UI.ODGridClickEventHandler(this.gridMain_CellDoubleClick);
     //
     // butLeft
     //
     this.butLeft.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butLeft.Autosize            = true;
     this.butLeft.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butLeft.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butLeft.CornerRadius        = 4F;
     this.butLeft.Image    = global::OpenDental.Properties.Resources.Left;
     this.butLeft.Location = new System.Drawing.Point(167, 13);
     this.butLeft.Name     = "butLeft";
     this.butLeft.Size     = new System.Drawing.Size(39, 24);
     this.butLeft.TabIndex = 78;
     this.butLeft.Click   += new System.EventHandler(this.butLeft_Click);
     //
     // butRight
     //
     this.butRight.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butRight.Autosize            = true;
     this.butRight.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butRight.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butRight.CornerRadius        = 4F;
     this.butRight.Image    = global::OpenDental.Properties.Resources.Right;
     this.butRight.Location = new System.Drawing.Point(307, 13);
     this.butRight.Name     = "butRight";
     this.butRight.Size     = new System.Drawing.Size(39, 24);
     this.butRight.TabIndex = 78;
     this.butRight.Click   += new System.EventHandler(this.butRight_Click);
     //
     // butToday
     //
     this.butToday.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butToday.Autosize            = true;
     this.butToday.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butToday.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butToday.CornerRadius        = 4F;
     this.butToday.Location            = new System.Drawing.Point(215, 13);
     this.butToday.Name     = "butToday";
     this.butToday.Size     = new System.Drawing.Size(83, 24);
     this.butToday.TabIndex = 78;
     this.butToday.Text     = "Today";
     this.butToday.Click   += new System.EventHandler(this.butToday_Click);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(92, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(57, 13);
     this.label1.TabIndex  = 77;
     this.label1.Text      = "From";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormScreenGroups
     //
     this.ClientSize = new System.Drawing.Size(524, 576);
     this.Controls.Add(this.gridMain);
     this.Controls.Add(this.butClose);
     this.Controls.Add(this.butAdd);
     this.Controls.Add(this.textDateFrom);
     this.Controls.Add(this.textDateTo);
     this.Controls.Add(this.butRight);
     this.Controls.Add(this.butLeft);
     this.Controls.Add(this.butToday);
     this.Controls.Add(this.butRefresh);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "FormScreenGroups";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Screening Groups";
     this.Load         += new System.EventHandler(this.FormScreenings_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#37
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.Grid           = new exDataGridSour.exDataGrid();
     this.exColumn1      = new exDataGridSour.exColumn();
     this.exColumn2      = new exDataGridSour.exColumn();
     this.exColumn3      = new exDataGridSour.exColumn();
     this.exColumn4      = new exDataGridSour.exColumn();
     this.exColumn5      = new exDataGridSour.exColumn();
     this.exColumn6      = new exDataGridSour.exColumn();
     this.ctlRegType     = new com.digitalwave.controls.ctlRegType();
     this.ctlPatType     = new com.digitalwave.controls.ctlPatType();
     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.m_txtRegFee    = new System.Windows.Forms.TextBox();
     this.m_txtDiagFee   = new System.Windows.Forms.TextBox();
     this.m_bntAdd       = new PinkieControls.ButtonXP();
     this.m_bntSave      = new PinkieControls.ButtonXP();
     this.m_bntDel       = new PinkieControls.ButtonXP();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider();
     this.m_btnEsc       = new PinkieControls.ButtonXP();
     ((System.ComponentModel.ISupportInitialize)(this.Grid)).BeginInit();
     this.SuspendLayout();
     //
     // Grid
     //
     this.Grid.aFormatString  = "";
     this.Grid.aRowHeight     = 0;
     this.Grid.CaptionVisible = false;
     this.Grid.Col            = 0;
     this.Grid.Columns.AddRange(new exDataGridSour.exColumn[] {
         this.exColumn1,
         this.exColumn2,
         this.exColumn3,
         this.exColumn4,
         this.exColumn5,
         this.exColumn6
     });
     this.Grid.corrDataBase       = exDataGridSour.BingType.None;
     this.Grid.DataMember         = "";
     this.Grid.goEnter            = false;
     this.Grid.HeaderForeColor    = System.Drawing.SystemColors.ControlText;
     this.Grid.IsList             = true;
     this.Grid.Location           = new System.Drawing.Point(5, 8);
     this.Grid.Name               = "Grid";
     this.Grid.PreferredRowHeight = 0;
     this.Grid.ReadOnly           = true;
     this.Grid.Row      = 0;
     this.Grid.Rows     = 0;
     this.Grid.Size     = new System.Drawing.Size(531, 312);
     this.Grid.TabIndex = 0;
     this.Grid.toolTip  = "";
     this.Grid.tsAlternatingBackColor = System.Drawing.Color.Gainsboro;
     this.Grid.tsGridLineColor        = System.Drawing.Color.BlanchedAlmond;
     this.Grid.KeyDown            += new System.Windows.Forms.KeyEventHandler(this.Grid_KeyDown);
     this.Grid.CurrentCellChanged += new System.EventHandler(this.Grid_CurrentCellChanged);
     //
     // exColumn1
     //
     this.exColumn1.Alignment      = System.Windows.Forms.HorizontalAlignment.Center;
     this.exColumn1.AutoSize       = false;
     this.exColumn1.BackColor      = System.Drawing.Color.White;
     this.exColumn1.CanEdit        = true;
     this.exColumn1.ForeColor      = System.Drawing.Color.Black;
     this.exColumn1.Format         = "";
     this.exColumn1.FormatInfo     = null;
     this.exColumn1.HeaderText     = "";
     this.exColumn1.Hide           = true;
     this.exColumn1.indexKey       = "";
     this.exColumn1.IsNum          = false;
     this.exColumn1.IsNumAndOption = false;
     this.exColumn1.MappingName    = "registertypeid_chr";
     this.exColumn1.NullText       = "";
     this.exColumn1.Width          = 0;
     //
     // exColumn2
     //
     this.exColumn2.Alignment      = System.Windows.Forms.HorizontalAlignment.Center;
     this.exColumn2.AutoSize       = false;
     this.exColumn2.BackColor      = System.Drawing.Color.White;
     this.exColumn2.CanEdit        = true;
     this.exColumn2.ForeColor      = System.Drawing.Color.Black;
     this.exColumn2.Format         = "";
     this.exColumn2.FormatInfo     = null;
     this.exColumn2.HeaderText     = "";
     this.exColumn2.Hide           = true;
     this.exColumn2.indexKey       = "";
     this.exColumn2.IsNum          = false;
     this.exColumn2.IsNumAndOption = false;
     this.exColumn2.MappingName    = "paytypeid_chr";
     this.exColumn2.NullText       = "";
     this.exColumn2.Width          = 0;
     //
     // exColumn3
     //
     this.exColumn3.Alignment      = System.Windows.Forms.HorizontalAlignment.Center;
     this.exColumn3.AutoSize       = true;
     this.exColumn3.BackColor      = System.Drawing.Color.White;
     this.exColumn3.CanEdit        = true;
     this.exColumn3.ForeColor      = System.Drawing.Color.Black;
     this.exColumn3.Format         = "";
     this.exColumn3.FormatInfo     = null;
     this.exColumn3.HeaderText     = "挂号类型";
     this.exColumn3.Hide           = false;
     this.exColumn3.indexKey       = "";
     this.exColumn3.IsNum          = false;
     this.exColumn3.IsNumAndOption = false;
     this.exColumn3.MappingName    = "registertypename_vchr";
     this.exColumn3.NullText       = "";
     //
     // exColumn4
     //
     this.exColumn4.Alignment      = System.Windows.Forms.HorizontalAlignment.Center;
     this.exColumn4.AutoSize       = true;
     this.exColumn4.BackColor      = System.Drawing.Color.White;
     this.exColumn4.CanEdit        = true;
     this.exColumn4.ForeColor      = System.Drawing.Color.Black;
     this.exColumn4.Format         = "";
     this.exColumn4.FormatInfo     = null;
     this.exColumn4.HeaderText     = "病人类型";
     this.exColumn4.Hide           = false;
     this.exColumn4.indexKey       = "";
     this.exColumn4.IsNum          = false;
     this.exColumn4.IsNumAndOption = false;
     this.exColumn4.MappingName    = "paytypename_vchr";
     this.exColumn4.NullText       = "";
     //
     // exColumn5
     //
     this.exColumn5.Alignment      = System.Windows.Forms.HorizontalAlignment.Center;
     this.exColumn5.AutoSize       = false;
     this.exColumn5.BackColor      = System.Drawing.Color.White;
     this.exColumn5.CanEdit        = true;
     this.exColumn5.ForeColor      = System.Drawing.Color.Black;
     this.exColumn5.Format         = "";
     this.exColumn5.FormatInfo     = null;
     this.exColumn5.HeaderText     = "挂号费";
     this.exColumn5.Hide           = false;
     this.exColumn5.indexKey       = "";
     this.exColumn5.IsNum          = false;
     this.exColumn5.IsNumAndOption = false;
     this.exColumn5.MappingName    = "regfee";
     this.exColumn5.NullText       = "";
     this.exColumn5.Width          = 80;
     //
     // exColumn6
     //
     this.exColumn6.Alignment      = System.Windows.Forms.HorizontalAlignment.Center;
     this.exColumn6.AutoSize       = false;
     this.exColumn6.BackColor      = System.Drawing.Color.White;
     this.exColumn6.CanEdit        = true;
     this.exColumn6.ForeColor      = System.Drawing.Color.Black;
     this.exColumn6.Format         = "";
     this.exColumn6.FormatInfo     = null;
     this.exColumn6.HeaderText     = "诊金";
     this.exColumn6.Hide           = false;
     this.exColumn6.indexKey       = "";
     this.exColumn6.IsNum          = false;
     this.exColumn6.IsNumAndOption = false;
     this.exColumn6.MappingName    = "diagfee";
     this.exColumn6.NullText       = "";
     this.exColumn6.Width          = 80;
     //
     // ctlRegType
     //
     this.ctlRegType.Location              = new System.Drawing.Point(112, 342);
     this.ctlRegType.Name                  = "ctlRegType";
     this.ctlRegType.RegTypeID             = "";
     this.ctlRegType.RegTypeName           = "";
     this.ctlRegType.Size                  = new System.Drawing.Size(121, 22);
     this.ctlRegType.TabIndex              = 1;
     this.ctlRegType.SelectedIndexChanged += new System.EventHandler(this.ctlRegType_SelectedIndexChanged);
     //
     // ctlPatType
     //
     this.ctlPatType.Location              = new System.Drawing.Point(112, 382);
     this.ctlPatType.Name                  = "ctlPatType";
     this.ctlPatType.PatTypeID             = "";
     this.ctlPatType.PatTypeName           = "";
     this.ctlPatType.Size                  = new System.Drawing.Size(121, 22);
     this.ctlPatType.TabIndex              = 2;
     this.ctlPatType.SelectedIndexChanged += new System.EventHandler(this.ctlPatType_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize   = true;
     this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label1.Location   = new System.Drawing.Point(40, 344);
     this.label1.Name       = "label1";
     this.label1.Size       = new System.Drawing.Size(63, 19);
     this.label1.TabIndex   = 3;
     this.label1.Text       = "挂号类型";
     //
     // label2
     //
     this.label2.AutoSize   = true;
     this.label2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label2.Location   = new System.Drawing.Point(40, 384);
     this.label2.Name       = "label2";
     this.label2.Size       = new System.Drawing.Size(63, 19);
     this.label2.TabIndex   = 4;
     this.label2.Text       = "病人类型";
     //
     // label3
     //
     this.label3.AutoSize   = true;
     this.label3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label3.Location   = new System.Drawing.Point(296, 344);
     this.label3.Name       = "label3";
     this.label3.Size       = new System.Drawing.Size(48, 19);
     this.label3.TabIndex   = 5;
     this.label3.Text       = "挂号费";
     //
     // label4
     //
     this.label4.AutoSize   = true;
     this.label4.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label4.Location   = new System.Drawing.Point(296, 384);
     this.label4.Name       = "label4";
     this.label4.Size       = new System.Drawing.Size(34, 19);
     this.label4.TabIndex   = 6;
     this.label4.Text       = "诊金";
     //
     // m_txtRegFee
     //
     this.m_txtRegFee.Location     = new System.Drawing.Point(360, 342);
     this.m_txtRegFee.MaxLength    = 10;
     this.m_txtRegFee.Name         = "m_txtRegFee";
     this.m_txtRegFee.Size         = new System.Drawing.Size(121, 23);
     this.m_txtRegFee.TabIndex     = 7;
     this.m_txtRegFee.Text         = "";
     this.m_txtRegFee.TextChanged += new System.EventHandler(this.m_txtRegFee_TextChanged);
     //
     // m_txtDiagFee
     //
     this.m_txtDiagFee.Location     = new System.Drawing.Point(360, 382);
     this.m_txtDiagFee.MaxLength    = 10;
     this.m_txtDiagFee.Name         = "m_txtDiagFee";
     this.m_txtDiagFee.Size         = new System.Drawing.Size(121, 23);
     this.m_txtDiagFee.TabIndex     = 8;
     this.m_txtDiagFee.Text         = "";
     this.m_txtDiagFee.TextChanged += new System.EventHandler(this.m_txtDiagFee_TextChanged);
     //
     // m_bntAdd
     //
     this.m_bntAdd.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(216)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_bntAdd.DefaultScheme = true;
     this.m_bntAdd.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_bntAdd.Hint          = "";
     this.m_bntAdd.Location      = new System.Drawing.Point(16, 432);
     this.m_bntAdd.Name          = "m_bntAdd";
     this.m_bntAdd.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_bntAdd.Size          = new System.Drawing.Size(112, 24);
     this.m_bntAdd.TabIndex      = 9;
     this.m_bntAdd.Text          = "新增  F2";
     this.m_bntAdd.Click        += new System.EventHandler(this.m_bntAdd_Click);
     //
     // m_bntSave
     //
     this.m_bntSave.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(216)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_bntSave.DefaultScheme = true;
     this.m_bntSave.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_bntSave.Hint          = "";
     this.m_bntSave.Location      = new System.Drawing.Point(152, 432);
     this.m_bntSave.Name          = "m_bntSave";
     this.m_bntSave.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_bntSave.Size          = new System.Drawing.Size(112, 24);
     this.m_bntSave.TabIndex      = 10;
     this.m_bntSave.Text          = "保存 F3";
     this.m_bntSave.Click        += new System.EventHandler(this.m_bntSave_Click);
     //
     // m_bntDel
     //
     this.m_bntDel.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(216)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_bntDel.DefaultScheme = true;
     this.m_bntDel.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.m_bntDel.Hint          = "";
     this.m_bntDel.Location      = new System.Drawing.Point(280, 432);
     this.m_bntDel.Name          = "m_bntDel";
     this.m_bntDel.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_bntDel.Size          = new System.Drawing.Size(112, 24);
     this.m_bntDel.TabIndex      = 11;
     this.m_bntDel.Text          = "删除 F4";
     this.m_bntDel.Click        += new System.EventHandler(this.m_bntDel_Click);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // m_btnEsc
     //
     this.m_btnEsc.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(216)), ((System.Byte)(208)), ((System.Byte)(200)));
     this.m_btnEsc.DefaultScheme = true;
     this.m_btnEsc.DialogResult  = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnEsc.Hint          = "";
     this.m_btnEsc.Location      = new System.Drawing.Point(416, 432);
     this.m_btnEsc.Name          = "m_btnEsc";
     this.m_btnEsc.Scheme        = PinkieControls.ButtonXP.Schemes.Blue;
     this.m_btnEsc.Size          = new System.Drawing.Size(112, 24);
     this.m_btnEsc.TabIndex      = 12;
     this.m_btnEsc.Text          = "退出 Esc";
     this.m_btnEsc.Click        += new System.EventHandler(this.m_btnEsc_Click);
     //
     // frmPatRegFee
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
     this.CancelButton      = this.m_btnEsc;
     this.ClientSize        = new System.Drawing.Size(538, 479);
     this.Controls.Add(this.m_btnEsc);
     this.Controls.Add(this.m_bntDel);
     this.Controls.Add(this.m_bntSave);
     this.Controls.Add(this.m_bntAdd);
     this.Controls.Add(this.m_txtDiagFee);
     this.Controls.Add(this.m_txtRegFee);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.Grid);
     this.Controls.Add(this.ctlPatType);
     this.Controls.Add(this.ctlRegType);
     this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.Name            = "frmPatRegFee";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "门诊挂号费用维护";
     this.Load           += new System.EventHandler(this.frmPatRegFee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Grid)).EndInit();
     this.ResumeLayout(false);
 }
示例#38
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PanelUFIdentificacao2));
     this.grpGuia                  = new System.Windows.Forms.GroupBox();
     this.txtGuia                  = new System.Windows.Forms.TextBox();
     this.grpCodigoBarras          = new System.Windows.Forms.GroupBox();
     this.txtCodigoBarras          = new GISA.Controls.PxIntegerBox();
     this.grpCota                  = new System.Windows.Forms.GroupBox();
     this.label1                   = new System.Windows.Forms.Label();
     this.txtCota                  = new System.Windows.Forms.TextBox();
     this.grpCodigo                = new System.Windows.Forms.GroupBox();
     this.txtCodigoDeReferencia    = new System.Windows.Forms.TextBox();
     this.grpDimensoes             = new System.Windows.Forms.GroupBox();
     this.DimensoesSuporte1        = new GISA.DimensoesSuporte();
     this.grpFim                   = new System.Windows.Forms.GroupBox();
     this.chkAtribuidaFim          = new System.Windows.Forms.CheckBox();
     this.dtProducaoFim            = new GISA.Controls.PxDateBox();
     this.grpInicio                = new System.Windows.Forms.GroupBox();
     this.dtProducaoInicio         = new GISA.Controls.PxDateBox();
     this.chkAtribuidaInicio       = new System.Windows.Forms.CheckBox();
     this.grpDatasProducao         = new System.Windows.Forms.GroupBox();
     this.grpConteudo              = new System.Windows.Forms.GroupBox();
     this.txtConteudoInformacional = new System.Windows.Forms.TextBox();
     this.grpTitulo                = new System.Windows.Forms.GroupBox();
     this.txtTitulo                = new System.Windows.Forms.TextBox();
     this.grpTipo                  = new System.Windows.Forms.GroupBox();
     this.btnMaterialManager       = new System.Windows.Forms.Button();
     this.cbTipo                   = new System.Windows.Forms.ComboBox();
     this.grpTipoEntrega           = new System.Windows.Forms.GroupBox();
     this.cbTipoEntrega            = new System.Windows.Forms.ComboBox();
     this.grpEntrega               = new System.Windows.Forms.GroupBox();
     this.toolTip1                 = new System.Windows.Forms.ToolTip(this.components);
     this.controlLocalConsulta1    = new GISA.ControlLocalConsulta();
     this.grpGuia.SuspendLayout();
     this.grpCodigoBarras.SuspendLayout();
     this.grpCota.SuspendLayout();
     this.grpCodigo.SuspendLayout();
     this.grpDimensoes.SuspendLayout();
     this.grpFim.SuspendLayout();
     this.grpInicio.SuspendLayout();
     this.grpDatasProducao.SuspendLayout();
     this.grpConteudo.SuspendLayout();
     this.grpTitulo.SuspendLayout();
     this.grpTipo.SuspendLayout();
     this.grpTipoEntrega.SuspendLayout();
     this.grpEntrega.SuspendLayout();
     this.SuspendLayout();
     //
     // grpGuia
     //
     this.grpGuia.Controls.Add(this.txtGuia);
     this.grpGuia.Location = new System.Drawing.Point(6, 19);
     this.grpGuia.Name     = "grpGuia";
     this.grpGuia.Size     = new System.Drawing.Size(117, 50);
     this.grpGuia.TabIndex = 11;
     this.grpGuia.TabStop  = false;
     this.grpGuia.Text     = "Guia nº";
     //
     // txtGuia
     //
     this.txtGuia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtGuia.Location = new System.Drawing.Point(6, 19);
     this.txtGuia.Name     = "txtGuia";
     this.txtGuia.Size     = new System.Drawing.Size(105, 20);
     this.txtGuia.TabIndex = 1;
     //
     // grpCodigoBarras
     //
     this.grpCodigoBarras.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.grpCodigoBarras.Controls.Add(this.txtCodigoBarras);
     this.grpCodigoBarras.Location = new System.Drawing.Point(496, 100);
     this.grpCodigoBarras.Name     = "grpCodigoBarras";
     this.grpCodigoBarras.Size     = new System.Drawing.Size(297, 43);
     this.grpCodigoBarras.TabIndex = 2;
     this.grpCodigoBarras.TabStop  = false;
     this.grpCodigoBarras.Text     = "Código de barras";
     //
     // txtCodigoBarras
     //
     this.txtCodigoBarras.Location  = new System.Drawing.Point(8, 16);
     this.txtCodigoBarras.Name      = "txtCodigoBarras";
     this.txtCodigoBarras.Size      = new System.Drawing.Size(280, 20);
     this.txtCodigoBarras.TabIndex  = 0;
     this.txtCodigoBarras.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // grpCota
     //
     this.grpCota.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grpCota.Controls.Add(this.label1);
     this.grpCota.Controls.Add(this.txtCota);
     this.grpCota.Location = new System.Drawing.Point(6, 100);
     this.grpCota.Name     = "grpCota";
     this.grpCota.Size     = new System.Drawing.Size(482, 43);
     this.grpCota.TabIndex = 1;
     this.grpCota.TabStop  = false;
     this.grpCota.Text     = "Cota";
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.AutoSize = true;
     this.label1.Enabled  = false;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.75F);
     this.label1.Image    = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
     this.label1.Location = new System.Drawing.Point(456, 17);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(22, 15);
     this.label1.TabIndex = 2;
     this.label1.Text     = "     ";
     //
     // txtCota
     //
     this.txtCota.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCota.Location  = new System.Drawing.Point(8, 16);
     this.txtCota.MaxLength = 50;
     this.txtCota.Name      = "txtCota";
     this.txtCota.Size      = new System.Drawing.Size(442, 20);
     this.txtCota.TabIndex  = 1;
     //
     // grpCodigo
     //
     this.grpCodigo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.grpCodigo.Controls.Add(this.txtCodigoDeReferencia);
     this.grpCodigo.Location = new System.Drawing.Point(6, 4);
     this.grpCodigo.Name     = "grpCodigo";
     this.grpCodigo.Size     = new System.Drawing.Size(482, 43);
     this.grpCodigo.TabIndex = 10;
     this.grpCodigo.TabStop  = false;
     this.grpCodigo.Text     = "Código de referência";
     //
     // txtCodigoDeReferencia
     //
     this.txtCodigoDeReferencia.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCodigoDeReferencia.Location = new System.Drawing.Point(8, 16);
     this.txtCodigoDeReferencia.Name     = "txtCodigoDeReferencia";
     this.txtCodigoDeReferencia.ReadOnly = true;
     this.txtCodigoDeReferencia.Size     = new System.Drawing.Size(468, 20);
     this.txtCodigoDeReferencia.TabIndex = 1;
     //
     // grpDimensoes
     //
     this.grpDimensoes.Controls.Add(this.DimensoesSuporte1);
     this.grpDimensoes.Location = new System.Drawing.Point(6, 220);
     this.grpDimensoes.Name     = "grpDimensoes";
     this.grpDimensoes.Size     = new System.Drawing.Size(386, 67);
     this.grpDimensoes.TabIndex = 4;
     this.grpDimensoes.TabStop  = false;
     this.grpDimensoes.Text     = "Dimensões";
     //
     // DimensoesSuporte1
     //
     this.DimensoesSuporte1.Location           = new System.Drawing.Point(6, 12);
     this.DimensoesSuporte1.MedidaAltura       = "";
     this.DimensoesSuporte1.MedidaLargura      = "";
     this.DimensoesSuporte1.MedidaProfundidade = "";
     this.DimensoesSuporte1.Name       = "DimensoesSuporte1";
     this.DimensoesSuporte1.Size       = new System.Drawing.Size(366, 50);
     this.DimensoesSuporte1.TabIndex   = 1;
     this.DimensoesSuporte1.TipoMedida = null;
     //
     // grpFim
     //
     this.grpFim.Controls.Add(this.chkAtribuidaFim);
     this.grpFim.Controls.Add(this.dtProducaoFim);
     this.grpFim.Location = new System.Drawing.Point(202, 15);
     this.grpFim.Name     = "grpFim";
     this.grpFim.Size     = new System.Drawing.Size(178, 44);
     this.grpFim.TabIndex = 2;
     this.grpFim.TabStop  = false;
     this.grpFim.Text     = "Fim";
     //
     // chkAtribuidaFim
     //
     this.chkAtribuidaFim.Location = new System.Drawing.Point(97, 16);
     this.chkAtribuidaFim.Name     = "chkAtribuidaFim";
     this.chkAtribuidaFim.Size     = new System.Drawing.Size(72, 20);
     this.chkAtribuidaFim.TabIndex = 2;
     this.chkAtribuidaFim.Text     = "Atribuída";
     //
     // dtProducaoFim
     //
     this.dtProducaoFim.Location   = new System.Drawing.Point(7, 14);
     this.dtProducaoFim.Name       = "dtProducaoFim";
     this.dtProducaoFim.Size       = new System.Drawing.Size(82, 22);
     this.dtProducaoFim.TabIndex   = 1;
     this.dtProducaoFim.ValueDay   = "";
     this.dtProducaoFim.ValueMonth = "";
     this.dtProducaoFim.ValueYear  = "";
     //
     // grpInicio
     //
     this.grpInicio.Controls.Add(this.dtProducaoInicio);
     this.grpInicio.Controls.Add(this.chkAtribuidaInicio);
     this.grpInicio.Location = new System.Drawing.Point(8, 15);
     this.grpInicio.Name     = "grpInicio";
     this.grpInicio.Size     = new System.Drawing.Size(182, 44);
     this.grpInicio.TabIndex = 1;
     this.grpInicio.TabStop  = false;
     this.grpInicio.Text     = "Início";
     //
     // dtProducaoInicio
     //
     this.dtProducaoInicio.Location   = new System.Drawing.Point(7, 14);
     this.dtProducaoInicio.Name       = "dtProducaoInicio";
     this.dtProducaoInicio.Size       = new System.Drawing.Size(82, 22);
     this.dtProducaoInicio.TabIndex   = 1;
     this.dtProducaoInicio.ValueDay   = "";
     this.dtProducaoInicio.ValueMonth = "";
     this.dtProducaoInicio.ValueYear  = "";
     //
     // chkAtribuidaInicio
     //
     this.chkAtribuidaInicio.Location = new System.Drawing.Point(95, 16);
     this.chkAtribuidaInicio.Name     = "chkAtribuidaInicio";
     this.chkAtribuidaInicio.Size     = new System.Drawing.Size(73, 18);
     this.chkAtribuidaInicio.TabIndex = 2;
     this.chkAtribuidaInicio.Text     = "Atribuída";
     //
     // grpDatasProducao
     //
     this.grpDatasProducao.Controls.Add(this.grpInicio);
     this.grpDatasProducao.Controls.Add(this.grpFim);
     this.grpDatasProducao.Location = new System.Drawing.Point(6, 148);
     this.grpDatasProducao.Name     = "grpDatasProducao";
     this.grpDatasProducao.Size     = new System.Drawing.Size(386, 67);
     this.grpDatasProducao.TabIndex = 3;
     this.grpDatasProducao.TabStop  = false;
     this.grpDatasProducao.Text     = "Datas de produção";
     //
     // grpConteudo
     //
     this.grpConteudo.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.grpConteudo.Controls.Add(this.txtConteudoInformacional);
     this.grpConteudo.Location = new System.Drawing.Point(400, 148);
     this.grpConteudo.Name     = "grpConteudo";
     this.grpConteudo.Size     = new System.Drawing.Size(393, 443);
     this.grpConteudo.TabIndex = 6;
     this.grpConteudo.TabStop  = false;
     this.grpConteudo.Text     = "Conteúdo informacional";
     //
     // txtConteudoInformacional
     //
     this.txtConteudoInformacional.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.txtConteudoInformacional.Location   = new System.Drawing.Point(8, 16);
     this.txtConteudoInformacional.Multiline  = true;
     this.txtConteudoInformacional.Name       = "txtConteudoInformacional";
     this.txtConteudoInformacional.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtConteudoInformacional.Size       = new System.Drawing.Size(376, 419);
     this.txtConteudoInformacional.TabIndex   = 1;
     //
     // grpTitulo
     //
     this.grpTitulo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.grpTitulo.Controls.Add(this.txtTitulo);
     this.grpTitulo.Location = new System.Drawing.Point(6, 52);
     this.grpTitulo.Name     = "grpTitulo";
     this.grpTitulo.Size     = new System.Drawing.Size(482, 43);
     this.grpTitulo.TabIndex = 12;
     this.grpTitulo.TabStop  = false;
     this.grpTitulo.Text     = "Título";
     //
     // txtTitulo
     //
     this.txtTitulo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTitulo.Location = new System.Drawing.Point(8, 16);
     this.txtTitulo.Name     = "txtTitulo";
     this.txtTitulo.ReadOnly = true;
     this.txtTitulo.Size     = new System.Drawing.Size(468, 20);
     this.txtTitulo.TabIndex = 1;
     //
     // grpTipo
     //
     this.grpTipo.Controls.Add(this.btnMaterialManager);
     this.grpTipo.Controls.Add(this.cbTipo);
     this.grpTipo.Location = new System.Drawing.Point(6, 288);
     this.grpTipo.Name     = "grpTipo";
     this.grpTipo.Size     = new System.Drawing.Size(386, 42);
     this.grpTipo.TabIndex = 5;
     this.grpTipo.TabStop  = false;
     this.grpTipo.Text     = "Tipo";
     //
     // btnMaterialManager
     //
     this.btnMaterialManager.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnMaterialManager.Location  = new System.Drawing.Point(356, 12);
     this.btnMaterialManager.Name      = "btnMaterialManager";
     this.btnMaterialManager.Size      = new System.Drawing.Size(24, 23);
     this.btnMaterialManager.TabIndex  = 2;
     //
     // cbTipo
     //
     this.cbTipo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTipo.Location      = new System.Drawing.Point(6, 14);
     this.cbTipo.Name          = "cbTipo";
     this.cbTipo.Size          = new System.Drawing.Size(344, 21);
     this.cbTipo.TabIndex      = 1;
     //
     // grpTipoEntrega
     //
     this.grpTipoEntrega.Controls.Add(this.cbTipoEntrega);
     this.grpTipoEntrega.Location = new System.Drawing.Point(129, 19);
     this.grpTipoEntrega.Name     = "grpTipoEntrega";
     this.grpTipoEntrega.Size     = new System.Drawing.Size(159, 50);
     this.grpTipoEntrega.TabIndex = 12;
     this.grpTipoEntrega.TabStop  = false;
     this.grpTipoEntrega.Text     = "Tipo";
     //
     // cbTipoEntrega
     //
     this.cbTipoEntrega.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTipoEntrega.FormattingEnabled = true;
     this.cbTipoEntrega.Location          = new System.Drawing.Point(6, 19);
     this.cbTipoEntrega.Name     = "cbTipoEntrega";
     this.cbTipoEntrega.Size     = new System.Drawing.Size(147, 21);
     this.cbTipoEntrega.TabIndex = 0;
     //
     // grpEntrega
     //
     this.grpEntrega.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.grpEntrega.Controls.Add(this.grpGuia);
     this.grpEntrega.Controls.Add(this.grpTipoEntrega);
     this.grpEntrega.Location = new System.Drawing.Point(496, 4);
     this.grpEntrega.Name     = "grpEntrega";
     this.grpEntrega.Size     = new System.Drawing.Size(297, 90);
     this.grpEntrega.TabIndex = 13;
     this.grpEntrega.TabStop  = false;
     this.grpEntrega.Text     = "Entrega";
     //
     // toolTip1
     //
     this.toolTip1.Active       = false;
     this.toolTip1.AutoPopDelay = 60000;
     this.toolTip1.InitialDelay = 500;
     this.toolTip1.IsBalloon    = true;
     this.toolTip1.ReshowDelay  = 100;
     this.toolTip1.ShowAlways   = true;
     //
     // controlLocalConsulta1
     //
     this.controlLocalConsulta1.Location = new System.Drawing.Point(6, 336);
     this.controlLocalConsulta1.Name     = "controlLocalConsulta1";
     this.controlLocalConsulta1.Size     = new System.Drawing.Size(388, 48);
     this.controlLocalConsulta1.TabIndex = 14;
     //
     // PanelUFIdentificacao2
     //
     this.Controls.Add(this.controlLocalConsulta1);
     this.Controls.Add(this.grpEntrega);
     this.Controls.Add(this.grpTipo);
     this.Controls.Add(this.grpTitulo);
     this.Controls.Add(this.grpConteudo);
     this.Controls.Add(this.grpDatasProducao);
     this.Controls.Add(this.grpDimensoes);
     this.Controls.Add(this.grpCota);
     this.Controls.Add(this.grpCodigo);
     this.Controls.Add(this.grpCodigoBarras);
     this.Name = "PanelUFIdentificacao2";
     this.grpGuia.ResumeLayout(false);
     this.grpGuia.PerformLayout();
     this.grpCodigoBarras.ResumeLayout(false);
     this.grpCota.ResumeLayout(false);
     this.grpCota.PerformLayout();
     this.grpCodigo.ResumeLayout(false);
     this.grpCodigo.PerformLayout();
     this.grpDimensoes.ResumeLayout(false);
     this.grpFim.ResumeLayout(false);
     this.grpInicio.ResumeLayout(false);
     this.grpDatasProducao.ResumeLayout(false);
     this.grpConteudo.ResumeLayout(false);
     this.grpConteudo.PerformLayout();
     this.grpTitulo.ResumeLayout(false);
     this.grpTitulo.PerformLayout();
     this.grpTipo.ResumeLayout(false);
     this.grpTipoEntrega.ResumeLayout(false);
     this.grpEntrega.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PropertyDlg111));
     this.label_property      = new System.Windows.Forms.Label();
     this.textBox_property    = new System.Windows.Forms.TextBox();
     this.button_Cancel       = new System.Windows.Forms.Button();
     this.button_OK           = new System.Windows.Forms.Button();
     this.listView_property   = new DigitalPlatform.GUI.ListViewNF();
     this.toolTip_comment     = new System.Windows.Forms.ToolTip(this.components);
     this.button_checkAll     = new System.Windows.Forms.Button();
     this.button_uncheckAll   = new System.Windows.Forms.Button();
     this.splitContainer_main = new System.Windows.Forms.SplitContainer();
     this.panel_up            = new System.Windows.Forms.Panel();
     this.panel_down          = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer_main)).BeginInit();
     this.splitContainer_main.Panel1.SuspendLayout();
     this.splitContainer_main.Panel2.SuspendLayout();
     this.splitContainer_main.SuspendLayout();
     this.panel_up.SuspendLayout();
     this.panel_down.SuspendLayout();
     this.SuspendLayout();
     //
     // label_property
     //
     this.label_property.AutoSize  = true;
     this.label_property.Location  = new System.Drawing.Point(-2, 4);
     this.label_property.Name      = "label_property";
     this.label_property.Size      = new System.Drawing.Size(41, 12);
     this.label_property.TabIndex  = 1;
     this.label_property.Text      = "值(&V):";
     this.label_property.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBox_property
     //
     this.textBox_property.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.textBox_property.Location     = new System.Drawing.Point(0, 18);
     this.textBox_property.MaxLength    = 0;
     this.textBox_property.Multiline    = true;
     this.textBox_property.Name         = "textBox_property";
     this.textBox_property.ScrollBars   = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox_property.Size         = new System.Drawing.Size(586, 81);
     this.textBox_property.TabIndex     = 2;
     this.textBox_property.TextChanged += new System.EventHandler(this.textBox_property_TextChanged);
     //
     // button_Cancel
     //
     this.button_Cancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button_Cancel.AutoSize = true;
     this.button_Cancel.Location = new System.Drawing.Point(535, 373);
     this.button_Cancel.Name     = "button_Cancel";
     this.button_Cancel.Size     = new System.Drawing.Size(60, 22);
     this.button_Cancel.TabIndex = 4;
     this.button_Cancel.Text     = "取消";
     this.button_Cancel.Click   += new System.EventHandler(this.button_Cancel_Click);
     //
     // button_OK
     //
     this.button_OK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button_OK.AutoSize = true;
     this.button_OK.Location = new System.Drawing.Point(471, 373);
     this.button_OK.Name     = "button_OK";
     this.button_OK.Size     = new System.Drawing.Size(60, 22);
     this.button_OK.TabIndex = 3;
     this.button_OK.Text     = "确定";
     this.button_OK.Click   += new System.EventHandler(this.button_OK_Click);
     //
     // listView_property
     //
     this.listView_property.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.listView_property.CheckBoxes    = true;
     this.listView_property.FullRowSelect = true;
     this.listView_property.Location      = new System.Drawing.Point(0, 0);
     this.listView_property.Name          = "listView_property";
     this.listView_property.Size          = new System.Drawing.Size(586, 207);
     this.listView_property.TabIndex      = 0;
     this.listView_property.UseCompatibleStateImageBehavior = false;
     this.listView_property.View         = System.Windows.Forms.View.Details;
     this.listView_property.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView_property_ColumnClick);
     this.listView_property.ItemCheck   += new System.Windows.Forms.ItemCheckEventHandler(this.listView_property_ItemCheck);
     this.listView_property.MouseMove   += new System.Windows.Forms.MouseEventHandler(this.listView_property_MouseMove);
     this.listView_property.MouseUp     += new System.Windows.Forms.MouseEventHandler(this.listView_property_MouseUp);
     //
     // toolTip_comment
     //
     this.toolTip_comment.AutomaticDelay = 1000;
     this.toolTip_comment.AutoPopDelay   = 5000;
     this.toolTip_comment.InitialDelay   = 1000;
     this.toolTip_comment.IsBalloon      = true;
     this.toolTip_comment.ReshowDelay    = 1000;
     this.toolTip_comment.ShowAlways     = true;
     this.toolTip_comment.UseAnimation   = false;
     this.toolTip_comment.UseFading      = false;
     //
     // button_checkAll
     //
     this.button_checkAll.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button_checkAll.AutoSize = true;
     this.button_checkAll.Location = new System.Drawing.Point(0, 212);
     this.button_checkAll.Name     = "button_checkAll";
     this.button_checkAll.Size     = new System.Drawing.Size(68, 22);
     this.button_checkAll.TabIndex = 5;
     this.button_checkAll.Text     = "全选(&A)";
     this.button_checkAll.Click   += new System.EventHandler(this.button_checkAll_Click);
     //
     // button_uncheckAll
     //
     this.button_uncheckAll.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button_uncheckAll.AutoSize = true;
     this.button_uncheckAll.Location = new System.Drawing.Point(73, 212);
     this.button_uncheckAll.Name     = "button_uncheckAll";
     this.button_uncheckAll.Size     = new System.Drawing.Size(66, 22);
     this.button_uncheckAll.TabIndex = 6;
     this.button_uncheckAll.Text     = "清除(&C)";
     this.button_uncheckAll.Click   += new System.EventHandler(this.button_uncheckAll_Click);
     //
     // splitContainer_main
     //
     this.splitContainer_main.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.splitContainer_main.Location    = new System.Drawing.Point(9, 10);
     this.splitContainer_main.Name        = "splitContainer_main";
     this.splitContainer_main.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer_main.Panel1
     //
     this.splitContainer_main.Panel1.Controls.Add(this.panel_up);
     //
     // splitContainer_main.Panel2
     //
     this.splitContainer_main.Panel2.Controls.Add(this.panel_down);
     this.splitContainer_main.Size             = new System.Drawing.Size(586, 341);
     this.splitContainer_main.SplitterDistance = 234;
     this.splitContainer_main.SplitterWidth    = 8;
     this.splitContainer_main.TabIndex         = 7;
     //
     // panel_up
     //
     this.panel_up.Controls.Add(this.listView_property);
     this.panel_up.Controls.Add(this.button_uncheckAll);
     this.panel_up.Controls.Add(this.button_checkAll);
     this.panel_up.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel_up.Location = new System.Drawing.Point(0, 0);
     this.panel_up.Name     = "panel_up";
     this.panel_up.Size     = new System.Drawing.Size(586, 234);
     this.panel_up.TabIndex = 0;
     //
     // panel_down
     //
     this.panel_down.Controls.Add(this.label_property);
     this.panel_down.Controls.Add(this.textBox_property);
     this.panel_down.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel_down.Location = new System.Drawing.Point(0, 0);
     this.panel_down.Name     = "panel_down";
     this.panel_down.Size     = new System.Drawing.Size(586, 99);
     this.panel_down.TabIndex = 0;
     //
     // PropertyDlg
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(604, 404);
     this.Controls.Add(this.splitContainer_main);
     this.Controls.Add(this.button_Cancel);
     this.Controls.Add(this.button_OK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "PropertyDlg";
     this.ShowInTaskbar = false;
     this.Text          = "PropertyDlg";
     this.Load         += new System.EventHandler(this.PropertyDlg_Load);
     this.splitContainer_main.Panel1.ResumeLayout(false);
     this.splitContainer_main.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer_main)).EndInit();
     this.splitContainer_main.ResumeLayout(false);
     this.panel_up.ResumeLayout(false);
     this.panel_up.PerformLayout();
     this.panel_down.ResumeLayout(false);
     this.panel_down.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#40
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.label11   = new System.Windows.Forms.Label();
     this.dtDate    = new System.Windows.Forms.DateTimePicker();
     this.label3    = new System.Windows.Forms.Label();
     this.label2    = new System.Windows.Forms.Label();
     this.label1    = new System.Windows.Forms.Label();
     this.label4    = new System.Windows.Forms.Label();
     this.txtGiveT  = new System.Windows.Forms.TextBox();
     this.txtBackT  = new System.Windows.Forms.TextBox();
     this.txtGiveW  = new System.Windows.Forms.TextBox();
     this.txtBackW  = new System.Windows.Forms.TextBox();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnYes    = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(16, 136);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(66, 17);
     this.label11.TabIndex = 35;
     this.label11.Text     = "供水流量:";
     //
     // dtDate
     //
     this.dtDate.Location = new System.Drawing.Point(112, 16);
     this.dtDate.Name     = "dtDate";
     this.dtDate.Size     = new System.Drawing.Size(192, 21);
     this.dtDate.TabIndex = 32;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(16, 96);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(91, 17);
     this.label3.TabIndex = 31;
     this.label3.Text     = "回水平均温度:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(16, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(91, 17);
     this.label2.TabIndex = 30;
     this.label2.Text     = "供水平均温度:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(42, 17);
     this.label1.TabIndex = 29;
     this.label1.Text     = "时间:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(16, 176);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(66, 17);
     this.label4.TabIndex = 40;
     this.label4.Text     = "回水流量:";
     //
     // txtGiveT
     //
     this.txtGiveT.Location = new System.Drawing.Point(112, 56);
     this.txtGiveT.Name     = "txtGiveT";
     this.txtGiveT.Size     = new System.Drawing.Size(192, 21);
     this.txtGiveT.TabIndex = 44;
     this.txtGiveT.Text     = "";
     //
     // txtBackT
     //
     this.txtBackT.Location = new System.Drawing.Point(112, 96);
     this.txtBackT.Name     = "txtBackT";
     this.txtBackT.Size     = new System.Drawing.Size(192, 21);
     this.txtBackT.TabIndex = 47;
     this.txtBackT.Text     = "";
     //
     // txtGiveW
     //
     this.txtGiveW.Location = new System.Drawing.Point(112, 136);
     this.txtGiveW.Name     = "txtGiveW";
     this.txtGiveW.Size     = new System.Drawing.Size(192, 21);
     this.txtGiveW.TabIndex = 51;
     this.txtGiveW.Text     = "";
     //
     // txtBackW
     //
     this.txtBackW.Location = new System.Drawing.Point(112, 176);
     this.txtBackW.Name     = "txtBackW";
     this.txtBackW.Size     = new System.Drawing.Size(192, 21);
     this.txtBackW.TabIndex = 52;
     this.txtBackW.Text     = "";
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(232, 224);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(72, 24);
     this.btnCancel.TabIndex = 54;
     this.btnCancel.Text     = "取消";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // btnYes
     //
     this.btnYes.Location = new System.Drawing.Point(160, 224);
     this.btnYes.Name     = "btnYes";
     this.btnYes.Size     = new System.Drawing.Size(72, 24);
     this.btnYes.TabIndex = 53;
     this.btnYes.Text     = "确定";
     this.btnYes.Click   += new System.EventHandler(this.btnYes_Click);
     //
     // frmFactoryDatasItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(320, 271);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnYes);
     this.Controls.Add(this.txtBackW);
     this.Controls.Add(this.txtGiveW);
     this.Controls.Add(this.txtBackT);
     this.Controls.Add(this.txtGiveT);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFactoryDatasItem";
     this.Text            = "frmFactoryDatasItem";
     this.Load           += new System.EventHandler(this.frmFactoryDatasItem_Load);
     this.ResumeLayout(false);
 }
示例#41
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.comboBox1  = new System.Windows.Forms.ComboBox();
     this.comboBox2  = new System.Windows.Forms.ComboBox();
     this.button1    = new System.Windows.Forms.Button();
     this.button2    = new System.Windows.Forms.Button();
     this.button3    = new System.Windows.Forms.Button();
     this.textBox1   = new System.Windows.Forms.TextBox();
     this.panel1     = new System.Windows.Forms.Panel();
     this.nudChannel = new System.Windows.Forms.NumericUpDown();
     this.label1     = new System.Windows.Forms.Label();
     this.groupBox1  = new System.Windows.Forms.GroupBox();
     this.groupBox2  = new System.Windows.Forms.GroupBox();
     this.button5    = new System.Windows.Forms.Button();
     this.button4    = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.nudChannel)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Location              = new System.Drawing.Point(8, 8);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(256, 21);
     this.comboBox1.TabIndex              = 0;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // comboBox2
     //
     this.comboBox2.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.Location              = new System.Drawing.Point(8, 40);
     this.comboBox2.Name                  = "comboBox2";
     this.comboBox2.Size                  = new System.Drawing.Size(256, 21);
     this.comboBox2.TabIndex              = 1;
     this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(264, 8);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(120, 24);
     this.button1.TabIndex = 2;
     this.button1.Text     = "Show property pages";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(264, 40);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(120, 24);
     this.button2.TabIndex = 3;
     this.button2.Text     = "Show property pages";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(32, 400);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(96, 23);
     this.button3.TabIndex = 4;
     this.button3.Text     = "Record";
     this.button3.Click   += new System.EventHandler(this.button3_Click);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(8, 368);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(384, 20);
     this.textBox1.TabIndex = 6;
     this.textBox1.Text     = "c:\\test.avi";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Black;
     this.panel1.Location  = new System.Drawing.Point(8, 72);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(384, 288);
     this.panel1.TabIndex  = 7;
     //
     // nudChannel
     //
     this.nudChannel.Location = new System.Drawing.Point(64, 11);
     this.nudChannel.Name     = "nudChannel";
     this.nudChannel.Size     = new System.Drawing.Size(40, 20);
     this.nudChannel.TabIndex = 8;
     this.nudChannel.Value    = new decimal(new int[] {
         5,
         0,
         0,
         0
     });
     this.nudChannel.ValueChanged += new System.EventHandler(this.OnValueChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 11);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(48, 16);
     this.label1.TabIndex  = 9;
     this.label1.Text      = "Channel";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.button2);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.comboBox2);
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Location = new System.Drawing.Point(3, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(392, 68);
     this.groupBox1.TabIndex = 10;
     this.groupBox1.TabStop  = false;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button5);
     this.groupBox2.Controls.Add(this.button4);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.nudChannel);
     this.groupBox2.Enabled  = false;
     this.groupBox2.Location = new System.Drawing.Point(152, 390);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(240, 40);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop  = false;
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(168, 11);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(64, 23);
     this.button5.TabIndex = 11;
     this.button5.Text     = "CrossBar";
     this.button5.Click   += new System.EventHandler(this.button5_Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(112, 11);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(48, 23);
     this.button4.TabIndex = 10;
     this.button4.Text     = "Tuner";
     this.button4.Click   += new System.EventHandler(this.button4_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(402, 432);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.button3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "Form1";
     this.Text            = "DsTuner";
     this.FormClosed     += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.nudChannel)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.comboBox1        = new System.Windows.Forms.ComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.Off_e_enddate    = new System.Windows.Forms.DateTimePicker();
     this.label1           = new System.Windows.Forms.Label();
     this.Off_e_duration   = new System.Windows.Forms.DateTimePicker();
     this.Off_b_createserv = new System.Windows.Forms.Button();
     this.Off_e_location   = new System.Windows.Forms.TextBox();
     this.Off_l_loc        = new System.Windows.Forms.Label();
     this.Off_e_from       = new System.Windows.Forms.ComboBox();
     this.Off_l_from       = new System.Windows.Forms.Label();
     this.Off_l_dur        = new System.Windows.Forms.Label();
     this.Off_e_ord        = new System.Windows.Forms.NumericUpDown();
     this.Off_e_offtype    = new System.Windows.Forms.ComboBox();
     this.Off_l_offtype    = new System.Windows.Forms.Label();
     this.Off_e_act        = new System.Windows.Forms.ComboBox();
     this.Off_l_act        = new System.Windows.Forms.Label();
     this.tdb_e_code       = new System.Windows.Forms.TextBox();
     this.tdb_l_code       = new System.Windows.Forms.Label();
     this.Off_l_ord        = new System.Windows.Forms.Label();
     this.Off_e_dlt        = new System.Windows.Forms.ComboBox();
     this.Off_e_ishost     = new System.Windows.Forms.CheckBox();
     this.Off_l_dlt        = new System.Windows.Forms.Label();
     this.Off_e_parent     = new System.Windows.Forms.ComboBox();
     this.Off_l_parent     = new System.Windows.Forms.Label();
     this.tdb_e_id         = new System.Windows.Forms.Label();
     this.tdb_e_bez        = new System.Windows.Forms.TextBox();
     this.tdb_e_text       = new System.Windows.Forms.TextBox();
     this.tdb_l_text       = new System.Windows.Forms.Label();
     this.tdb_l_bez        = new System.Windows.Forms.Label();
     this.tdb_l_id         = new System.Windows.Forms.Label();
     this.TDB_abgrp        = new System.Windows.Forms.GroupBox();
     this.TDB_ab_clr       = new System.Windows.Forms.Button();
     this.TDB_ab_sel       = new System.Windows.Forms.Button();
     this.TDB_ab_exit      = new System.Windows.Forms.Button();
     this.TDB_ab_del       = new System.Windows.Forms.Button();
     this.TDB_ab_upd       = new System.Windows.Forms.Button();
     this.TDB_ab_ins       = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Off_e_ord)).BeginInit();
     this.TDB_abgrp.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.Off_e_enddate);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.Off_e_duration);
     this.groupBox1.Controls.Add(this.Off_b_createserv);
     this.groupBox1.Controls.Add(this.Off_e_location);
     this.groupBox1.Controls.Add(this.Off_l_loc);
     this.groupBox1.Controls.Add(this.Off_e_from);
     this.groupBox1.Controls.Add(this.Off_l_from);
     this.groupBox1.Controls.Add(this.Off_l_dur);
     this.groupBox1.Controls.Add(this.Off_e_ord);
     this.groupBox1.Controls.Add(this.Off_e_offtype);
     this.groupBox1.Controls.Add(this.Off_l_offtype);
     this.groupBox1.Controls.Add(this.Off_e_act);
     this.groupBox1.Controls.Add(this.Off_l_act);
     this.groupBox1.Controls.Add(this.tdb_e_code);
     this.groupBox1.Controls.Add(this.tdb_l_code);
     this.groupBox1.Controls.Add(this.Off_l_ord);
     this.groupBox1.Controls.Add(this.Off_e_dlt);
     this.groupBox1.Controls.Add(this.Off_e_ishost);
     this.groupBox1.Controls.Add(this.Off_l_dlt);
     this.groupBox1.Controls.Add(this.Off_e_parent);
     this.groupBox1.Controls.Add(this.Off_l_parent);
     this.groupBox1.Controls.Add(this.tdb_e_id);
     this.groupBox1.Controls.Add(this.tdb_e_bez);
     this.groupBox1.Controls.Add(this.tdb_e_text);
     this.groupBox1.Controls.Add(this.tdb_l_text);
     this.groupBox1.Controls.Add(this.tdb_l_bez);
     this.groupBox1.Controls.Add(this.tdb_l_id);
     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(620, 452);
     this.groupBox1.TabIndex = 13;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Description";
     //
     // comboBox1
     //
     this.comboBox1.Location = new System.Drawing.Point(136, 373);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(248, 21);
     this.comboBox1.TabIndex = 38;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 373);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(122, 23);
     this.label2.TabIndex = 37;
     this.label2.Text     = "Season";
     //
     // Off_e_enddate
     //
     this.Off_e_enddate.CustomFormat = "dd.MM.yyyy HH:mm";
     this.Off_e_enddate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.Off_e_enddate.Location     = new System.Drawing.Point(432, 347);
     this.Off_e_enddate.Name         = "Off_e_enddate";
     this.Off_e_enddate.Size         = new System.Drawing.Size(118, 20);
     this.Off_e_enddate.TabIndex     = 36;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(304, 351);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 23);
     this.label1.TabIndex = 35;
     this.label1.Text     = "End date";
     //
     // Off_e_duration
     //
     this.Off_e_duration.CustomFormat = "dd.MM.yyyy HH:mm";
     this.Off_e_duration.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.Off_e_duration.Location     = new System.Drawing.Point(136, 347);
     this.Off_e_duration.Name         = "Off_e_duration";
     this.Off_e_duration.Size         = new System.Drawing.Size(118, 20);
     this.Off_e_duration.TabIndex     = 34;
     //
     // Off_b_createserv
     //
     this.Off_b_createserv.Enabled  = false;
     this.Off_b_createserv.Location = new System.Drawing.Point(518, 373);
     this.Off_b_createserv.Name     = "Off_b_createserv";
     this.Off_b_createserv.Size     = new System.Drawing.Size(96, 23);
     this.Off_b_createserv.TabIndex = 33;
     this.Off_b_createserv.Text     = "Map to service";
     this.Off_b_createserv.UseVisualStyleBackColor = true;
     this.Off_b_createserv.Click += new System.EventHandler(this.Off_b_createserv_Click);
     //
     // Off_e_location
     //
     this.Off_e_location.Location = new System.Drawing.Point(136, 294);
     this.Off_e_location.Name     = "Off_e_location";
     this.Off_e_location.Size     = new System.Drawing.Size(248, 20);
     this.Off_e_location.TabIndex = 31;
     //
     // Off_l_loc
     //
     this.Off_l_loc.Location = new System.Drawing.Point(8, 297);
     this.Off_l_loc.Name     = "Off_l_loc";
     this.Off_l_loc.Size     = new System.Drawing.Size(100, 23);
     this.Off_l_loc.TabIndex = 32;
     this.Off_l_loc.Text     = "Account no";
     //
     // Off_e_from
     //
     this.Off_e_from.Location = new System.Drawing.Point(136, 320);
     this.Off_e_from.Name     = "Off_e_from";
     this.Off_e_from.Size     = new System.Drawing.Size(248, 21);
     this.Off_e_from.TabIndex = 28;
     //
     // Off_l_from
     //
     this.Off_l_from.Location = new System.Drawing.Point(8, 323);
     this.Off_l_from.Name     = "Off_l_from";
     this.Off_l_from.Size     = new System.Drawing.Size(85, 23);
     this.Off_l_from.TabIndex = 27;
     this.Off_l_from.Text     = "Invoice from";
     //
     // Off_l_dur
     //
     this.Off_l_dur.Location = new System.Drawing.Point(8, 351);
     this.Off_l_dur.Name     = "Off_l_dur";
     this.Off_l_dur.Size     = new System.Drawing.Size(70, 23);
     this.Off_l_dur.TabIndex = 25;
     this.Off_l_dur.Text     = "Start date";
     //
     // Off_e_ord
     //
     this.Off_e_ord.Location = new System.Drawing.Point(498, 236);
     this.Off_e_ord.Name     = "Off_e_ord";
     this.Off_e_ord.Size     = new System.Drawing.Size(36, 20);
     this.Off_e_ord.TabIndex = 24;
     //
     // Off_e_offtype
     //
     this.Off_e_offtype.Location = new System.Drawing.Point(136, 215);
     this.Off_e_offtype.Name     = "Off_e_offtype";
     this.Off_e_offtype.Size     = new System.Drawing.Size(248, 21);
     this.Off_e_offtype.TabIndex = 23;
     //
     // Off_l_offtype
     //
     this.Off_l_offtype.Location = new System.Drawing.Point(8, 215);
     this.Off_l_offtype.Name     = "Off_l_offtype";
     this.Off_l_offtype.Size     = new System.Drawing.Size(104, 23);
     this.Off_l_offtype.TabIndex = 22;
     this.Off_l_offtype.Text     = "Offer";
     //
     // Off_e_act
     //
     this.Off_e_act.Location = new System.Drawing.Point(136, 267);
     this.Off_e_act.Name     = "Off_e_act";
     this.Off_e_act.Size     = new System.Drawing.Size(248, 21);
     this.Off_e_act.TabIndex = 21;
     //
     // Off_l_act
     //
     this.Off_l_act.Location = new System.Drawing.Point(8, 267);
     this.Off_l_act.Name     = "Off_l_act";
     this.Off_l_act.Size     = new System.Drawing.Size(122, 23);
     this.Off_l_act.TabIndex = 20;
     this.Off_l_act.Text     = "Customer";
     //
     // tdb_e_code
     //
     this.tdb_e_code.Location = new System.Drawing.Point(136, 48);
     this.tdb_e_code.Name     = "tdb_e_code";
     this.tdb_e_code.Size     = new System.Drawing.Size(456, 20);
     this.tdb_e_code.TabIndex = 18;
     //
     // tdb_l_code
     //
     this.tdb_l_code.Location = new System.Drawing.Point(8, 48);
     this.tdb_l_code.Name     = "tdb_l_code";
     this.tdb_l_code.Size     = new System.Drawing.Size(100, 23);
     this.tdb_l_code.TabIndex = 19;
     this.tdb_l_code.Text     = "Code";
     //
     // Off_l_ord
     //
     this.Off_l_ord.Location = new System.Drawing.Point(429, 238);
     this.Off_l_ord.Name     = "Off_l_ord";
     this.Off_l_ord.Size     = new System.Drawing.Size(63, 23);
     this.Off_l_ord.TabIndex = 16;
     this.Off_l_ord.Text     = "Ordering";
     //
     // Off_e_dlt
     //
     this.Off_e_dlt.Location = new System.Drawing.Point(136, 240);
     this.Off_e_dlt.Name     = "Off_e_dlt";
     this.Off_e_dlt.Size     = new System.Drawing.Size(248, 21);
     this.Off_e_dlt.TabIndex = 15;
     //
     // Off_e_ishost
     //
     this.Off_e_ishost.Location        = new System.Drawing.Point(432, 192);
     this.Off_e_ishost.Name            = "Off_e_ishost";
     this.Off_e_ishost.Size            = new System.Drawing.Size(141, 24);
     this.Off_e_ishost.TabIndex        = 14;
     this.Off_e_ishost.Text            = "Root serviceoffer ?";
     this.Off_e_ishost.CheckedChanged += new System.EventHandler(this.Off_e_ishost_CheckedChanged);
     //
     // Off_l_dlt
     //
     this.Off_l_dlt.Location = new System.Drawing.Point(8, 240);
     this.Off_l_dlt.Name     = "Off_l_dlt";
     this.Off_l_dlt.Size     = new System.Drawing.Size(104, 23);
     this.Off_l_dlt.TabIndex = 12;
     this.Off_l_dlt.Text     = "Reservation flag";
     //
     // Off_e_parent
     //
     this.Off_e_parent.Location = new System.Drawing.Point(136, 192);
     this.Off_e_parent.Name     = "Off_e_parent";
     this.Off_e_parent.Size     = new System.Drawing.Size(248, 21);
     this.Off_e_parent.TabIndex = 11;
     //
     // Off_l_parent
     //
     this.Off_l_parent.Location = new System.Drawing.Point(8, 192);
     this.Off_l_parent.Name     = "Off_l_parent";
     this.Off_l_parent.Size     = new System.Drawing.Size(100, 23);
     this.Off_l_parent.TabIndex = 10;
     this.Off_l_parent.Text     = "Parent serviceoffer";
     //
     // tdb_e_id
     //
     this.tdb_e_id.Location = new System.Drawing.Point(136, 24);
     this.tdb_e_id.Name     = "tdb_e_id";
     this.tdb_e_id.Size     = new System.Drawing.Size(64, 16);
     this.tdb_e_id.TabIndex = 9;
     //
     // tdb_e_bez
     //
     this.tdb_e_bez.Location = new System.Drawing.Point(136, 72);
     this.tdb_e_bez.Name     = "tdb_e_bez";
     this.tdb_e_bez.Size     = new System.Drawing.Size(456, 20);
     this.tdb_e_bez.TabIndex = 0;
     //
     // tdb_e_text
     //
     this.tdb_e_text.Location  = new System.Drawing.Point(136, 96);
     this.tdb_e_text.Multiline = true;
     this.tdb_e_text.Name      = "tdb_e_text";
     this.tdb_e_text.Size      = new System.Drawing.Size(456, 88);
     this.tdb_e_text.TabIndex  = 2;
     //
     // tdb_l_text
     //
     this.tdb_l_text.Location    = new System.Drawing.Point(8, 128);
     this.tdb_l_text.Name        = "tdb_l_text";
     this.tdb_l_text.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.tdb_l_text.Size        = new System.Drawing.Size(100, 23);
     this.tdb_l_text.TabIndex    = 4;
     this.tdb_l_text.Text        = "Description";
     //
     // tdb_l_bez
     //
     this.tdb_l_bez.Location = new System.Drawing.Point(8, 72);
     this.tdb_l_bez.Name     = "tdb_l_bez";
     this.tdb_l_bez.Size     = new System.Drawing.Size(100, 23);
     this.tdb_l_bez.TabIndex = 2;
     this.tdb_l_bez.Text     = "Title";
     //
     // tdb_l_id
     //
     this.tdb_l_id.Location = new System.Drawing.Point(8, 21);
     this.tdb_l_id.Name     = "tdb_l_id";
     this.tdb_l_id.Size     = new System.Drawing.Size(100, 23);
     this.tdb_l_id.TabIndex = 1;
     this.tdb_l_id.Text     = "ID";
     //
     // TDB_abgrp
     //
     this.TDB_abgrp.Controls.Add(this.TDB_ab_clr);
     this.TDB_abgrp.Controls.Add(this.TDB_ab_sel);
     this.TDB_abgrp.Controls.Add(this.TDB_ab_exit);
     this.TDB_abgrp.Controls.Add(this.TDB_ab_del);
     this.TDB_abgrp.Controls.Add(this.TDB_ab_upd);
     this.TDB_abgrp.Controls.Add(this.TDB_ab_ins);
     this.TDB_abgrp.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.TDB_abgrp.Location = new System.Drawing.Point(0, 396);
     this.TDB_abgrp.Name     = "TDB_abgrp";
     this.TDB_abgrp.Size     = new System.Drawing.Size(620, 56);
     this.TDB_abgrp.TabIndex = 15;
     this.TDB_abgrp.TabStop  = false;
     this.TDB_abgrp.Text     = "Actions";
     //
     // TDB_ab_clr
     //
     this.TDB_ab_clr.Dock     = System.Windows.Forms.DockStyle.Right;
     this.TDB_ab_clr.Location = new System.Drawing.Point(467, 16);
     this.TDB_ab_clr.Name     = "TDB_ab_clr";
     this.TDB_ab_clr.Size     = new System.Drawing.Size(75, 37);
     this.TDB_ab_clr.TabIndex = 10;
     this.TDB_ab_clr.Text     = "Clear";
     this.TDB_ab_clr.Click   += new System.EventHandler(this.TDB_ab_clr_Click);
     //
     // TDB_ab_sel
     //
     this.TDB_ab_sel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.TDB_ab_sel.Dock      = System.Windows.Forms.DockStyle.Left;
     this.TDB_ab_sel.Location  = new System.Drawing.Point(228, 16);
     this.TDB_ab_sel.Name      = "TDB_ab_sel";
     this.TDB_ab_sel.Size      = new System.Drawing.Size(80, 37);
     this.TDB_ab_sel.TabIndex  = 8;
     this.TDB_ab_sel.Text      = "Select";
     this.TDB_ab_sel.UseVisualStyleBackColor = false;
     this.TDB_ab_sel.Click += new System.EventHandler(this.TDB_ab_sel_Click);
     //
     // TDB_ab_exit
     //
     this.TDB_ab_exit.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.TDB_ab_exit.Dock      = System.Windows.Forms.DockStyle.Right;
     this.TDB_ab_exit.Location  = new System.Drawing.Point(542, 16);
     this.TDB_ab_exit.Name      = "TDB_ab_exit";
     this.TDB_ab_exit.Size      = new System.Drawing.Size(75, 37);
     this.TDB_ab_exit.TabIndex  = 9;
     this.TDB_ab_exit.Text      = "Exit";
     this.TDB_ab_exit.UseVisualStyleBackColor = false;
     this.TDB_ab_exit.Click += new System.EventHandler(this.TDB_ab_exit_Click);
     //
     // TDB_ab_del
     //
     this.TDB_ab_del.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.TDB_ab_del.Dock      = System.Windows.Forms.DockStyle.Left;
     this.TDB_ab_del.Location  = new System.Drawing.Point(153, 16);
     this.TDB_ab_del.Name      = "TDB_ab_del";
     this.TDB_ab_del.Size      = new System.Drawing.Size(75, 37);
     this.TDB_ab_del.TabIndex  = 7;
     this.TDB_ab_del.Text      = "Delete";
     this.TDB_ab_del.UseVisualStyleBackColor = false;
     this.TDB_ab_del.Click += new System.EventHandler(this.TDB_ab_del_Click);
     //
     // TDB_ab_upd
     //
     this.TDB_ab_upd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.TDB_ab_upd.Dock      = System.Windows.Forms.DockStyle.Left;
     this.TDB_ab_upd.Location  = new System.Drawing.Point(78, 16);
     this.TDB_ab_upd.Name      = "TDB_ab_upd";
     this.TDB_ab_upd.Size      = new System.Drawing.Size(75, 37);
     this.TDB_ab_upd.TabIndex  = 6;
     this.TDB_ab_upd.Text      = "Update";
     this.TDB_ab_upd.UseVisualStyleBackColor = false;
     this.TDB_ab_upd.Click += new System.EventHandler(this.TDB_ab_upd_Click);
     //
     // TDB_ab_ins
     //
     this.TDB_ab_ins.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.TDB_ab_ins.Dock      = System.Windows.Forms.DockStyle.Left;
     this.TDB_ab_ins.Location  = new System.Drawing.Point(3, 16);
     this.TDB_ab_ins.Name      = "TDB_ab_ins";
     this.TDB_ab_ins.Size      = new System.Drawing.Size(75, 37);
     this.TDB_ab_ins.TabIndex  = 5;
     this.TDB_ab_ins.Text      = "Insert";
     this.TDB_ab_ins.UseVisualStyleBackColor = false;
     this.TDB_ab_ins.Click += new System.EventHandler(this.TDB_ab_ins_Click);
     //
     // FServiceoffer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(620, 452);
     this.Controls.Add(this.TDB_abgrp);
     this.Controls.Add(this.groupBox1);
     this.Name  = "FServiceoffer";
     this.Text  = "Serviceoffer";
     this.Load += new System.EventHandler(this.FOff_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Off_e_ord)).EndInit();
     this.TDB_abgrp.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#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.lblGuide2          = new System.Windows.Forms.Label();
     this.txtPassword        = new System.Windows.Forms.TextBox();
     this.txtUsername        = new System.Windows.Forms.TextBox();
     this.lblPassword        = new System.Windows.Forms.Label();
     this.lblUsername        = new System.Windows.Forms.Label();
     this.txtConfirmPassword = new System.Windows.Forms.TextBox();
     this.lblConfirmPassword = new System.Windows.Forms.Label();
     this.pnlTitle.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlTitle
     //
     this.pnlTitle.Name = "pnlTitle";
     //
     // lblTitle
     //
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(278, 19);
     this.lblTitle.Text = "Select Initial Reporting Sever Administrator";
     //
     // lblGuide
     //
     this.lblGuide.Name = "lblGuide";
     this.lblGuide.Size = new System.Drawing.Size(344, 16);
     this.lblGuide.Text = "Please select a user account to be used as the Initial Administrator. ";
     //
     // btnBack
     //
     this.btnBack.Name   = "btnBack";
     this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
     //
     // btnCancel
     //
     this.btnCancel.Name = "btnCancel";
     //
     // btnNext
     //
     this.btnNext.Name   = "btnNext";
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // lblGuide2
     //
     this.lblGuide2.Location = new System.Drawing.Point(24, 128);
     this.lblGuide2.Name     = "lblGuide2";
     this.lblGuide2.Size     = new System.Drawing.Size(472, 40);
     this.lblGuide2.TabIndex = 5;
     this.lblGuide2.Text     = "This user will be the only user to have access to reporting server through the we" +
                               "b site until additional users have been assigned appropriate rights.";
     //
     // txtPassword
     //
     this.txtPassword.Location     = new System.Drawing.Point(152, 216);
     this.txtPassword.MaxLength    = 50;
     this.txtPassword.Name         = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size         = new System.Drawing.Size(200, 20);
     this.txtPassword.TabIndex     = 18;
     this.txtPassword.Text         = "";
     //
     // txtUsername
     //
     this.txtUsername.Location  = new System.Drawing.Point(152, 184);
     this.txtUsername.MaxLength = 50;
     this.txtUsername.Name      = "txtUsername";
     this.txtUsername.Size      = new System.Drawing.Size(200, 20);
     this.txtUsername.TabIndex  = 17;
     this.txtUsername.Text      = "";
     //
     // lblPassword
     //
     this.lblPassword.Location = new System.Drawing.Point(24, 216);
     this.lblPassword.Name     = "lblPassword";
     this.lblPassword.Size     = new System.Drawing.Size(72, 21);
     this.lblPassword.TabIndex = 16;
     this.lblPassword.Text     = "&Password:"******"lblUsername";
     this.lblUsername.Size     = new System.Drawing.Size(72, 21);
     this.lblUsername.TabIndex = 15;
     this.lblUsername.Text     = "User &name:";
     //
     // txtConfirmPassword
     //
     this.txtConfirmPassword.Location     = new System.Drawing.Point(152, 248);
     this.txtConfirmPassword.MaxLength    = 50;
     this.txtConfirmPassword.Name         = "txtConfirmPassword";
     this.txtConfirmPassword.PasswordChar = '*';
     this.txtConfirmPassword.Size         = new System.Drawing.Size(200, 20);
     this.txtConfirmPassword.TabIndex     = 20;
     this.txtConfirmPassword.Text         = "";
     //
     // lblConfirmPassword
     //
     this.lblConfirmPassword.Location = new System.Drawing.Point(24, 248);
     this.lblConfirmPassword.Name     = "lblConfirmPassword";
     this.lblConfirmPassword.Size     = new System.Drawing.Size(104, 21);
     this.lblConfirmPassword.TabIndex = 19;
     this.lblConfirmPassword.Text     = "Confirm Password:"******"FrmReportAdmin";
     this.Text = " Database Configuration";
     this.Controls.SetChildIndex(this.lblGuide2, 0);
     this.Controls.SetChildIndex(this.pnlTitle, 0);
     this.Controls.SetChildIndex(this.lblGuide, 0);
     this.Controls.SetChildIndex(this.btnBack, 0);
     this.Controls.SetChildIndex(this.btnCancel, 0);
     this.Controls.SetChildIndex(this.btnNext, 0);
     this.Controls.SetChildIndex(this.lblUsername, 0);
     this.Controls.SetChildIndex(this.lblPassword, 0);
     this.Controls.SetChildIndex(this.txtUsername, 0);
     this.Controls.SetChildIndex(this.txtPassword, 0);
     this.Controls.SetChildIndex(this.lblConfirmPassword, 0);
     this.Controls.SetChildIndex(this.txtConfirmPassword, 0);
     this.pnlTitle.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.password        = new System.Windows.Forms.TextBox();
     this.username        = new System.Windows.Forms.TextBox();
     this.decription      = new System.Windows.Forms.TextBox();
     this.userdescription = new System.Windows.Forms.TextBox();
     this.pluginname      = new System.Windows.Forms.Label();
     this.cancelButton    = new System.Windows.Forms.Button();
     this.okButton        = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(104, 16);
     this.label1.TabIndex = 15;
     this.label1.Text     = "»м¤ пользовател¤";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 64);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 16;
     this.label2.Text     = "ѕароль";
     //
     // password
     //
     this.password.Location     = new System.Drawing.Point(16, 88);
     this.password.Name         = "password";
     this.password.PasswordChar = '*';
     this.password.Size         = new System.Drawing.Size(176, 20);
     this.password.TabIndex     = 18;
     this.password.Text         = "";
     this.password.TextChanged += new System.EventHandler(this.password_TextChanged);
     //
     // username
     //
     this.username.Location     = new System.Drawing.Point(16, 40);
     this.username.Name         = "username";
     this.username.Size         = new System.Drawing.Size(176, 20);
     this.username.TabIndex     = 17;
     this.username.Text         = "";
     this.username.TextChanged += new System.EventHandler(this.username_TextChanged);
     //
     // decription
     //
     this.decription.AutoSize     = false;
     this.decription.Location     = new System.Drawing.Point(16, 120);
     this.decription.Name         = "decription";
     this.decription.Size         = new System.Drawing.Size(184, 64);
     this.decription.TabIndex     = 19;
     this.decription.Text         = "textBox1";
     this.decription.TextChanged += new System.EventHandler(this.decription_TextChanged);
     //
     // userdescription
     //
     this.userdescription.AutoSize = false;
     this.userdescription.Location = new System.Drawing.Point(16, 192);
     this.userdescription.Name     = "userdescription";
     this.userdescription.ReadOnly = true;
     this.userdescription.Size     = new System.Drawing.Size(184, 64);
     this.userdescription.TabIndex = 20;
     this.userdescription.Text     = "textBox2";
     //
     // pluginname
     //
     this.pluginname.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.pluginname.Location = new System.Drawing.Point(128, 0);
     this.pluginname.Name     = "pluginname";
     this.pluginname.Size     = new System.Drawing.Size(112, 24);
     this.pluginname.TabIndex = 21;
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location     = new System.Drawing.Point(128, 272);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(104, 32);
     this.cancelButton.TabIndex     = 22;
     this.cancelButton.Text         = "ќтмена";
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location     = new System.Drawing.Point(8, 272);
     this.okButton.Name         = "okButton";
     this.okButton.Size         = new System.Drawing.Size(104, 32);
     this.okButton.TabIndex     = 23;
     this.okButton.Text         = "ќк";
     this.okButton.Click       += new System.EventHandler(this.okButton_Click);
     //
     // PluginProperties
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(240, 310);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.pluginname);
     this.Controls.Add(this.userdescription);
     this.Controls.Add(this.decription);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.password);
     this.Controls.Add(this.username);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "PluginProperties";
     this.Text        = "PluginProperties";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormApptFieldDefEdit));
     this.butCancel      = new OpenDental.UI.Button();
     this.butOK          = new OpenDental.UI.Button();
     this.textName       = new System.Windows.Forms.TextBox();
     this.buttonDelete   = new OpenDental.UI.Button();
     this.labelStatus    = new System.Windows.Forms.Label();
     this.labelWarning   = new System.Windows.Forms.Label();
     this.textPickList   = new System.Windows.Forms.TextBox();
     this.labelFieldType = new System.Windows.Forms.Label();
     this.comboFieldType = new System.Windows.Forms.ComboBox();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(254, 451);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 24);
     this.butCancel.TabIndex     = 2;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Location = new System.Drawing.Point(254, 416);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 24);
     this.butOK.TabIndex = 1;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // textName
     //
     this.textName.Location = new System.Drawing.Point(20, 27);
     this.textName.Name     = "textName";
     this.textName.Size     = new System.Drawing.Size(308, 20);
     this.textName.TabIndex = 0;
     //
     // buttonDelete
     //
     this.buttonDelete.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonDelete.Image      = global::OpenDental.Properties.Resources.deleteX;
     this.buttonDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonDelete.Location   = new System.Drawing.Point(20, 451);
     this.buttonDelete.Name       = "buttonDelete";
     this.buttonDelete.Size       = new System.Drawing.Size(82, 24);
     this.buttonDelete.TabIndex   = 3;
     this.buttonDelete.Text       = "&Delete";
     this.buttonDelete.Click     += new System.EventHandler(this.buttonDelete_Click);
     //
     // labelStatus
     //
     this.labelStatus.Location  = new System.Drawing.Point(17, 9);
     this.labelStatus.Name      = "labelStatus";
     this.labelStatus.Size      = new System.Drawing.Size(143, 15);
     this.labelStatus.TabIndex  = 80;
     this.labelStatus.Text      = "Field Name";
     this.labelStatus.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // labelWarning
     //
     this.labelWarning.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.labelWarning.Location   = new System.Drawing.Point(203, 71);
     this.labelWarning.Name       = "labelWarning";
     this.labelWarning.Size       = new System.Drawing.Size(101, 14);
     this.labelWarning.TabIndex   = 89;
     this.labelWarning.Text       = "One Per Line";
     this.labelWarning.TextAlign  = System.Drawing.ContentAlignment.BottomLeft;
     this.labelWarning.Visible    = false;
     //
     // textPickList
     //
     this.textPickList.AcceptsReturn = true;
     this.textPickList.Location      = new System.Drawing.Point(20, 96);
     this.textPickList.MaxLength     = 4000;
     this.textPickList.Multiline     = true;
     this.textPickList.Name          = "textPickList";
     this.textPickList.ScrollBars    = System.Windows.Forms.ScrollBars.Vertical;
     this.textPickList.Size          = new System.Drawing.Size(309, 301);
     this.textPickList.TabIndex      = 88;
     //
     // labelFieldType
     //
     this.labelFieldType.Location  = new System.Drawing.Point(17, 50);
     this.labelFieldType.Name      = "labelFieldType";
     this.labelFieldType.Size      = new System.Drawing.Size(143, 15);
     this.labelFieldType.TabIndex  = 87;
     this.labelFieldType.Text      = "Field Type";
     this.labelFieldType.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // comboFieldType
     //
     this.comboFieldType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboFieldType.DropDownWidth     = 177;
     this.comboFieldType.FormattingEnabled = true;
     this.comboFieldType.Location          = new System.Drawing.Point(20, 68);
     this.comboFieldType.MaxDropDownItems  = 30;
     this.comboFieldType.Name                  = "comboFieldType";
     this.comboFieldType.Size                  = new System.Drawing.Size(177, 21);
     this.comboFieldType.TabIndex              = 86;
     this.comboFieldType.SelectedIndexChanged += new System.EventHandler(this.comboFieldType_SelectedIndexChanged);
     //
     // FormApptFieldDefEdit
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(349, 493);
     this.Controls.Add(this.labelWarning);
     this.Controls.Add(this.textPickList);
     this.Controls.Add(this.labelFieldType);
     this.Controls.Add(this.comboFieldType);
     this.Controls.Add(this.labelStatus);
     this.Controls.Add(this.buttonDelete);
     this.Controls.Add(this.textName);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.butCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormApptFieldDefEdit";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Edit Appointment Field Def";
     this.Load         += new System.EventHandler(this.FormApptFieldDefEdit_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#46
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(frmAbout));
     this.tableLayoutPanel   = new System.Windows.Forms.TableLayoutPanel();
     this.logoPictureBox     = new System.Windows.Forms.PictureBox();
     this.labelProductName   = new System.Windows.Forms.Label();
     this.labelVersion       = new System.Windows.Forms.Label();
     this.labelCopyright     = new System.Windows.Forms.Label();
     this.textBoxDescription = new System.Windows.Forms.TextBox();
     this.okButton           = new System.Windows.Forms.Button();
     this.tableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.ColumnCount = 2;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
     this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
     this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
     this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
     this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
     this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
     this.tableLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
     this.tableLayoutPanel.Name     = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 6;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
     this.tableLayoutPanel.Size     = new System.Drawing.Size(417, 265);
     this.tableLayoutPanel.TabIndex = 0;
     //
     // logoPictureBox
     //
     this.logoPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.logoPictureBox.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.logoPictureBox.ErrorImage = null;
     this.logoPictureBox.Image      = global::MineEdit.Properties.Resources.LOGOBAR;
     this.logoPictureBox.Location   = new System.Drawing.Point(3, 3);
     this.logoPictureBox.Name       = "logoPictureBox";
     this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
     this.logoPictureBox.Size     = new System.Drawing.Size(131, 259);
     this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.logoPictureBox.TabIndex = 12;
     this.logoPictureBox.TabStop  = false;
     //
     // labelProductName
     //
     this.labelProductName.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelProductName.Location    = new System.Drawing.Point(143, 0);
     this.labelProductName.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelProductName.Name        = "labelProductName";
     this.labelProductName.Size        = new System.Drawing.Size(271, 17);
     this.labelProductName.TabIndex    = 19;
     this.labelProductName.Text        = "MineEdit";
     this.labelProductName.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelVersion
     //
     this.labelVersion.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelVersion.Location    = new System.Drawing.Point(143, 26);
     this.labelVersion.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelVersion.Name        = "labelVersion";
     this.labelVersion.Size        = new System.Drawing.Size(271, 17);
     this.labelVersion.TabIndex    = 0;
     this.labelVersion.Text        = "v1.0";
     this.labelVersion.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCopyright
     //
     this.labelCopyright.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.labelCopyright.Location    = new System.Drawing.Point(143, 52);
     this.labelCopyright.Margin      = new System.Windows.Forms.Padding(6, 0, 3, 0);
     this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
     this.labelCopyright.Name        = "labelCopyright";
     this.labelCopyright.Size        = new System.Drawing.Size(271, 17);
     this.labelCopyright.TabIndex    = 21;
     this.labelCopyright.Text        = "Copyleft 2010 Rob \"N3X15\" Nelson";
     this.labelCopyright.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBoxDescription
     //
     this.textBoxDescription.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBoxDescription.Location   = new System.Drawing.Point(143, 107);
     this.textBoxDescription.Margin     = new System.Windows.Forms.Padding(6, 3, 3, 3);
     this.textBoxDescription.Multiline  = true;
     this.textBoxDescription.Name       = "textBoxDescription";
     this.textBoxDescription.ReadOnly   = true;
     this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxDescription.Size       = new System.Drawing.Size(271, 126);
     this.textBoxDescription.TabIndex   = 23;
     this.textBoxDescription.TabStop    = false;
     this.textBoxDescription.Text       = resources.GetString("textBoxDescription.Text");
     //
     // okButton
     //
     this.okButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.okButton.Location     = new System.Drawing.Point(339, 239);
     this.okButton.Name         = "okButton";
     this.okButton.Size         = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex     = 24;
     this.okButton.Text         = "&OK";
     //
     // frmAbout
     //
     this.AcceptButton        = this.okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(435, 283);
     this.Controls.Add(this.tableLayoutPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAbout";
     this.Padding         = new System.Windows.Forms.Padding(9);
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "I AM NOT GOOD WITH COMPUTER";
     this.tableLayoutPanel.ResumeLayout(false);
     this.tableLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
     this.ResumeLayout(false);
 }
示例#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.label1     = new System.Windows.Forms.Label();
     this.label2     = new System.Windows.Forms.Label();
     this.label3     = new System.Windows.Forms.Label();
     this.groupBox1  = new System.Windows.Forms.GroupBox();
     this.mbtnCancel = new System.Windows.Forms.Button();
     this.mbtnOK     = new System.Windows.Forms.Button();
     this.mtxtLeft   = new System.Windows.Forms.TextBox();
     this.mtxtRight  = new System.Windows.Forms.TextBox();
     this.mtxtOrder  = new System.Windows.Forms.TextBox();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 28);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(104, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "# of points before:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 56);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(104, 16);
     this.label2.TabIndex = 1;
     this.label2.Text     = "# of points after:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 84);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(104, 16);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Smoothing Order:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.mtxtOrder);
     this.groupBox1.Controls.Add(this.mtxtRight);
     this.groupBox1.Controls.Add(this.mtxtLeft);
     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, 112);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Options:";
     //
     // mbtnCancel
     //
     this.mbtnCancel.Location = new System.Drawing.Point(123, 128);
     this.mbtnCancel.Name     = "mbtnCancel";
     this.mbtnCancel.Size     = new System.Drawing.Size(69, 25);
     this.mbtnCancel.TabIndex = 4;
     this.mbtnCancel.Text     = "Cancel";
     this.mbtnCancel.Click   += new System.EventHandler(this.mbtnCancel_Click);
     //
     // mbtnOK
     //
     this.mbtnOK.Location = new System.Drawing.Point(32, 128);
     this.mbtnOK.Name     = "mbtnOK";
     this.mbtnOK.Size     = new System.Drawing.Size(69, 25);
     this.mbtnOK.TabIndex = 5;
     this.mbtnOK.Text     = "OK";
     this.mbtnOK.Click   += new System.EventHandler(this.mbtnOK_Click);
     //
     // mtxtLeft
     //
     this.mtxtLeft.Location = new System.Drawing.Point(137, 21);
     this.mtxtLeft.Name     = "mtxtLeft";
     this.mtxtLeft.Size     = new System.Drawing.Size(48, 20);
     this.mtxtLeft.TabIndex = 3;
     this.mtxtLeft.Text     = "2";
     //
     // mtxtRight
     //
     this.mtxtRight.Location = new System.Drawing.Point(136, 51);
     this.mtxtRight.Name     = "mtxtRight";
     this.mtxtRight.Size     = new System.Drawing.Size(48, 20);
     this.mtxtRight.TabIndex = 4;
     this.mtxtRight.Text     = "2";
     //
     // mtxtOrder
     //
     this.mtxtOrder.Location = new System.Drawing.Point(136, 80);
     this.mtxtOrder.Name     = "mtxtOrder";
     this.mtxtOrder.Size     = new System.Drawing.Size(48, 20);
     this.mtxtOrder.TabIndex = 5;
     this.mtxtOrder.Text     = "2";
     //
     // frmSavGolOptions
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(248, 158);
     this.Controls.Add(this.mbtnOK);
     this.Controls.Add(this.mbtnCancel);
     this.Controls.Add(this.groupBox1);
     this.Name = "frmSavGolOptions";
     this.Text = "Savitzky Golay Options";
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(BrowseWorkspaceDirectory));
     this.MogControl_LocalBranchTreeView = new MOG_ControlsLibrary.Common.MogControl_LocalBranchTreeView.MogControl_LocalBranchTreeView();
     this.BrowseOkButton      = new System.Windows.Forms.Button();
     this.BrowseCancelButton  = new System.Windows.Forms.Button();
     this.BrowseTargetTextBox = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // MogControl_LocalBranchTreeView
     //
     this.MogControl_LocalBranchTreeView.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.MogControl_LocalBranchTreeView.Location = new System.Drawing.Point(5, 32);
     this.MogControl_LocalBranchTreeView.MOGAllowDirectoryOpperations = true;
     this.MogControl_LocalBranchTreeView.MOGShowFiles          = false;
     this.MogControl_LocalBranchTreeView.MOGSorted             = true;
     this.MogControl_LocalBranchTreeView.Name                  = "MogControl_LocalBranchTreeView";
     this.MogControl_LocalBranchTreeView.Size                  = new System.Drawing.Size(280, 192);
     this.MogControl_LocalBranchTreeView.TabIndex              = 0;
     this.MogControl_LocalBranchTreeView.MOGAfterTargetSelect += new MOG_ControlsLibrary.Common.MogControl_LocalBranchTreeView.MogControl_LocalBranchTreeView.TreeViewEvent(this.MogControl_LocalBranchTreeView_MOGAfterTargetSelect);
     //
     // BrowseOkButton
     //
     this.BrowseOkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.BrowseOkButton.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.BrowseOkButton.Location     = new System.Drawing.Point(208, 240);
     this.BrowseOkButton.Name         = "BrowseOkButton";
     this.BrowseOkButton.TabIndex     = 1;
     this.BrowseOkButton.Text         = "Ok";
     //
     // BrowseCancelButton
     //
     this.BrowseCancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.BrowseCancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.BrowseCancelButton.Location     = new System.Drawing.Point(128, 240);
     this.BrowseCancelButton.Name         = "BrowseCancelButton";
     this.BrowseCancelButton.TabIndex     = 2;
     this.BrowseCancelButton.Text         = "Cancel";
     //
     // BrowseTargetTextBox
     //
     this.BrowseTargetTextBox.Location     = new System.Drawing.Point(5, 8);
     this.BrowseTargetTextBox.Name         = "BrowseTargetTextBox";
     this.BrowseTargetTextBox.Size         = new System.Drawing.Size(281, 20);
     this.BrowseTargetTextBox.TabIndex     = 3;
     this.BrowseTargetTextBox.Text         = "";
     this.BrowseTargetTextBox.TextChanged += new System.EventHandler(this.BrowseTargetTextBox_TextChanged);
     //
     // BrowseWorkspaceDirectory
     //
     this.AcceptButton      = this.BrowseOkButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.BrowseCancelButton;
     this.ClientSize        = new System.Drawing.Size(292, 269);
     this.Controls.Add(this.BrowseTargetTextBox);
     this.Controls.Add(this.BrowseCancelButton);
     this.Controls.Add(this.BrowseOkButton);
     this.Controls.Add(this.MogControl_LocalBranchTreeView);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview      = true;
     this.Name            = "BrowseWorkspaceDirectory";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Browse Workspace Directory";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.BrowseWorkspaceDirectory_KeyDown);
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.BrowseWorkspaceDirectory_Closing);
     this.ResumeLayout(false);
 }
示例#49
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmRptSaleHis));
     this.panel2                 = new System.Windows.Forms.Panel();
     this.dataGrid1              = new System.Windows.Forms.DataGrid();
     this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.so_date                = new System.Windows.Forms.DataGridTextBoxColumn();
     this.so_code                = new System.Windows.Forms.DataGridTextBoxColumn();
     this.client_orderno         = new System.Windows.Forms.DataGridTextBoxColumn();
     this.client_name            = new System.Windows.Forms.DataGridTextBoxColumn();
     this.amount                 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.fobamount              = new System.Windows.Forms.DataGridTextBoxColumn();
     this.createby               = new System.Windows.Forms.DataGridTextBoxColumn();
     this.status_name            = new System.Windows.Forms.DataGridTextBoxColumn();
     this.panel4                 = new System.Windows.Forms.Panel();
     this.button2                = new TJSystem.Classes.XpStyleButton();
     this.priComboBox3           = new TJSystem.Classes.PriComboBox();
     this.priComboBox1           = new TJSystem.Classes.PriComboBox();
     this.label5                 = new System.Windows.Forms.Label();
     this.label7                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.priDateTimePicker3     = new TJSystem.Classes.PriDateTimePicker();
     this.label2                 = new System.Windows.Forms.Label();
     this.priDateTimePicker1     = new TJSystem.Classes.PriDateTimePicker();
     this.button1                = new TJSystem.Classes.XpStyleButton();
     this.panel1                 = new System.Windows.Forms.Panel();
     this.label1                 = new System.Windows.Forms.Label();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.label4                 = new System.Windows.Forms.Label();
     this.textBox1               = new System.Windows.Forms.TextBox();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
     this.panel4.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Controls.Add(this.dataGrid1);
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 48);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(792, 518);
     this.panel2.TabIndex = 11;
     //
     // dataGrid1
     //
     this.dataGrid1.AllowSorting = false;
     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.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.dataGrid1.CaptionText     = "销售历史记录";
     this.dataGrid1.CaptionVisible  = false;
     this.dataGrid1.DataMember      = "";
     this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGrid1.Location        = new System.Drawing.Point(0, 72);
     this.dataGrid1.Name            = "dataGrid1";
     this.dataGrid1.ReadOnly        = true;
     this.dataGrid1.Size            = new System.Drawing.Size(784, 440);
     this.dataGrid1.TabIndex        = 1;
     this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.AllowSorting = false;
     this.dataGridTableStyle1.DataGrid     = this.dataGrid1;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.so_date,
         this.so_code,
         this.client_orderno,
         this.client_name,
         this.amount,
         this.fobamount,
         this.createby,
         this.status_name
     });
     this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName     = "sale_so_master";
     this.dataGridTableStyle1.ReadOnly        = true;
     //
     // so_date
     //
     this.so_date.Format      = "";
     this.so_date.FormatInfo  = null;
     this.so_date.HeaderText  = "订单开立日期";
     this.so_date.MappingName = "so_date";
     this.so_date.NullText    = "";
     this.so_date.Width       = 150;
     //
     // so_code
     //
     this.so_code.Format      = "";
     this.so_code.FormatInfo  = null;
     this.so_code.HeaderText  = "定单号";
     this.so_code.MappingName = "so_code";
     this.so_code.NullText    = "";
     this.so_code.Width       = 75;
     //
     // client_orderno
     //
     this.client_orderno.Format      = "";
     this.client_orderno.FormatInfo  = null;
     this.client_orderno.HeaderText  = "客户合同号";
     this.client_orderno.MappingName = "client_orderno";
     this.client_orderno.NullText    = "";
     this.client_orderno.Width       = 75;
     //
     // client_name
     //
     this.client_name.Format      = "";
     this.client_name.FormatInfo  = null;
     this.client_name.HeaderText  = "客户";
     this.client_name.MappingName = "client_name";
     this.client_name.NullText    = "";
     this.client_name.Width       = 150;
     //
     // amount
     //
     this.amount.Format      = "";
     this.amount.FormatInfo  = null;
     this.amount.HeaderText  = "总金额";
     this.amount.MappingName = "amount";
     this.amount.NullText    = "";
     this.amount.Width       = 75;
     //
     // fobamount
     //
     this.fobamount.Format      = "";
     this.fobamount.FormatInfo  = null;
     this.fobamount.HeaderText  = "FON金额";
     this.fobamount.MappingName = "fobamount";
     this.fobamount.NullText    = "";
     this.fobamount.Width       = 75;
     //
     // createby
     //
     this.createby.Format      = "";
     this.createby.FormatInfo  = null;
     this.createby.HeaderText  = "订单开立人";
     this.createby.MappingName = "createby";
     this.createby.NullText    = "";
     this.createby.Width       = 150;
     //
     // status_name
     //
     this.status_name.Format      = "";
     this.status_name.FormatInfo  = null;
     this.status_name.HeaderText  = "状态";
     this.status_name.MappingName = "status_name";
     this.status_name.NullText    = "";
     this.status_name.Width       = 75;
     //
     // panel4
     //
     this.panel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel4.BackgroundImage")));
     this.panel4.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel4.Controls.Add(this.textBox1);
     this.panel4.Controls.Add(this.label4);
     this.panel4.Controls.Add(this.button2);
     this.panel4.Controls.Add(this.priComboBox3);
     this.panel4.Controls.Add(this.priComboBox1);
     this.panel4.Controls.Add(this.label5);
     this.panel4.Controls.Add(this.label7);
     this.panel4.Controls.Add(this.label3);
     this.panel4.Controls.Add(this.priDateTimePicker3);
     this.panel4.Controls.Add(this.label2);
     this.panel4.Controls.Add(this.priDateTimePicker1);
     this.panel4.Controls.Add(this.button1);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(788, 72);
     this.panel4.TabIndex = 0;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(696, 32);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 32);
     this.button2.TabIndex = 220;
     this.button2.Text     = "打印";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // priComboBox3
     //
     this.priComboBox3.BackColor     = System.Drawing.Color.White;
     this.priComboBox3.DataField     = "Contact_id";
     this.priComboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.priComboBox3.Location      = new System.Drawing.Point(104, 40);
     this.priComboBox3.Name          = "priComboBox3";
     this.priComboBox3.Size          = new System.Drawing.Size(120, 21);
     this.priComboBox3.TabIndex      = 219;
     //
     // priComboBox1
     //
     this.priComboBox1.BackColor     = System.Drawing.Color.White;
     this.priComboBox1.DataField     = "status";
     this.priComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.priComboBox1.Location      = new System.Drawing.Point(312, 40);
     this.priComboBox1.Name          = "priComboBox1";
     this.priComboBox1.Size          = new System.Drawing.Size(120, 21);
     this.priComboBox1.TabIndex      = 218;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.ForeColor = System.Drawing.Color.Blue;
     this.label5.Location  = new System.Drawing.Point(256, 40);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(48, 23);
     this.label5.TabIndex  = 217;
     this.label5.Text      = "状态";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location  = new System.Drawing.Point(16, 40);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(80, 23);
     this.label7.TabIndex  = 216;
     this.label7.Text      = "销售人员";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.ForeColor = System.Drawing.Color.Blue;
     this.label3.Location  = new System.Drawing.Point(240, 16);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 23);
     this.label3.TabIndex  = 215;
     this.label3.Text      = "结束日期";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // priDateTimePicker3
     //
     this.priDateTimePicker3.CustomFormat = "yyyy-MM-dd";
     this.priDateTimePicker3.DataField    = "so_date";
     this.priDateTimePicker3.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.priDateTimePicker3.Location     = new System.Drawing.Point(104, 16);
     this.priDateTimePicker3.Name         = "priDateTimePicker3";
     this.priDateTimePicker3.Size         = new System.Drawing.Size(120, 22);
     this.priDateTimePicker3.TabIndex     = 214;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.ForeColor = System.Drawing.Color.Blue;
     this.label2.Location  = new System.Drawing.Point(16, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(80, 23);
     this.label2.TabIndex  = 16;
     this.label2.Text      = "起始日期";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // priDateTimePicker1
     //
     this.priDateTimePicker1.CustomFormat = "yyyy-MM-dd";
     this.priDateTimePicker1.DataField    = "so_date";
     this.priDateTimePicker1.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.priDateTimePicker1.Location     = new System.Drawing.Point(312, 16);
     this.priDateTimePicker1.Name         = "priDateTimePicker1";
     this.priDateTimePicker1.Size         = new System.Drawing.Size(120, 22);
     this.priDateTimePicker1.TabIndex     = 214;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(616, 32);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 32);
     this.button1.TabIndex = 1;
     this.button1.Text     = "查询";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Controls.Add(this.label1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(792, 48);
     this.panel1.TabIndex = 10;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label1.Font      = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(788, 44);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "销售历史记录";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format      = "";
     this.dataGridTextBoxColumn1.FormatInfo  = null;
     this.dataGridTextBoxColumn1.HeaderText  = "员工编号";
     this.dataGridTextBoxColumn1.MappingName = "employee_id";
     this.dataGridTextBoxColumn1.NullText    = "";
     this.dataGridTextBoxColumn1.Width       = 75;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format      = "";
     this.dataGridTextBoxColumn2.FormatInfo  = null;
     this.dataGridTextBoxColumn2.HeaderText  = "员工姓名";
     this.dataGridTextBoxColumn2.MappingName = "";
     this.dataGridTextBoxColumn2.NullText    = "";
     this.dataGridTextBoxColumn2.Width       = 75;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format      = "";
     this.dataGridTextBoxColumn3.FormatInfo  = null;
     this.dataGridTextBoxColumn3.HeaderText  = "英文名";
     this.dataGridTextBoxColumn3.MappingName = "";
     this.dataGridTextBoxColumn3.NullText    = "";
     this.dataGridTextBoxColumn3.Width       = 75;
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format      = "";
     this.dataGridTextBoxColumn4.FormatInfo  = null;
     this.dataGridTextBoxColumn4.HeaderText  = "性别";
     this.dataGridTextBoxColumn4.MappingName = "Gender";
     this.dataGridTextBoxColumn4.NullText    = "";
     this.dataGridTextBoxColumn4.Width       = 75;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.ForeColor = System.Drawing.Color.Blue;
     this.label4.Location  = new System.Drawing.Point(448, 16);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(64, 23);
     this.label4.TabIndex  = 221;
     this.label4.Text      = "销售单号";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(448, 40);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(160, 22);
     this.textBox1.TabIndex = 222;
     this.textBox1.Text     = "";
     //
     // frmRptSaleHis
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(7, 15);
     this.ClientSize        = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.Name = "frmRptSaleHis";
     this.Text = "销售记录";
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.lstArchivosAdjuntos = new System.Windows.Forms.ListBox();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.cmdAdjuntar         = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbTipoDeSolicitudes = new System.Windows.Forms.ComboBox();
     this.label2         = new System.Windows.Forms.Label();
     this.txtCantidad    = new System.Windows.Forms.TextBox();
     this.txtPrecio      = new System.Windows.Forms.TextBox();
     this.label3         = new System.Windows.Forms.Label();
     this.txtRegistroLog = new System.Windows.Forms.RichTextBox();
     this.label4         = new System.Windows.Forms.Label();
     this.cmd            = new System.Windows.Forms.Button();
     this.button2        = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // lstArchivosAdjuntos
     //
     this.lstArchivosAdjuntos.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.lstArchivosAdjuntos.FormattingEnabled = true;
     this.lstArchivosAdjuntos.Location          = new System.Drawing.Point(7, 19);
     this.lstArchivosAdjuntos.Name     = "lstArchivosAdjuntos";
     this.lstArchivosAdjuntos.Size     = new System.Drawing.Size(187, 173);
     this.lstArchivosAdjuntos.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cmdAdjuntar);
     this.groupBox1.Controls.Add(this.lstArchivosAdjuntos);
     this.groupBox1.Location = new System.Drawing.Point(438, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(200, 228);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Archivos";
     //
     // cmdAdjuntar
     //
     this.cmdAdjuntar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdAdjuntar.Location = new System.Drawing.Point(7, 199);
     this.cmdAdjuntar.Name     = "cmdAdjuntar";
     this.cmdAdjuntar.Size     = new System.Drawing.Size(187, 23);
     this.cmdAdjuntar.TabIndex = 1;
     this.cmdAdjuntar.Text     = "Abrir archivo...";
     this.cmdAdjuntar.UseVisualStyleBackColor = true;
     this.cmdAdjuntar.Click += new System.EventHandler(this.cmdAdjuntar_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.label1.Location = new System.Drawing.Point(11, 31);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(109, 13);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Tipo de solicitud :";
     //
     // cmbTipoDeSolicitudes
     //
     this.cmbTipoDeSolicitudes.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTipoDeSolicitudes.FormattingEnabled = true;
     this.cmbTipoDeSolicitudes.Location          = new System.Drawing.Point(131, 28);
     this.cmbTipoDeSolicitudes.Name     = "cmbTipoDeSolicitudes";
     this.cmbTipoDeSolicitudes.Size     = new System.Drawing.Size(167, 21);
     this.cmbTipoDeSolicitudes.TabIndex = 3;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.label2.Location = new System.Drawing.Point(55, 58);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(65, 13);
     this.label2.TabIndex = 4;
     this.label2.Text     = "Cantidad :";
     //
     // txtCantidad
     //
     this.txtCantidad.Location = new System.Drawing.Point(131, 55);
     this.txtCantidad.Name     = "txtCantidad";
     this.txtCantidad.Size     = new System.Drawing.Size(74, 20);
     this.txtCantidad.TabIndex = 5;
     //
     // txtPrecio
     //
     this.txtPrecio.Location = new System.Drawing.Point(131, 81);
     this.txtPrecio.Name     = "txtPrecio";
     this.txtPrecio.Size     = new System.Drawing.Size(74, 20);
     this.txtPrecio.TabIndex = 7;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.Location = new System.Drawing.Point(69, 84);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(51, 13);
     this.label3.TabIndex = 6;
     this.label3.Text     = "Precio :";
     //
     // txtRegistroLog
     //
     this.txtRegistroLog.Location = new System.Drawing.Point(2, 151);
     this.txtRegistroLog.Name     = "txtRegistroLog";
     this.txtRegistroLog.ReadOnly = true;
     this.txtRegistroLog.Size     = new System.Drawing.Size(430, 89);
     this.txtRegistroLog.TabIndex = 8;
     this.txtRegistroLog.Text     = "";
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label4.ForeColor = System.Drawing.Color.Navy;
     this.label4.Location  = new System.Drawing.Point(4, 134);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(98, 13);
     this.label4.TabIndex  = 9;
     this.label4.Text      = "Eventos de registro";
     //
     // cmd
     //
     this.cmd.Location = new System.Drawing.Point(552, 251);
     this.cmd.Name     = "cmd";
     this.cmd.Size     = new System.Drawing.Size(86, 23);
     this.cmd.TabIndex = 10;
     this.cmd.Text     = "Borrar";
     this.cmd.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(460, 251);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(86, 23);
     this.button2.TabIndex = 11;
     this.button2.Text     = "Registrar";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // FormularioSolicitud
     //
     this.ClientSize = new System.Drawing.Size(650, 286);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.cmd);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtRegistroLog);
     this.Controls.Add(this.txtPrecio);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtCantidad);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.cmbTipoDeSolicitudes);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "FormularioSolicitud";
     this.ShowIcon    = false;
     this.Text        = "Solicitud";
     this.Load       += new System.EventHandler(this.FormularioSolicitud_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(OldfrmLookupSetup));
     this.components         = new System.ComponentModel.Container();
     this.ToolTip1           = new System.Windows.Forms.ToolTip(components);
     this.fraLk              = new System.Windows.Forms.GroupBox();
     this.OptLKValue         = new System.Windows.Forms.RadioButton();
     this.optID              = new System.Windows.Forms.RadioButton();
     this.Frame1             = new System.Windows.Forms.GroupBox();
     this.cmdImport          = new System.Windows.Forms.Button();
     this.cmdEdit            = new System.Windows.Forms.Button();
     this.cmdMoveDown        = new System.Windows.Forms.Button();
     this.cmdMoveUp          = new System.Windows.Forms.Button();
     this.cmdDelete          = new System.Windows.Forms.Button();
     this.cmdAddLookupTable  = new System.Windows.Forms.Button();
     this.cmdClose           = new System.Windows.Forms.Button();
     this.cboLookupTableList = new System.Windows.Forms.ComboBox();
     this.cmdEditLookup      = new System.Windows.Forms.Button();
     this.cmdDelLookup       = new System.Windows.Forms.Button();
     this.cmdAddLookupValue  = new System.Windows.Forms.Button();
     this.txtLookupValue     = new System.Windows.Forms.TextBox();
     this.txtID              = new System.Windows.Forms.TextBox();
     this.rdcLookupTableList = new AxMSRDC.AxMSRDC();
     this.rdcLookupList      = new AxMSRDC.AxMSRDC();
     this.dbgLookupList      = new AxMSDBGrid.AxDBGrid();
     this.Label2             = new System.Windows.Forms.Label();
     this.Label3             = new System.Windows.Forms.Label();
     this.fraLk.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.rdcLookupTableList).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.rdcLookupList).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.dbgLookupList).BeginInit();
     this.Text                                = "Lookup Table Setup";
     this.ClientSize                          = new System.Drawing.Size(808, 438);
     this.Location                            = new System.Drawing.Point(5, 29);
     this.StartPosition                       = System.Windows.Forms.FormStartPosition.WindowsDefaultBounds;
     this.Font                                = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.AutoScaleMode                       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                           = System.Drawing.SystemColors.Control;
     this.FormBorderStyle                     = System.Windows.Forms.FormBorderStyle.Sizable;
     this.ControlBox                          = true;
     this.Enabled                             = true;
     this.KeyPreview                          = false;
     this.MaximizeBox                         = true;
     this.MinimizeBox                         = true;
     this.Cursor                              = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                         = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar                       = true;
     this.HelpButton                          = false;
     this.WindowState                         = System.Windows.Forms.FormWindowState.Normal;
     this.Name                                = "frmLookupSetup";
     this.fraLk.Text                          = "Compare Table Values to:";
     this.fraLk.Enabled                       = false;
     this.fraLk.Size                          = new System.Drawing.Size(224, 64);
     this.fraLk.Location                      = new System.Drawing.Point(510, 90);
     this.fraLk.TabIndex                      = 15;
     this.fraLk.Font                          = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.fraLk.BackColor                     = System.Drawing.SystemColors.Control;
     this.fraLk.ForeColor                     = System.Drawing.SystemColors.ControlText;
     this.fraLk.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.fraLk.Visible                       = true;
     this.fraLk.Padding                       = new System.Windows.Forms.Padding(0);
     this.fraLk.Name                          = "fraLk";
     this.OptLKValue.TextAlign                = System.Drawing.ContentAlignment.MiddleLeft;
     this.OptLKValue.Text                     = "Lookup Value";
     this.OptLKValue.Size                     = new System.Drawing.Size(122, 19);
     this.OptLKValue.Location                 = new System.Drawing.Point(17, 40);
     this.OptLKValue.TabIndex                 = 17;
     this.OptLKValue.Font                     = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.OptLKValue.CheckAlign               = System.Drawing.ContentAlignment.MiddleLeft;
     this.OptLKValue.BackColor                = System.Drawing.SystemColors.Control;
     this.OptLKValue.CausesValidation         = true;
     this.OptLKValue.Enabled                  = true;
     this.OptLKValue.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.OptLKValue.Cursor                   = System.Windows.Forms.Cursors.Default;
     this.OptLKValue.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this.OptLKValue.Appearance               = System.Windows.Forms.Appearance.Normal;
     this.OptLKValue.TabStop                  = true;
     this.OptLKValue.Checked                  = false;
     this.OptLKValue.Visible                  = true;
     this.OptLKValue.Name                     = "OptLKValue";
     this.optID.TextAlign                     = System.Drawing.ContentAlignment.MiddleLeft;
     this.optID.Text                          = "ID";
     this.optID.Size                          = new System.Drawing.Size(122, 19);
     this.optID.Location                      = new System.Drawing.Point(17, 20);
     this.optID.TabIndex                      = 16;
     this.optID.Font                          = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.optID.CheckAlign                    = System.Drawing.ContentAlignment.MiddleLeft;
     this.optID.BackColor                     = System.Drawing.SystemColors.Control;
     this.optID.CausesValidation              = true;
     this.optID.Enabled                       = true;
     this.optID.ForeColor                     = System.Drawing.SystemColors.ControlText;
     this.optID.Cursor                        = System.Windows.Forms.Cursors.Default;
     this.optID.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.optID.Appearance                    = System.Windows.Forms.Appearance.Normal;
     this.optID.TabStop                       = true;
     this.optID.Checked                       = false;
     this.optID.Visible                       = true;
     this.optID.Name                          = "optID";
     this.Frame1.Text                         = "Lookup Table Preferences";
     this.Frame1.Size                         = new System.Drawing.Size(314, 254);
     this.Frame1.Location                     = new System.Drawing.Point(480, 60);
     this.Frame1.TabIndex                     = 19;
     this.Frame1.Font                         = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Frame1.BackColor                    = System.Drawing.SystemColors.Control;
     this.Frame1.Enabled                      = true;
     this.Frame1.ForeColor                    = System.Drawing.SystemColors.ControlText;
     this.Frame1.RightToLeft                  = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Visible                      = true;
     this.Frame1.Padding                      = new System.Windows.Forms.Padding(0);
     this.Frame1.Name                         = "Frame1";
     this.cmdImport.TextAlign                 = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdImport.Text                      = "Import values from *.csv List";
     this.cmdImport.Font                      = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdImport.Size                      = new System.Drawing.Size(162, 52);
     this.cmdImport.Location                  = new System.Drawing.Point(510, 350);
     this.cmdImport.TabIndex                  = 18;
     this.cmdImport.BackColor                 = System.Drawing.SystemColors.Control;
     this.cmdImport.CausesValidation          = true;
     this.cmdImport.Enabled                   = true;
     this.cmdImport.ForeColor                 = System.Drawing.SystemColors.ControlText;
     this.cmdImport.Cursor                    = System.Windows.Forms.Cursors.Default;
     this.cmdImport.RightToLeft               = System.Windows.Forms.RightToLeft.No;
     this.cmdImport.TabStop                   = true;
     this.cmdImport.Name                      = "cmdImport";
     this.cmdEdit.TextAlign                   = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdEdit.Text                        = "Edit";
     this.cmdEdit.Size                        = new System.Drawing.Size(58, 25);
     this.cmdEdit.Location                    = new System.Drawing.Point(718, 17);
     this.cmdEdit.TabIndex                    = 14;
     this.cmdEdit.Font                        = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdEdit.BackColor                   = System.Drawing.SystemColors.Control;
     this.cmdEdit.CausesValidation            = true;
     this.cmdEdit.Enabled                     = true;
     this.cmdEdit.ForeColor                   = System.Drawing.SystemColors.ControlText;
     this.cmdEdit.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.cmdEdit.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.cmdEdit.TabStop                     = true;
     this.cmdEdit.Name                        = "cmdEdit";
     this.cmdMoveDown.TextAlign               = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdMoveDown.Text                    = "Move Down";
     this.cmdMoveDown.Size                    = new System.Drawing.Size(88, 25);
     this.cmdMoveDown.Location                = new System.Drawing.Point(122, 327);
     this.cmdMoveDown.TabIndex                = 13;
     this.cmdMoveDown.Font                    = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdMoveDown.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdMoveDown.CausesValidation        = true;
     this.cmdMoveDown.Enabled                 = true;
     this.cmdMoveDown.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdMoveDown.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdMoveDown.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdMoveDown.TabStop                 = true;
     this.cmdMoveDown.Name                    = "cmdMoveDown";
     this.cmdMoveUp.TextAlign                 = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdMoveUp.Text                      = "Move Up";
     this.cmdMoveUp.Size                      = new System.Drawing.Size(83, 25);
     this.cmdMoveUp.Location                  = new System.Drawing.Point(37, 327);
     this.cmdMoveUp.TabIndex                  = 12;
     this.cmdMoveUp.Font                      = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdMoveUp.BackColor                 = System.Drawing.SystemColors.Control;
     this.cmdMoveUp.CausesValidation          = true;
     this.cmdMoveUp.Enabled                   = true;
     this.cmdMoveUp.ForeColor                 = System.Drawing.SystemColors.ControlText;
     this.cmdMoveUp.Cursor                    = System.Windows.Forms.Cursors.Default;
     this.cmdMoveUp.RightToLeft               = System.Windows.Forms.RightToLeft.No;
     this.cmdMoveUp.TabStop                   = true;
     this.cmdMoveUp.Name                      = "cmdMoveUp";
     this.cmdDelete.TextAlign                 = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelete.Text                      = "Delete";
     this.cmdDelete.Size                      = new System.Drawing.Size(63, 25);
     this.cmdDelete.Location                  = new System.Drawing.Point(653, 17);
     this.cmdDelete.TabIndex                  = 11;
     this.cmdDelete.Font                      = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdDelete.BackColor                 = System.Drawing.SystemColors.Control;
     this.cmdDelete.CausesValidation          = true;
     this.cmdDelete.Enabled                   = true;
     this.cmdDelete.ForeColor                 = System.Drawing.SystemColors.ControlText;
     this.cmdDelete.Cursor                    = System.Windows.Forms.Cursors.Default;
     this.cmdDelete.RightToLeft               = System.Windows.Forms.RightToLeft.No;
     this.cmdDelete.TabStop                   = true;
     this.cmdDelete.Name                      = "cmdDelete";
     this.cmdAddLookupTable.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdAddLookupTable.Text              = "Add";
     this.cmdAddLookupTable.Size              = new System.Drawing.Size(63, 25);
     this.cmdAddLookupTable.Location          = new System.Drawing.Point(587, 17);
     this.cmdAddLookupTable.TabIndex          = 10;
     this.cmdAddLookupTable.Font              = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdAddLookupTable.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdAddLookupTable.CausesValidation  = true;
     this.cmdAddLookupTable.Enabled           = true;
     this.cmdAddLookupTable.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdAddLookupTable.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdAddLookupTable.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdAddLookupTable.TabStop           = true;
     this.cmdAddLookupTable.Name              = "cmdAddLookupTable";
     this.cmdClose.TextAlign                  = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text                       = "Close";
     this.cmdClose.Size                       = new System.Drawing.Size(115, 23);
     this.cmdClose.Location                   = new System.Drawing.Point(199, 404);
     this.cmdClose.TabIndex                   = 9;
     this.cmdClose.Font                       = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdClose.BackColor                  = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation           = true;
     this.cmdClose.Enabled                    = true;
     this.cmdClose.ForeColor                  = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor                     = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft                = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop                    = true;
     this.cmdClose.Name                       = "cmdClose";
     this.cboLookupTableList.Size             = new System.Drawing.Size(425, 27);
     this.cboLookupTableList.Location         = new System.Drawing.Point(114, 15);
     this.cboLookupTableList.TabIndex         = 6;
     this.cboLookupTableList.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboLookupTableList.BackColor        = System.Drawing.SystemColors.Window;
     this.cboLookupTableList.CausesValidation = true;
     this.cboLookupTableList.Enabled          = true;
     this.cboLookupTableList.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cboLookupTableList.IntegralHeight   = true;
     this.cboLookupTableList.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cboLookupTableList.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cboLookupTableList.Sorted           = false;
     this.cboLookupTableList.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboLookupTableList.TabStop          = true;
     this.cboLookupTableList.Visible          = true;
     this.cboLookupTableList.Name             = "cboLookupTableList";
     this.cmdEditLookup.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdEditLookup.Text                  = "Edit";
     this.cmdEditLookup.Size                  = new System.Drawing.Size(73, 27);
     this.cmdEditLookup.Location              = new System.Drawing.Point(322, 327);
     this.cmdEditLookup.TabIndex              = 4;
     this.cmdEditLookup.Font                  = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdEditLookup.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdEditLookup.CausesValidation      = true;
     this.cmdEditLookup.Enabled               = true;
     this.cmdEditLookup.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdEditLookup.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdEditLookup.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdEditLookup.TabStop               = true;
     this.cmdEditLookup.Name                  = "cmdEditLookup";
     this.cmdDelLookup.TextAlign              = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelLookup.Text                   = "Delete";
     this.cmdDelLookup.Size                   = new System.Drawing.Size(73, 27);
     this.cmdDelLookup.Location               = new System.Drawing.Point(398, 327);
     this.cmdDelLookup.TabIndex               = 3;
     this.cmdDelLookup.Font                   = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdDelLookup.BackColor              = System.Drawing.SystemColors.Control;
     this.cmdDelLookup.CausesValidation       = true;
     this.cmdDelLookup.Enabled                = true;
     this.cmdDelLookup.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.cmdDelLookup.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.cmdDelLookup.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.cmdDelLookup.TabStop                = true;
     this.cmdDelLookup.Name                   = "cmdDelLookup";
     this.cmdAddLookupValue.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdAddLookupValue.Text              = "Add";
     this.cmdAddLookupValue.Size              = new System.Drawing.Size(70, 27);
     this.cmdAddLookupValue.Location          = new System.Drawing.Point(404, 367);
     this.cmdAddLookupValue.TabIndex          = 2;
     this.cmdAddLookupValue.Font              = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdAddLookupValue.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdAddLookupValue.CausesValidation  = true;
     this.cmdAddLookupValue.Enabled           = true;
     this.cmdAddLookupValue.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdAddLookupValue.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdAddLookupValue.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdAddLookupValue.TabStop           = true;
     this.cmdAddLookupValue.Name              = "cmdAddLookupValue";
     this.txtLookupValue.AutoSize             = false;
     this.txtLookupValue.Size                 = new System.Drawing.Size(289, 27);
     this.txtLookupValue.Location             = new System.Drawing.Point(112, 367);
     this.txtLookupValue.TabIndex             = 1;
     this.txtLookupValue.Font                 = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.txtLookupValue.AcceptsReturn        = true;
     this.txtLookupValue.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtLookupValue.BackColor            = System.Drawing.SystemColors.Window;
     this.txtLookupValue.CausesValidation     = true;
     this.txtLookupValue.Enabled              = true;
     this.txtLookupValue.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtLookupValue.HideSelection        = true;
     this.txtLookupValue.ReadOnly             = false;
     this.txtLookupValue.MaxLength            = 0;
     this.txtLookupValue.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtLookupValue.Multiline            = false;
     this.txtLookupValue.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtLookupValue.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtLookupValue.TabStop              = true;
     this.txtLookupValue.Visible              = true;
     this.txtLookupValue.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtLookupValue.Name                 = "txtLookupValue";
     this.txtID.AutoSize                      = false;
     this.txtID.BackColor                     = System.Drawing.Color.White;
     this.txtID.Size                          = new System.Drawing.Size(40, 27);
     this.txtID.Location                      = new System.Drawing.Point(73, 367);
     this.txtID.TabIndex                      = 0;
     this.txtID.Font                          = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.txtID.AcceptsReturn                 = true;
     this.txtID.TextAlign                     = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtID.CausesValidation              = true;
     this.txtID.Enabled                       = true;
     this.txtID.ForeColor                     = System.Drawing.SystemColors.WindowText;
     this.txtID.HideSelection                 = true;
     this.txtID.ReadOnly                      = false;
     this.txtID.MaxLength                     = 0;
     this.txtID.Cursor                        = System.Windows.Forms.Cursors.IBeam;
     this.txtID.Multiline                     = false;
     this.txtID.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.txtID.ScrollBars                    = System.Windows.Forms.ScrollBars.None;
     this.txtID.TabStop                       = true;
     this.txtID.Visible                       = true;
     this.txtID.BorderStyle                   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtID.Name                          = "txtID";
     rdcLookupTableList.OcxState              = (System.Windows.Forms.AxHost.State)resources.GetObject("rdcLookupTableList.OcxState");
     this.rdcLookupTableList.Size             = new System.Drawing.Size(225, 28);
     this.rdcLookupTableList.Location         = new System.Drawing.Point(29, 424);
     this.rdcLookupTableList.Visible          = false;
     this.rdcLookupTableList.Name             = "rdcLookupTableList";
     rdcLookupList.OcxState                   = (System.Windows.Forms.AxHost.State)resources.GetObject("rdcLookupList.OcxState");
     this.rdcLookupList.Size                  = new System.Drawing.Size(225, 28);
     this.rdcLookupList.Location              = new System.Drawing.Point(257, 424);
     this.rdcLookupList.Visible               = false;
     this.rdcLookupList.Name                  = "rdcLookupList";
     dbgLookupList.OcxState                   = (System.Windows.Forms.AxHost.State)resources.GetObject("dbgLookupList.OcxState");
     this.dbgLookupList.Size                  = new System.Drawing.Size(442, 275);
     this.dbgLookupList.Location              = new System.Drawing.Point(28, 48);
     this.dbgLookupList.TabIndex              = 5;
     this.dbgLookupList.Name                  = "dbgLookupList";
     this.Label2.Text                         = "Lookup Tables:";
     this.Label2.Size                         = new System.Drawing.Size(100, 24);
     this.Label2.Location                     = new System.Drawing.Point(10, 17);
     this.Label2.TabIndex                     = 8;
     this.Label2.Font                         = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label2.TextAlign                    = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor                    = System.Drawing.SystemColors.Control;
     this.Label2.Enabled                      = true;
     this.Label2.ForeColor                    = System.Drawing.SystemColors.ControlText;
     this.Label2.Cursor                       = System.Windows.Forms.Cursors.Default;
     this.Label2.RightToLeft                  = System.Windows.Forms.RightToLeft.No;
     this.Label2.UseMnemonic                  = true;
     this.Label2.Visible                      = true;
     this.Label2.AutoSize                     = false;
     this.Label2.BorderStyle                  = System.Windows.Forms.BorderStyle.None;
     this.Label2.Name                         = "Label2";
     this.Label3.TextAlign                    = System.Drawing.ContentAlignment.TopRight;
     this.Label3.Text                         = "New:";
     this.Label3.ForeColor                    = System.Drawing.Color.Blue;
     this.Label3.Size                         = new System.Drawing.Size(50, 22);
     this.Label3.Location                     = new System.Drawing.Point(22, 368);
     this.Label3.TabIndex                     = 7;
     this.Label3.Font                         = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label3.BackColor                    = System.Drawing.SystemColors.Control;
     this.Label3.Enabled                      = true;
     this.Label3.Cursor                       = System.Windows.Forms.Cursors.Default;
     this.Label3.RightToLeft                  = System.Windows.Forms.RightToLeft.No;
     this.Label3.UseMnemonic                  = true;
     this.Label3.Visible                      = true;
     this.Label3.AutoSize                     = false;
     this.Label3.BorderStyle                  = System.Windows.Forms.BorderStyle.None;
     this.Label3.Name                         = "Label3";
     ((System.ComponentModel.ISupportInitialize) this.dbgLookupList).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.rdcLookupList).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.rdcLookupTableList).EndInit();
     this.Controls.Add(fraLk);
     this.Controls.Add(Frame1);
     this.Controls.Add(cmdImport);
     this.Controls.Add(cmdEdit);
     this.Controls.Add(cmdMoveDown);
     this.Controls.Add(cmdMoveUp);
     this.Controls.Add(cmdDelete);
     this.Controls.Add(cmdAddLookupTable);
     this.Controls.Add(cmdClose);
     this.Controls.Add(cboLookupTableList);
     this.Controls.Add(cmdEditLookup);
     this.Controls.Add(cmdDelLookup);
     this.Controls.Add(cmdAddLookupValue);
     this.Controls.Add(txtLookupValue);
     this.Controls.Add(txtID);
     this.Controls.Add(rdcLookupTableList);
     this.Controls.Add(rdcLookupList);
     this.Controls.Add(dbgLookupList);
     this.Controls.Add(Label2);
     this.Controls.Add(Label3);
     this.fraLk.Controls.Add(OptLKValue);
     this.fraLk.Controls.Add(optID);
     this.fraLk.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormNodeContentEditor));
     this.label2             = new System.Windows.Forms.Label();
     this.textBoxNodeContent = new System.Windows.Forms.TextBox();
     this.buttonCancel       = new System.Windows.Forms.Button();
     this.buttonOK           = new System.Windows.Forms.Button();
     this.textBox1           = new System.Windows.Forms.TextBox();
     this.panelTag           = new System.Windows.Forms.Panel();
     this.textBoxTag         = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.panelUnusedBits    = new System.Windows.Forms.Panel();
     this.textBoxUnusedBits  = new System.Windows.Forms.TextBox();
     this.label3             = new System.Windows.Forms.Label();
     this.panelTag.SuspendLayout();
     this.panelUnusedBits.SuspendLayout();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(3, 129);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(87, 15);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Data Content:";
     //
     // textBoxNodeContent
     //
     this.textBoxNodeContent.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.textBoxNodeContent.Font       = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.textBoxNodeContent.Location   = new System.Drawing.Point(3, 144);
     this.textBoxNodeContent.MaxLength  = 0;
     this.textBoxNodeContent.Multiline  = true;
     this.textBoxNodeContent.Name       = "textBoxNodeContent";
     this.textBoxNodeContent.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.textBoxNodeContent.Size       = new System.Drawing.Size(549, 153);
     this.textBoxNodeContent.TabIndex   = 2;
     this.textBoxNodeContent.Text       = "textBoxNodeContent";
     this.textBoxNodeContent.WordWrap   = false;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.Location = new System.Drawing.Point(477, 312);
     this.buttonCancel.Name     = "buttonCancel";
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text     = "&Cancel";
     this.buttonCancel.Click   += new System.EventHandler(this.buttonCancel_Click);
     //
     // buttonOK
     //
     this.buttonOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOK.Location = new System.Drawing.Point(387, 312);
     this.buttonOK.Name     = "buttonOK";
     this.buttonOK.TabIndex = 3;
     this.buttonOK.Text     = "&OK";
     this.buttonOK.Click   += new System.EventHandler(this.buttonOK_Click);
     //
     // textBox1
     //
     this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox1.Font       = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.textBox1.Location   = new System.Drawing.Point(3, 9);
     this.textBox1.MaxLength  = 0;
     this.textBox1.Multiline  = true;
     this.textBox1.Name       = "textBox1";
     this.textBox1.ReadOnly   = true;
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size       = new System.Drawing.Size(549, 111);
     this.textBox1.TabIndex   = 8;
     this.textBox1.Text       = "textBox1";
     //
     // panelTag
     //
     this.panelTag.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panelTag.Controls.Add(this.textBoxTag);
     this.panelTag.Controls.Add(this.label1);
     this.panelTag.Location = new System.Drawing.Point(3, 306);
     this.panelTag.Name     = "panelTag";
     this.panelTag.Size     = new System.Drawing.Size(117, 36);
     this.panelTag.TabIndex = 9;
     //
     // textBoxTag
     //
     this.textBoxTag.Location  = new System.Drawing.Point(69, 6);
     this.textBoxTag.MaxLength = 2;
     this.textBoxTag.Name      = "textBoxTag";
     this.textBoxTag.Size      = new System.Drawing.Size(39, 20);
     this.textBoxTag.TabIndex  = 1;
     this.textBoxTag.Text      = "textBoxTag";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(2, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 15);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Tag (hex) :";
     //
     // panelUnusedBits
     //
     this.panelUnusedBits.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panelUnusedBits.Controls.Add(this.textBoxUnusedBits);
     this.panelUnusedBits.Controls.Add(this.label3);
     this.panelUnusedBits.Location = new System.Drawing.Point(126, 306);
     this.panelUnusedBits.Name     = "panelUnusedBits";
     this.panelUnusedBits.Size     = new System.Drawing.Size(156, 36);
     this.panelUnusedBits.TabIndex = 10;
     //
     // textBoxUnusedBits
     //
     this.textBoxUnusedBits.Location  = new System.Drawing.Point(81, 6);
     this.textBoxUnusedBits.MaxLength = 1;
     this.textBoxUnusedBits.Name      = "textBoxUnusedBits";
     this.textBoxUnusedBits.Size      = new System.Drawing.Size(66, 20);
     this.textBoxUnusedBits.TabIndex  = 1;
     this.textBoxUnusedBits.Text      = "0";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 9);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(69, 18);
     this.label3.TabIndex = 0;
     this.label3.Text     = "Unused Bits:";
     //
     // FormNodeContentEditor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(556, 348);
     this.Controls.Add(this.panelUnusedBits);
     this.Controls.Add(this.panelTag);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.textBoxNodeContent);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.label2);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimizeBox   = false;
     this.Name          = "FormNodeContentEditor";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Node Content Editor";
     this.Load         += new System.EventHandler(this.FormNodeContentEditor_Load);
     this.Activated    += new System.EventHandler(this.FormNodeContentEditor_Activated);
     this.panelTag.ResumeLayout(false);
     this.panelUnusedBits.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#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.saveFileDialog1     = new System.Windows.Forms.SaveFileDialog();
     this.textBoxSaveFilePath = new System.Windows.Forms.TextBox();
     this.labelSavePath       = new System.Windows.Forms.Label();
     this.listView1           = new System.Windows.Forms.ListView();
     this.label1            = new System.Windows.Forms.Label();
     this.labelLatitude     = new System.Windows.Forms.Label();
     this.labelLongitude    = new System.Windows.Forms.Label();
     this.buttonAdd         = new System.Windows.Forms.Button();
     this.buttonBuild       = new System.Windows.Forms.Button();
     this.textBoxColumn     = new System.Windows.Forms.TextBox();
     this.statusBar         = new System.Windows.Forms.StatusBar();
     this.textBoxSourceFile = new System.Windows.Forms.TextBox();
     this.labelSource       = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // textBoxSaveFilePath
     //
     this.textBoxSaveFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxSaveFilePath.Location = new System.Drawing.Point(8, 78);
     this.textBoxSaveFilePath.Name     = "textBoxSaveFilePath";
     this.textBoxSaveFilePath.Size     = new System.Drawing.Size(277, 21);
     this.textBoxSaveFilePath.TabIndex = 3;
     //
     // labelSavePath
     //
     this.labelSavePath.Location = new System.Drawing.Point(8, 60);
     this.labelSavePath.Name     = "labelSavePath";
     this.labelSavePath.Size     = new System.Drawing.Size(120, 18);
     this.labelSavePath.TabIndex = 2;
     this.labelSavePath.Text     = "&Save File Path:";
     //
     // listView1
     //
     this.listView1.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.listView1.Location = new System.Drawing.Point(8, 198);
     this.listView1.Name     = "listView1";
     this.listView1.Size     = new System.Drawing.Size(277, 85);
     this.listView1.TabIndex = 8;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(18, 121);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 24);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Feature Name";
     //
     // labelLatitude
     //
     this.labelLatitude.Location = new System.Drawing.Point(18, 146);
     this.labelLatitude.Name     = "labelLatitude";
     this.labelLatitude.Size     = new System.Drawing.Size(120, 25);
     this.labelLatitude.TabIndex = 5;
     this.labelLatitude.Text     = "Latitude";
     //
     // labelLongitude
     //
     this.labelLongitude.Location = new System.Drawing.Point(18, 172);
     this.labelLongitude.Name     = "labelLongitude";
     this.labelLongitude.Size     = new System.Drawing.Size(120, 25);
     this.labelLongitude.TabIndex = 6;
     this.labelLongitude.Text     = "Longitude";
     //
     // buttonAdd
     //
     this.buttonAdd.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAdd.Location = new System.Drawing.Point(199, 292);
     this.buttonAdd.Name     = "buttonAdd";
     this.buttonAdd.Size     = new System.Drawing.Size(90, 25);
     this.buttonAdd.TabIndex = 10;
     this.buttonAdd.Text     = "&Add";
     this.buttonAdd.Click   += new System.EventHandler(this.buttonAdd_Click);
     //
     // buttonBuild
     //
     this.buttonBuild.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonBuild.Location = new System.Drawing.Point(152, 121);
     this.buttonBuild.Name     = "buttonBuild";
     this.buttonBuild.Size     = new System.Drawing.Size(133, 69);
     this.buttonBuild.TabIndex = 7;
     this.buttonBuild.Text     = "&Build";
     this.buttonBuild.Click   += new System.EventHandler(this.buttonBuild_Click);
     //
     // textBoxColumn
     //
     this.textBoxColumn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxColumn.Location = new System.Drawing.Point(8, 292);
     this.textBoxColumn.Name     = "textBoxColumn";
     this.textBoxColumn.Size     = new System.Drawing.Size(181, 21);
     this.textBoxColumn.TabIndex = 9;
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 323);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(296, 24);
     this.statusBar.TabIndex = 11;
     //
     // textBoxSourceFile
     //
     this.textBoxSourceFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxSourceFile.Location = new System.Drawing.Point(8, 26);
     this.textBoxSourceFile.Name     = "textBoxSourceFile";
     this.textBoxSourceFile.Size     = new System.Drawing.Size(277, 21);
     this.textBoxSourceFile.TabIndex = 1;
     //
     // labelSource
     //
     this.labelSource.Location = new System.Drawing.Point(8, 9);
     this.labelSource.Name     = "labelSource";
     this.labelSource.Size     = new System.Drawing.Size(120, 17);
     this.labelSource.TabIndex = 0;
     this.labelSource.Text     = "S&ource File:";
     //
     // PlaceBuilder
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(296, 347);
     this.Controls.Add(this.labelSource);
     this.Controls.Add(this.textBoxSourceFile);
     this.Controls.Add(this.textBoxColumn);
     this.Controls.Add(this.textBoxSaveFilePath);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.buttonBuild);
     this.Controls.Add(this.buttonAdd);
     this.Controls.Add(this.labelLongitude);
     this.Controls.Add(this.labelLatitude);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.labelSavePath);
     this.KeyPreview  = true;
     this.MinimumSize = new System.Drawing.Size(250, 336);
     this.Name        = "PlaceBuilder";
     this.Text        = "Place Builder";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#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.keyTextBox      = new System.Windows.Forms.TextBox();
     this.argsListView    = new System.Windows.Forms.ListView();
     this.valueLabel      = new System.Windows.Forms.Label();
     this.detailsGroupBox = new System.Windows.Forms.GroupBox();
     this.keyLabel        = new System.Windows.Forms.Label();
     this.valueTextBox    = new System.Windows.Forms.TextBox();
     this.infoLabel       = new System.Windows.Forms.Label();
     this.closeButton     = new System.Windows.Forms.Button();
     this.columnHeader    = new System.Windows.Forms.ColumnHeader();
     this.infoPictureBox  = new System.Windows.Forms.PictureBox();
     this.addButton       = new System.Windows.Forms.Button();
     this.deleteButton    = new System.Windows.Forms.Button();
     this.detailsGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.infoPictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // columnHeader
     //
     this.columnHeader.Width = 182;
     //
     // keyTextBox
     //
     this.keyTextBox.Location     = new System.Drawing.Point(14, 35);
     this.keyTextBox.Name         = "keyTextBox";
     this.keyTextBox.Size         = new System.Drawing.Size(308, 21);
     this.keyTextBox.TabIndex     = 2;
     this.keyTextBox.TextChanged += new System.EventHandler(this.TextBoxTextChange);
     //
     // argsListView
     //
     this.argsListView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.None;
     this.argsListView.HideSelection = false;
     this.argsListView.Location      = new System.Drawing.Point(12, 12);
     this.argsListView.MultiSelect   = true;
     this.argsListView.Name          = "argsListView";
     this.argsListView.Size          = new System.Drawing.Size(182, 277);
     this.argsListView.TabIndex      = 1;
     this.argsListView.UseCompatibleStateImageBehavior = false;
     this.argsListView.View      = System.Windows.Forms.View.Details;
     this.argsListView.Alignment = ListViewAlignment.Left;
     this.argsListView.Columns.Add(this.columnHeader);
     this.argsListView.SelectedIndexChanged += new System.EventHandler(this.ArgsListViewSelectedIndexChanged);
     //
     // valueLabel
     //
     this.valueLabel.AutoSize  = true;
     this.valueLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.valueLabel.Location  = new System.Drawing.Point(14, 60);
     this.valueLabel.Name      = "valueLabel";
     this.valueLabel.Size      = new System.Drawing.Size(37, 13);
     this.valueLabel.TabIndex  = 3;
     this.valueLabel.Text      = "Value:";
     //
     // detailsGroupBox
     //
     this.detailsGroupBox.Controls.Add(this.keyLabel);
     this.detailsGroupBox.Controls.Add(this.valueTextBox);
     this.detailsGroupBox.Controls.Add(this.keyTextBox);
     this.detailsGroupBox.Controls.Add(this.valueLabel);
     this.detailsGroupBox.Location  = new System.Drawing.Point(207, 6);
     this.detailsGroupBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.detailsGroupBox.Name      = "detailsGroupBox";
     this.detailsGroupBox.Size      = new System.Drawing.Size(335, 313);
     this.detailsGroupBox.TabIndex  = 4;
     this.detailsGroupBox.TabStop   = false;
     this.detailsGroupBox.Text      = " Details";
     //
     // keyLabel
     //
     this.keyLabel.AutoSize  = true;
     this.keyLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.keyLabel.Location  = new System.Drawing.Point(14, 17);
     this.keyLabel.Name      = "keyLabel";
     this.keyLabel.Size      = new System.Drawing.Size(29, 13);
     this.keyLabel.TabIndex  = 1;
     this.keyLabel.Text      = "Key:";
     //
     // valueTextBox
     // Font needs to be set here so that controls resize correctly in high-dpi
     //
     this.valueTextBox.AcceptsTab    = true;
     this.valueTextBox.AcceptsReturn = true;
     this.valueTextBox.Font          = Globals.Settings.ConsoleFont;
     this.valueTextBox.ScrollBars    = System.Windows.Forms.ScrollBars.Vertical;
     this.valueTextBox.Location      = new System.Drawing.Point(14, 77);
     this.valueTextBox.Multiline     = true;
     this.valueTextBox.Name          = "valueTextBox";
     this.valueTextBox.Size          = new System.Drawing.Size(308, 223);
     this.valueTextBox.TabIndex      = 4;
     this.valueTextBox.TextChanged  += new System.EventHandler(this.TextBoxTextChange);
     //
     // infoLabel
     //
     this.infoLabel.AutoSize  = true;
     this.infoLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.infoLabel.Location  = new System.Drawing.Point(34, 331);
     this.infoLabel.Name      = "infoLabel";
     this.infoLabel.Size      = new System.Drawing.Size(357, 13);
     this.infoLabel.TabIndex  = 5;
     this.infoLabel.Text      = "Custom arguments will take effect as soon as you edit them successfully.";
     //
     // closeButton
     //
     this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.closeButton.Location  = new System.Drawing.Point(443, 326);
     this.closeButton.Name      = "closeButton";
     this.closeButton.Size      = new System.Drawing.Size(100, 23);
     this.closeButton.TabIndex  = 7;
     this.closeButton.Text      = "&Close";
     this.closeButton.UseVisualStyleBackColor = true;
     this.closeButton.Click += new System.EventHandler(this.CloseButtonClick);
     //
     // infoPictureBox
     //
     this.infoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.infoPictureBox.Location = new System.Drawing.Point(13, 330);
     this.infoPictureBox.Name     = "infoPictureBox";
     this.infoPictureBox.Size     = new System.Drawing.Size(16, 16);
     this.infoPictureBox.TabIndex = 7;
     this.infoPictureBox.TabStop  = false;
     //
     // addButton
     //
     this.addButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.addButton.Location  = new System.Drawing.Point(11, 296);
     this.addButton.Name      = "addButton";
     this.addButton.Size      = new System.Drawing.Size(87, 23);
     this.addButton.TabIndex  = 2;
     this.addButton.Text      = "&Add";
     this.addButton.UseVisualStyleBackColor = true;
     this.addButton.Click += new System.EventHandler(this.AddButtonClick);
     //
     // deleteButton
     //
     this.deleteButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.deleteButton.Location  = new System.Drawing.Point(108, 296);
     this.deleteButton.Name      = "deleteButton";
     this.deleteButton.Size      = new System.Drawing.Size(87, 23);
     this.deleteButton.TabIndex  = 3;
     this.deleteButton.Text      = "&Delete";
     this.deleteButton.UseVisualStyleBackColor = true;
     this.deleteButton.Click += new System.EventHandler(this.DeleteButtonClick);
     //
     // ArgumentDialog
     //
     this.CancelButton        = this.closeButton;
     this.AcceptButton        = this.closeButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(554, 360);
     this.Controls.Add(this.deleteButton);
     this.Controls.Add(this.addButton);
     this.Controls.Add(this.infoLabel);
     this.Controls.Add(this.infoPictureBox);
     this.Controls.Add(this.detailsGroupBox);
     this.Controls.Add(this.closeButton);
     this.Controls.Add(this.argsListView);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ArgumentDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = " Custom Arguments";
     this.Load           += new System.EventHandler(this.DialogLoad);
     this.detailsGroupBox.ResumeLayout(false);
     this.detailsGroupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.infoPictureBox)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.BtnGetCategories       = new System.Windows.Forms.Button();
     this.GrpResult              = new System.Windows.Forms.GroupBox();
     this.LblCategories          = new System.Windows.Forms.Label();
     this.LstCategories          = new System.Windows.Forms.ListView();
     this.ClmCatId               = new System.Windows.Forms.ColumnHeader();
     this.ClmLevel               = new System.Windows.Forms.ColumnHeader();
     this.ClmName                = new System.Windows.Forms.ColumnHeader();
     this.ClmParent              = new System.Windows.Forms.ColumnHeader();
     this.ClmLeaf                = new System.Windows.Forms.ColumnHeader();
     this.ClmBestOfferEnabled    = new System.Windows.Forms.ColumnHeader();
     this.ClmMinimumReservePrice = new System.Windows.Forms.ColumnHeader();
     this.ChkViewLeaf            = new System.Windows.Forms.CheckBox();
     this.LblParent              = new System.Windows.Forms.Label();
     this.TxtParent              = new System.Windows.Forms.TextBox();
     this.TxtLevel               = new System.Windows.Forms.TextBox();
     this.LblLevel               = new System.Windows.Forms.Label();
     this.ChkEnableCompression   = new System.Windows.Forms.CheckBox();
     this.GrpResult.SuspendLayout();
     this.SuspendLayout();
     //
     // BtnGetCategories
     //
     this.BtnGetCategories.Location = new System.Drawing.Point(200, 96);
     this.BtnGetCategories.Name     = "BtnGetCategories";
     this.BtnGetCategories.Size     = new System.Drawing.Size(128, 23);
     this.BtnGetCategories.TabIndex = 9;
     this.BtnGetCategories.Text     = "GetCategories";
     this.BtnGetCategories.Click   += new System.EventHandler(this.BtnGetCategories_Click);
     //
     // GrpResult
     //
     this.GrpResult.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.LblCategories,
         this.LstCategories
     });
     this.GrpResult.Location = new System.Drawing.Point(8, 128);
     this.GrpResult.Name     = "GrpResult";
     this.GrpResult.Size     = new System.Drawing.Size(760, 280);
     this.GrpResult.TabIndex = 10;
     this.GrpResult.TabStop  = false;
     this.GrpResult.Text     = "Result";
     //
     // LblCategories
     //
     this.LblCategories.Location = new System.Drawing.Point(16, 24);
     this.LblCategories.Name     = "LblCategories";
     this.LblCategories.Size     = new System.Drawing.Size(475, 23);
     this.LblCategories.TabIndex = 12;
     this.LblCategories.Text     = "Categories:";
     //
     // LstCategories
     //
     this.LstCategories.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ClmCatId,
         this.ClmLevel,
         this.ClmName,
         this.ClmParent,
         this.ClmLeaf,
         this.ClmBestOfferEnabled,
         this.ClmMinimumReservePrice
     });
     this.LstCategories.GridLines = true;
     this.LstCategories.Location  = new System.Drawing.Point(24, 48);
     this.LstCategories.Name      = "LstCategories";
     this.LstCategories.Size      = new System.Drawing.Size(720, 208);
     this.LstCategories.TabIndex  = 13;
     this.LstCategories.View      = System.Windows.Forms.View.Details;
     //
     // ClmCatId
     //
     this.ClmCatId.Text  = "Category Id";
     this.ClmCatId.Width = 83;
     //
     // ClmLevel
     //
     this.ClmLevel.Text  = "Level";
     this.ClmLevel.Width = 40;
     //
     // ClmName
     //
     this.ClmName.Text  = "Name";
     this.ClmName.Width = 150;
     //
     // ClmParent
     //
     this.ClmParent.Text = "Parent Id";
     //
     // ClmLeaf
     //
     this.ClmLeaf.Text  = "Leaf";
     this.ClmLeaf.Width = 40;
     //
     // ClmBestOfferEnabled
     //
     this.ClmBestOfferEnabled.Text  = "BestOfferEnabled";
     this.ClmBestOfferEnabled.Width = 100;
     //
     // ClmMinimumReservePrice
     //
     this.ClmMinimumReservePrice.Text  = "MinimumReservePrice";
     this.ClmMinimumReservePrice.Width = 120;
     //
     // ChkViewLeaf
     //
     this.ChkViewLeaf.Location = new System.Drawing.Point(152, 64);
     this.ChkViewLeaf.Name     = "ChkViewLeaf";
     this.ChkViewLeaf.Size     = new System.Drawing.Size(160, 24);
     this.ChkViewLeaf.TabIndex = 11;
     this.ChkViewLeaf.Text     = "View Leaf Categories Only";
     //
     // LblParent
     //
     this.LblParent.Location = new System.Drawing.Point(112, 16);
     this.LblParent.Name     = "LblParent";
     this.LblParent.Size     = new System.Drawing.Size(96, 23);
     this.LblParent.TabIndex = 13;
     this.LblParent.Text     = "Category Parent:";
     //
     // TxtParent
     //
     this.TxtParent.Location = new System.Drawing.Point(208, 16);
     this.TxtParent.Name     = "TxtParent";
     this.TxtParent.TabIndex = 14;
     this.TxtParent.Text     = "";
     //
     // TxtLevel
     //
     this.TxtLevel.Location = new System.Drawing.Point(208, 40);
     this.TxtLevel.Name     = "TxtLevel";
     this.TxtLevel.Size     = new System.Drawing.Size(48, 20);
     this.TxtLevel.TabIndex = 16;
     this.TxtLevel.Text     = "";
     //
     // LblLevel
     //
     this.LblLevel.Location = new System.Drawing.Point(112, 40);
     this.LblLevel.Name     = "LblLevel";
     this.LblLevel.Size     = new System.Drawing.Size(96, 23);
     this.LblLevel.TabIndex = 15;
     this.LblLevel.Text     = "Level Limit:";
     //
     // ChkEnableCompression
     //
     this.ChkEnableCompression.Checked    = true;
     this.ChkEnableCompression.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ChkEnableCompression.Location   = new System.Drawing.Point(344, 64);
     this.ChkEnableCompression.Name       = "ChkEnableCompression";
     this.ChkEnableCompression.Size       = new System.Drawing.Size(216, 24);
     this.ChkEnableCompression.TabIndex   = 11;
     this.ChkEnableCompression.Text       = "Enable HTTP Compression";
     //
     // FrmGetCategories
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(784, 413);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.TxtLevel,
         this.TxtParent,
         this.LblLevel,
         this.LblParent,
         this.ChkViewLeaf,
         this.GrpResult,
         this.BtnGetCategories,
         this.ChkEnableCompression
     });
     this.Name = "FrmGetCategories";
     this.GrpResult.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#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.label1         = new System.Windows.Forms.Label( );
     this.componentCombo = new System.Windows.Forms.ComboBox( );
     this.pictureBox1    = new System.Windows.Forms.PictureBox( );
     this.label2         = new System.Windows.Forms.Label( );
     this.inMaxBox       = new System.Windows.Forms.TextBox( );
     this.inMinBox       = new System.Windows.Forms.TextBox( );
     this.histogram      = new AForge.Controls.Histogram( );
     this.inSlider       = new AForge.Controls.ColorSlider( );
     this.pictureBox2    = new System.Windows.Forms.PictureBox( );
     this.outSlider      = new AForge.Controls.ColorSlider( );
     this.pictureBox3    = new System.Windows.Forms.PictureBox( );
     this.outMaxBox      = new System.Windows.Forms.TextBox( );
     this.outMinBox      = new System.Windows.Forms.TextBox( );
     this.label3         = new System.Windows.Forms.Label( );
     this.groupBox4      = new System.Windows.Forms.GroupBox( );
     this.filterPreview  = new IPLab.FilterPreview( );
     this.cancelButton   = new System.Windows.Forms.Button( );
     this.okButton       = new System.Windows.Forms.Button( );
     this.groupBox4.SuspendLayout( );
     this.SuspendLayout( );
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 15);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(70, 15);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Component:";
     //
     // componentCombo
     //
     this.componentCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.componentCombo.Items.AddRange(new object[] {
         "Saturation",
         "Luminance"
     });
     this.componentCombo.Location              = new System.Drawing.Point(80, 10);
     this.componentCombo.Name                  = "componentCombo";
     this.componentCombo.Size                  = new System.Drawing.Size(90, 21);
     this.componentCombo.TabIndex              = 1;
     this.componentCombo.SelectedIndexChanged += new System.EventHandler(this.componentCombo_SelectedIndexChanged);
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Location    = new System.Drawing.Point(10, 40);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(258, 2);
     this.pictureBox1.TabIndex    = 10;
     this.pictureBox1.TabStop     = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 53);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(65, 17);
     this.label2.TabIndex = 11;
     this.label2.Text     = "&Input levels:";
     //
     // inMaxBox
     //
     this.inMaxBox.Location     = new System.Drawing.Point(140, 50);
     this.inMaxBox.Name         = "inMaxBox";
     this.inMaxBox.Size         = new System.Drawing.Size(50, 20);
     this.inMaxBox.TabIndex     = 13;
     this.inMaxBox.Text         = "";
     this.inMaxBox.TextChanged += new System.EventHandler(this.inMaxBox_TextChanged);
     //
     // inMinBox
     //
     this.inMinBox.Location     = new System.Drawing.Point(80, 50);
     this.inMinBox.Name         = "inMinBox";
     this.inMinBox.Size         = new System.Drawing.Size(50, 20);
     this.inMinBox.TabIndex     = 12;
     this.inMinBox.Text         = "";
     this.inMinBox.TextChanged += new System.EventHandler(this.inMinBox_TextChanged);
     //
     // histogram
     //
     this.histogram.Location = new System.Drawing.Point(10, 75);
     this.histogram.Name     = "histogram";
     this.histogram.Size     = new System.Drawing.Size(258, 162);
     this.histogram.TabIndex = 14;
     //
     // inSlider
     //
     this.inSlider.Location       = new System.Drawing.Point(8, 232);
     this.inSlider.Max            = 253;
     this.inSlider.Min            = 2;
     this.inSlider.Name           = "inSlider";
     this.inSlider.Size           = new System.Drawing.Size(262, 20);
     this.inSlider.TabIndex       = 17;
     this.inSlider.TabStop        = false;
     this.inSlider.ValuesChanged += new System.EventHandler(this.inSlider_ValuesChanged);
     //
     // pictureBox2
     //
     this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox2.Location    = new System.Drawing.Point(10, 260);
     this.pictureBox2.Name        = "pictureBox2";
     this.pictureBox2.Size        = new System.Drawing.Size(258, 2);
     this.pictureBox2.TabIndex    = 16;
     this.pictureBox2.TabStop     = false;
     //
     // outSlider
     //
     this.outSlider.Location       = new System.Drawing.Point(8, 295);
     this.outSlider.Name           = "outSlider";
     this.outSlider.Size           = new System.Drawing.Size(262, 20);
     this.outSlider.TabIndex       = 22;
     this.outSlider.TabStop        = false;
     this.outSlider.ValuesChanged += new System.EventHandler(this.outSlider_ValuesChanged);
     //
     // pictureBox3
     //
     this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox3.Location    = new System.Drawing.Point(10, 323);
     this.pictureBox3.Name        = "pictureBox3";
     this.pictureBox3.Size        = new System.Drawing.Size(258, 2);
     this.pictureBox3.TabIndex    = 21;
     this.pictureBox3.TabStop     = false;
     //
     // outMaxBox
     //
     this.outMaxBox.Location     = new System.Drawing.Point(140, 270);
     this.outMaxBox.Name         = "outMaxBox";
     this.outMaxBox.Size         = new System.Drawing.Size(50, 20);
     this.outMaxBox.TabIndex     = 20;
     this.outMaxBox.Text         = "";
     this.outMaxBox.TextChanged += new System.EventHandler(this.outMaxBox_TextChanged);
     //
     // outMinBox
     //
     this.outMinBox.Location     = new System.Drawing.Point(80, 270);
     this.outMinBox.Name         = "outMinBox";
     this.outMinBox.Size         = new System.Drawing.Size(50, 20);
     this.outMinBox.TabIndex     = 19;
     this.outMinBox.Text         = "";
     this.outMinBox.TextChanged += new System.EventHandler(this.outMinBox_TextChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 273);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(73, 17);
     this.label3.TabIndex = 18;
     this.label3.Text     = "&Output levels:";
     //
     // groupBox4
     //
     this.groupBox4.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.filterPreview
     });
     this.groupBox4.Location = new System.Drawing.Point(290, 10);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(170, 175);
     this.groupBox4.TabIndex = 23;
     this.groupBox4.TabStop  = false;
     this.groupBox4.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;
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.cancelButton.Location     = new System.Drawing.Point(385, 300);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.TabIndex     = 25;
     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(295, 300);
     this.okButton.Name         = "okButton";
     this.okButton.TabIndex     = 24;
     this.okButton.Text         = "Ok";
     //
     // HSLLinearForm
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(469, 333);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.cancelButton,
         this.okButton,
         this.groupBox4,
         this.outSlider,
         this.pictureBox3,
         this.outMaxBox,
         this.outMinBox,
         this.label3,
         this.inSlider,
         this.pictureBox2,
         this.histogram,
         this.label2,
         this.inMaxBox,
         this.inMinBox,
         this.pictureBox1,
         this.componentCombo,
         this.label1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "HSLLinearForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "HSL Linear correction";
     this.groupBox4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#57
0
 /// <summary>
 /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディタで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.labelChannel        = new System.Windows.Forms.Label();
     this.checkedListType     = new System.Windows.Forms.CheckedListBox();
     this.labelType           = new System.Windows.Forms.Label();
     this.checkUnrap          = new System.Windows.Forms.CheckBox();
     this.textFolder          = new System.Windows.Forms.TextBox();
     this.labelFolder         = new System.Windows.Forms.Label();
     this.buttonFolderDefault = new System.Windows.Forms.Button();
     this.labelName           = new System.Windows.Forms.Label();
     this.textName            = new System.Windows.Forms.TextBox();
     this.buttonNameDefault   = new System.Windows.Forms.Button();
     this.buttonSave          = new System.Windows.Forms.Button();
     this.buttonClose         = new System.Windows.Forms.Button();
     this.labelDelim          = new System.Windows.Forms.Label();
     this.comboDelim          = new System.Windows.Forms.ComboBox();
     this.comboChannel        = new System.Windows.Forms.ComboBox();
     this.SuspendLayout();
     //
     // labelChannel
     //
     this.labelChannel.Location  = new System.Drawing.Point(8, 8);
     this.labelChannel.Name      = "labelChannel";
     this.labelChannel.Size      = new System.Drawing.Size(48, 16);
     this.labelChannel.TabIndex  = 5;
     this.labelChannel.Text      = "チャネル";
     this.labelChannel.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // checkedListType
     //
     this.checkedListType.Items.AddRange(new object[] {
         "振幅特性",
         "位相特性",
         "位相遅延特性",
         "群遅延特性",
         "最小位相",
         "オールパス位相"
     });
     this.checkedListType.Location = new System.Drawing.Point(176, 8);
     this.checkedListType.Name     = "checkedListType";
     this.checkedListType.Size     = new System.Drawing.Size(112, 46);
     this.checkedListType.TabIndex = 9;
     //
     // labelType
     //
     this.labelType.Location  = new System.Drawing.Point(144, 8);
     this.labelType.Name      = "labelType";
     this.labelType.Size      = new System.Drawing.Size(32, 16);
     this.labelType.TabIndex  = 5;
     this.labelType.Text      = "特性";
     this.labelType.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // checkUnrap
     //
     this.checkUnrap.Checked    = true;
     this.checkUnrap.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkUnrap.Location   = new System.Drawing.Point(184, 56);
     this.checkUnrap.Name       = "checkUnrap";
     this.checkUnrap.TabIndex   = 10;
     this.checkUnrap.Text       = "位相をアンラップ";
     //
     // textFolder
     //
     this.textFolder.Location = new System.Drawing.Point(64, 88);
     this.textFolder.Name     = "textFolder";
     this.textFolder.Size     = new System.Drawing.Size(136, 19);
     this.textFolder.TabIndex = 11;
     this.textFolder.Text     = "";
     //
     // labelFolder
     //
     this.labelFolder.Location  = new System.Drawing.Point(8, 88);
     this.labelFolder.Name      = "labelFolder";
     this.labelFolder.Size      = new System.Drawing.Size(48, 16);
     this.labelFolder.TabIndex  = 5;
     this.labelFolder.Text      = "フォルダ";
     this.labelFolder.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // buttonFolderDefault
     //
     this.buttonFolderDefault.Location = new System.Drawing.Point(208, 88);
     this.buttonFolderDefault.Name     = "buttonFolderDefault";
     this.buttonFolderDefault.Size     = new System.Drawing.Size(80, 23);
     this.buttonFolderDefault.TabIndex = 13;
     this.buttonFolderDefault.Text     = "元と同じ";
     this.buttonFolderDefault.Click   += new System.EventHandler(this.buttonFolderDefault_Click);
     //
     // labelName
     //
     this.labelName.Location  = new System.Drawing.Point(8, 120);
     this.labelName.Name      = "labelName";
     this.labelName.Size      = new System.Drawing.Size(56, 16);
     this.labelName.TabIndex  = 5;
     this.labelName.Text      = "ファイル名";
     this.labelName.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // textName
     //
     this.textName.Location = new System.Drawing.Point(64, 120);
     this.textName.Name     = "textName";
     this.textName.Size     = new System.Drawing.Size(136, 19);
     this.textName.TabIndex = 11;
     this.textName.Text     = "";
     //
     // buttonNameDefault
     //
     this.buttonNameDefault.Location = new System.Drawing.Point(208, 120);
     this.buttonNameDefault.Name     = "buttonNameDefault";
     this.buttonNameDefault.Size     = new System.Drawing.Size(80, 23);
     this.buttonNameDefault.TabIndex = 13;
     this.buttonNameDefault.Text     = "元と同じ";
     this.buttonNameDefault.Click   += new System.EventHandler(this.buttonNameDefault_Click);
     //
     // buttonSave
     //
     this.buttonSave.Anchor   = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.buttonSave.Location = new System.Drawing.Point(136, 184);
     this.buttonSave.Name     = "buttonSave";
     this.buttonSave.TabIndex = 14;
     this.buttonSave.Text     = "保存";
     this.buttonSave.Click   += new System.EventHandler(this.buttonSave_Click);
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.buttonClose.Location = new System.Drawing.Point(218, 184);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.TabIndex = 15;
     this.buttonClose.Text     = "閉じる";
     this.buttonClose.Click   += new System.EventHandler(this.buttonClose_Click);
     //
     // labelDelim
     //
     this.labelDelim.Location  = new System.Drawing.Point(8, 152);
     this.labelDelim.Name      = "labelDelim";
     this.labelDelim.Size      = new System.Drawing.Size(64, 16);
     this.labelDelim.TabIndex  = 5;
     this.labelDelim.Text      = "区切り文字";
     this.labelDelim.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // comboDelim
     //
     this.comboDelim.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboDelim.Items.AddRange(new object[] {
         "コンマ",
         "タブ",
         "スペース"
     });
     this.comboDelim.Location = new System.Drawing.Point(80, 152);
     this.comboDelim.Name     = "comboDelim";
     this.comboDelim.Size     = new System.Drawing.Size(72, 20);
     this.comboDelim.TabIndex = 16;
     //
     // comboChannel
     //
     this.comboChannel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboChannel.Items.AddRange(new object[] {
         "Left",
         "Right",
         "L/R",
         "R/L",
         "Middle",
         "Side",
         "M/S",
         "S/M"
     });
     this.comboChannel.Location = new System.Drawing.Point(56, 8);
     this.comboChannel.Name     = "comboChannel";
     this.comboChannel.Size     = new System.Drawing.Size(80, 20);
     this.comboChannel.TabIndex = 17;
     //
     // WaveSaveForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 12);
     this.ClientSize        = new System.Drawing.Size(298, 215);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.comboChannel,
         this.comboDelim,
         this.buttonClose,
         this.buttonSave,
         this.buttonFolderDefault,
         this.textFolder,
         this.checkUnrap,
         this.checkedListType,
         this.labelChannel,
         this.labelType,
         this.labelFolder,
         this.labelName,
         this.textName,
         this.buttonNameDefault,
         this.labelDelim
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "WaveSaveForm";
     this.Text            = "WaveSaveForm";
     this.ResumeLayout(false);
 }
示例#58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.button1  = new System.Windows.Forms.Button();
     this.button2  = new System.Windows.Forms.Button();
     this.button3  = new System.Windows.Forms.Button();
     this.label2   = new System.Windows.Forms.Label();
     this.label3   = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // listBox1
     //
     this.listBox1.ItemHeight = 14;
     this.listBox1.Location   = new System.Drawing.Point(16, 128);
     this.listBox1.Name       = "listBox1";
     this.listBox1.Size       = new System.Drawing.Size(200, 102);
     this.listBox1.TabIndex   = 0;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(72, 16);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(216, 20);
     this.textBox1.TabIndex = 1;
     this.textBox1.Text     = "127.0.0.1";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(160, 64);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(120, 32);
     this.button1.TabIndex = 2;
     this.button1.Text     = "Call";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(32, 64);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(120, 32);
     this.button2.TabIndex = 3;
     this.button2.Text     = "Disconnect";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(224, 200);
     this.button3.Name     = "button3";
     this.button3.TabIndex = 4;
     this.button3.Text     = "Clear Status";
     this.button3.Click   += new System.EventHandler(this.button3_Click);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(8, 16);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(64, 16);
     this.label2.TabIndex  = 6;
     this.label2.Text      = "IP Address";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location  = new System.Drawing.Point(16, 104);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(104, 24);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Call Status";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(330, 239);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.listBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "Form1";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Audio Conferencing - www.fadidotnet.org";
     this.ResumeLayout(false);
 }
示例#59
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(LicenseForm));
     this.activationKeyPart1TextBox       = new System.Windows.Forms.TextBox();
     this.activationKeyPart2TextBox       = new System.Windows.Forms.TextBox();
     this.activationKeyPart3TextBox       = new System.Windows.Forms.TextBox();
     this.activationKeyPart4TextBox       = new System.Windows.Forms.TextBox();
     this.registrationEmailAddressTextBox = new System.Windows.Forms.TextBox();
     this.registrationEmailAddressLabel   = new System.Windows.Forms.Label();
     this.activationKeyLabel = new System.Windows.Forms.Label();
     this.headerLabel        = new System.Windows.Forms.Label();
     this.okButton           = new System.Windows.Forms.Button();
     this.cancelButton       = new System.Windows.Forms.Button();
     this.footerLabel        = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // activationKeyPart1TextBox
     //
     this.activationKeyPart1TextBox.Location     = new System.Drawing.Point(108, 76);
     this.activationKeyPart1TextBox.MaxLength    = 5;
     this.activationKeyPart1TextBox.Name         = "activationKeyPart1TextBox";
     this.activationKeyPart1TextBox.Size         = new System.Drawing.Size(48, 21);
     this.activationKeyPart1TextBox.TabIndex     = 4;
     this.activationKeyPart1TextBox.Text         = "";
     this.activationKeyPart1TextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.activationKeyTextBox_KeyDown);
     this.activationKeyPart1TextBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.activationKeyTextBox_KeyPress);
     this.activationKeyPart1TextBox.TextChanged += new System.EventHandler(this.activationKeyTextBox_TextChanged);
     //
     // activationKeyPart2TextBox
     //
     this.activationKeyPart2TextBox.Location     = new System.Drawing.Point(160, 76);
     this.activationKeyPart2TextBox.MaxLength    = 5;
     this.activationKeyPart2TextBox.Name         = "activationKeyPart2TextBox";
     this.activationKeyPart2TextBox.Size         = new System.Drawing.Size(48, 21);
     this.activationKeyPart2TextBox.TabIndex     = 5;
     this.activationKeyPart2TextBox.Text         = "";
     this.activationKeyPart2TextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.activationKeyTextBox_KeyDown);
     this.activationKeyPart2TextBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.activationKeyTextBox_KeyPress);
     this.activationKeyPart2TextBox.TextChanged += new System.EventHandler(this.activationKeyTextBox_TextChanged);
     //
     // activationKeyPart3TextBox
     //
     this.activationKeyPart3TextBox.Location     = new System.Drawing.Point(212, 76);
     this.activationKeyPart3TextBox.MaxLength    = 5;
     this.activationKeyPart3TextBox.Name         = "activationKeyPart3TextBox";
     this.activationKeyPart3TextBox.Size         = new System.Drawing.Size(48, 21);
     this.activationKeyPart3TextBox.TabIndex     = 6;
     this.activationKeyPart3TextBox.Text         = "";
     this.activationKeyPart3TextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.activationKeyTextBox_KeyDown);
     this.activationKeyPart3TextBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.activationKeyTextBox_KeyPress);
     this.activationKeyPart3TextBox.TextChanged += new System.EventHandler(this.activationKeyTextBox_TextChanged);
     //
     // activationKeyPart4TextBox
     //
     this.activationKeyPart4TextBox.Location     = new System.Drawing.Point(264, 76);
     this.activationKeyPart4TextBox.MaxLength    = 5;
     this.activationKeyPart4TextBox.Name         = "activationKeyPart4TextBox";
     this.activationKeyPart4TextBox.Size         = new System.Drawing.Size(48, 21);
     this.activationKeyPart4TextBox.TabIndex     = 7;
     this.activationKeyPart4TextBox.Text         = "";
     this.activationKeyPart4TextBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.activationKeyTextBox_KeyDown);
     this.activationKeyPart4TextBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.activationKeyTextBox_KeyPress);
     this.activationKeyPart4TextBox.TextChanged += new System.EventHandler(this.activationKeyTextBox_TextChanged);
     //
     // registrationEmailAddressTextBox
     //
     this.registrationEmailAddressTextBox.Location     = new System.Drawing.Point(108, 48);
     this.registrationEmailAddressTextBox.Name         = "registrationEmailAddressTextBox";
     this.registrationEmailAddressTextBox.Size         = new System.Drawing.Size(204, 21);
     this.registrationEmailAddressTextBox.TabIndex     = 2;
     this.registrationEmailAddressTextBox.Text         = "";
     this.registrationEmailAddressTextBox.TextChanged += new System.EventHandler(this.registrationEmailAddressTextBox_TextChanged);
     //
     // registrationEmailAddressLabel
     //
     this.registrationEmailAddressLabel.Location  = new System.Drawing.Point(12, 52);
     this.registrationEmailAddressLabel.Name      = "registrationEmailAddressLabel";
     this.registrationEmailAddressLabel.Size      = new System.Drawing.Size(100, 16);
     this.registrationEmailAddressLabel.TabIndex  = 1;
     this.registrationEmailAddressLabel.Text      = "&Registration Name";
     this.registrationEmailAddressLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // activationKeyLabel
     //
     this.activationKeyLabel.Location = new System.Drawing.Point(12, 80);
     this.activationKeyLabel.Name     = "activationKeyLabel";
     this.activationKeyLabel.Size     = new System.Drawing.Size(84, 16);
     this.activationKeyLabel.TabIndex = 3;
     this.activationKeyLabel.Text     = "&Activation Key";
     //
     // headerLabel
     //
     this.headerLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.headerLabel.Location = new System.Drawing.Point(12, 8);
     this.headerLabel.Name     = "headerLabel";
     this.headerLabel.Size     = new System.Drawing.Size(304, 32);
     this.headerLabel.TabIndex = 0;
     this.headerLabel.Text     = "If you have a Q Set license please enter your activation details now:";
     //
     // okButton
     //
     this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.okButton.Location  = new System.Drawing.Point(156, 156);
     this.okButton.Name      = "okButton";
     this.okButton.TabIndex  = 13;
     this.okButton.Text      = "&OK";
     this.okButton.Click    += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.cancelButton.Location     = new System.Drawing.Point(236, 156);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.TabIndex     = 14;
     this.cancelButton.Text         = "&Continue";
     this.cancelButton.Click       += new System.EventHandler(this.cancelButton_Click);
     //
     // footerLabel
     //
     this.footerLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.footerLabel.Location = new System.Drawing.Point(12, 108);
     this.footerLabel.Name     = "footerLabel";
     this.footerLabel.Size     = new System.Drawing.Size(304, 44);
     this.footerLabel.TabIndex = 12;
     this.footerLabel.Text     = "You are entitled to evaluate Q Set with some limited features for 14 days without" +
                                 " an activation key.  To do this press Continue.";
     //
     // LicenseForm
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(322, 188);
     this.Controls.Add(this.footerLabel);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.headerLabel);
     this.Controls.Add(this.registrationEmailAddressTextBox);
     this.Controls.Add(this.activationKeyPart4TextBox);
     this.Controls.Add(this.activationKeyPart3TextBox);
     this.Controls.Add(this.activationKeyPart2TextBox);
     this.Controls.Add(this.activationKeyPart1TextBox);
     this.Controls.Add(this.activationKeyLabel);
     this.Controls.Add(this.registrationEmailAddressLabel);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "LicenseForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Q Set Activation";
     this.ResumeLayout(false);
 }
示例#60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lbInfo      = new System.Windows.Forms.Label();
     this.lbHardware  = new System.Windows.Forms.Label();
     this.tbHardware  = new System.Windows.Forms.TextBox();
     this.btnCopy     = new System.Windows.Forms.Button();
     this.label1      = new System.Windows.Forms.Label();
     this.tbUserInfo  = new System.Windows.Forms.TextBox();
     this.lbKey       = new System.Windows.Forms.Label();
     this.tbKey       = new System.Windows.Forms.TextBox();
     this.btnRegister = new System.Windows.Forms.Button();
     this.btnClose    = new System.Windows.Forms.Button();
     this.lbRegInfo   = new System.Windows.Forms.Label();
     this.lbRegName   = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // lbInfo
     //
     this.lbInfo.Location = new System.Drawing.Point(8, 8);
     this.lbInfo.Name     = "lbInfo";
     this.lbInfo.Size     = new System.Drawing.Size(400, 16);
     this.lbInfo.TabIndex = 0;
     this.lbInfo.Text     = "This example shows you how to work with Enigma API under .NET application.";
     //
     // lbHardware
     //
     this.lbHardware.Location = new System.Drawing.Point(8, 32);
     this.lbHardware.Name     = "lbHardware";
     this.lbHardware.Size     = new System.Drawing.Size(88, 16);
     this.lbHardware.TabIndex = 1;
     this.lbHardware.Text     = "PC Hardware ID";
     this.lbHardware.Click   += new System.EventHandler(this.lbHardware_Click);
     //
     // tbHardware
     //
     this.tbHardware.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.tbHardware.Location = new System.Drawing.Point(8, 48);
     this.tbHardware.Name     = "tbHardware";
     this.tbHardware.ReadOnly = true;
     this.tbHardware.Size     = new System.Drawing.Size(264, 20);
     this.tbHardware.TabIndex = 2;
     this.tbHardware.Text     = "";
     //
     // btnCopy
     //
     this.btnCopy.Location = new System.Drawing.Point(288, 48);
     this.btnCopy.Name     = "btnCopy";
     this.btnCopy.Size     = new System.Drawing.Size(104, 20);
     this.btnCopy.TabIndex = 3;
     this.btnCopy.Text     = "Copy to clipboard";
     this.btnCopy.Click   += new System.EventHandler(this.btnCopy_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 80);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(112, 16);
     this.label1.TabIndex = 4;
     this.label1.Text     = "User information";
     //
     // tbUserInfo
     //
     this.tbUserInfo.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.tbUserInfo.Location = new System.Drawing.Point(8, 96);
     this.tbUserInfo.Name     = "tbUserInfo";
     this.tbUserInfo.Size     = new System.Drawing.Size(384, 20);
     this.tbUserInfo.TabIndex = 5;
     this.tbUserInfo.Text     = "";
     //
     // lbKey
     //
     this.lbKey.Location = new System.Drawing.Point(8, 128);
     this.lbKey.Name     = "lbKey";
     this.lbKey.Size     = new System.Drawing.Size(88, 16);
     this.lbKey.TabIndex = 6;
     this.lbKey.Text     = "Registration key";
     //
     // tbKey
     //
     this.tbKey.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.tbKey.Location  = new System.Drawing.Point(8, 144);
     this.tbKey.Multiline = true;
     this.tbKey.Name      = "tbKey";
     this.tbKey.Size      = new System.Drawing.Size(384, 56);
     this.tbKey.TabIndex  = 7;
     this.tbKey.Text      = "";
     //
     // btnRegister
     //
     this.btnRegister.Location = new System.Drawing.Point(192, 208);
     this.btnRegister.Name     = "btnRegister";
     this.btnRegister.Size     = new System.Drawing.Size(96, 20);
     this.btnRegister.TabIndex = 8;
     this.btnRegister.Text     = "Register";
     this.btnRegister.Click   += new System.EventHandler(this.btnRegister_Click);
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(296, 208);
     this.btnClose.Name     = "btnClose";
     this.btnClose.Size     = new System.Drawing.Size(96, 20);
     this.btnClose.TabIndex = 9;
     this.btnClose.Text     = "Close";
     this.btnClose.Click   += new System.EventHandler(this.btnClose_Click);
     //
     // lbRegInfo
     //
     this.lbRegInfo.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.lbRegInfo.Location = new System.Drawing.Point(16, 240);
     this.lbRegInfo.Name     = "lbRegInfo";
     this.lbRegInfo.Size     = new System.Drawing.Size(160, 16);
     this.lbRegInfo.TabIndex = 10;
     this.lbRegInfo.Text     = "This copy is registered to:";
     //
     // lbRegName
     //
     this.lbRegName.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.lbRegName.ForeColor = System.Drawing.Color.Red;
     this.lbRegName.Location  = new System.Drawing.Point(16, 256);
     this.lbRegName.Name      = "lbRegName";
     this.lbRegName.Size      = new System.Drawing.Size(376, 16);
     this.lbRegName.TabIndex  = 11;
     this.lbRegName.Text      = "UNREGISTERED";
     this.lbRegName.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(400, 278);
     this.Controls.Add(this.lbRegName);
     this.Controls.Add(this.lbRegInfo);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnRegister);
     this.Controls.Add(this.tbKey);
     this.Controls.Add(this.lbKey);
     this.Controls.Add(this.tbUserInfo);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnCopy);
     this.Controls.Add(this.tbHardware);
     this.Controls.Add(this.lbHardware);
     this.Controls.Add(this.lbInfo);
     this.Name  = "frmMain";
     this.Text  = "Test .NET Application";
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.ResumeLayout(false);
 }