Inheritance: ButtonBase, IButtonControl
Esempio n. 1
1
		/// <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.listBox1 = new System.Windows.Forms.ListBox();
			this.SuspendLayout();
			// 
			// button1
			// 
			this.button1.Location = new System.Drawing.Point(32, 32);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(208, 23);
			this.button1.TabIndex = 0;
			this.button1.Text = "Call \"HelloWorld\" on remote object";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// listBox1
			// 
			this.listBox1.Location = new System.Drawing.Point(32, 72);
			this.listBox1.Name = "listBox1";
			this.listBox1.Size = new System.Drawing.Size(224, 95);
			this.listBox1.TabIndex = 1;
			// 
			// Form1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 266);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.listBox1,
																		  this.button1});
			this.Name = "Form1";
			this.Text = "RemoteObject";
			this.Load += new System.EventHandler(this.Form1_Load);
			this.ResumeLayout(false);

		}
Esempio n. 2
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			this.richTextBox = new System.Windows.Forms.RichTextBox();
			this.run = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// richTextBox
			// 
			this.richTextBox.Location = new System.Drawing.Point(8, 8);
			this.richTextBox.Name = "richTextBox";
			this.richTextBox.Size = new System.Drawing.Size(272, 216);
			this.richTextBox.TabIndex = 0;
			this.richTextBox.Text = "";
			// 
			// run
			// 
			this.run.Location = new System.Drawing.Point(16, 232);
			this.run.Name = "run";
			this.run.TabIndex = 1;
			this.run.Text = "Run";
			this.run.Click += new System.EventHandler(this.run_Click);
			// 
			// Form1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 266);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.run,
																		  this.richTextBox});
			this.Name = "Form1";
			this.Text = "Operators";
			this.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();
        }
Esempio n. 4
0
 private void MarkButton(Button b, bool passed)
 {
     if (passed)
         b.ForeColor = Color.Green;
     else
         b.ForeColor = Color.Red;
 }
 public static void AddEventosABM(Control grpCampos, ref Button btnGrabar, ref DataTable tbl)
 {
     tblTabla = tbl;
     tblTabla.ColumnChanged += new DataColumnChangeEventHandler(HabilitarGrabar);
     grabar = btnGrabar;
     foreach (Control ctl in grpCampos.Controls)
     {
         if (ctl is TextBox)
         {
             ctl.Enter += new System.EventHandler(SelTextoTextBox);
             ctl.KeyDown += new System.Windows.Forms.KeyEventHandler(EnterTab);
         }
         if (ctl is MaskedTextBox)
         {
             ctl.KeyDown += new System.Windows.Forms.KeyEventHandler(EnterTab);
         }
     }
     foreach (Control ctl in grpCampos.Controls)
     {
         if (ctl is ComboBox)
         {
             ctl.KeyDown += new System.Windows.Forms.KeyEventHandler(EnterTab);
         }
     }
 }
        public override void Initialize()
        {
            //txtLocation = new System.Windows.Forms.TextBox();
            //txtLocation.Size = new System.Drawing.Size(238, 24);
            //txtLocation.Top = 100;
            //txtLocation.Left = 12;

            //lblLocation = new System.Windows.Forms.Label();
            //lblLocation.Size = new System.Drawing.Size(238, 24);
            //lblLocation.Top = txtLocation.Top - 16;
            //lblLocation.Left = txtLocation.Left;
            //lblLocation.Text = "Location (eg: sim/x/y/z)";

            cmdObjects = new System.Windows.Forms.Button();
            cmdObjects.Size = new System.Drawing.Size(120, 24);
            cmdObjects.Top = 100; cmdObjects.Left = 257;
            cmdObjects.Text = "List Objects";

            //cmdObjects.Click += new System.EventHandler(this.cmdObjects_OnClick);
            cmdObjects.Click += (new frmObjects(instance)).Show();

            //TabPage.Controls.Add(txtLocation);
            //TabPage.Controls.Add(lblLocation);
            TabPage.Controls.Add(cmdObjects);
        }
Esempio n. 7
0
        public FrmDlg()
        {
            var btnOK = new Button {
                Text = "OK",
                Width = 200
            };

            var btnCancel = new Button {
                Text = "Cancel",
                Width = 200,
                Top = btnOK.Top + btnOK.Height + 10
            };

            btnOK.Click += (sender, args) => {
                Action next = delegate {
                    MessageBox.Show("Done on Thread #" + Thread.CurrentThread.Name);
                };

                Action<Exception> onErr = ex => {
                    MessageBox.Show(ex.Message);
                    MessageBox.Show("Handled on Thread #" + Thread.CurrentThread.Name);
                };

                Confirm(next, onErr);
            };

            btnCancel.Click += (sender, args) => {
                Cancel();
                Close();
            };

            Controls.Add(btnOK);
            Controls.Add(btnCancel);
        }
        public ToolbarPresenter(Button utenteButton, Sessione sessione)
        {
            _utenteButton = utenteButton;
            _utenteButton.Click += UtenteButton_click;

            _sessione = sessione;
        }
Esempio n. 9
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);
        }
        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 -----------------------

        }
		/// <summary>
		/// Initializes a new instance of the <see cref="NuGenCollectionEditorDialogBlock"/> class.
		/// </summary>
		public NuGenCollectionEditorDialogBlock()
		{
			_okButton = new Button();
			_cancelButton = new Button();
			
			_okButton.DialogResult = DialogResult.OK;
			_okButton.TabIndex = 10;
			_okButton.Text = Resources.Text_CollectionEditor_okButton;
			
			_cancelButton.DialogResult = DialogResult.Cancel;
			_cancelButton.TabIndex = 20;
			_cancelButton.Text = Resources.Text_CollectionEditor_cancelButton;

			this.SuspendLayout();

			this.Controls.Add(_okButton);
			this.Controls.Add(_cancelButton);

			this.Height = 29;
			this.Padding = new Padding(0, 5, 0, 0);

			foreach (Control ctrl in this.Controls)
			{
				ctrl.Dock = DockStyle.Right;
			}

			this.ResumeLayout(false);
			this.PerformLayout();
		}
		public InsertPInvokeSignaturesForm()
		{
			SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("PInvokeAddIn.Resources.InsertPInvokeSignaturesForm.xfrm"));
			
			signatureRichTextBox = ((RichTextBox)ControlDictionary["SignatureRichTextBox"]);
			
			// Hook up events.
			closeButton = ((Button)ControlDictionary["CloseButton"]);
			closeButton.Click += new EventHandler(CloseButtonClick);
			
			insertButton = ((Button)ControlDictionary["InsertButton"]);
			insertButton.Enabled = false;
			insertButton.Click += new EventHandler(InsertButtonClick);
			
			findButton = ((Button)ControlDictionary["FindButton"]);
			findButton.Click += new EventHandler(FindButtonClick);
			
			functionNameComboBox = ((ComboBox)ControlDictionary["FunctionNameComboBox"]);
			functionNameComboBox.AutoCompleteMode = AutoCompleteMode.Suggest;
			functionNameComboBox.AutoCompleteSource = AutoCompleteSource.ListItems;

			moduleNameComboBox = ((ComboBox)ControlDictionary["ModuleNameComboBox"]);
			moduleNameComboBox.AutoCompleteMode = AutoCompleteMode.Suggest;
			moduleNameComboBox.AutoCompleteSource = AutoCompleteSource.ListItems;
			
			moreInfoLinkLabel = ((LinkLabel)ControlDictionary["MoreInfoLinkLabel"]);
			moreInfoLinkLabel.LinkClicked += new LinkLabelLinkClickedEventHandler(MoreInfoLinkClicked);

			languageComboBox = ((ComboBox)ControlDictionary["LanguageComboBox"]);
			languageComboBox.SelectedIndexChanged += new EventHandler(LanguageComboBoxSelectedIndexChanged);
			
			SetupLanguages();
			SetupFunctionNames();
			SetupModuleNames();
		}
Esempio n. 13
0
        //they asked to pop up the Package Configurations dialog, so replace the Microsoft functionality so we can control the popup form
        void cmdEvent_BeforeExecute(string Guid, int ID, object CustomIn, object CustomOut, ref bool CancelDefault)
        {
            if (Enabled)
            {
                try
                {
                    if (this.ApplicationObject.ActiveWindow == null || this.ApplicationObject.ActiveWindow.ProjectItem == null) return;
                    ProjectItem pi = this.ApplicationObject.ActiveWindow.ProjectItem;
                    if (!pi.Name.ToLower().EndsWith(".dtsx")) return;

                    IDesignerHost designer = this.ApplicationObject.ActiveWindow.Object as IDesignerHost;
                    if (designer == null) return;
                    EditorWindow win = (EditorWindow)designer.GetService(typeof(Microsoft.DataWarehouse.ComponentModel.IComponentNavigator));
                    Package package = (Package)win.PropertiesLinkComponent;
                    this.packageForFixButton = package;
                    this.pathForPackageForFixButton = pi.get_FileNames(1);

                    DtsConfigurationsForm form = new DtsConfigurationsForm(package);
                    if (win.SelectedIndex == 0)
                    {
                        //control flow
                        EditorWindow.EditorView view = win.SelectedView;
                        System.Reflection.BindingFlags getflags = System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.GetProperty | System.Reflection.BindingFlags.DeclaredOnly | System.Reflection.BindingFlags.Instance;
                        Control viewControl = (Control)view.GetType().InvokeMember("ViewControl", getflags, null, view, null);
                        
                        IWin32Window parentWin;
                        #if DENALI || SQL2014
                        parentWin = viewControl;
                        #else
                        DdsDiagramHostControl diagram = viewControl.Controls["panel1"].Controls["ddsDiagramHostControl1"] as DdsDiagramHostControl;
                        if (diagram == null || diagram.DDS == null) return;
                        parentWin = diagram.DDS;
                        #endif
                        
                        Button editSelectedButton = (Button)form.Controls["editSelectedConfiguration"];
                        Control packageConfigurationsGridControl1 = form.Controls["packageConfigurationsGridControl1"];
                        Button btnRelativePaths = new Button();
                        btnRelativePaths.Text = "Fix All Relative Paths";
                        btnRelativePaths.Width = 140;
                        btnRelativePaths.Left = packageConfigurationsGridControl1.Left;
                        btnRelativePaths.Top = editSelectedButton.Top;
                        btnRelativePaths.Height = editSelectedButton.Height;
                        btnRelativePaths.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
                        btnRelativePaths.Click += new EventHandler(btnRelativePaths_Click);
                        form.Controls.Add(btnRelativePaths);

                        if (DesignUtils.ShowDialog((Form)form, parentWin, (IServiceProvider)package.Site) == DialogResult.OK)
                        {
                            SSISHelpers.MarkPackageDirty(package);
                        }

                        CancelDefault = true;
                    }
                }
                catch (Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show(ex.Message + "\r\n" + ex.StackTrace);
                }
            }
        }
Esempio n. 14
0
        private void InitializeComponent()
        {
            this.Text = "Excel Form";
            this.StartPosition = FormStartPosition.CenterScreen;
            this.FormBorderStyle = FormBorderStyle.FixedDialog;
            this.ControlBox = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.BackColor = Color.Red;

            btnOK = new Button();
            btnOK.Text = "OK";
            btnOK.Left = this.ClientRectangle.Width-btnOK.Width-10;
            btnOK.Top = this.ClientRectangle.Height-btnOK.Height-10;
            btnOK.Visible = true;
            btnOK.Click += new EventHandler(btnOK_Click);
            this.Controls.Add(btnOK);

            btnCreate = new Button();
            btnCreate.Text = "Create";
            btnCreate.Left = this.ClientRectangle.Width - btnOK.Width - 150;
            btnCreate.Top = this.ClientRectangle.Height - btnOK.Height - 10;
            btnCreate.Visible = true;
            btnCreate.Click += new EventHandler(btnCreate_Click);
            this.Controls.Add(btnCreate);
        }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {
			this.btnBack = new System.Windows.Forms.Button();
			this.btnNext = new System.Windows.Forms.Button();
			this.Pick_Searches = new OGen.NTier.presentationlayer.winforms.ucPick_Searches();
			this.label1 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// btnBack
			// 
			this.btnBack.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.btnBack.Location = new System.Drawing.Point(16, 248);
			this.btnBack.Name = "btnBack";
			this.btnBack.Size = new System.Drawing.Size(72, 23);
			this.btnBack.TabIndex = 9;
			this.btnBack.Text = "<< &Back";
			// 
			// btnNext
			// 
			this.btnNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.btnNext.Location = new System.Drawing.Point(208, 248);
			this.btnNext.Name = "btnNext";
			this.btnNext.Size = new System.Drawing.Size(72, 23);
			this.btnNext.TabIndex = 8;
			this.btnNext.Text = "&Next >>";
			// 
			// Pick_Searches
			// 
			this.Pick_Searches.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.Pick_Searches.Location = new System.Drawing.Point(8, 24);
			this.Pick_Searches.Name = "Pick_Searches";
			this.Pick_Searches.Size = new System.Drawing.Size(280, 216);
			this.Pick_Searches.TabIndex = 10;
			// 
			// label1
			// 
			this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.label1.Location = new System.Drawing.Point(8, 0);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(280, 23);
			this.label1.TabIndex = 11;
			this.label1.Text = "Choose Search:";
			this.label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
			// 
			// frmManage_Updates_Create_step020
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(296, 277);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.Pick_Searches);
			this.Controls.Add(this.btnBack);
			this.Controls.Add(this.btnNext);
			this.Name = "frmManage_Updates_Create_step020";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Updates - Create";
			this.ResumeLayout(false);

		}
Esempio n. 16
0
        private void BigBlockEdit_Load(object sender, EventArgs e)
        {
            curTileset = 0;
            curVideo = 0x90;
            curPallete = 0;
            curPart = 0;
            dirty = false;
            updateSaveVisibility();
            curViewType = MapViewType.Tiles;

            initControls();
        
            blocksPanel.Controls.Clear();
            blocksPanel.SuspendLayout();
            for (int i = 0; i < SMALL_BLOCKS_COUNT; i++)
            {
                var but = new Button();
                but.FlatStyle = FlatStyle.Flat;
                but.Size = new Size(32, 32);
                but.ImageList = smallBlocks;
                but.ImageIndex = i;
                but.Margin = new Padding(0);
                but.Padding = new Padding(0);
                but.Click += new EventHandler(buttonObjClick);
                blocksPanel.Controls.Add(but);
            }
            blocksPanel.ResumeLayout();
 
            reloadLevel();

            readOnly = false; //must be read from config
            tbbSave.Enabled = !readOnly;
            tbbImport.Enabled = !readOnly;
        }
Esempio n. 17
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();

        }
Esempio n. 18
0
 public ButtonCommandBinding(ICommand command, Button item)
 {
     this.command = command;
     this.item = item;
     this.Bind();
     this.command.Refresh();
 }
Esempio n. 19
0
        public void AssignCommandToButton()
        {
            CommandProvider.OnClickCount = 0;
            TestViewModel viewModel = new TestViewModel();
            using(var button = new Button()) {
                button.SetCommand(viewModel.TestCommand);
                Assert.That(viewModel.TestCommandExecuteCount, Is.EqualTo(0));

                button.PerformClick();
                Assert.That(viewModel.TestCommandExecuteCount, Is.EqualTo(1));
                Assert.That(viewModel.ExecuteParameter, Is.Null);
                Assert.That(viewModel.CanExecuteParameter, Is.Null);
                Assert.That(CommandProvider.OnClickCount, Is.EqualTo(1));

                button.SetCommand(null);
                button.PerformClick();
                Assert.That(viewModel.TestCommandExecuteCount, Is.EqualTo(1));
                Assert.That(CommandProvider.OnClickCount, Is.EqualTo(1));

                viewModel.CanExecuteTestCommand = false;
                button.SetCommand(viewModel.TestCommand);
                button.PerformClick();
                Assert.That(viewModel.TestCommandExecuteCount, Is.EqualTo(1));
                Assert.That(CommandProvider.OnClickCount, Is.EqualTo(1));

                viewModel.CanExecuteTestCommand = true;
                button.SetCommandParameter("param");
                button.PerformClick();
                Assert.That(viewModel.TestCommandExecuteCount, Is.EqualTo(2));
                Assert.That(viewModel.ExecuteParameter, Is.EqualTo("param"));
                Assert.That(viewModel.CanExecuteParameter, Is.EqualTo("param"));
                Assert.That(CommandProvider.OnClickCount, Is.EqualTo(2));
            }
        }
Esempio n. 20
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 });
        }
Esempio n. 21
0
		public void FlatButtonAppearanceBorderColor ()
		{
			Button B1 = new Button ();
			FlatButtonAppearance flatApp = B1.FlatAppearance;

			flatApp.BorderColor = Color.Transparent;
		}
Esempio n. 22
0
		public void FlatButtonAppearanceExceptionTest ()
		{
			Button B1 = new Button ();
			FlatButtonAppearance flatApp = B1.FlatAppearance;

			flatApp.BorderSize = -1;
		}
Esempio n. 23
0
        public static void Remove(Control.ControlCollection coll, Control item)
        {
            if ((coll != null) && (item != null))
            {
                Button tempButton = null;
                Form parentForm = item.FindForm();

                if (parentForm != null)
                {
                    // Create a hidden, temporary button
                    tempButton = new Button();
                    tempButton.Visible = false;

                    // Add this temporary button to the parent form
                    parentForm.Controls.Add(tempButton);

                    // Must ensure that temp button is the active one
                    parentForm.ActiveControl = tempButton;
                }

                // Remove our target control
                coll.Remove(item);

                if (parentForm != null)
                {
                    // Remove the temporary button
                    tempButton.Dispose();
                    parentForm.Controls.Remove(tempButton);
                }
            }
        }
Esempio n. 24
0
        public void AddRow(String path, int rateNum)
        {
            var removeButton = new Button();
            removeButton.Image = IconResource.remove_small;
            removeButton.Size = addButton.Size;
            removeButton.Tag = _pathButtons.Count;
            removeButton.Click += OnRemove;
            _removeButtons.Add(removeButton);

            var pathButton = new Button();
            pathButton.Text = path;
            pathButton.Size = addPathButton.Size;
            pathButton.Click += addPathButton_Click;
            _pathButtons.Add(pathButton);

            var rateComboBox = new ComboBox();
            rateComboBox.Items.AddRange(_rates);
            rateComboBox.SelectedIndex = Math.Min(rateNum, _rates.Length);
            rateComboBox.Size = addRateComboBox.Size;
            _rateComboBoxes.Add(rateComboBox);

            int rowCount = _pathButtons.Count;
            rowContainer.RowCount = rowCount;
            rowContainer.Height = 28 * rowCount;
            rowContainer.Controls.Add(removeButton, 0, rowCount - 1);
            rowContainer.Controls.Add(pathButton, 1, rowCount - 1);
            rowContainer.Controls.Add(rateComboBox, 2, rowCount - 1);
        }
Esempio n. 25
0
File: Form1.cs Progetto: Afens/DI
 /* Metodo que se usa para hacer nacer un Boton y la Persona correspondiente */
 private void nacer()
 {
     Button btn = new Button();
     Controls.Add(btn);
     btn.Click += new EventHandler(matar);
     personas.Add(new PersonaBoton(this.Size,btn));
 }
Esempio n. 26
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);

		}
Esempio n. 27
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.btnRun = new System.Windows.Forms.Button();
			this.btnAbout = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.checkBox1 = new System.Windows.Forms.CheckBox();
			this.SuspendLayout();
			// 
			// btnRun
			// 
			this.btnRun.Location = new System.Drawing.Point(448, 56);
			this.btnRun.Name = "btnRun";
			this.btnRun.Size = new System.Drawing.Size(72, 23);
			this.btnRun.TabIndex = 2;
			this.btnRun.Text = "Run";
			this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
			// 
			// btnAbout
			// 
			this.btnAbout.Location = new System.Drawing.Point(528, 56);
			this.btnAbout.Name = "btnAbout";
			this.btnAbout.TabIndex = 3;
			this.btnAbout.Text = "Close";
			this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label1.Location = new System.Drawing.Point(16, 16);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(558, 18);
			this.label1.TabIndex = 4;
			this.label1.Text = "The sample demonstrates how to create percent stacked line chart in an excel work" +
				"book.";
			// 
			// checkBox1
			// 
			this.checkBox1.Location = new System.Drawing.Point(24, 48);
			this.checkBox1.Name = "checkBox1";
			this.checkBox1.Size = new System.Drawing.Size(160, 24);
			this.checkBox1.TabIndex = 5;
			this.checkBox1.Text = "Stacked markers chart";
			// 
			// Form1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(616, 94);
			this.Controls.Add(this.checkBox1);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.btnAbout);
			this.Controls.Add(this.btnRun);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "Form1";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Chart sample";
			this.ResumeLayout(false);

		}
Esempio n. 28
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);
 }
		public void ConstructorTest()
		{
			INuGenServiceProvider serviceProvider = new NuGenControlServiceProvider();
			try
			{
				_sketchCanvas = new NuGenSketchCanvas((IntPtr)(-1), serviceProvider);
				Assert.Fail();
			}
			catch (ArgumentException)
			{
			}

			Button button = new Button();
			button.CreateControl();
			Assert.IsTrue(button.IsHandleCreated);

			try
			{
				_sketchCanvas = new NuGenSketchCanvas(button.Handle, serviceProvider);
			}
			catch
			{
				Assert.Fail();
			}
		}
Esempio n. 30
0
        public static void RemoveAll(Control control)
        {
            if ((control != null) && (control.Controls.Count > 0))
            {
                Button tempButton = null;
                Form parentForm = control.FindForm();

                if (parentForm != null)
                {
                    // Create a hidden, temporary button
                    tempButton = new Button();
                    tempButton.Visible = false;

                    // Add this temporary button to the parent form
                    parentForm.Controls.Add(tempButton);

                    // Must ensure that temp button is the active one
                    parentForm.ActiveControl = tempButton;
                }

              				// Remove all entries from target
                control.Controls.Clear();

                if (parentForm != null)
                {
                    // Remove the temporary button
                    tempButton.Dispose();
                    parentForm.Controls.Remove(tempButton);
                }
            }
        }
Esempio n. 31
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(Bubble_Sphere));
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.bubble1   = new Steema.TeeChart.Styles.Bubble();
     this.button1   = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label1    = new System.Windows.Forms.Label();
     this.gridBand1 = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.chartContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Text = "Bubble series can now fill points using a gradient. \r\n\r\nbubble1.Pointer.Gradient." +
                          "Visible = true;";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.checkBox1);
     //
     // tChart1
     //
     //
     //
     //
     this.tChart1.Aspect.Chart3DPercent = 100;
     this.tChart1.Aspect.Elevation      = 351;
     this.tChart1.Aspect.ElevationFloat = 351;
     this.tChart1.Aspect.Orthogonal     = false;
     this.tChart1.Aspect.Perspective    = 88;
     this.tChart1.Aspect.Rotation       = 336;
     this.tChart1.Aspect.RotationFloat  = 336;
     this.tChart1.Aspect.ZOffset        = 0;
     this.tChart1.Aspect.Zoom           = 78;
     this.tChart1.Aspect.ZoomFloat      = 78;
     //
     //
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     //
     //
     this.tChart1.Legend.Visible = false;
     //
     //
     //
     //
     //
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Series.Add(this.bubble1);
     this.tChart1.Size = new System.Drawing.Size(440, 205);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 3;
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 3;
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(16, 8);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(104, 24);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text     = "Use Gradient";
     this.checkBox1.Click   += new System.EventHandler(this.checkBox1_Click);
     //
     // bubble1
     //
     this.bubble1.Color       = System.Drawing.Color.Red;
     this.bubble1.LabelMember = "Labels";
     //
     //
     //
     //
     //
     //
     this.bubble1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.bubble1.Marks.Callout.ArrowHeadSize = 8;
     //
     //
     //
     this.bubble1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.bubble1.Marks.Callout.Distance    = 0;
     this.bubble1.Marks.Callout.Draw3D      = false;
     this.bubble1.Marks.Callout.Length      = 0;
     this.bubble1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.bubble1.Marks.Callout.Visible     = false;
     this.bubble1.Marks.Transparent         = true;
     //
     //
     //
     //
     //
     //
     this.bubble1.Pointer.Brush.Color           = System.Drawing.Color.Red;
     this.bubble1.Pointer.Brush.ForegroundColor = System.Drawing.Color.Empty;
     this.bubble1.Pointer.HorizSize             = 19;
     this.bubble1.Pointer.InflateMargins        = false;
     //
     //
     //
     this.bubble1.Pointer.Pen.Visible = false;
     this.bubble1.Pointer.Style       = Steema.TeeChart.Styles.PointerStyles.Sphere;
     this.bubble1.Pointer.VertSize    = 19;
     this.bubble1.Title = "bubble1";
     //
     //
     //
     this.bubble1.XValues.DataMember = "X";
     this.bubble1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
     //
     //
     //
     this.bubble1.YValues.DataMember = "Y";
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(120, 8);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(89, 23);
     this.button1.TabIndex  = 1;
     this.button1.Text      = "Edit Gradient...";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Items.AddRange(new object[] {
         "Plain Bubble",
         "Sphere",
         "Polished"
     });
     this.comboBox1.Location              = new System.Drawing.Point(328, 11);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(96, 21);
     this.comboBox1.TabIndex              = 2;
     this.comboBox1.SelectedIndex         = 1;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(240, 12);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "&Bubble style:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     //
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(76)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     //
     //
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(76)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     // Bubble_Sphere
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 317);
     this.Name = "Bubble_Sphere";
     this.panel1.ResumeLayout(false);
     this.chartContainer.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1      = new System.Windows.Forms.Panel();
     this.BtnStart    = new System.Windows.Forms.Button();
     this.button1     = new System.Windows.Forms.Button();
     this.panel2      = new System.Windows.Forms.Panel();
     this.txtIP       = new System.Windows.Forms.TextBox();
     this.lblState    = new System.Windows.Forms.Label();
     this.lblIP       = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.button2     = new System.Windows.Forms.Button();
     this.textBox2    = new System.Windows.Forms.TextBox();
     this.textBox1    = new System.Windows.Forms.TextBox();
     this.panel3      = new System.Windows.Forms.Panel();
     this.lstMsg      = new System.Windows.Forms.ListBox();
     this.TestFile    = new System.Windows.Forms.Label();
     this.txtTestFile = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.BtnStart);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 350);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(552, 48);
     this.panel1.TabIndex = 10;
     //
     // BtnStart
     //
     this.BtnStart.Location = new System.Drawing.Point(92, 8);
     this.BtnStart.Name     = "BtnStart";
     this.BtnStart.Size     = new System.Drawing.Size(112, 32);
     this.BtnStart.TabIndex = 9;
     this.BtnStart.Text     = "Start";
     this.BtnStart.Click   += new System.EventHandler(this.BtnStart_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(300, 8);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(120, 32);
     this.button1.TabIndex = 8;
     this.button1.Text     = "Exit";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.txtTestFile);
     this.panel2.Controls.Add(this.TestFile);
     this.panel2.Controls.Add(this.txtIP);
     this.panel2.Controls.Add(this.lblState);
     this.panel2.Controls.Add(this.lblIP);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.button2);
     this.panel2.Controls.Add(this.textBox2);
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(552, 184);
     this.panel2.TabIndex = 11;
     //
     // txtIP
     //
     this.txtIP.Location = new System.Drawing.Point(8, 80);
     this.txtIP.Name     = "txtIP";
     this.txtIP.Size     = new System.Drawing.Size(176, 20);
     this.txtIP.TabIndex = 17;
     this.txtIP.Text     = "";
     //
     // lblState
     //
     this.lblState.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblState.Location  = new System.Drawing.Point(16, 112);
     this.lblState.Name      = "lblState";
     this.lblState.Size      = new System.Drawing.Size(496, 32);
     this.lblState.TabIndex  = 16;
     this.lblState.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblIP
     //
     this.lblIP.Location  = new System.Drawing.Point(200, 80);
     this.lblIP.Name      = "lblIP";
     this.lblIP.Size      = new System.Drawing.Size(312, 24);
     this.lblIP.TabIndex  = 15;
     this.lblIP.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(24, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(56, 16);
     this.label2.TabIndex = 14;
     this.label2.Text     = "TargetFile";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 4);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 13;
     this.label1.Text     = "StartUpFile";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(88, 48);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(144, 24);
     this.button2.TabIndex = 12;
     this.button2.Text     = "OK";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(80, 24);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(424, 20);
     this.textBox2.TabIndex = 11;
     this.textBox2.Text     = "";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(80, 4);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(424, 20);
     this.textBox1.TabIndex = 10;
     this.textBox1.Text     = "";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.lstMsg);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 184);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(552, 166);
     this.panel3.TabIndex = 12;
     //
     // lstMsg
     //
     this.lstMsg.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.lstMsg.Location = new System.Drawing.Point(0, 0);
     this.lstMsg.Name     = "lstMsg";
     this.lstMsg.Size     = new System.Drawing.Size(552, 160);
     this.lstMsg.TabIndex = 2;
     //
     // TestFile
     //
     this.TestFile.Location = new System.Drawing.Point(16, 152);
     this.TestFile.Name     = "TestFile";
     this.TestFile.Size     = new System.Drawing.Size(72, 24);
     this.TestFile.TabIndex = 18;
     this.TestFile.Text     = "TestFile";
     //
     // txtTestFile
     //
     this.txtTestFile.Location = new System.Drawing.Point(88, 152);
     this.txtTestFile.Name     = "txtTestFile";
     this.txtTestFile.Size     = new System.Drawing.Size(448, 20);
     this.txtTestFile.TabIndex = 19;
     this.txtTestFile.Text     = "";
     //
     // ReportService
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(552, 398);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "ReportService";
     this.Text            = "ReportService";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.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.commandLineTextBox          = new System.Windows.Forms.TextBox();
     this.okButton                    = new System.Windows.Forms.Button();
     this.cancelButton                = new System.Windows.Forms.Button();
     this.label2                      = new System.Windows.Forms.Label();
     this.workingDirectoryTextBox     = new System.Windows.Forms.TextBox();
     this.label3                      = new System.Windows.Forms.Label();
     this.logDirectoryTextBox         = new System.Windows.Forms.TextBox();
     this.gcOnLogFileCommentsCheckBox = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(24, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(144, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Enter Command Line:";
     //
     // commandLineTextBox
     //
     this.commandLineTextBox.Location = new System.Drawing.Point(24, 48);
     this.commandLineTextBox.Name     = "commandLineTextBox";
     this.commandLineTextBox.Size     = new System.Drawing.Size(424, 20);
     this.commandLineTextBox.TabIndex = 1;
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location     = new System.Drawing.Point(488, 24);
     this.okButton.Name         = "okButton";
     this.okButton.Size         = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex     = 5;
     this.okButton.Text         = "OK";
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location     = new System.Drawing.Point(488, 72);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex     = 6;
     this.cancelButton.Text         = "Cancel";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(24, 96);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(136, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Enter Working Directory";
     //
     // workingDirectoryTextBox
     //
     this.workingDirectoryTextBox.Location = new System.Drawing.Point(24, 120);
     this.workingDirectoryTextBox.Name     = "workingDirectoryTextBox";
     this.workingDirectoryTextBox.Size     = new System.Drawing.Size(424, 20);
     this.workingDirectoryTextBox.TabIndex = 3;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(24, 168);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(184, 23);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Enter Log File Directory";
     //
     // logDirectoryTextBox
     //
     this.logDirectoryTextBox.Location = new System.Drawing.Point(24, 200);
     this.logDirectoryTextBox.Name     = "logDirectoryTextBox";
     this.logDirectoryTextBox.Size     = new System.Drawing.Size(424, 20);
     this.logDirectoryTextBox.TabIndex = 7;
     //
     // gcOnLogFileCommentsCheckBox
     //
     this.gcOnLogFileCommentsCheckBox.Location = new System.Drawing.Point(24, 248);
     this.gcOnLogFileCommentsCheckBox.Name     = "gcOnLogFileCommentsCheckBox";
     this.gcOnLogFileCommentsCheckBox.Size     = new System.Drawing.Size(200, 24);
     this.gcOnLogFileCommentsCheckBox.TabIndex = 8;
     this.gcOnLogFileCommentsCheckBox.Text     = "Trigger a GC on log file comments";
     //
     // Form
     //
     this.AcceptButton = this.okButton;
     this.CancelButton = this.cancelButton;
     this.ClientSize   = new System.Drawing.Size(592, 326);
     this.Controls.Add(this.gcOnLogFileCommentsCheckBox);
     this.Controls.Add(this.logDirectoryTextBox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.workingDirectoryTextBox);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.commandLineTextBox);
     this.Controls.Add(this.label1);
     this.Name = "Form";
     this.Text = "Command Line and Working Directory";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 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.myCtlLblSwitchPage      = new System.Windows.Forms.Label();
     this.myCtlCmbItems           = new System.Windows.Forms.ComboBox();
     this.myCtlChkSetSelectedPage = new System.Windows.Forms.CheckBox();
     this.myCtlBtnOK     = new System.Windows.Forms.Button();
     this.myCtlBtnCancel = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // myCtlLblSwitchPage
     //
     this.myCtlLblSwitchPage.AutoSize = true;
     this.myCtlLblSwitchPage.Location = new System.Drawing.Point(9, 9);
     this.myCtlLblSwitchPage.Name     = "myCtlLblSwitchPage";
     this.myCtlLblSwitchPage.Size     = new System.Drawing.Size(99, 13);
     this.myCtlLblSwitchPage.TabIndex = 0;
     this.myCtlLblSwitchPage.Text     = "Switch the page to:";
     //
     // myCtlCmbItems
     //
     this.myCtlCmbItems.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.myCtlCmbItems.Location      = new System.Drawing.Point(12, 25);
     this.myCtlCmbItems.Name          = "myCtlCmbItems";
     this.myCtlCmbItems.Size          = new System.Drawing.Size(227, 21);
     this.myCtlCmbItems.TabIndex      = 1;
     //
     // myCtlChkSetSelectedPage
     //
     this.myCtlChkSetSelectedPage.Location = new System.Drawing.Point(12, 61);
     this.myCtlChkSetSelectedPage.Name     = "myCtlChkSetSelectedPage";
     this.myCtlChkSetSelectedPage.Size     = new System.Drawing.Size(220, 17);
     this.myCtlChkSetSelectedPage.TabIndex = 2;
     this.myCtlChkSetSelectedPage.Text     = "Also set the SelectedPage property";
     //
     // myCtlBtnOK
     //
     this.myCtlBtnOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.myCtlBtnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.myCtlBtnOK.Location     = new System.Drawing.Point(77, 97);
     this.myCtlBtnOK.Name         = "myCtlBtnOK";
     this.myCtlBtnOK.Size         = new System.Drawing.Size(75, 23);
     this.myCtlBtnOK.TabIndex     = 3;
     this.myCtlBtnOK.Text         = "OK";
     this.myCtlBtnOK.Click       += new System.EventHandler(this.Handler_OK);
     //
     // myCtlBtnCancel
     //
     this.myCtlBtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.myCtlBtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.myCtlBtnCancel.Location     = new System.Drawing.Point(164, 97);
     this.myCtlBtnCancel.Name         = "myCtlBtnCancel";
     this.myCtlBtnCancel.Size         = new System.Drawing.Size(75, 23);
     this.myCtlBtnCancel.TabIndex     = 4;
     this.myCtlBtnCancel.Text         = "Cancel";
     //
     // frmSwitchPages
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(251, 132);
     this.Controls.Add(this.myCtlLblSwitchPage);
     this.Controls.Add(this.myCtlCmbItems);
     this.Controls.Add(this.myCtlChkSetSelectedPage);
     this.Controls.Add(this.myCtlBtnCancel);
     this.Controls.Add(this.myCtlBtnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmSwitchPages";
     this.ShowInTaskbar   = false;
     this.Text            = "Switch Pages";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void Diseño_Ventana()
 {
     #region Creando controles
     this.groupBox_Opcion = new System.Windows.Forms.GroupBox();
     this.radioButton_InventarioMateriaPrima = new System.Windows.Forms.RadioButton();
     this.radioButton_InventarioProducto     = new System.Windows.Forms.RadioButton();
     this.bttn_Consultar = new System.Windows.Forms.Button();
     this.pictureBox_Inv = new System.Windows.Forms.PictureBox();
     this.groupBox_Opcion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Inv)).BeginInit();
     this.SuspendLayout();
     #endregion
     #region Diseñando controles
     //
     // groupBox_Opcion
     //
     this.groupBox_Opcion.Controls.Add(this.bttn_Consultar);
     this.groupBox_Opcion.Controls.Add(this.radioButton_InventarioProducto);
     this.groupBox_Opcion.Controls.Add(this.radioButton_InventarioMateriaPrima);
     this.groupBox_Opcion.Location = new System.Drawing.Point(12, 78);
     this.groupBox_Opcion.Name     = "groupBox_Opcion";
     this.groupBox_Opcion.Size     = new System.Drawing.Size(260, 122);
     this.groupBox_Opcion.TabIndex = 0;
     this.groupBox_Opcion.TabStop  = false;
     this.groupBox_Opcion.Text     = "Seleccione una opción";
     //
     // radioButton_InventarioMateriaPrima
     //
     this.radioButton_InventarioMateriaPrima.AutoSize = true;
     this.radioButton_InventarioMateriaPrima.Location = new System.Drawing.Point(20, 19);
     this.radioButton_InventarioMateriaPrima.Name     = "radioButton_InventarioMateriaPrima";
     this.radioButton_InventarioMateriaPrima.Size     = new System.Drawing.Size(162, 17);
     this.radioButton_InventarioMateriaPrima.TabIndex = 0;
     this.radioButton_InventarioMateriaPrima.TabStop  = true;
     this.radioButton_InventarioMateriaPrima.Text     = "Información de Materia Prima";
     this.radioButton_InventarioMateriaPrima.UseVisualStyleBackColor = true;
     //
     // radioButton_InventarioProducto
     //
     this.radioButton_InventarioProducto.AutoSize = true;
     this.radioButton_InventarioProducto.Location = new System.Drawing.Point(20, 42);
     this.radioButton_InventarioProducto.Name     = "radioButton_InventarioProducto";
     this.radioButton_InventarioProducto.Size     = new System.Drawing.Size(140, 17);
     this.radioButton_InventarioProducto.TabIndex = 1;
     this.radioButton_InventarioProducto.TabStop  = true;
     this.radioButton_InventarioProducto.Text     = "Información de producto";
     this.radioButton_InventarioProducto.UseVisualStyleBackColor = true;
     //
     // bttn_Consultar
     //
     this.bttn_Consultar.Location = new System.Drawing.Point(167, 70);
     this.bttn_Consultar.Name     = "bttn_Consultar";
     this.bttn_Consultar.Size     = new System.Drawing.Size(75, 23);
     this.bttn_Consultar.TabIndex = 2;
     this.bttn_Consultar.Text     = "Consultar";
     this.bttn_Consultar.UseVisualStyleBackColor = true;
     this.bttn_Consultar.Click += new System.EventHandler(this.bttn_Consultar_Click);
     //
     // pictureBox_Inv
     //
     this.pictureBox_Inv.BackgroundImage       = global::Sistema_Shajobe.Properties.Resources.Inventario;
     this.pictureBox_Inv.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBox_Inv.Location = new System.Drawing.Point(102, 12);
     this.pictureBox_Inv.Name     = "pictureBox_Inv";
     this.pictureBox_Inv.Size     = new System.Drawing.Size(92, 64);
     this.pictureBox_Inv.TabIndex = 1;
     this.pictureBox_Inv.TabStop  = false;
     //
     // Opcion_Inventario
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(228)))), ((int)(((byte)(196)))));
     this.ClientSize          = new System.Drawing.Size(284, 215);
     this.Controls.Add(this.pictureBox_Inv);
     this.Controls.Add(this.groupBox_Opcion);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MaximumSize     = new System.Drawing.Size(290, 243);
     this.MinimumSize     = new System.Drawing.Size(290, 243);
     this.Icon            = global::Sistema_Shajobe.Properties.Resources.Inventario_ICO;
     this.Name            = "Opcion_Inventario";
     this.Text            = "Opcion Inventario";
     this.groupBox_Opcion.ResumeLayout(false);
     this.groupBox_Opcion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Inv)).EndInit();
     this.ResumeLayout(false);
     #endregion
 }
Esempio n. 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.theCalendar = new System.Windows.Forms.MonthCalendar();
     this.cmdDataBase = new System.Windows.Forms.Button();
     this.txtDesc     = new System.Windows.Forms.TextBox();
     this.txtIssue    = new System.Windows.Forms.TextBox();
     this.lblLabel    = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // theCalendar
     //
     this.theCalendar.Location = new System.Drawing.Point(160, 16);
     this.theCalendar.Name     = "theCalendar";
     this.theCalendar.TabIndex = 2;
     //
     // cmdDataBase
     //
     this.cmdDataBase.Location = new System.Drawing.Point(8, 112);
     this.cmdDataBase.Name     = "cmdDataBase";
     this.cmdDataBase.Size     = new System.Drawing.Size(120, 56);
     this.cmdDataBase.TabIndex = 3;
     this.cmdDataBase.Text     = "Add to Database";
     this.cmdDataBase.Click   += new System.EventHandler(this.cmdDataBase_Click);
     //
     // txtDesc
     //
     this.txtDesc.Location = new System.Drawing.Point(8, 80);
     this.txtDesc.Name     = "txtDesc";
     this.txtDesc.Size     = new System.Drawing.Size(120, 20);
     this.txtDesc.TabIndex = 4;
     this.txtDesc.Text     = "";
     //
     // txtIssue
     //
     this.txtIssue.Location = new System.Drawing.Point(8, 24);
     this.txtIssue.Name     = "txtIssue";
     this.txtIssue.Size     = new System.Drawing.Size(120, 20);
     this.txtIssue.TabIndex = 5;
     this.txtIssue.Text     = "";
     //
     // lblLabel
     //
     this.lblLabel.Location = new System.Drawing.Point(8, 8);
     this.lblLabel.Name     = "lblLabel";
     this.lblLabel.Size     = new System.Drawing.Size(96, 16);
     this.lblLabel.TabIndex = 7;
     this.lblLabel.Text     = "Issue";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 56);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 8;
     this.label1.Text     = "Description";
     //
     // PastData
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(360, 266);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label1,
         this.lblLabel,
         this.txtIssue,
         this.txtDesc,
         this.cmdDataBase,
         this.theCalendar
     });
     this.Name  = "PastData";
     this.Text  = "PastData";
     this.Load += new System.EventHandler(this.PastData_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SessionSettingsForm));
     this.UnitGroupBox              = new System.Windows.Forms.GroupBox();
     this.DemandDuplicatesCheckBox  = new System.Windows.Forms.CheckBox();
     this.IndividualRadioButton     = new System.Windows.Forms.RadioButton();
     this.SampleRadioButton         = new System.Windows.Forms.RadioButton();
     this.HardyWeinbergGroupBox     = new System.Windows.Forms.GroupBox();
     this.DoHWTestCheckBox          = new System.Windows.Forms.CheckBox();
     this.HWLimitNumeric            = new System.Windows.Forms.NumericUpDown();
     this.HWLimitLabel              = new System.Windows.Forms.Label();
     this.SkipChildrenCheckBox      = new System.Windows.Forms.CheckBox();
     this.InheritanceTestGroupBox   = new System.Windows.Forms.GroupBox();
     this.DoInheritanceTestCheckBox = new System.Windows.Forms.CheckBox();
     this.DetectXCheckBox           = new System.Windows.Forms.CheckBox();
     this.OKButton           = new System.Windows.Forms.Button();
     this.CloseButton        = new System.Windows.Forms.Button();
     this.ExperimentGroupBox = new System.Windows.Forms.GroupBox();
     this.MarkerRadioButton  = new System.Windows.Forms.RadioButton();
     this.AssayRadioButton   = new System.Windows.Forms.RadioButton();
     this.UnitGroupBox.SuspendLayout();
     this.HardyWeinbergGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.HWLimitNumeric)).BeginInit();
     this.InheritanceTestGroupBox.SuspendLayout();
     this.ExperimentGroupBox.SuspendLayout();
     this.SuspendLayout();
     //
     // UnitGroupBox
     //
     this.UnitGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.UnitGroupBox.Controls.Add(this.DemandDuplicatesCheckBox);
     this.UnitGroupBox.Controls.Add(this.IndividualRadioButton);
     this.UnitGroupBox.Controls.Add(this.SampleRadioButton);
     this.UnitGroupBox.Location = new System.Drawing.Point(13, 13);
     this.UnitGroupBox.Name     = "UnitGroupBox";
     this.UnitGroupBox.Size     = new System.Drawing.Size(338, 85);
     this.UnitGroupBox.TabIndex = 0;
     this.UnitGroupBox.TabStop  = false;
     this.UnitGroupBox.Text     = "Item Report Unit";
     //
     // DemandDuplicatesCheckBox
     //
     this.DemandDuplicatesCheckBox.Location = new System.Drawing.Point(176, 32);
     this.DemandDuplicatesCheckBox.Name     = "DemandDuplicatesCheckBox";
     this.DemandDuplicatesCheckBox.Size     = new System.Drawing.Size(136, 16);
     this.DemandDuplicatesCheckBox.TabIndex = 2;
     this.DemandDuplicatesCheckBox.Text     = "Demand duplicates";
     //
     // IndividualRadioButton
     //
     this.IndividualRadioButton.Location        = new System.Drawing.Point(16, 48);
     this.IndividualRadioButton.Name            = "IndividualRadioButton";
     this.IndividualRadioButton.Size            = new System.Drawing.Size(80, 16);
     this.IndividualRadioButton.TabIndex        = 1;
     this.IndividualRadioButton.Text            = "Individual";
     this.IndividualRadioButton.CheckedChanged += new System.EventHandler(this.CheckChangedEventHandler);
     //
     // SampleRadioButton
     //
     this.SampleRadioButton.Checked         = true;
     this.SampleRadioButton.Location        = new System.Drawing.Point(16, 24);
     this.SampleRadioButton.Name            = "SampleRadioButton";
     this.SampleRadioButton.Size            = new System.Drawing.Size(96, 16);
     this.SampleRadioButton.TabIndex        = 0;
     this.SampleRadioButton.TabStop         = true;
     this.SampleRadioButton.Text            = "Sample";
     this.SampleRadioButton.CheckedChanged += new System.EventHandler(this.CheckChangedEventHandler);
     //
     // HardyWeinbergGroupBox
     //
     this.HardyWeinbergGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.HardyWeinbergGroupBox.Controls.Add(this.DoHWTestCheckBox);
     this.HardyWeinbergGroupBox.Controls.Add(this.HWLimitNumeric);
     this.HardyWeinbergGroupBox.Controls.Add(this.HWLimitLabel);
     this.HardyWeinbergGroupBox.Controls.Add(this.SkipChildrenCheckBox);
     this.HardyWeinbergGroupBox.Location = new System.Drawing.Point(13, 334);
     this.HardyWeinbergGroupBox.Name     = "HardyWeinbergGroupBox";
     this.HardyWeinbergGroupBox.Size     = new System.Drawing.Size(338, 85);
     this.HardyWeinbergGroupBox.TabIndex = 1;
     this.HardyWeinbergGroupBox.TabStop  = false;
     this.HardyWeinbergGroupBox.Text     = "Frequencies";
     //
     // DoHWTestCheckBox
     //
     this.DoHWTestCheckBox.Location        = new System.Drawing.Point(16, 28);
     this.DoHWTestCheckBox.Name            = "DoHWTestCheckBox";
     this.DoHWTestCheckBox.Size            = new System.Drawing.Size(112, 16);
     this.DoHWTestCheckBox.TabIndex        = 7;
     this.DoHWTestCheckBox.Text            = "Perform H-W test";
     this.DoHWTestCheckBox.CheckedChanged += new System.EventHandler(this.CheckChangedEventHandler);
     //
     // HWLimitNumeric
     //
     this.HWLimitNumeric.Location = new System.Drawing.Point(200, 28);
     this.HWLimitNumeric.Maximum  = new decimal(new int[] {
         10000,
         0,
         0,
         0
     });
     this.HWLimitNumeric.Name     = "HWLimitNumeric";
     this.HWLimitNumeric.Size     = new System.Drawing.Size(72, 20);
     this.HWLimitNumeric.TabIndex = 9;
     //
     // HWLimitLabel
     //
     this.HWLimitLabel.Location = new System.Drawing.Point(136, 28);
     this.HWLimitLabel.Name     = "HWLimitLabel";
     this.HWLimitLabel.Size     = new System.Drawing.Size(56, 16);
     this.HWLimitLabel.TabIndex = 2;
     this.HWLimitLabel.Text     = "Chi2 limit";
     //
     // SkipChildrenCheckBox
     //
     this.SkipChildrenCheckBox.Location = new System.Drawing.Point(16, 52);
     this.SkipChildrenCheckBox.Name     = "SkipChildrenCheckBox";
     this.SkipChildrenCheckBox.Size     = new System.Drawing.Size(176, 16);
     this.SkipChildrenCheckBox.TabIndex = 8;
     this.SkipChildrenCheckBox.Text     = "Skip children";
     //
     // InheritanceTestGroupBox
     //
     this.InheritanceTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.InheritanceTestGroupBox.Controls.Add(this.DoInheritanceTestCheckBox);
     this.InheritanceTestGroupBox.Controls.Add(this.DetectXCheckBox);
     this.InheritanceTestGroupBox.Location = new System.Drawing.Point(13, 223);
     this.InheritanceTestGroupBox.Name     = "InheritanceTestGroupBox";
     this.InheritanceTestGroupBox.Size     = new System.Drawing.Size(338, 85);
     this.InheritanceTestGroupBox.TabIndex = 2;
     this.InheritanceTestGroupBox.TabStop  = false;
     this.InheritanceTestGroupBox.Text     = "Inheritance and Chromosomes";
     //
     // DoInheritanceTestCheckBox
     //
     this.DoInheritanceTestCheckBox.Location        = new System.Drawing.Point(16, 24);
     this.DoInheritanceTestCheckBox.Name            = "DoInheritanceTestCheckBox";
     this.DoInheritanceTestCheckBox.Size            = new System.Drawing.Size(192, 16);
     this.DoInheritanceTestCheckBox.TabIndex        = 5;
     this.DoInheritanceTestCheckBox.Text            = "Perform inheritance test";
     this.DoInheritanceTestCheckBox.CheckedChanged += new System.EventHandler(this.CheckChangedEventHandler);
     //
     // DetectXCheckBox
     //
     this.DetectXCheckBox.Location = new System.Drawing.Point(16, 48);
     this.DetectXCheckBox.Name     = "DetectXCheckBox";
     this.DetectXCheckBox.Size     = new System.Drawing.Size(192, 16);
     this.DetectXCheckBox.TabIndex = 6;
     this.DetectXCheckBox.Text     = "Detect human X chromosome";
     //
     // OKButton
     //
     this.OKButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.OKButton.Location = new System.Drawing.Point(13, 455);
     this.OKButton.Name     = "OKButton";
     this.OKButton.Size     = new System.Drawing.Size(72, 24);
     this.OKButton.TabIndex = 10;
     this.OKButton.Text     = "&OK";
     this.OKButton.Click   += new System.EventHandler(this.OKButton_Click);
     //
     // CloseButton
     //
     this.CloseButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.CloseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CloseButton.Location     = new System.Drawing.Point(286, 455);
     this.CloseButton.Name         = "CloseButton";
     this.CloseButton.Size         = new System.Drawing.Size(72, 24);
     this.CloseButton.TabIndex     = 11;
     this.CloseButton.Text         = "&Cancel";
     this.CloseButton.Click       += new System.EventHandler(this.CloseButton_Click);
     //
     // ExperimentGroupBox
     //
     this.ExperimentGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.ExperimentGroupBox.Controls.Add(this.MarkerRadioButton);
     this.ExperimentGroupBox.Controls.Add(this.AssayRadioButton);
     this.ExperimentGroupBox.Location = new System.Drawing.Point(13, 121);
     this.ExperimentGroupBox.Name     = "ExperimentGroupBox";
     this.ExperimentGroupBox.Size     = new System.Drawing.Size(337, 85);
     this.ExperimentGroupBox.TabIndex = 5;
     this.ExperimentGroupBox.TabStop  = false;
     this.ExperimentGroupBox.Text     = "Experiment Report Unit";
     //
     // MarkerRadioButton
     //
     this.MarkerRadioButton.AutoSize = true;
     this.MarkerRadioButton.Checked  = true;
     this.MarkerRadioButton.Location = new System.Drawing.Point(16, 52);
     this.MarkerRadioButton.Name     = "MarkerRadioButton";
     this.MarkerRadioButton.Size     = new System.Drawing.Size(58, 17);
     this.MarkerRadioButton.TabIndex = 4;
     this.MarkerRadioButton.TabStop  = true;
     this.MarkerRadioButton.Text     = "Marker";
     this.MarkerRadioButton.UseVisualStyleBackColor = true;
     //
     // AssayRadioButton
     //
     this.AssayRadioButton.AutoSize = true;
     this.AssayRadioButton.Location = new System.Drawing.Point(16, 29);
     this.AssayRadioButton.Name     = "AssayRadioButton";
     this.AssayRadioButton.Size     = new System.Drawing.Size(53, 17);
     this.AssayRadioButton.TabIndex = 3;
     this.AssayRadioButton.Text     = "Assay";
     this.AssayRadioButton.UseVisualStyleBackColor = true;
     //
     // SessionSettingsForm
     //
     this.AcceptButton      = this.OKButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.CloseButton;
     this.ClientSize        = new System.Drawing.Size(370, 491);
     this.Controls.Add(this.ExperimentGroupBox);
     this.Controls.Add(this.CloseButton);
     this.Controls.Add(this.OKButton);
     this.Controls.Add(this.InheritanceTestGroupBox);
     this.Controls.Add(this.HardyWeinbergGroupBox);
     this.Controls.Add(this.UnitGroupBox);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SessionSettingsForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Session Settings";
     this.UnitGroupBox.ResumeLayout(false);
     this.HardyWeinbergGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.HWLimitNumeric)).EndInit();
     this.InheritanceTestGroupBox.ResumeLayout(false);
     this.ExperimentGroupBox.ResumeLayout(false);
     this.ExperimentGroupBox.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cmdListen = new System.Windows.Forms.Button();
     this.txtPortNo = new System.Windows.Forms.TextBox();
     this.label1    = new System.Windows.Forms.Label();
     this.txtDataRx = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button1   = new System.Windows.Forms.Button();
     this.txtDataTx = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cmdListen);
     this.groupBox1.Controls.Add(this.txtPortNo);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(8, 16);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(264, 48);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Settings";
     //
     // cmdListen
     //
     this.cmdListen.Location = new System.Drawing.Point(144, 16);
     this.cmdListen.Name     = "cmdListen";
     this.cmdListen.Size     = new System.Drawing.Size(104, 24);
     this.cmdListen.TabIndex = 2;
     this.cmdListen.Text     = "Start Listening";
     this.cmdListen.Click   += new System.EventHandler(this.cmdListen_Click);
     //
     // txtPortNo
     //
     this.txtPortNo.Location = new System.Drawing.Point(96, 16);
     this.txtPortNo.Name     = "txtPortNo";
     this.txtPortNo.Size     = new System.Drawing.Size(40, 20);
     this.txtPortNo.TabIndex = 1;
     this.txtPortNo.Text     = "8000";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Port Number:";
     //
     // txtDataRx
     //
     this.txtDataRx.Location   = new System.Drawing.Point(8, 264);
     this.txtDataRx.Multiline  = true;
     this.txtDataRx.Name       = "txtDataRx";
     this.txtDataRx.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDataRx.Size       = new System.Drawing.Size(272, 80);
     this.txtDataRx.TabIndex   = 1;
     this.txtDataRx.Text       = "";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.txtDataTx);
     this.groupBox2.Location = new System.Drawing.Point(8, 72);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(272, 152);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Send Data";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(16, 120);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(232, 24);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Send";
     this.button1.Click   += new System.EventHandler(this.buttonSend_Click);
     //
     // txtDataTx
     //
     this.txtDataTx.Cursor     = System.Windows.Forms.Cursors.IBeam;
     this.txtDataTx.Location   = new System.Drawing.Point(8, 16);
     this.txtDataTx.Multiline  = true;
     this.txtDataTx.Name       = "txtDataTx";
     this.txtDataTx.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDataTx.Size       = new System.Drawing.Size(240, 96);
     this.txtDataTx.TabIndex   = 0;
     this.txtDataTx.Text       = "";
     //
     // groupBox3
     //
     this.groupBox3.Location = new System.Drawing.Point(0, 240);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(288, 112);
     this.groupBox3.TabIndex = 3;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Data Received";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(296, 349);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.txtDataRx);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupBox3);
     this.Name = "Form1";
     this.Text = "Socket Server in C#";
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label SpecificationLB;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectServerDlg));
     this.CancelBTN         = new System.Windows.Forms.Button();
     this.OkBTN             = new System.Windows.Forms.Button();
     this.SpecificationCB   = new System.Windows.Forms.ComboBox();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.ServersCTRL       = new CAS.Lib.OPCClientControlsLib.BrowseTreeCtrl();
     SpecificationLB        = new System.Windows.Forms.Label();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // SpecificationLB
     //
     SpecificationLB.AutoSize  = true;
     SpecificationLB.Dock      = System.Windows.Forms.DockStyle.Fill;
     SpecificationLB.Location  = new System.Drawing.Point(3, 0);
     SpecificationLB.Name      = "SpecificationLB";
     SpecificationLB.Size      = new System.Drawing.Size(68, 27);
     SpecificationLB.TabIndex  = 2;
     SpecificationLB.Text      = "Specification";
     SpecificationLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // CancelBTN
     //
     this.CancelBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CancelBTN.Location     = new System.Drawing.Point(214, 240);
     this.CancelBTN.Name         = "CancelBTN";
     this.CancelBTN.Size         = new System.Drawing.Size(75, 23);
     this.CancelBTN.TabIndex     = 0;
     this.CancelBTN.Text         = "Cancel";
     //
     // OkBTN
     //
     this.OkBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.OkBTN.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OkBTN.Location     = new System.Drawing.Point(3, 240);
     this.OkBTN.Name         = "OkBTN";
     this.OkBTN.Size         = new System.Drawing.Size(75, 23);
     this.OkBTN.TabIndex     = 1;
     this.OkBTN.Text         = "OK";
     //
     // SpecificationCB
     //
     this.SpecificationCB.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.SpecificationCB.Location              = new System.Drawing.Point(77, 3);
     this.SpecificationCB.Name                  = "SpecificationCB";
     this.SpecificationCB.Size                  = new System.Drawing.Size(206, 21);
     this.SpecificationCB.TabIndex              = 3;
     this.SpecificationCB.SelectedIndexChanged += new System.EventHandler(this.SpecificationCB_SelectedIndexChanged);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoSize    = true;
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel2.SetColumnSpan(this.tableLayoutPanel1, 2);
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.SpecificationCB, 1, 0);
     this.tableLayoutPanel1.Controls.Add(SpecificationLB, 0, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(286, 27);
     this.tableLayoutPanel1.TabIndex = 4;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Controls.Add(this.ServersCTRL, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel1, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.CancelBTN, 1, 2);
     this.tableLayoutPanel2.Controls.Add(this.OkBTN, 0, 2);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 2;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(292, 266);
     this.tableLayoutPanel2.TabIndex = 6;
     //
     // ServersCTRL
     //
     this.tableLayoutPanel2.SetColumnSpan(this.ServersCTRL, 2);
     this.ServersCTRL.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ServersCTRL.Location = new System.Drawing.Point(3, 36);
     this.ServersCTRL.Name     = "ServersCTRL";
     this.ServersCTRL.Padding  = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.ServersCTRL.Size     = new System.Drawing.Size(286, 198);
     this.ServersCTRL.TabIndex = 4;
     //
     // SelectServerDlg
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.CancelBTN;
     this.ClientSize        = new System.Drawing.Size(292, 266);
     this.Controls.Add(this.tableLayoutPanel2);
     this.HelpButton         = true;
     this.Icon               = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox        = false;
     this.MinimizeBox        = false;
     this.MinimumSize        = new System.Drawing.Size(300, 300);
     this.Name               = "SelectServerDlg";
     this.StartPosition      = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text               = "Select Server";
     this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.SelectServerDlg_HelpButtonClicked);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.btnNext               = new System.Windows.Forms.Button();
     this.btnCancel             = new System.Windows.Forms.Button();
     this.label1                = new System.Windows.Forms.Label();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.chkPassword           = new System.Windows.Forms.CheckBox();
     this.label6                = new System.Windows.Forms.Label();
     this.txtServer             = new System.Windows.Forms.TextBox();
     this.label5                = new System.Windows.Forms.Label();
     this.label4                = new System.Windows.Forms.Label();
     this.label3                = new System.Windows.Forms.Label();
     this.label2                = new System.Windows.Forms.Label();
     this.btnLogin              = new System.Windows.Forms.Button();
     this.btnAuthenticate       = new System.Windows.Forms.Button();
     this.cboProject            = new System.Windows.Forms.ComboBox();
     this.cboDomain             = new System.Windows.Forms.ComboBox();
     this.txtPassword           = new System.Windows.Forms.TextBox();
     this.txtLogin              = new System.Windows.Forms.TextBox();
     this.pictureBox1           = new System.Windows.Forms.PictureBox();
     this.groupBox2             = new System.Windows.Forms.GroupBox();
     this.chkImportAttachments  = new System.Windows.Forms.CheckBox();
     this.chkImportTestSets     = new System.Windows.Forms.CheckBox();
     this.chkImportUsers        = new System.Windows.Forms.CheckBox();
     this.chkImportDefects      = new System.Windows.Forms.CheckBox();
     this.chkImportTestRuns     = new System.Windows.Forms.CheckBox();
     this.chkImportTestCases    = new System.Windows.Forms.CheckBox();
     this.chkImportRequirements = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // btnNext
     //
     this.btnNext.Location = new System.Drawing.Point(376, 64);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(96, 23);
     this.btnNext.TabIndex = 0;
     this.btnNext.Text     = "Next >";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(272, 64);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(88, 23);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(440, 23);
     this.label1.TabIndex = 6;
     this.label1.Text     = "SpiraTest | Import From HP QC/ALM 11.5+";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.chkPassword);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.txtServer);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.btnLogin);
     this.groupBox1.Controls.Add(this.btnAuthenticate);
     this.groupBox1.Controls.Add(this.cboProject);
     this.groupBox1.Controls.Add(this.cboDomain);
     this.groupBox1.Controls.Add(this.txtPassword);
     this.groupBox1.Controls.Add(this.txtLogin);
     this.groupBox1.ForeColor = System.Drawing.Color.Black;
     this.groupBox1.Location  = new System.Drawing.Point(24, 48);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(480, 208);
     this.groupBox1.TabIndex  = 10;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "HP ALM Configuration";
     //
     // chkPassword
     //
     this.chkPassword.AutoSize = true;
     this.chkPassword.Location = new System.Drawing.Point(152, 176);
     this.chkPassword.Name     = "chkPassword";
     this.chkPassword.Size     = new System.Drawing.Size(126, 17);
     this.chkPassword.TabIndex = 22;
     this.chkPassword.Text     = "Remember Password";
     this.chkPassword.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(24, 24);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(64, 16);
     this.label6.TabIndex  = 21;
     this.label6.Text      = "Server:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // txtServer
     //
     this.txtServer.Location = new System.Drawing.Point(96, 24);
     this.txtServer.Name     = "txtServer";
     this.txtServer.Size     = new System.Drawing.Size(336, 20);
     this.txtServer.TabIndex = 20;
     this.txtServer.Text     = "http://myserver/qcbin";
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(16, 152);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(128, 16);
     this.label5.TabIndex  = 19;
     this.label5.Text      = "Project:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(16, 120);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(128, 16);
     this.label4.TabIndex  = 18;
     this.label4.Text      = "Domain:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(232, 56);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 16);
     this.label3.TabIndex  = 17;
     this.label3.Text      = "Password:"******"label2";
     this.label2.Size      = new System.Drawing.Size(80, 16);
     this.label2.TabIndex  = 16;
     this.label2.Text      = "User Name:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // btnLogin
     //
     this.btnLogin.Location = new System.Drawing.Point(344, 176);
     this.btnLogin.Name     = "btnLogin";
     this.btnLogin.Size     = new System.Drawing.Size(88, 23);
     this.btnLogin.TabIndex = 15;
     this.btnLogin.Text     = "Login";
     this.btnLogin.Click   += new System.EventHandler(this.btnLogin_Click);
     //
     // btnAuthenticate
     //
     this.btnAuthenticate.Location = new System.Drawing.Point(344, 80);
     this.btnAuthenticate.Name     = "btnAuthenticate";
     this.btnAuthenticate.Size     = new System.Drawing.Size(88, 23);
     this.btnAuthenticate.TabIndex = 14;
     this.btnAuthenticate.Text     = "Authenticate";
     this.btnAuthenticate.Click   += new System.EventHandler(this.btnAuthenticate_Click);
     //
     // cboProject
     //
     this.cboProject.Location = new System.Drawing.Point(152, 152);
     this.cboProject.Name     = "cboProject";
     this.cboProject.Size     = new System.Drawing.Size(280, 21);
     this.cboProject.TabIndex = 13;
     //
     // cboDomain
     //
     this.cboDomain.Location = new System.Drawing.Point(152, 120);
     this.cboDomain.Name     = "cboDomain";
     this.cboDomain.Size     = new System.Drawing.Size(280, 21);
     this.cboDomain.TabIndex = 12;
     //
     // txtPassword
     //
     this.txtPassword.Location     = new System.Drawing.Point(304, 56);
     this.txtPassword.Name         = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size         = new System.Drawing.Size(128, 20);
     this.txtPassword.TabIndex     = 11;
     //
     // txtLogin
     //
     this.txtLogin.Location = new System.Drawing.Point(96, 56);
     this.txtLogin.Name     = "txtLogin";
     this.txtLogin.Size     = new System.Drawing.Size(128, 20);
     this.txtLogin.TabIndex = 10;
     this.txtLogin.Text     = "alex_alm";
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = global::Inflectra.SpiraTest.AddOns.QualityCenterImporter.Properties.Resources.SpiraTest_Importer_Icon_Large;
     this.pictureBox1.Location = new System.Drawing.Point(472, 8);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(40, 40);
     this.pictureBox1.TabIndex = 11;
     this.pictureBox1.TabStop  = false;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.chkImportAttachments);
     this.groupBox2.Controls.Add(this.chkImportTestSets);
     this.groupBox2.Controls.Add(this.chkImportUsers);
     this.groupBox2.Controls.Add(this.btnCancel);
     this.groupBox2.Controls.Add(this.chkImportDefects);
     this.groupBox2.Controls.Add(this.chkImportTestRuns);
     this.groupBox2.Controls.Add(this.chkImportTestCases);
     this.groupBox2.Controls.Add(this.chkImportRequirements);
     this.groupBox2.Controls.Add(this.btnNext);
     this.groupBox2.ForeColor = System.Drawing.Color.Black;
     this.groupBox2.Location  = new System.Drawing.Point(24, 272);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(480, 96);
     this.groupBox2.TabIndex  = 12;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Import Options";
     //
     // chkImportAttachments
     //
     this.chkImportAttachments.AutoSize = true;
     this.chkImportAttachments.Location = new System.Drawing.Point(358, 27);
     this.chkImportAttachments.Name     = "chkImportAttachments";
     this.chkImportAttachments.Size     = new System.Drawing.Size(85, 17);
     this.chkImportAttachments.TabIndex = 8;
     this.chkImportAttachments.Text     = "Attachments";
     this.chkImportAttachments.UseVisualStyleBackColor = true;
     //
     // chkImportTestSets
     //
     this.chkImportTestSets.AutoSize = true;
     this.chkImportTestSets.Location = new System.Drawing.Point(16, 75);
     this.chkImportTestSets.Name     = "chkImportTestSets";
     this.chkImportTestSets.Size     = new System.Drawing.Size(71, 17);
     this.chkImportTestSets.TabIndex = 7;
     this.chkImportTestSets.Text     = "Test Sets";
     this.chkImportTestSets.UseVisualStyleBackColor = true;
     //
     // chkImportUsers
     //
     this.chkImportUsers.Checked    = true;
     this.chkImportUsers.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkImportUsers.Location   = new System.Drawing.Point(168, 48);
     this.chkImportUsers.Name       = "chkImportUsers";
     this.chkImportUsers.Size       = new System.Drawing.Size(88, 24);
     this.chkImportUsers.TabIndex   = 6;
     this.chkImportUsers.Text       = "Users";
     //
     // chkImportDefects
     //
     this.chkImportDefects.Location = new System.Drawing.Point(273, 24);
     this.chkImportDefects.Name     = "chkImportDefects";
     this.chkImportDefects.Size     = new System.Drawing.Size(136, 24);
     this.chkImportDefects.TabIndex = 5;
     this.chkImportDefects.Text     = "Defects";
     //
     // chkImportTestRuns
     //
     this.chkImportTestRuns.Location = new System.Drawing.Point(168, 24);
     this.chkImportTestRuns.Name     = "chkImportTestRuns";
     this.chkImportTestRuns.Size     = new System.Drawing.Size(184, 24);
     this.chkImportTestRuns.TabIndex = 4;
     this.chkImportTestRuns.Text     = "Test Runs";
     //
     // chkImportTestCases
     //
     this.chkImportTestCases.Checked         = true;
     this.chkImportTestCases.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkImportTestCases.Location        = new System.Drawing.Point(16, 48);
     this.chkImportTestCases.Name            = "chkImportTestCases";
     this.chkImportTestCases.Size            = new System.Drawing.Size(184, 24);
     this.chkImportTestCases.TabIndex        = 3;
     this.chkImportTestCases.Text            = "Test Cases";
     this.chkImportTestCases.CheckedChanged += new System.EventHandler(this.chkImportTestCases_CheckedChanged);
     //
     // chkImportRequirements
     //
     this.chkImportRequirements.Checked    = true;
     this.chkImportRequirements.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkImportRequirements.Location   = new System.Drawing.Point(16, 24);
     this.chkImportRequirements.Name       = "chkImportRequirements";
     this.chkImportRequirements.Size       = new System.Drawing.Size(184, 24);
     this.chkImportRequirements.TabIndex   = 2;
     this.chkImportRequirements.Text       = "Requirements";
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(526, 373);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Text            = "SpiraTest Importer for HP ALM / QC 11.5+";
     this.Load           += new System.EventHandler(this.MainForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 41
0
    private void InitializeComponent()
    {
        System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmBase));

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

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

        this.PictureBox1 = new System.Windows.Forms.PictureBox();

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

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

        this.SuspendLayout();

        //

        //lblTitle

        //

        this.lblTitle.AccessibleDescription = resources.GetString("lblTitle.AccessibleDescription");

        this.lblTitle.AccessibleName = resources.GetString("lblTitle.AccessibleName");

        this.lblTitle.Anchor = (System.Windows.Forms.AnchorStyles)resources.GetObject("lblTitle.Anchor");

        this.lblTitle.AutoSize = (bool)resources.GetObject("lblTitle.AutoSize");

        this.lblTitle.BackColor = System.Drawing.SystemColors.Control;

        this.lblTitle.Dock = (System.Windows.Forms.DockStyle)resources.GetObject("lblTitle.Dock");

        this.lblTitle.Enabled = (bool)resources.GetObject("lblTitle.Enabled");

        this.lblTitle.Font = (System.Drawing.Font)resources.GetObject("lblTitle.Font");

        this.lblTitle.ForeColor = System.Drawing.SystemColors.ControlText;

        this.lblTitle.Image = (System.Drawing.Image)resources.GetObject("lblTitle.Image");

        this.lblTitle.ImageAlign = (System.Drawing.ContentAlignment)resources.GetObject("lblTitle.ImageAlign");

        this.lblTitle.ImageIndex = (int)resources.GetObject("lblTitle.ImageIndex");

        this.lblTitle.ImeMode = (System.Windows.Forms.ImeMode)resources.GetObject("lblTitle.ImeMode");

        this.lblTitle.Location = (System.Drawing.Point)resources.GetObject("lblTitle.Location");

        this.lblTitle.Name = "lblTitle";

        this.lblTitle.RightToLeft = (System.Windows.Forms.RightToLeft)resources.GetObject("lblTitle.RightToLeft");

        this.lblTitle.Size = (System.Drawing.Size)resources.GetObject("lblTitle.Size");

        this.lblTitle.TabIndex = (int)resources.GetObject("lblTitle.TabIndex");

        this.lblTitle.Text = resources.GetString("lblTitle.Text");

        this.lblTitle.TextAlign = (System.Drawing.ContentAlignment)resources.GetObject("lblTitle.TextAlign");

        this.lblTitle.Visible = (bool)resources.GetObject("lblTitle.Visible");

        //

        //btnClose

        //

        this.btnClose.AccessibleDescription = resources.GetString("btnClose.AccessibleDescription");

        this.btnClose.AccessibleName = resources.GetString("btnClose.AccessibleName");

        this.btnClose.Anchor = (System.Windows.Forms.AnchorStyles)resources.GetObject("btnClose.Anchor");

        this.btnClose.BackColor = System.Drawing.SystemColors.Control;

        this.btnClose.BackgroundImage = (System.Drawing.Image)resources.GetObject("btnClose.BackgroundImage");

        this.btnClose.Dock = (System.Windows.Forms.DockStyle)resources.GetObject("btnClose.Dock");

        this.btnClose.Enabled = (bool)resources.GetObject("btnClose.Enabled");

        this.btnClose.FlatStyle = (System.Windows.Forms.FlatStyle)resources.GetObject("btnClose.FlatStyle");

        this.btnClose.Font = (System.Drawing.Font)resources.GetObject("btnClose.Font");

        this.btnClose.ForeColor = System.Drawing.SystemColors.ControlText;

        this.btnClose.Image = (System.Drawing.Image)resources.GetObject("btnClose.Image");

        this.btnClose.ImageAlign = (System.Drawing.ContentAlignment)resources.GetObject("btnClose.ImageAlign");

        this.btnClose.ImageIndex = (int)resources.GetObject("btnClose.ImageIndex");

        this.btnClose.ImeMode = (System.Windows.Forms.ImeMode)resources.GetObject("btnClose.ImeMode");

        this.btnClose.Location = (System.Drawing.Point)resources.GetObject("btnClose.Location");

        this.btnClose.Name = "btnClose";

        this.btnClose.RightToLeft = (System.Windows.Forms.RightToLeft)resources.GetObject("btnClose.RightToLeft");

        this.btnClose.Size = (System.Drawing.Size)resources.GetObject("btnClose.Size");

        this.btnClose.TabIndex = (int)resources.GetObject("btnClose.TabIndex");

        this.btnClose.Text = resources.GetString("btnClose.Text");

        this.btnClose.TextAlign = (System.Drawing.ContentAlignment)resources.GetObject("btnClose.TextAlign");

        this.btnClose.Visible = (bool)resources.GetObject("btnClose.Visible");

        //

        //PictureBox1

        //

        this.PictureBox1.AccessibleDescription = resources.GetString("PictureBox1.AccessibleDescription");

        this.PictureBox1.AccessibleName = resources.GetString("PictureBox1.AccessibleName");

        this.PictureBox1.Anchor = (System.Windows.Forms.AnchorStyles)resources.GetObject("PictureBox1.Anchor");

        this.PictureBox1.BackgroundImage = (System.Drawing.Image)resources.GetObject("PictureBox1.BackgroundImage");

        this.PictureBox1.Dock = (System.Windows.Forms.DockStyle)resources.GetObject("PictureBox1.Dock");

        this.PictureBox1.Enabled = (bool)resources.GetObject("PictureBox1.Enabled");

        this.PictureBox1.Font = (System.Drawing.Font)resources.GetObject("PictureBox1.Font");

        this.PictureBox1.Image = (System.Drawing.Bitmap)resources.GetObject("PictureBox1.Image");

        this.PictureBox1.ImeMode = (System.Windows.Forms.ImeMode)resources.GetObject("PictureBox1.ImeMode");

        this.PictureBox1.Location = (System.Drawing.Point)resources.GetObject("PictureBox1.Location");

        this.PictureBox1.Name = "PictureBox1";

        this.PictureBox1.RightToLeft = (System.Windows.Forms.RightToLeft)resources.GetObject("PictureBox1.RightToLeft");

        this.PictureBox1.Size = (System.Drawing.Size)resources.GetObject("PictureBox1.Size");

        this.PictureBox1.SizeMode = (System.Windows.Forms.PictureBoxSizeMode)resources.GetObject("PictureBox1.SizeMode");

        this.PictureBox1.TabIndex = (int)resources.GetObject("PictureBox1.TabIndex");

        this.PictureBox1.TabStop = false;

        this.PictureBox1.Text = resources.GetString("PictureBox1.Text");

        this.PictureBox1.Visible = (bool)resources.GetObject("PictureBox1.Visible");

        //

        //lblProtected

        //

        this.lblProtected.AccessibleDescription = resources.GetString("lblProtected.AccessibleDescription");

        this.lblProtected.AccessibleName = resources.GetString("lblProtected.AccessibleName");

        this.lblProtected.Anchor = (System.Windows.Forms.AnchorStyles)resources.GetObject("lblProtected.Anchor");

        this.lblProtected.AutoSize = (bool)resources.GetObject("lblProtected.AutoSize");

        this.lblProtected.Dock = (System.Windows.Forms.DockStyle)resources.GetObject("lblProtected.Dock");

        this.lblProtected.Enabled = (bool)resources.GetObject("lblProtected.Enabled");

        this.lblProtected.Font = (System.Drawing.Font)resources.GetObject("lblProtected.Font");

        this.lblProtected.Image = (System.Drawing.Image)resources.GetObject("lblProtected.Image");

        this.lblProtected.ImageAlign = (System.Drawing.ContentAlignment)resources.GetObject("lblProtected.ImageAlign");

        this.lblProtected.ImageIndex = (int)resources.GetObject("lblProtected.ImageIndex");

        this.lblProtected.ImeMode = (System.Windows.Forms.ImeMode)resources.GetObject("lblProtected.ImeMode");

        this.lblProtected.Location = (System.Drawing.Point)resources.GetObject("lblProtected.Location");

        this.lblProtected.Name = "lblProtected";

        this.lblProtected.RightToLeft = (System.Windows.Forms.RightToLeft)resources.GetObject("lblProtected.RightToLeft");

        this.lblProtected.Size = (System.Drawing.Size)resources.GetObject("lblProtected.Size");

        this.lblProtected.TabIndex = (int)resources.GetObject("lblProtected.TabIndex");

        this.lblProtected.Text = resources.GetString("lblProtected.Text");

        this.lblProtected.TextAlign = (System.Drawing.ContentAlignment)resources.GetObject("lblProtected.TextAlign");

        this.lblProtected.Visible = (bool)resources.GetObject("lblProtected.Visible");

        //

        //lblPrivate

        //

        this.lblPrivate.AccessibleDescription = resources.GetString("lblPrivate.AccessibleDescription");

        this.lblPrivate.AccessibleName = resources.GetString("lblPrivate.AccessibleName");

        this.lblPrivate.Anchor = (System.Windows.Forms.AnchorStyles)resources.GetObject("lblPrivate.Anchor");

        this.lblPrivate.AutoSize = (bool)resources.GetObject("lblPrivate.AutoSize");

        this.lblPrivate.Dock = (System.Windows.Forms.DockStyle)resources.GetObject("lblPrivate.Dock");

        this.lblPrivate.Enabled = (bool)resources.GetObject("lblPrivate.Enabled");

        this.lblPrivate.Font = (System.Drawing.Font)resources.GetObject("lblPrivate.Font");

        this.lblPrivate.Image = (System.Drawing.Image)resources.GetObject("lblPrivate.Image");

        this.lblPrivate.ImageAlign = (System.Drawing.ContentAlignment)resources.GetObject("lblPrivate.ImageAlign");

        this.lblPrivate.ImageIndex = (int)resources.GetObject("lblPrivate.ImageIndex");

        this.lblPrivate.ImeMode = (System.Windows.Forms.ImeMode)resources.GetObject("lblPrivate.ImeMode");

        this.lblPrivate.Location = (System.Drawing.Point)resources.GetObject("lblPrivate.Location");

        this.lblPrivate.Name = "lblPrivate";

        this.lblPrivate.RightToLeft = (System.Windows.Forms.RightToLeft)resources.GetObject("lblPrivate.RightToLeft");

        this.lblPrivate.Size = (System.Drawing.Size)resources.GetObject("lblPrivate.Size");

        this.lblPrivate.TabIndex = (int)resources.GetObject("lblPrivate.TabIndex");

        this.lblPrivate.Text = resources.GetString("lblPrivate.Text");

        this.lblPrivate.TextAlign = (System.Drawing.ContentAlignment)resources.GetObject("lblPrivate.TextAlign");

        this.lblPrivate.Visible = (bool)resources.GetObject("lblPrivate.Visible");

        //

        //frmBase

        //

        this.AccessibleDescription = (string)resources.GetObject("$this.AccessibleDescription");

        this.AccessibleName = (string)resources.GetObject("$this.AccessibleName");

        this.Anchor = (System.Windows.Forms.AnchorStyles)resources.GetObject("$this.Anchor");

        this.AutoScaleBaseSize = (System.Drawing.Size)resources.GetObject("$this.AutoScaleBaseSize");

        this.AutoScroll = (bool)resources.GetObject("$this.AutoScroll");

        this.AutoScrollMargin = (System.Drawing.Size)resources.GetObject("$this.AutoScrollMargin");

        this.AutoScrollMinSize = (System.Drawing.Size)resources.GetObject("$this.AutoScrollMinSize");

        this.BackgroundImage = (System.Drawing.Image)resources.GetObject("$this.BackgroundImage");

        this.ClientSize = (System.Drawing.Size)resources.GetObject("$this.ClientSize");

        this.Controls.AddRange(new System.Windows.Forms.Control[] { this.lblPrivate, this.lblProtected, this.PictureBox1, this.btnClose, this.lblTitle });

        this.Dock = (System.Windows.Forms.DockStyle)resources.GetObject("$this.Dock");

        this.Enabled = (bool)resources.GetObject("$this.Enabled");

        this.Font = (System.Drawing.Font)resources.GetObject("$this.Font");

        this.Icon = (System.Drawing.Icon)resources.GetObject("$this.Icon");

        this.ImeMode = (System.Windows.Forms.ImeMode)resources.GetObject("$this.ImeMode");

        this.Location = (System.Drawing.Point)resources.GetObject("$this.Location");

        this.MaximizeBox = false;

        this.MaximumSize = (System.Drawing.Size)resources.GetObject("$this.MaximumSize");

        this.MinimumSize = (System.Drawing.Size)resources.GetObject("$this.MinimumSize");

        this.Name = "frmBase";

        this.RightToLeft = (System.Windows.Forms.RightToLeft)resources.GetObject("$this.RightToLeft");

        this.StartPosition = (System.Windows.Forms.FormStartPosition)resources.GetObject("$this.StartPosition");

        this.Text = resources.GetString("$this.Text");

        this.Visible = (bool)resources.GetObject("$this.Visible");

        this.ResumeLayout(false);

        base.Load += new EventHandler(frmBase_Load);
    }
Esempio n. 42
0
 private void CenterButton(System.Windows.Forms.Button btn_ok)
 {
     btn_ok.Location = new Point((btn_ok.Parent.ClientSize.Width / 2) - 35);
     btn_ok.Refresh();
 }
Esempio n. 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.cmdCompare     = new System.Windows.Forms.Button();
     this.label1         = new System.Windows.Forms.Label();
     this.label2         = new System.Windows.Forms.Label();
     this.txtSource      = new System.Windows.Forms.TextBox();
     this.cmdSource      = new System.Windows.Forms.Button();
     this.cmdDestination = new System.Windows.Forms.Button();
     this.txtDestination = new System.Windows.Forms.TextBox();
     this.cmdClose       = new System.Windows.Forms.Button();
     this.chkBinary      = new System.Windows.Forms.CheckBox();
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.rbFast         = new System.Windows.Forms.RadioButton();
     this.rbMedium       = new System.Windows.Forms.RadioButton();
     this.rbSlow         = new System.Windows.Forms.RadioButton();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // cmdCompare
     //
     this.cmdCompare.Location = new System.Drawing.Point(153, 165);
     this.cmdCompare.Name     = "cmdCompare";
     this.cmdCompare.Size     = new System.Drawing.Size(61, 20);
     this.cmdCompare.TabIndex = 8;
     this.cmdCompare.Text     = "Compare";
     this.cmdCompare.Click   += new System.EventHandler(this.cmdCompare_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(6, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(45, 15);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Source:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(6, 55);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(85, 15);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Destination:";
     //
     // txtSource
     //
     this.txtSource.Location = new System.Drawing.Point(20, 26);
     this.txtSource.Name     = "txtSource";
     this.txtSource.Size     = new System.Drawing.Size(233, 20);
     this.txtSource.TabIndex = 1;
     this.txtSource.Text     = "";
     //
     // cmdSource
     //
     this.cmdSource.Location = new System.Drawing.Point(253, 26);
     this.cmdSource.Name     = "cmdSource";
     this.cmdSource.Size     = new System.Drawing.Size(28, 20);
     this.cmdSource.TabIndex = 2;
     this.cmdSource.Text     = "...";
     this.cmdSource.Click   += new System.EventHandler(this.cmdSource_Click);
     //
     // cmdDestination
     //
     this.cmdDestination.Location = new System.Drawing.Point(253, 76);
     this.cmdDestination.Name     = "cmdDestination";
     this.cmdDestination.Size     = new System.Drawing.Size(28, 20);
     this.cmdDestination.TabIndex = 5;
     this.cmdDestination.Text     = "...";
     this.cmdDestination.Click   += new System.EventHandler(this.cmdDestination_Click);
     //
     // txtDestination
     //
     this.txtDestination.Location = new System.Drawing.Point(20, 76);
     this.txtDestination.Name     = "txtDestination";
     this.txtDestination.Size     = new System.Drawing.Size(233, 20);
     this.txtDestination.TabIndex = 4;
     this.txtDestination.Text     = "";
     //
     // cmdClose
     //
     this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdClose.Location     = new System.Drawing.Point(220, 165);
     this.cmdClose.Name         = "cmdClose";
     this.cmdClose.Size         = new System.Drawing.Size(61, 20);
     this.cmdClose.TabIndex     = 9;
     this.cmdClose.Text         = "Close";
     this.cmdClose.Click       += new System.EventHandler(this.cmdClose_Click);
     //
     // chkBinary
     //
     this.chkBinary.Location = new System.Drawing.Point(20, 166);
     this.chkBinary.Name     = "chkBinary";
     this.chkBinary.Size     = new System.Drawing.Size(83, 16);
     this.chkBinary.TabIndex = 7;
     this.chkBinary.Text     = "Binary Diff";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rbSlow);
     this.groupBox1.Controls.Add(this.rbMedium);
     this.groupBox1.Controls.Add(this.rbFast);
     this.groupBox1.Location = new System.Drawing.Point(7, 103);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(270, 51);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Diff Level";
     //
     // rbFast
     //
     this.rbFast.Checked  = true;
     this.rbFast.Location = new System.Drawing.Point(10, 18);
     this.rbFast.Name     = "rbFast";
     this.rbFast.Size     = new System.Drawing.Size(45, 24);
     this.rbFast.TabIndex = 0;
     this.rbFast.TabStop  = true;
     this.rbFast.Text     = "Fast";
     //
     // rbMedium
     //
     this.rbMedium.Location = new System.Drawing.Point(89, 18);
     this.rbMedium.Name     = "rbMedium";
     this.rbMedium.Size     = new System.Drawing.Size(69, 24);
     this.rbMedium.TabIndex = 1;
     this.rbMedium.Text     = "Medium";
     //
     // rbSlow
     //
     this.rbSlow.Location = new System.Drawing.Point(180, 18);
     this.rbSlow.Name     = "rbSlow";
     this.rbSlow.Size     = new System.Drawing.Size(83, 24);
     this.rbSlow.TabIndex = 2;
     this.rbSlow.Text     = "Slow/Best";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cmdClose;
     this.ClientSize        = new System.Drawing.Size(286, 194);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.chkBinary);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdDestination);
     this.Controls.Add(this.txtDestination);
     this.Controls.Add(this.txtSource);
     this.Controls.Add(this.cmdSource);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmdCompare);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Compare Files";
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Doors));
     this.WestCCW    = new System.Windows.Forms.Label();
     this.EastCW     = new System.Windows.Forms.Label();
     this.WestCW     = new System.Windows.Forms.Label();
     this.EastCCW    = new System.Windows.Forms.Label();
     this.NorthCW    = new System.Windows.Forms.Label();
     this.SouthCCW   = new System.Windows.Forms.Label();
     this.NorthCCW   = new System.Windows.Forms.Label();
     this.SouthCW    = new System.Windows.Forms.Label();
     this.lnkDoor    = new System.Windows.Forms.LinkLabel();
     this.bLock      = new System.Windows.Forms.Button();
     this.bUnlock    = new System.Windows.Forms.Button();
     this.boxButton1 = new TheBox.Buttons.BoxButton();
     this.boxButton2 = new TheBox.Buttons.BoxButton();
     this.SuspendLayout();
     //
     // WestCCW
     //
     this.WestCCW.BackColor   = System.Drawing.Color.White;
     this.WestCCW.Image       = ((System.Drawing.Image)(resources.GetObject("WestCCW.Image")));
     this.WestCCW.Location    = new System.Drawing.Point(72, 0);
     this.WestCCW.Name        = "WestCCW";
     this.WestCCW.Size        = new System.Drawing.Size(68, 68);
     this.WestCCW.TabIndex    = 0;
     this.WestCCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.WestCCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.WestCCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.WestCCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // EastCW
     //
     this.EastCW.BackColor   = System.Drawing.Color.White;
     this.EastCW.Image       = ((System.Drawing.Image)(resources.GetObject("EastCW.Image")));
     this.EastCW.Location    = new System.Drawing.Point(124, 72);
     this.EastCW.Name        = "EastCW";
     this.EastCW.Size        = new System.Drawing.Size(68, 68);
     this.EastCW.TabIndex    = 1;
     this.EastCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.EastCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.EastCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.EastCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // WestCW
     //
     this.WestCW.BackColor   = System.Drawing.Color.White;
     this.WestCW.Image       = ((System.Drawing.Image)(resources.GetObject("WestCW.Image")));
     this.WestCW.Location    = new System.Drawing.Point(0, 0);
     this.WestCW.Name        = "WestCW";
     this.WestCW.Size        = new System.Drawing.Size(68, 68);
     this.WestCW.TabIndex    = 2;
     this.WestCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.WestCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.WestCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.WestCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // EastCCW
     //
     this.EastCCW.BackColor   = System.Drawing.Color.White;
     this.EastCCW.Image       = ((System.Drawing.Image)(resources.GetObject("EastCCW.Image")));
     this.EastCCW.Location    = new System.Drawing.Point(52, 72);
     this.EastCCW.Name        = "EastCCW";
     this.EastCCW.Size        = new System.Drawing.Size(68, 68);
     this.EastCCW.TabIndex    = 3;
     this.EastCCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.EastCCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.EastCCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.EastCCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // NorthCW
     //
     this.NorthCW.BackColor   = System.Drawing.Color.White;
     this.NorthCW.Image       = ((System.Drawing.Image)(resources.GetObject("NorthCW.Image")));
     this.NorthCW.Location    = new System.Drawing.Point(356, 0);
     this.NorthCW.Name        = "NorthCW";
     this.NorthCW.Size        = new System.Drawing.Size(68, 68);
     this.NorthCW.TabIndex    = 4;
     this.NorthCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.NorthCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.NorthCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.NorthCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // SouthCCW
     //
     this.SouthCCW.BackColor   = System.Drawing.Color.White;
     this.SouthCCW.Image       = ((System.Drawing.Image)(resources.GetObject("SouthCCW.Image")));
     this.SouthCCW.Location    = new System.Drawing.Point(304, 72);
     this.SouthCCW.Name        = "SouthCCW";
     this.SouthCCW.Size        = new System.Drawing.Size(68, 68);
     this.SouthCCW.TabIndex    = 5;
     this.SouthCCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.SouthCCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.SouthCCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.SouthCCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // NorthCCW
     //
     this.NorthCCW.BackColor   = System.Drawing.Color.White;
     this.NorthCCW.Image       = ((System.Drawing.Image)(resources.GetObject("NorthCCW.Image")));
     this.NorthCCW.Location    = new System.Drawing.Point(428, 0);
     this.NorthCCW.Name        = "NorthCCW";
     this.NorthCCW.Size        = new System.Drawing.Size(68, 68);
     this.NorthCCW.TabIndex    = 6;
     this.NorthCCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.NorthCCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.NorthCCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.NorthCCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // SouthCW
     //
     this.SouthCW.BackColor   = System.Drawing.Color.White;
     this.SouthCW.Image       = ((System.Drawing.Image)(resources.GetObject("SouthCW.Image")));
     this.SouthCW.Location    = new System.Drawing.Point(376, 72);
     this.SouthCW.Name        = "SouthCW";
     this.SouthCW.Size        = new System.Drawing.Size(68, 68);
     this.SouthCW.TabIndex    = 7;
     this.SouthCW.Paint      += new System.Windows.Forms.PaintEventHandler(this.LabelPaint);
     this.SouthCW.MouseEnter += new System.EventHandler(this.LabelEnter);
     this.SouthCW.MouseLeave += new System.EventHandler(this.LabelLeave);
     this.SouthCW.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.WestCCW_MouseDown);
     //
     // lnkDoor
     //
     this.lnkDoor.Location   = new System.Drawing.Point(180, 4);
     this.lnkDoor.Name       = "lnkDoor";
     this.lnkDoor.Size       = new System.Drawing.Size(136, 32);
     this.lnkDoor.TabIndex   = 8;
     this.lnkDoor.TabStop    = true;
     this.lnkDoor.Text       = "Doors.Select";
     this.lnkDoor.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.lnkDoor.Paint     += new System.Windows.Forms.PaintEventHandler(this.lnkDoor_Paint);
     this.lnkDoor.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lnkDoor_MouseDown);
     //
     // bLock
     //
     this.bLock.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.bLock.Location  = new System.Drawing.Point(148, 44);
     this.bLock.Name      = "bLock";
     this.bLock.Size      = new System.Drawing.Size(96, 23);
     this.bLock.TabIndex  = 9;
     this.bLock.Text      = "Doors.Lock";
     this.bLock.Click    += new System.EventHandler(this.bLock_Click);
     //
     // bUnlock
     //
     this.bUnlock.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.bUnlock.Location  = new System.Drawing.Point(252, 44);
     this.bUnlock.Name      = "bUnlock";
     this.bUnlock.Size      = new System.Drawing.Size(96, 23);
     this.bUnlock.TabIndex  = 10;
     this.bUnlock.Text      = "Doors.Unlock";
     this.bUnlock.Click    += new System.EventHandler(this.bUnlock_Click);
     //
     // boxButton1
     //
     this.boxButton1.AllowEdit = true;
     this.boxButton1.ButtonID  = 76;
     this.boxButton1.Def       = null;
     this.boxButton1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.boxButton1.IsActive  = true;
     this.boxButton1.Location  = new System.Drawing.Point(204, 80);
     this.boxButton1.Name      = "boxButton1";
     this.boxButton1.Size      = new System.Drawing.Size(88, 23);
     this.boxButton1.TabIndex  = 11;
     this.boxButton1.Text      = "boxButton1";
     //
     // boxButton2
     //
     this.boxButton2.AllowEdit = true;
     this.boxButton2.ButtonID  = 77;
     this.boxButton2.Def       = null;
     this.boxButton2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.boxButton2.IsActive  = true;
     this.boxButton2.Location  = new System.Drawing.Point(204, 112);
     this.boxButton2.Name      = "boxButton2";
     this.boxButton2.Size      = new System.Drawing.Size(88, 23);
     this.boxButton2.TabIndex  = 12;
     this.boxButton2.Text      = "boxButton2";
     //
     // Doors
     //
     this.Controls.Add(this.boxButton2);
     this.Controls.Add(this.boxButton1);
     this.Controls.Add(this.bUnlock);
     this.Controls.Add(this.bLock);
     this.Controls.Add(this.lnkDoor);
     this.Controls.Add(this.SouthCW);
     this.Controls.Add(this.NorthCCW);
     this.Controls.Add(this.SouthCCW);
     this.Controls.Add(this.NorthCW);
     this.Controls.Add(this.EastCCW);
     this.Controls.Add(this.WestCW);
     this.Controls.Add(this.EastCW);
     this.Controls.Add(this.WestCCW);
     this.Name  = "Doors";
     this.Size  = new System.Drawing.Size(496, 142);
     this.Load += new System.EventHandler(this.Doors_Load);
     this.ResumeLayout(false);
 }
Esempio n. 45
0
 InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Objects));
     this.m_tvObjs                  = new System.Windows.Forms.TreeView();
     this.m_cntxMenuObjId           = new System.Windows.Forms.ContextMenu();
     this.m_mnuItemCopy             = new System.Windows.Forms.MenuItem();
     this.m_mnuItemBrowseReflection = new System.Windows.Forms.MenuItem();
     this.m_bnOK                   = new System.Windows.Forms.Button();
     this.m_lvData                 = new System.Windows.Forms.ListView();
     this.m_lvCol_label            = new System.Windows.Forms.ColumnHeader();
     this.m_lvCol_value            = new System.Windows.Forms.ColumnHeader();
     this.listViewContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1               = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1         = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2         = new System.Windows.Forms.ToolStripButton();
     this.m_printDialog            = new System.Windows.Forms.PrintDialog();
     this.m_printDocument          = new System.Drawing.Printing.PrintDocument();
     this.m_printPreviewDialog     = new System.Windows.Forms.PrintPreviewDialog();
     this.toolStripButton3         = new System.Windows.Forms.ToolStripButton();
     this.listViewContextMenuStrip.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_tvObjs
     //
     this.m_tvObjs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.m_tvObjs.ContextMenu     = this.m_cntxMenuObjId;
     this.m_tvObjs.HideSelection   = false;
     this.m_tvObjs.Location        = new System.Drawing.Point(12, 28);
     this.m_tvObjs.Name            = "m_tvObjs";
     this.m_tvObjs.Size            = new System.Drawing.Size(248, 430);
     this.m_tvObjs.TabIndex        = 0;
     this.m_tvObjs.NodeMouseClick += new TreeNodeMouseClickEventHandler(this.TreeNodeSelected);
     this.m_tvObjs.AfterSelect    += new System.Windows.Forms.TreeViewEventHandler(this.TreeNodeSelected);
     //
     // m_cntxMenuObjId
     //
     this.m_cntxMenuObjId.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.m_mnuItemCopy,
         this.m_mnuItemBrowseReflection
     });
     //
     // m_mnuItemCopy
     //
     this.m_mnuItemCopy.Index  = 0;
     this.m_mnuItemCopy.Text   = "Copy";
     this.m_mnuItemCopy.Click += new System.EventHandler(this.ContextMenuClick_Copy);
     //
     // m_mnuItemBrowseReflection
     //
     this.m_mnuItemBrowseReflection.Index  = 1;
     this.m_mnuItemBrowseReflection.Text   = "Browse Using Reflection...";
     this.m_mnuItemBrowseReflection.Click += new System.EventHandler(this.ContextMenuClick_BrowseReflection);
     //
     // m_bnOK
     //
     this.m_bnOK.Anchor       = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_bnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.m_bnOK.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.m_bnOK.Location     = new System.Drawing.Point(365, 464);
     this.m_bnOK.Name         = "m_bnOK";
     this.m_bnOK.Size         = new System.Drawing.Size(75, 23);
     this.m_bnOK.TabIndex     = 2;
     this.m_bnOK.Text         = "OK";
     //
     // m_lvData
     //
     this.m_lvData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.m_lvData.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.m_lvCol_label,
         this.m_lvCol_value
     });
     this.m_lvData.ContextMenuStrip = this.listViewContextMenuStrip;
     this.m_lvData.FullRowSelect    = true;
     this.m_lvData.GridLines        = true;
     this.m_lvData.Location         = new System.Drawing.Point(284, 28);
     this.m_lvData.Name             = "m_lvData";
     this.m_lvData.ShowItemToolTips = true;
     this.m_lvData.Size             = new System.Drawing.Size(504, 430);
     this.m_lvData.TabIndex         = 3;
     this.m_lvData.UseCompatibleStateImageBehavior = false;
     this.m_lvData.View         = System.Windows.Forms.View.Details;
     this.m_lvData.DoubleClick += new System.EventHandler(this.DataItemSelected);
     this.m_lvData.Click       += new System.EventHandler(this.DataItemSelected);
     //
     // m_lvCol_label
     //
     this.m_lvCol_label.Text  = "Field";
     this.m_lvCol_label.Width = 200;
     //
     // m_lvCol_value
     //
     this.m_lvCol_value.Text  = "Value";
     this.m_lvCol_value.Width = 300;
     //
     // listViewContextMenuStrip
     //
     this.listViewContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.copyToolStripMenuItem
     });
     this.listViewContextMenuStrip.Name = "listViewContextMenuStrip";
     this.listViewContextMenuStrip.Size = new System.Drawing.Size(100, 26);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Image  = global::RevitLookup.Properties.Resources.COPY;
     this.copyToolStripMenuItem.Name   = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size   = new System.Drawing.Size(99, 22);
     this.copyToolStripMenuItem.Text   = "Copy";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.CopyToolStripMenuItem_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(800, 25);
     this.toolStrip1.TabIndex = 4;
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = global::RevitLookup.Properties.Resources.Print;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "Print";
     this.toolStripButton1.Click += new System.EventHandler(this.PrintMenuItem_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = global::RevitLookup.Properties.Resources.Preview;
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text   = "Print Preview";
     this.toolStripButton2.Click += new System.EventHandler(this.PrintPreviewMenuItem_Click);
     //
     // m_printDialog
     //
     this.m_printDialog.Document    = this.m_printDocument;
     this.m_printDialog.UseEXDialog = true;
     //
     // m_printDocument
     //
     this.m_printDocument.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.PrintDocument_PrintPage);
     //
     // m_printPreviewDialog
     //
     this.m_printPreviewDialog.AutoScrollMargin  = new System.Drawing.Size(0, 0);
     this.m_printPreviewDialog.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.m_printPreviewDialog.ClientSize        = new System.Drawing.Size(400, 300);
     this.m_printPreviewDialog.Document          = this.m_printDocument;
     this.m_printPreviewDialog.Enabled           = true;
     this.m_printPreviewDialog.Icon    = ((System.Drawing.Icon)(resources.GetObject("m_printPreviewDialog.Icon")));
     this.m_printPreviewDialog.Name    = "m_printPreviewDialog";
     this.m_printPreviewDialog.Visible = false;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = global::RevitLookup.Properties.Resources.COPY;
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text   = "Copy To Clipboard";
     this.toolStripButton3.Click += new System.EventHandler(this.ContextMenuClick_Copy);
     //
     // Objects
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(800, 492);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.m_lvData);
     this.Controls.Add(this.m_tvObjs);
     this.Controls.Add(this.m_bnOK);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(650, 200);
     this.Name          = "Objects";
     this.ShowInTaskbar = false;
     this.Text          = "Snoop Objects";
     this.listViewContextMenuStrip.ResumeLayout(false);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelFindWhat      = new System.Windows.Forms.Label();
     this.textBoxFindWhat    = new System.Windows.Forms.TextBox();
     this.checkBoxMatchCase  = new System.Windows.Forms.CheckBox();
     this.groupBoxSearch     = new System.Windows.Forms.GroupBox();
     this.radioButtonStreams = new System.Windows.Forms.RadioButton();
     this.radioButtonUnitOps = new System.Windows.Forms.RadioButton();
     this.radioButtonAll     = new System.Windows.Forms.RadioButton();
     this.buttonFind         = new System.Windows.Forms.Button();
     this.mainMenu           = new System.Windows.Forms.MainMenu();
     this.menuItemClose      = new System.Windows.Forms.MenuItem();
     this.panel = new System.Windows.Forms.Panel();
     this.groupBoxSearch.SuspendLayout();
     this.panel.SuspendLayout();
     this.SuspendLayout();
     //
     // labelFindWhat
     //
     this.labelFindWhat.Location  = new System.Drawing.Point(8, 16);
     this.labelFindWhat.Name      = "labelFindWhat";
     this.labelFindWhat.Size      = new System.Drawing.Size(68, 16);
     this.labelFindWhat.TabIndex  = 0;
     this.labelFindWhat.Text      = "Find what:";
     this.labelFindWhat.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBoxFindWhat
     //
     this.textBoxFindWhat.Location    = new System.Drawing.Point(80, 16);
     this.textBoxFindWhat.Name        = "textBoxFindWhat";
     this.textBoxFindWhat.Size        = new System.Drawing.Size(200, 20);
     this.textBoxFindWhat.TabIndex    = 1;
     this.textBoxFindWhat.Text        = "";
     this.textBoxFindWhat.WordWrap    = false;
     this.textBoxFindWhat.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxFindWhat_Validating);
     this.textBoxFindWhat.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxFindWhat_KeyUp);
     //
     // checkBoxMatchCase
     //
     this.checkBoxMatchCase.Checked    = true;
     this.checkBoxMatchCase.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxMatchCase.Location   = new System.Drawing.Point(8, 40);
     this.checkBoxMatchCase.Name       = "checkBoxMatchCase";
     this.checkBoxMatchCase.Size       = new System.Drawing.Size(92, 20);
     this.checkBoxMatchCase.TabIndex   = 4;
     this.checkBoxMatchCase.Text       = "Match case";
     //
     // groupBoxSearch
     //
     this.groupBoxSearch.Controls.Add(this.radioButtonStreams);
     this.groupBoxSearch.Controls.Add(this.radioButtonUnitOps);
     this.groupBoxSearch.Controls.Add(this.radioButtonAll);
     this.groupBoxSearch.Location = new System.Drawing.Point(108, 40);
     this.groupBoxSearch.Name     = "groupBoxSearch";
     this.groupBoxSearch.Size     = new System.Drawing.Size(168, 80);
     this.groupBoxSearch.TabIndex = 3;
     this.groupBoxSearch.TabStop  = false;
     this.groupBoxSearch.Text     = "Search";
     //
     // radioButtonStreams
     //
     this.radioButtonStreams.Location = new System.Drawing.Point(8, 60);
     this.radioButtonStreams.Name     = "radioButtonStreams";
     this.radioButtonStreams.Size     = new System.Drawing.Size(156, 16);
     this.radioButtonStreams.TabIndex = 2;
     this.radioButtonStreams.Text     = "Streams";
     //
     // radioButtonUnitOps
     //
     this.radioButtonUnitOps.Location = new System.Drawing.Point(8, 40);
     this.radioButtonUnitOps.Name     = "radioButtonUnitOps";
     this.radioButtonUnitOps.Size     = new System.Drawing.Size(156, 16);
     this.radioButtonUnitOps.TabIndex = 1;
     this.radioButtonUnitOps.Text     = "Unit Operations";
     //
     // radioButtonAll
     //
     this.radioButtonAll.Checked  = true;
     this.radioButtonAll.Location = new System.Drawing.Point(8, 20);
     this.radioButtonAll.Name     = "radioButtonAll";
     this.radioButtonAll.Size     = new System.Drawing.Size(156, 16);
     this.radioButtonAll.TabIndex = 0;
     this.radioButtonAll.TabStop  = true;
     this.radioButtonAll.Text     = "All flowsheet elements";
     //
     // buttonFind
     //
     this.buttonFind.Location = new System.Drawing.Point(288, 16);
     this.buttonFind.Name     = "buttonFind";
     this.buttonFind.TabIndex = 2;
     this.buttonFind.Text     = "Find";
     this.buttonFind.Click   += new System.EventHandler(this.buttonFind_Click);
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemClose
     });
     //
     // menuItemClose
     //
     this.menuItemClose.Index  = 0;
     this.menuItemClose.Text   = "Close";
     this.menuItemClose.Click += new System.EventHandler(this.menuItemClose_Click);
     //
     // panel
     //
     this.panel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel.Controls.Add(this.textBoxFindWhat);
     this.panel.Controls.Add(this.checkBoxMatchCase);
     this.panel.Controls.Add(this.groupBoxSearch);
     this.panel.Controls.Add(this.buttonFind);
     this.panel.Controls.Add(this.labelFindWhat);
     this.panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name     = "panel";
     this.panel.Size     = new System.Drawing.Size(374, 133);
     this.panel.TabIndex = 5;
     //
     // FindForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(374, 133);
     this.Controls.Add(this.panel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.Menu            = this.mainMenu;
     this.MinimizeBox     = false;
     this.Name            = "FindForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Find";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.FindForm_Closing);
     this.groupBoxSearch.ResumeLayout(false);
     this.panel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTtptttkhoa));
     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.mabn       = new System.Windows.Forms.TextBox();
     this.hoten      = new System.Windows.Forms.TextBox();
     this.namsinh    = new System.Windows.Forms.TextBox();
     this.phai       = new System.Windows.Forms.TextBox();
     this.butCancel  = new System.Windows.Forms.Button();
     this.butOk      = new System.Windows.Forms.Button();
     this.tuongtrinh = new System.Windows.Forms.RichTextBox();
     this.noidung    = new System.Windows.Forms.RichTextBox();
     this.label5     = new System.Windows.Forms.Label();
     this.label6     = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(3, 7);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(48, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Mã BN :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(114, 7);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(48, 16);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "Họ tên :";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label3.Location  = new System.Drawing.Point(418, 7);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(60, 16);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Năm sinh :";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.Location  = new System.Drawing.Point(508, 7);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(60, 16);
     this.label4.TabIndex  = 9;
     this.label4.Text      = "Giới tính :";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // mabn
     //
     this.mabn.BackColor = System.Drawing.SystemColors.HighlightText;
     this.mabn.Enabled   = false;
     this.mabn.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mabn.Location  = new System.Drawing.Point(51, 4);
     this.mabn.Name      = "mabn";
     this.mabn.Size      = new System.Drawing.Size(64, 21);
     this.mabn.TabIndex  = 4;
     //
     // hoten
     //
     this.hoten.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.hoten.BackColor = System.Drawing.SystemColors.HighlightText;
     this.hoten.Enabled   = false;
     this.hoten.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hoten.Location  = new System.Drawing.Point(162, 4);
     this.hoten.Name      = "hoten";
     this.hoten.Size      = new System.Drawing.Size(256, 21);
     this.hoten.TabIndex  = 6;
     //
     // namsinh
     //
     this.namsinh.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.namsinh.BackColor = System.Drawing.SystemColors.HighlightText;
     this.namsinh.Enabled   = false;
     this.namsinh.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.namsinh.Location  = new System.Drawing.Point(477, 4);
     this.namsinh.Name      = "namsinh";
     this.namsinh.Size      = new System.Drawing.Size(40, 21);
     this.namsinh.TabIndex  = 8;
     //
     // phai
     //
     this.phai.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.phai.BackColor = System.Drawing.SystemColors.HighlightText;
     this.phai.Enabled   = false;
     this.phai.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.phai.Location  = new System.Drawing.Point(565, 4);
     this.phai.Name      = "phai";
     this.phai.Size      = new System.Drawing.Size(64, 21);
     this.phai.TabIndex  = 10;
     //
     // butCancel
     //
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Image        = ((System.Drawing.Image)(resources.GetObject("butCancel.Image")));
     this.butCancel.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.butCancel.Location     = new System.Drawing.Point(296, 463);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(70, 25);
     this.butCancel.TabIndex     = 2;
     this.butCancel.Text         = "&Kết thúc";
     this.butCancel.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOk
     //
     this.butOk.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.butOk.Image      = ((System.Drawing.Image)(resources.GetObject("butOk.Image")));
     this.butOk.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butOk.Location   = new System.Drawing.Point(223, 463);
     this.butOk.Name       = "butOk";
     this.butOk.Size       = new System.Drawing.Size(70, 25);
     this.butOk.TabIndex   = 1;
     this.butOk.Text       = "     &Lưu";
     this.butOk.Click     += new System.EventHandler(this.butOk_Click);
     //
     // tuongtrinh
     //
     this.tuongtrinh.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.tuongtrinh.BackColor   = System.Drawing.SystemColors.Info;
     this.tuongtrinh.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tuongtrinh.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tuongtrinh.Location    = new System.Drawing.Point(7, 48);
     this.tuongtrinh.Name        = "tuongtrinh";
     this.tuongtrinh.ReadOnly    = true;
     this.tuongtrinh.Size        = new System.Drawing.Size(620, 212);
     this.tuongtrinh.TabIndex    = 12;
     this.tuongtrinh.Text        = "";
     //
     // noidung
     //
     this.noidung.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.noidung.BackColor   = System.Drawing.SystemColors.HighlightText;
     this.noidung.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.noidung.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.noidung.Location    = new System.Drawing.Point(7, 284);
     this.noidung.Name        = "noidung";
     this.noidung.Size        = new System.Drawing.Size(620, 171);
     this.noidung.TabIndex    = 0;
     this.noidung.Text        = "";
     //
     // label5
     //
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(4, 28);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(163, 18);
     this.label5.TabIndex  = 11;
     this.label5.Text      = "- Tường trình phẫu thuật :";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label6
     //
     this.label6.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(4, 263);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(271, 18);
     this.label6.TabIndex  = 13;
     this.label6.Text      = "- Nội dung tường trình phẫu thuật vắng tắt :";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmTtptttkhoa
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(635, 504);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.noidung);
     this.Controls.Add(this.tuongtrinh);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOk);
     this.Controls.Add(this.phai);
     this.Controls.Add(this.namsinh);
     this.Controls.Add(this.hoten);
     this.Controls.Add(this.mabn);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "frmTtptttkhoa";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Nội dung tường trình phẫu thuật vắng tắt";
     this.Load           += new System.EventHandler(this.frmTtptttkhoa_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.tabControl_SetTime     = new System.Windows.Forms.TabControl();
     this.tabPage_Relative       = new System.Windows.Forms.TabPage();
     this.relative_settime       = new System.Windows.Forms.Button();
     this.relative_hour          = new System.Windows.Forms.NumericUpDown();
     this.relative_minute        = new System.Windows.Forms.NumericUpDown();
     this.relative_second        = new System.Windows.Forms.NumericUpDown();
     this.relative_days          = new System.Windows.Forms.NumericUpDown();
     this.label2                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.ZeroRelative           = new System.Windows.Forms.Button();
     this.tabPage_Accelerated    = new System.Windows.Forms.TabPage();
     this.accelerated_setslew    = new System.Windows.Forms.Button();
     this.SlewRateInput          = new System.Windows.Forms.NumericUpDown();
     this.label7                 = new System.Windows.Forms.Label();
     this.label8                 = new System.Windows.Forms.Label();
     this.Display_SystemTimeNow  = new System.Windows.Forms.TextBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.display_VSystemTimeNow = new System.Windows.Forms.TextBox();
     this.label5                 = new System.Windows.Forms.Label();
     this.label6                 = new System.Windows.Forms.Label();
     this.display_ClockSlewRate  = new System.Windows.Forms.TextBox();
     this.DisplayUpdateTimer     = new System.Windows.Forms.Timer(this.components);
     this.label1                 = new System.Windows.Forms.Label();
     this.displayCurrentOffset   = new System.Windows.Forms.TextBox();
     this.displayAccumulatedSlew = new System.Windows.Forms.TextBox();
     this.label9                 = new System.Windows.Forms.Label();
     this.tabControl_SetTime.SuspendLayout();
     this.tabPage_Relative.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.relative_hour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.relative_minute)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.relative_second)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.relative_days)).BeginInit();
     this.tabPage_Accelerated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SlewRateInput)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl_SetTime
     //
     this.tabControl_SetTime.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.tabPage_Relative,
         this.tabPage_Accelerated
     });
     this.tabControl_SetTime.Location      = new System.Drawing.Point(8, 8);
     this.tabControl_SetTime.Name          = "tabControl_SetTime";
     this.tabControl_SetTime.SelectedIndex = 0;
     this.tabControl_SetTime.Size          = new System.Drawing.Size(712, 256);
     this.tabControl_SetTime.TabIndex      = 0;
     //
     // tabPage_Relative
     //
     this.tabPage_Relative.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.relative_settime,
         this.relative_hour,
         this.relative_minute,
         this.relative_second,
         this.relative_days,
         this.label2,
         this.label3,
         this.ZeroRelative
     });
     this.tabPage_Relative.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Relative.Name     = "tabPage_Relative";
     this.tabPage_Relative.Size     = new System.Drawing.Size(704, 230);
     this.tabPage_Relative.TabIndex = 1;
     this.tabPage_Relative.Text     = "RelativeTime";
     //
     // relative_settime
     //
     this.relative_settime.Location = new System.Drawing.Point(424, 136);
     this.relative_settime.Name     = "relative_settime";
     this.relative_settime.Size     = new System.Drawing.Size(96, 23);
     this.relative_settime.TabIndex = 2;
     this.relative_settime.Text     = "SetTime";
     this.relative_settime.Click   += new System.EventHandler(this.relative_settime_Click);
     //
     // relative_hour
     //
     this.relative_hour.Location = new System.Drawing.Point(240, 136);
     this.relative_hour.Maximum  = new System.Decimal(new int[] {
         23,
         0,
         0,
         0
     });
     this.relative_hour.Name     = "relative_hour";
     this.relative_hour.Size     = new System.Drawing.Size(40, 20);
     this.relative_hour.TabIndex = 0;
     //
     // relative_minute
     //
     this.relative_minute.Location = new System.Drawing.Point(280, 136);
     this.relative_minute.Maximum  = new System.Decimal(new int[] {
         59,
         0,
         0,
         0
     });
     this.relative_minute.Name     = "relative_minute";
     this.relative_minute.Size     = new System.Drawing.Size(40, 20);
     this.relative_minute.TabIndex = 0;
     //
     // relative_second
     //
     this.relative_second.Location = new System.Drawing.Point(320, 136);
     this.relative_second.Maximum  = new System.Decimal(new int[] {
         59,
         0,
         0,
         0
     });
     this.relative_second.Name     = "relative_second";
     this.relative_second.Size     = new System.Drawing.Size(40, 20);
     this.relative_second.TabIndex = 0;
     //
     // relative_days
     //
     this.relative_days.Location = new System.Drawing.Point(192, 136);
     this.relative_days.Maximum  = new System.Decimal(new int[] {
         3650,
         0,
         0,
         0
     });
     this.relative_days.Name     = "relative_days";
     this.relative_days.Size     = new System.Drawing.Size(40, 20);
     this.relative_days.TabIndex = 0;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(80, 136);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(88, 16);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Day:HH:MM:SS";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 32);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(464, 56);
     this.label3.TabIndex = 1;
     this.label3.Text     = "Set the desired interval to add to the current time, and press button to set the " +
                            "relative time.  You cannot set time backwards.  The \"Minimum Val.\" button will s" +
                            "et the interval to the minimum legal value.";
     //
     // ZeroRelative
     //
     this.ZeroRelative.Location = new System.Drawing.Point(424, 176);
     this.ZeroRelative.Name     = "ZeroRelative";
     this.ZeroRelative.Size     = new System.Drawing.Size(96, 23);
     this.ZeroRelative.TabIndex = 2;
     this.ZeroRelative.Text     = "Minimum Val.";
     this.ZeroRelative.Click   += new System.EventHandler(this.ZeroRelative_Click);
     //
     // tabPage_Accelerated
     //
     this.tabPage_Accelerated.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.accelerated_setslew,
         this.SlewRateInput,
         this.label7,
         this.label8
     });
     this.tabPage_Accelerated.Location = new System.Drawing.Point(4, 22);
     this.tabPage_Accelerated.Name     = "tabPage_Accelerated";
     this.tabPage_Accelerated.Size     = new System.Drawing.Size(704, 230);
     this.tabPage_Accelerated.TabIndex = 2;
     this.tabPage_Accelerated.Text     = "AcceleratedTime";
     //
     // accelerated_setslew
     //
     this.accelerated_setslew.Location = new System.Drawing.Point(56, 120);
     this.accelerated_setslew.Name     = "accelerated_setslew";
     this.accelerated_setslew.TabIndex = 6;
     this.accelerated_setslew.Text     = "Set Slew";
     this.accelerated_setslew.Click   += new System.EventHandler(this.accelerated_setslew_Click);
     //
     // SlewRateInput
     //
     this.SlewRateInput.DecimalPlaces = 2;
     this.SlewRateInput.Location      = new System.Drawing.Point(160, 88);
     this.SlewRateInput.Maximum       = new System.Decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.SlewRateInput.Name     = "SlewRateInput";
     this.SlewRateInput.Size     = new System.Drawing.Size(80, 20);
     this.SlewRateInput.TabIndex = 4;
     this.SlewRateInput.Value    = new System.Decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.SlewRateInput.ValueChanged += new System.EventHandler(this.SlewRateInput_ValueChanged);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(48, 88);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(112, 16);
     this.label7.TabIndex = 5;
     this.label7.Text     = "Accelerate Clock ";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(256, 88);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(112, 16);
     this.label8.TabIndex = 5;
     this.label8.Text     = "times normal.";
     //
     // Display_SystemTimeNow
     //
     this.Display_SystemTimeNow.CausesValidation = false;
     this.Display_SystemTimeNow.Location         = new System.Drawing.Point(208, 288);
     this.Display_SystemTimeNow.Name             = "Display_SystemTimeNow";
     this.Display_SystemTimeNow.ReadOnly         = true;
     this.Display_SystemTimeNow.Size             = new System.Drawing.Size(160, 20);
     this.Display_SystemTimeNow.TabIndex         = 1;
     this.Display_SystemTimeNow.TabStop          = false;
     this.Display_SystemTimeNow.Tag  = "";
     this.Display_SystemTimeNow.Text = "";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(96, 288);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(104, 23);
     this.label4.TabIndex = 2;
     this.label4.Text     = "SystemTime() now:";
     //
     // display_VSystemTimeNow
     //
     this.display_VSystemTimeNow.CausesValidation = false;
     this.display_VSystemTimeNow.Location         = new System.Drawing.Point(208, 328);
     this.display_VSystemTimeNow.Name             = "display_VSystemTimeNow";
     this.display_VSystemTimeNow.ReadOnly         = true;
     this.display_VSystemTimeNow.Size             = new System.Drawing.Size(160, 20);
     this.display_VSystemTimeNow.TabIndex         = 1;
     this.display_VSystemTimeNow.TabStop          = false;
     this.display_VSystemTimeNow.Tag  = "";
     this.display_VSystemTimeNow.Text = "";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(56, 328);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(144, 23);
     this.label5.TabIndex = 2;
     this.label5.Text     = "VirtualSystemTime() now:";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(416, 376);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(104, 16);
     this.label6.TabIndex = 2;
     this.label6.Text     = "Clock Slew rate:";
     //
     // display_ClockSlewRate
     //
     this.display_ClockSlewRate.CausesValidation = false;
     this.display_ClockSlewRate.Location         = new System.Drawing.Point(528, 376);
     this.display_ClockSlewRate.Name             = "display_ClockSlewRate";
     this.display_ClockSlewRate.ReadOnly         = true;
     this.display_ClockSlewRate.Size             = new System.Drawing.Size(160, 20);
     this.display_ClockSlewRate.TabIndex         = 1;
     this.display_ClockSlewRate.TabStop          = false;
     this.display_ClockSlewRate.Tag  = "";
     this.display_ClockSlewRate.Text = "";
     //
     // DisplayUpdateTimer
     //
     this.DisplayUpdateTimer.Enabled  = true;
     this.DisplayUpdateTimer.Interval = 1000;
     this.DisplayUpdateTimer.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(416, 288);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(104, 23);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Current Offset:";
     //
     // displayCurrentOffset
     //
     this.displayCurrentOffset.CausesValidation = false;
     this.displayCurrentOffset.Location         = new System.Drawing.Point(528, 288);
     this.displayCurrentOffset.Name             = "displayCurrentOffset";
     this.displayCurrentOffset.ReadOnly         = true;
     this.displayCurrentOffset.Size             = new System.Drawing.Size(160, 20);
     this.displayCurrentOffset.TabIndex         = 1;
     this.displayCurrentOffset.TabStop          = false;
     this.displayCurrentOffset.Tag  = "";
     this.displayCurrentOffset.Text = "";
     //
     // displayAccumulatedSlew
     //
     this.displayAccumulatedSlew.CausesValidation = false;
     this.displayAccumulatedSlew.Location         = new System.Drawing.Point(528, 328);
     this.displayAccumulatedSlew.Name             = "displayAccumulatedSlew";
     this.displayAccumulatedSlew.ReadOnly         = true;
     this.displayAccumulatedSlew.Size             = new System.Drawing.Size(160, 20);
     this.displayAccumulatedSlew.TabIndex         = 1;
     this.displayAccumulatedSlew.TabStop          = false;
     this.displayAccumulatedSlew.Tag  = "";
     this.displayAccumulatedSlew.Text = "";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(416, 328);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(104, 23);
     this.label9.TabIndex = 2;
     this.label9.Text     = "Accumulated Slew:";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(736, 421);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.label4,
         this.Display_SystemTimeNow,
         this.tabControl_SetTime,
         this.display_VSystemTimeNow,
         this.label5,
         this.label6,
         this.display_ClockSlewRate,
         this.label1,
         this.displayCurrentOffset,
         this.displayAccumulatedSlew,
         this.label9
     });
     this.Name = "Form1";
     this.Text = "Form1";
     this.tabControl_SetTime.ResumeLayout(false);
     this.tabPage_Relative.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.relative_hour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.relative_minute)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.relative_second)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.relative_days)).EndInit();
     this.tabPage_Accelerated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SlewRateInput)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                = new System.ComponentModel.Container();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.button6                   = new System.Windows.Forms.Button();
     this.button5                   = new System.Windows.Forms.Button();
     this.conSaveCred               = new System.Windows.Forms.CheckBox();
     this.conPromptForCred          = new System.Windows.Forms.CheckBox();
     this.conForce                  = new System.Windows.Forms.CheckBox();
     this.conPersistant             = new System.Windows.Forms.CheckBox();
     this.label5                    = new System.Windows.Forms.Label();
     this.label4                    = new System.Windows.Forms.Label();
     this.label3                    = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.label1                    = new System.Windows.Forms.Label();
     this.txtDrive                  = new System.Windows.Forms.TextBox();
     this.txtPassword               = new System.Windows.Forms.TextBox();
     this.txtUsername               = new System.Windows.Forms.TextBox();
     this.txtAddress                = new System.Windows.Forms.TextBox();
     this.button4                   = new System.Windows.Forms.Button();
     this.button3                   = new System.Windows.Forms.Button();
     this.conStatusBar              = new System.Windows.Forms.StatusBar();
     this.conStatusBar_Panel_Action = new System.Windows.Forms.StatusBarPanel();
     this.conMenu                   = new System.Windows.Forms.MainMenu(this.components);
     this.menuItem1                 = new System.Windows.Forms.MenuItem();
     this.conMenu_RestoreAll        = new System.Windows.Forms.MenuItem();
     this.menuItem2                 = new System.Windows.Forms.MenuItem();
     this.conMenu_Dialog1           = new System.Windows.Forms.MenuItem();
     this.conMenu_Dialog2           = new System.Windows.Forms.MenuItem();
     this.button7                   = new System.Windows.Forms.Button();
     this.button8                   = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.conStatusBar_Panel_Action)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.button8);
     this.groupBox1.Controls.Add(this.button7);
     this.groupBox1.Controls.Add(this.button6);
     this.groupBox1.Controls.Add(this.button5);
     this.groupBox1.Controls.Add(this.conSaveCred);
     this.groupBox1.Controls.Add(this.conPromptForCred);
     this.groupBox1.Controls.Add(this.conForce);
     this.groupBox1.Controls.Add(this.conPersistant);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.txtDrive);
     this.groupBox1.Controls.Add(this.txtPassword);
     this.groupBox1.Controls.Add(this.txtUsername);
     this.groupBox1.Controls.Add(this.txtAddress);
     this.groupBox1.Controls.Add(this.button4);
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Location = new System.Drawing.Point(8, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(424, 176);
     this.groupBox1.TabIndex = 12;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Map Drive Settings";
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(296, 86);
     this.button6.Name     = "button6";
     this.button6.Size     = new System.Drawing.Size(63, 24);
     this.button6.TabIndex = 31;
     this.button6.Text     = "Map S";
     this.button6.Click   += new System.EventHandler(this.button6_Click);
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(296, 56);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(63, 24);
     this.button5.TabIndex = 30;
     this.button5.Text     = "Map H";
     this.button5.Click   += new System.EventHandler(this.button5_Click);
     //
     // conSaveCred
     //
     this.conSaveCred.Location = new System.Drawing.Point(264, 144);
     this.conSaveCred.Name     = "conSaveCred";
     this.conSaveCred.Size     = new System.Drawing.Size(136, 24);
     this.conSaveCred.TabIndex = 29;
     this.conSaveCred.Text     = "Save credentials";
     //
     // conPromptForCred
     //
     this.conPromptForCred.Location = new System.Drawing.Point(112, 144);
     this.conPromptForCred.Name     = "conPromptForCred";
     this.conPromptForCred.Size     = new System.Drawing.Size(136, 24);
     this.conPromptForCred.TabIndex = 28;
     this.conPromptForCred.Text     = "Prompt for credentials";
     //
     // conForce
     //
     this.conForce.Location = new System.Drawing.Point(264, 120);
     this.conForce.Name     = "conForce";
     this.conForce.Size     = new System.Drawing.Size(136, 24);
     this.conForce.TabIndex = 25;
     this.conForce.Text     = "Force dis/connection";
     //
     // conPersistant
     //
     this.conPersistant.Checked    = true;
     this.conPersistant.CheckState = System.Windows.Forms.CheckState.Checked;
     this.conPersistant.Location   = new System.Drawing.Point(112, 120);
     this.conPersistant.Name       = "conPersistant";
     this.conPersistant.Size       = new System.Drawing.Size(136, 24);
     this.conPersistant.TabIndex   = 24;
     this.conPersistant.Text       = "Persistant connection";
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(16, 120);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(88, 21);
     this.label5.TabIndex  = 23;
     this.label5.Text      = "Options:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(16, 96);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(88, 21);
     this.label4.TabIndex  = 21;
     this.label4.Text      = "Password:"******"label3";
     this.label3.Size      = new System.Drawing.Size(88, 21);
     this.label3.TabIndex  = 20;
     this.label3.Text      = "Username:"******"label2";
     this.label2.Size      = new System.Drawing.Size(88, 21);
     this.label2.TabIndex  = 19;
     this.label2.Text      = "Map to Drive:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(16, 24);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 21);
     this.label1.TabIndex  = 18;
     this.label1.Text      = "Share Address:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtDrive
     //
     this.txtDrive.Location = new System.Drawing.Point(112, 48);
     this.txtDrive.Name     = "txtDrive";
     this.txtDrive.Size     = new System.Drawing.Size(176, 21);
     this.txtDrive.TabIndex = 17;
     this.txtDrive.Text     = "N:";
     //
     // txtPassword
     //
     this.txtPassword.Location     = new System.Drawing.Point(112, 96);
     this.txtPassword.Name         = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size         = new System.Drawing.Size(176, 21);
     this.txtPassword.TabIndex     = 16;
     //
     // txtUsername
     //
     this.txtUsername.Location = new System.Drawing.Point(112, 72);
     this.txtUsername.Name     = "txtUsername";
     this.txtUsername.Size     = new System.Drawing.Size(176, 21);
     this.txtUsername.TabIndex = 15;
     //
     // txtAddress
     //
     this.txtAddress.Location = new System.Drawing.Point(112, 24);
     this.txtAddress.Name     = "txtAddress";
     this.txtAddress.Size     = new System.Drawing.Size(176, 21);
     this.txtAddress.TabIndex = 14;
     this.txtAddress.Text     = "\\\\ComputerName\\Share";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(361, 24);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(63, 24);
     this.button4.TabIndex = 13;
     this.button4.Text     = "UnMap Drive";
     this.button4.Click   += new System.EventHandler(this.Button4_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(296, 24);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(63, 24);
     this.button3.TabIndex = 12;
     this.button3.Text     = "Map Drive";
     this.button3.Click   += new System.EventHandler(this.Button3_Click_1);
     //
     // conStatusBar
     //
     this.conStatusBar.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.conStatusBar.Location = new System.Drawing.Point(0, 179);
     this.conStatusBar.Name     = "conStatusBar";
     this.conStatusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.conStatusBar_Panel_Action
     });
     this.conStatusBar.ShowPanels = true;
     this.conStatusBar.Size       = new System.Drawing.Size(440, 24);
     this.conStatusBar.SizingGrip = false;
     this.conStatusBar.TabIndex   = 14;
     //
     // conStatusBar_Panel_Action
     //
     this.conStatusBar_Panel_Action.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.conStatusBar_Panel_Action.Name     = "conStatusBar_Panel_Action";
     this.conStatusBar_Panel_Action.Text     = "...";
     this.conStatusBar_Panel_Action.Width    = 440;
     //
     // conMenu
     //
     this.conMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem2
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.conMenu_RestoreAll
     });
     this.menuItem1.Text = "Functions";
     //
     // conMenu_RestoreAll
     //
     this.conMenu_RestoreAll.Index  = 0;
     this.conMenu_RestoreAll.Text   = "Restore All Drives";
     this.conMenu_RestoreAll.Click += new System.EventHandler(this.ConMenu_RestoreAll_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 1;
     this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.conMenu_Dialog1,
         this.conMenu_Dialog2
     });
     this.menuItem2.Text = "Dialogs";
     //
     // conMenu_Dialog1
     //
     this.conMenu_Dialog1.Index  = 0;
     this.conMenu_Dialog1.Text   = "Show \'Drive connection\'";
     this.conMenu_Dialog1.Click += new System.EventHandler(this.ConMenu_Dialog1_Click);
     //
     // conMenu_Dialog2
     //
     this.conMenu_Dialog2.Index  = 1;
     this.conMenu_Dialog2.Text   = "Show \'Drive Disconnection\'";
     this.conMenu_Dialog2.Click += new System.EventHandler(this.ConMenu_Dialog2_Click);
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(361, 56);
     this.button7.Name     = "button7";
     this.button7.Size     = new System.Drawing.Size(63, 24);
     this.button7.TabIndex = 32;
     this.button7.Text     = "Unmap H";
     this.button7.Click   += new System.EventHandler(this.button7_Click);
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(361, 86);
     this.button8.Name     = "button8";
     this.button8.Size     = new System.Drawing.Size(63, 24);
     this.button8.TabIndex = 33;
     this.button8.Text     = "Unmap S";
     this.button8.Click   += new System.EventHandler(this.button8_Click);
     //
     // FrmTest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(440, 203);
     this.Controls.Add(this.conStatusBar);
     this.Controls.Add(this.groupBox1);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Menu            = this.conMenu;
     this.Name            = "FrmTest";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Network Drive Creator";
     this.Load           += new System.EventHandler(this.FrmTest_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.conStatusBar_Panel_Action)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_usernameTextbox    = new System.Windows.Forms.TextBox();
     this.m_userNameLabel      = new System.Windows.Forms.Label();
     this.m_messageTextbox     = new System.Windows.Forms.TextBox();
     this.m_messageLabel       = new System.Windows.Forms.Label();
     this.m_messages           = new System.Windows.Forms.ListBox();
     this.m_userNamePanel      = new System.Windows.Forms.Panel();
     this.m_constatus          = new System.Windows.Forms.Label();
     this.m_statusLabel        = new System.Windows.Forms.Label();
     this.m_disconnectbutton   = new System.Windows.Forms.Button();
     this.m_connectButton      = new System.Windows.Forms.Button();
     this.m_sendMsgPanel       = new System.Windows.Forms.Panel();
     this.m_sendMsgButton      = new System.Windows.Forms.Button();
     this.m_sendMsgAsyncButton = new System.Windows.Forms.Button();
     this.m_userNamePanel.SuspendLayout();
     this.m_sendMsgPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // m_usernameTextbox
     //
     this.m_usernameTextbox.Location  = new System.Drawing.Point(120, 16);
     this.m_usernameTextbox.MaxLength = 50;
     this.m_usernameTextbox.Name      = "m_usernameTextbox";
     this.m_usernameTextbox.Size      = new System.Drawing.Size(408, 20);
     this.m_usernameTextbox.TabIndex  = 0;
     this.m_usernameTextbox.Text      = "";
     this.m_usernameTextbox.WordWrap  = false;
     //
     // m_userNameLabel
     //
     this.m_userNameLabel.Location = new System.Drawing.Point(8, 16);
     this.m_userNameLabel.Name     = "m_userNameLabel";
     this.m_userNameLabel.Size     = new System.Drawing.Size(100, 16);
     this.m_userNameLabel.TabIndex = 1;
     this.m_userNameLabel.Text     = "User name:";
     //
     // m_messageTextbox
     //
     this.m_messageTextbox.Location = new System.Drawing.Point(16, 48);
     this.m_messageTextbox.Name     = "m_messageTextbox";
     this.m_messageTextbox.Size     = new System.Drawing.Size(520, 20);
     this.m_messageTextbox.TabIndex = 2;
     this.m_messageTextbox.Text     = "";
     //
     // m_messageLabel
     //
     this.m_messageLabel.Location = new System.Drawing.Point(16, 8);
     this.m_messageLabel.Name     = "m_messageLabel";
     this.m_messageLabel.TabIndex = 3;
     this.m_messageLabel.Text     = "message to send:";
     //
     // m_messages
     //
     this.m_messages.Location = new System.Drawing.Point(8, 248);
     this.m_messages.Name     = "m_messages";
     this.m_messages.Size     = new System.Drawing.Size(536, 355);
     this.m_messages.TabIndex = 4;
     this.m_messages.TabStop  = false;
     //
     // m_userNamePanel
     //
     this.m_userNamePanel.Controls.Add(this.m_constatus);
     this.m_userNamePanel.Controls.Add(this.m_statusLabel);
     this.m_userNamePanel.Controls.Add(this.m_disconnectbutton);
     this.m_userNamePanel.Controls.Add(this.m_connectButton);
     this.m_userNamePanel.Controls.Add(this.m_userNameLabel);
     this.m_userNamePanel.Controls.Add(this.m_usernameTextbox);
     this.m_userNamePanel.Location = new System.Drawing.Point(8, 16);
     this.m_userNamePanel.Name     = "m_userNamePanel";
     this.m_userNamePanel.Size     = new System.Drawing.Size(544, 88);
     this.m_userNamePanel.TabIndex = 5;
     //
     // m_constatus
     //
     this.m_constatus.Location = new System.Drawing.Point(296, 56);
     this.m_constatus.Name     = "m_constatus";
     this.m_constatus.TabIndex = 5;
     this.m_constatus.Text     = NOT_CONNECTED_INFO;
     //
     // m_statusLabel
     //
     this.m_statusLabel.Location = new System.Drawing.Point(232, 56);
     this.m_statusLabel.Name     = "m_statusLabel";
     this.m_statusLabel.Size     = new System.Drawing.Size(48, 23);
     this.m_statusLabel.TabIndex = 4;
     this.m_statusLabel.Text     = "Status:";
     //
     // m_disconnectbutton
     //
     this.m_disconnectbutton.Location = new System.Drawing.Point(112, 56);
     this.m_disconnectbutton.Name     = "m_disconnectbutton";
     this.m_disconnectbutton.TabIndex = 3;
     this.m_disconnectbutton.Text     = "Disconnect";
     this.m_disconnectbutton.Click   += new System.EventHandler(this.m_disconnectbutton_Click);
     //
     // m_connectButton
     //
     this.m_connectButton.Location = new System.Drawing.Point(16, 56);
     this.m_connectButton.Name     = "m_connectButton";
     this.m_connectButton.TabIndex = 2;
     this.m_connectButton.Text     = "Connect";
     this.m_connectButton.Click   += new System.EventHandler(this.m_connectButton_Click);
     //
     // m_sendMsgPanel
     //
     this.m_sendMsgPanel.Controls.Add(this.m_sendMsgButton);
     this.m_sendMsgPanel.Controls.Add(this.m_sendMsgAsyncButton);
     this.m_sendMsgPanel.Controls.Add(this.m_messageLabel);
     this.m_sendMsgPanel.Controls.Add(this.m_messageTextbox);
     this.m_sendMsgPanel.Location = new System.Drawing.Point(8, 120);
     this.m_sendMsgPanel.Name     = "m_sendMsgPanel";
     this.m_sendMsgPanel.Size     = new System.Drawing.Size(544, 112);
     this.m_sendMsgPanel.TabIndex = 6;
     //
     // m_sendMsgButton
     //
     this.m_sendMsgButton.Location = new System.Drawing.Point(16, 80);
     this.m_sendMsgButton.Name     = "m_sendMsgButton";
     this.m_sendMsgButton.Size     = new System.Drawing.Size(96, 23);
     this.m_sendMsgButton.TabIndex = 4;
     this.m_sendMsgButton.Text     = "Send message";
     this.m_sendMsgButton.Click   += new System.EventHandler(this.m_sendMsgButton_Click);
     //
     // m_sendMsgAsyncButton
     //
     this.m_sendMsgAsyncButton.Location = new System.Drawing.Point(120, 80);
     this.m_sendMsgAsyncButton.Name     = "m_sendMsgAsyncButton";
     this.m_sendMsgAsyncButton.Size     = new System.Drawing.Size(96, 23);
     this.m_sendMsgAsyncButton.TabIndex = 7;
     this.m_sendMsgAsyncButton.Text     = "Send msg async";
     this.m_sendMsgAsyncButton.Click   += new System.EventHandler(this.m_sendMsgAsyncButton_Click);
     //
     // Chatform
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(560, 613);
     this.Controls.Add(this.m_sendMsgPanel);
     this.Controls.Add(this.m_userNamePanel);
     this.Controls.Add(this.m_messages);
     this.Name     = "Chatform";
     this.Text     = "chatclient";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.Chatform_Closing);
     this.m_userNamePanel.ResumeLayout(false);
     this.m_sendMsgPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtGroupNote = new System.Windows.Forms.TextBox();
     this.label1       = new System.Windows.Forms.Label();
     this.btnOK        = new System.Windows.Forms.Button();
     this.btnCancel    = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // txtGroupNote
     //
     this.txtGroupNote.AcceptsReturn = true;
     this.txtGroupNote.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGroupNote.Location      = new System.Drawing.Point(79, 12);
     this.txtGroupNote.Multiline     = true;
     this.txtGroupNote.Name          = "txtGroupNote";
     this.txtGroupNote.Size          = new System.Drawing.Size(269, 119);
     this.txtGroupNote.TabIndex      = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(14, 15);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Group Note:";
     //
     // btnOK
     //
     this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Location  = new System.Drawing.Point(181, 153);
     this.btnOK.Name      = "btnOK";
     this.btnOK.Size      = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex  = 10;
     this.btnOK.Text      = "OK";
     this.btnOK.Click    += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.CausesValidation = false;
     this.btnCancel.DialogResult     = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle        = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location         = new System.Drawing.Point(273, 153);
     this.btnCancel.Name             = "btnCancel";
     this.btnCancel.Size             = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex         = 11;
     this.btnCancel.Text             = "Cancel";
     //
     // frmGroupNote
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(360, 188);
     this.Controls.Add(this.txtGroupNote);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmGroupNote";
     this.ShowInTaskbar   = false;
     this.Text            = "Add Group Note";
     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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectServerDlg));
     ButtonsPN       = new System.Windows.Forms.Panel();
     CancelBTN       = new System.Windows.Forms.Button();
     OkBTN           = new System.Windows.Forms.Button();
     SpecificationLB = new System.Windows.Forms.Label();
     TopPN           = new System.Windows.Forms.Panel();
     SpecificationCB = new System.Windows.Forms.ComboBox();
     ServersCTRL     = new BrowseTreeCtrl();
     MainPN          = new System.Windows.Forms.Panel();
     ButtonsPN.SuspendLayout();
     TopPN.SuspendLayout();
     MainPN.SuspendLayout();
     SuspendLayout();
     //
     // ButtonsPN
     //
     ButtonsPN.Controls.Add(CancelBTN);
     ButtonsPN.Controls.Add(OkBTN);
     ButtonsPN.Dock     = System.Windows.Forms.DockStyle.Bottom;
     ButtonsPN.Location = new System.Drawing.Point(0, 202);
     ButtonsPN.Name     = "ButtonsPN";
     ButtonsPN.Size     = new System.Drawing.Size(296, 36);
     ButtonsPN.TabIndex = 1;
     //
     // CancelBTN
     //
     CancelBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     CancelBTN.Location     = new System.Drawing.Point(216, 8);
     CancelBTN.Name         = "CancelBTN";
     CancelBTN.Size         = new System.Drawing.Size(75, 23);
     CancelBTN.TabIndex     = 0;
     CancelBTN.Text         = "Cancel";
     //
     // OkBTN
     //
     OkBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     OkBTN.DialogResult = System.Windows.Forms.DialogResult.OK;
     OkBTN.Location     = new System.Drawing.Point(135, 6);
     OkBTN.Name         = "OkBTN";
     OkBTN.Size         = new System.Drawing.Size(75, 23);
     OkBTN.TabIndex     = 1;
     OkBTN.Text         = "OK";
     //
     // SpecificationLB
     //
     SpecificationLB.Dock      = System.Windows.Forms.DockStyle.Left;
     SpecificationLB.Location  = new System.Drawing.Point(4, 4);
     SpecificationLB.Name      = "SpecificationLB";
     SpecificationLB.Size      = new System.Drawing.Size(76, 20);
     SpecificationLB.TabIndex  = 2;
     SpecificationLB.Text      = "Specification";
     SpecificationLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TopPN
     //
     TopPN.Controls.Add(SpecificationCB);
     TopPN.Controls.Add(SpecificationLB);
     TopPN.Dock     = System.Windows.Forms.DockStyle.Top;
     TopPN.Location = new System.Drawing.Point(0, 0);
     TopPN.Name     = "TopPN";
     TopPN.Padding  = new System.Windows.Forms.Padding(4);
     TopPN.Size     = new System.Drawing.Size(296, 28);
     TopPN.TabIndex = 5;
     //
     // SpecificationCB
     //
     SpecificationCB.Dock                  = System.Windows.Forms.DockStyle.Fill;
     SpecificationCB.Location              = new System.Drawing.Point(80, 4);
     SpecificationCB.Name                  = "SpecificationCB";
     SpecificationCB.Size                  = new System.Drawing.Size(212, 21);
     SpecificationCB.TabIndex              = 3;
     SpecificationCB.SelectedIndexChanged += new System.EventHandler(SpecificationCB_SelectedIndexChanged);
     //
     // ServersCTRL
     //
     ServersCTRL.Dock     = System.Windows.Forms.DockStyle.Fill;
     ServersCTRL.Location = new System.Drawing.Point(4, 0);
     ServersCTRL.Name     = "ServersCTRL";
     ServersCTRL.Size     = new System.Drawing.Size(288, 174);
     ServersCTRL.TabIndex = 0;
     //
     // MainPN
     //
     MainPN.Controls.Add(ServersCTRL);
     MainPN.Dock     = System.Windows.Forms.DockStyle.Fill;
     MainPN.Location = new System.Drawing.Point(0, 28);
     MainPN.Name     = "MainPN";
     MainPN.Padding  = new System.Windows.Forms.Padding(4, 0, 4, 0);
     MainPN.Size     = new System.Drawing.Size(296, 174);
     MainPN.TabIndex = 6;
     //
     // SelectServerDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     CancelButton      = CancelBTN;
     ClientSize        = new System.Drawing.Size(296, 238);
     Controls.Add(MainPN);
     Controls.Add(TopPN);
     Controls.Add(ButtonsPN);
     Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     Name          = "SelectServerDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Select Server";
     ButtonsPN.ResumeLayout(false);
     TopPN.ResumeLayout(false);
     TopPN.PerformLayout();
     MainPN.ResumeLayout(false);
     ResumeLayout(false);
 }
Esempio n. 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.mainMenu1              = new System.Windows.Forms.MainMenu();
     this.menuItem1              = new System.Windows.Forms.MenuItem();
     this.menuItem2              = new System.Windows.Forms.MenuItem();
     this.menuItem3              = new System.Windows.Forms.MenuItem();
     this.menuItem4              = new System.Windows.Forms.MenuItem();
     this.menuItem7              = new System.Windows.Forms.MenuItem();
     this.menuItem11             = new System.Windows.Forms.MenuItem();
     this.menuItem12             = new System.Windows.Forms.MenuItem();
     this.menuItem9              = new System.Windows.Forms.MenuItem();
     this.menuItem5              = new System.Windows.Forms.MenuItem();
     this.menuItem8              = new System.Windows.Forms.MenuItem();
     this.menuItem10             = new System.Windows.Forms.MenuItem();
     this.menuItem14             = new System.Windows.Forms.MenuItem();
     this.menuItem6              = new System.Windows.Forms.MenuItem();
     this.menuItem13             = new System.Windows.Forms.MenuItem();
     this.openFileDialog1        = new System.Windows.Forms.OpenFileDialog();
     this.pictureBoxSourceBitmap = new System.Windows.Forms.PictureBox();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.button7          = new System.Windows.Forms.Button();
     this.labelWidthHeight = new System.Windows.Forms.Label();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.button3          = new System.Windows.Forms.Button();
     this.label7           = new System.Windows.Forms.Label();
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance = new System.Windows.Forms.NumericUpDown();
     this.label6 = new System.Windows.Forms.Label();
     this.numericUpDownNumCandidateQuiltBlocks = new System.Windows.Forms.NumericUpDown();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.label5  = new System.Windows.Forms.Label();
     this.label4  = new System.Windows.Forms.Label();
     this.numericUpDownQuiltingBlockOverlap = new System.Windows.Forms.NumericUpDown();
     this.label3 = new System.Windows.Forms.Label();
     this.numericUpDownQuiltingBlockSize = new System.Windows.Forms.NumericUpDown();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.numericUpDownQuiltingHeight = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownQuiltingWidth  = new System.Windows.Forms.NumericUpDown();
     this.pictureBoxQuiltedBitmap     = new System.Windows.Forms.PictureBox();
     this.statusBar1       = new System.Windows.Forms.StatusBar();
     this.textBoxDebugSpew = new System.Windows.Forms.TextBox();
     this.saveFileDialog1  = new System.Windows.Forms.SaveFileDialog();
     this.groupBox3        = new System.Windows.Forms.GroupBox();
     this.checkBoxOnePixelOverlapBetweenTiles = new System.Windows.Forms.CheckBox();
     this.button6          = new System.Windows.Forms.Button();
     this.label11          = new System.Windows.Forms.Label();
     this.textBoxWangSpecs = new System.Windows.Forms.TextBox();
     this.button5          = new System.Windows.Forms.Button();
     this.button4          = new System.Windows.Forms.Button();
     this.label8           = new System.Windows.Forms.Label();
     this.numericUpDownMaxWangMatchError = new System.Windows.Forms.NumericUpDown();
     this.label9 = new System.Windows.Forms.Label();
     this.numericUpDownMaxWangMatchAttempts = new System.Windows.Forms.NumericUpDown();
     this.label10 = new System.Windows.Forms.Label();
     this.numericUpDownWangTileSize = new System.Windows.Forms.NumericUpDown();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownNumCandidateQuiltBlocks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingBlockOverlap)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingBlockSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingHeight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingWidth)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMaxWangMatchError)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMaxWangMatchAttempts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownWangTileSize)).BeginInit();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem7,
         this.menuItem8
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2,
         this.menuItem3,
         this.menuItem4
     });
     this.menuItem1.Text = "&File";
     //
     // menuItem2
     //
     this.menuItem2.Index  = 0;
     this.menuItem2.Text   = "&Open Source Texture...";
     this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 1;
     this.menuItem3.Text  = "-";
     //
     // menuItem4
     //
     this.menuItem4.Index  = 2;
     this.menuItem4.Text   = "E&xit";
     this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 1;
     this.menuItem7.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem11,
         this.menuItem12,
         this.menuItem9,
         this.menuItem5
     });
     this.menuItem7.Text = "&Quilting";
     //
     // menuItem11
     //
     this.menuItem11.Index  = 0;
     this.menuItem11.Text   = "&Generate Quilt from Source Bitmap";
     this.menuItem11.Click += new System.EventHandler(this.button1_Click);
     //
     // menuItem12
     //
     this.menuItem12.Index = 1;
     this.menuItem12.Text  = "-";
     //
     // menuItem9
     //
     this.menuItem9.Index  = 2;
     this.menuItem9.Text   = "&Load Quilt Bitmap...";
     this.menuItem9.Click += new System.EventHandler(this.button3_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index  = 3;
     this.menuItem5.Text   = "&Save Quilt Bitmap...";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // menuItem8
     //
     this.menuItem8.Index = 2;
     this.menuItem8.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem10,
         this.menuItem14,
         this.menuItem6,
         this.menuItem13
     });
     this.menuItem8.Text = "Wang Tiling";
     //
     // menuItem10
     //
     this.menuItem10.Index  = 0;
     this.menuItem10.Text   = "&Generate Wang Tiles";
     this.menuItem10.Click += new System.EventHandler(this.button4_Click);
     //
     // menuItem14
     //
     this.menuItem14.Index = 1;
     this.menuItem14.Text  = "-";
     //
     // menuItem6
     //
     this.menuItem6.Index  = 2;
     this.menuItem6.Text   = "&Save Individual Tiles...";
     this.menuItem6.Click += new System.EventHandler(this.button5_Click);
     //
     // menuItem13
     //
     this.menuItem13.Index  = 3;
     this.menuItem13.Text   = "Sa&ve MegaTile...";
     this.menuItem13.Click += new System.EventHandler(this.button6_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.Title = "Select a bitmap image to use as a texture map";
     //
     // pictureBoxSourceBitmap
     //
     this.pictureBoxSourceBitmap.Location = new System.Drawing.Point(16, 24);
     this.pictureBoxSourceBitmap.Name     = "pictureBoxSourceBitmap";
     this.pictureBoxSourceBitmap.Size     = new System.Drawing.Size(256, 256);
     this.pictureBoxSourceBitmap.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBoxSourceBitmap.TabIndex = 0;
     this.pictureBoxSourceBitmap.TabStop  = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.button7);
     this.groupBox1.Controls.Add(this.labelWidthHeight);
     this.groupBox1.Controls.Add(this.pictureBoxSourceBitmap);
     this.groupBox1.Location = new System.Drawing.Point(24, 16);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(336, 344);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Source bitmap";
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(16, 312);
     this.button7.Name     = "button7";
     this.button7.Size     = new System.Drawing.Size(120, 23);
     this.button7.TabIndex = 12;
     this.button7.Text     = "Load Source Bitmap";
     this.button7.Click   += new System.EventHandler(this.menuItem2_Click);
     //
     // labelWidthHeight
     //
     this.labelWidthHeight.Location = new System.Drawing.Point(16, 288);
     this.labelWidthHeight.Name     = "labelWidthHeight";
     this.labelWidthHeight.Size     = new System.Drawing.Size(232, 23);
     this.labelWidthHeight.TabIndex = 1;
     this.labelWidthHeight.Text     = "Load a valid source bitmap to begin.";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.numericUpDownNumCandidateQuiltBlocks);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.numericUpDownQuiltingBlockOverlap);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.numericUpDownQuiltingBlockSize);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.numericUpDownQuiltingHeight);
     this.groupBox2.Controls.Add(this.numericUpDownQuiltingWidth);
     this.groupBox2.Controls.Add(this.pictureBoxQuiltedBitmap);
     this.groupBox2.Location = new System.Drawing.Point(384, 16);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(424, 472);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Quilting Utility";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(160, 432);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(120, 23);
     this.button3.TabIndex = 17;
     this.button3.Text     = "Load Quilt";
     this.button3.Click   += new System.EventHandler(this.button3_Click);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(32, 408);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(104, 23);
     this.label7.TabIndex = 16;
     this.label7.Text     = "Error Tolerance:";
     //
     // numericUpDownSelectFromNBestCandidateQuiltErrorTolerance
     //
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.DecimalPlaces = 1;
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.Location      = new System.Drawing.Point(144, 408);
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.Maximum       = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.Name     = "numericUpDownSelectFromNBestCandidateQuiltErrorTolerance";
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.TabIndex = 15;
     this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance.Value    = new System.Decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 384);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(128, 23);
     this.label6.TabIndex = 14;
     this.label6.Text     = "Num Candidate Blocks:";
     //
     // numericUpDownNumCandidateQuiltBlocks
     //
     this.numericUpDownNumCandidateQuiltBlocks.Location = new System.Drawing.Point(144, 384);
     this.numericUpDownNumCandidateQuiltBlocks.Maximum  = new System.Decimal(new int[] {
         200,
         0,
         0,
         0
     });
     this.numericUpDownNumCandidateQuiltBlocks.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDownNumCandidateQuiltBlocks.Name     = "numericUpDownNumCandidateQuiltBlocks";
     this.numericUpDownNumCandidateQuiltBlocks.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownNumCandidateQuiltBlocks.TabIndex = 13;
     this.numericUpDownNumCandidateQuiltBlocks.Value    = new System.Decimal(new int[] {
         15,
         0,
         0,
         0
     });
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(288, 432);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(120, 23);
     this.button2.TabIndex = 12;
     this.button2.Text     = "Save Quilt";
     this.button2.Click   += new System.EventHandler(this.menuItem5_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(24, 432);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(120, 23);
     this.button1.TabIndex = 11;
     this.button1.Text     = "Generate Quilt";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(216, 344);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(96, 23);
     this.label5.TabIndex = 10;
     this.label5.Text     = "(~1/6 block size)";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(56, 344);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(80, 23);
     this.label4.TabIndex = 9;
     this.label4.Text     = "Block Overlap:";
     //
     // numericUpDownQuiltingBlockOverlap
     //
     this.numericUpDownQuiltingBlockOverlap.Increment = new System.Decimal(new int[] {
         8,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingBlockOverlap.Location = new System.Drawing.Point(144, 344);
     this.numericUpDownQuiltingBlockOverlap.Maximum  = new System.Decimal(new int[] {
         65536,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingBlockOverlap.Minimum = new System.Decimal(new int[] {
         4,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingBlockOverlap.Name     = "numericUpDownQuiltingBlockOverlap";
     this.numericUpDownQuiltingBlockOverlap.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownQuiltingBlockOverlap.TabIndex = 8;
     this.numericUpDownQuiltingBlockOverlap.Value    = new System.Decimal(new int[] {
         10,
         0,
         0,
         0
     });
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(56, 320);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(80, 23);
     this.label3.TabIndex = 7;
     this.label3.Text     = "Block Size:";
     //
     // numericUpDownQuiltingBlockSize
     //
     this.numericUpDownQuiltingBlockSize.Increment = new System.Decimal(new int[] {
         8,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingBlockSize.Location = new System.Drawing.Point(144, 320);
     this.numericUpDownQuiltingBlockSize.Maximum  = new System.Decimal(new int[] {
         65536,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingBlockSize.Minimum = new System.Decimal(new int[] {
         8,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingBlockSize.Name     = "numericUpDownQuiltingBlockSize";
     this.numericUpDownQuiltingBlockSize.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownQuiltingBlockSize.TabIndex = 6;
     this.numericUpDownQuiltingBlockSize.Value    = new System.Decimal(new int[] {
         32,
         0,
         0,
         0
     });
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(168, 288);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 5;
     this.label2.Text     = "Height:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 288);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 23);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Quilting Width:";
     //
     // numericUpDownQuiltingHeight
     //
     this.numericUpDownQuiltingHeight.Increment = new System.Decimal(new int[] {
         256,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingHeight.Location = new System.Drawing.Point(232, 288);
     this.numericUpDownQuiltingHeight.Maximum  = new System.Decimal(new int[] {
         65536,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingHeight.Minimum = new System.Decimal(new int[] {
         256,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingHeight.Name     = "numericUpDownQuiltingHeight";
     this.numericUpDownQuiltingHeight.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownQuiltingHeight.TabIndex = 3;
     this.numericUpDownQuiltingHeight.Value    = new System.Decimal(new int[] {
         512,
         0,
         0,
         0
     });
     //
     // numericUpDownQuiltingWidth
     //
     this.numericUpDownQuiltingWidth.Increment = new System.Decimal(new int[] {
         256,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingWidth.Location = new System.Drawing.Point(96, 288);
     this.numericUpDownQuiltingWidth.Maximum  = new System.Decimal(new int[] {
         65536,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingWidth.Minimum = new System.Decimal(new int[] {
         256,
         0,
         0,
         0
     });
     this.numericUpDownQuiltingWidth.Name     = "numericUpDownQuiltingWidth";
     this.numericUpDownQuiltingWidth.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownQuiltingWidth.TabIndex = 2;
     this.numericUpDownQuiltingWidth.Value    = new System.Decimal(new int[] {
         512,
         0,
         0,
         0
     });
     //
     // pictureBoxQuiltedBitmap
     //
     this.pictureBoxQuiltedBitmap.Location = new System.Drawing.Point(16, 24);
     this.pictureBoxQuiltedBitmap.Name     = "pictureBoxQuiltedBitmap";
     this.pictureBoxQuiltedBitmap.Size     = new System.Drawing.Size(368, 256);
     this.pictureBoxQuiltedBitmap.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBoxQuiltedBitmap.TabIndex = 0;
     this.pictureBoxQuiltedBitmap.TabStop  = false;
     this.pictureBoxQuiltedBitmap.Click   += new System.EventHandler(this.pictureBoxQuiltedBitmap_Click);
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 595);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(1096, 22);
     this.statusBar1.TabIndex = 3;
     //
     // textBoxDebugSpew
     //
     this.textBoxDebugSpew.Location  = new System.Drawing.Point(24, 504);
     this.textBoxDebugSpew.Multiline = true;
     this.textBoxDebugSpew.Name      = "textBoxDebugSpew";
     this.textBoxDebugSpew.Size      = new System.Drawing.Size(1000, 80);
     this.textBoxDebugSpew.TabIndex  = 4;
     this.textBoxDebugSpew.Text      = "Debug Spew";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.checkBoxOnePixelOverlapBetweenTiles);
     this.groupBox3.Controls.Add(this.button6);
     this.groupBox3.Controls.Add(this.label11);
     this.groupBox3.Controls.Add(this.textBoxWangSpecs);
     this.groupBox3.Controls.Add(this.button5);
     this.groupBox3.Controls.Add(this.button4);
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.numericUpDownMaxWangMatchError);
     this.groupBox3.Controls.Add(this.label9);
     this.groupBox3.Controls.Add(this.numericUpDownMaxWangMatchAttempts);
     this.groupBox3.Controls.Add(this.label10);
     this.groupBox3.Controls.Add(this.numericUpDownWangTileSize);
     this.groupBox3.Location = new System.Drawing.Point(816, 16);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(248, 472);
     this.groupBox3.TabIndex = 5;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Wang Tiling";
     //
     // checkBoxOnePixelOverlapBetweenTiles
     //
     this.checkBoxOnePixelOverlapBetweenTiles.Checked    = true;
     this.checkBoxOnePixelOverlapBetweenTiles.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxOnePixelOverlapBetweenTiles.Location   = new System.Drawing.Point(24, 128);
     this.checkBoxOnePixelOverlapBetweenTiles.Name       = "checkBoxOnePixelOverlapBetweenTiles";
     this.checkBoxOnePixelOverlapBetweenTiles.Size       = new System.Drawing.Size(192, 24);
     this.checkBoxOnePixelOverlapBetweenTiles.TabIndex   = 30;
     this.checkBoxOnePixelOverlapBetweenTiles.Text       = "One pixel overlap between tiles";
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(136, 432);
     this.button6.Name     = "button6";
     this.button6.Size     = new System.Drawing.Size(96, 23);
     this.button6.TabIndex = 29;
     this.button6.Text     = "Save MegaTile";
     this.button6.Click   += new System.EventHandler(this.button6_Click);
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(24, 160);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(144, 32);
     this.label11.TabIndex = 28;
     this.label11.Text     = "Wang Tile Colours (NESW):";
     //
     // textBoxWangSpecs
     //
     this.textBoxWangSpecs.Location   = new System.Drawing.Point(24, 192);
     this.textBoxWangSpecs.Multiline  = true;
     this.textBoxWangSpecs.Name       = "textBoxWangSpecs";
     this.textBoxWangSpecs.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBoxWangSpecs.Size       = new System.Drawing.Size(176, 176);
     this.textBoxWangSpecs.TabIndex   = 27;
     this.textBoxWangSpecs.Text       = "0312\r\n1302\r\n0203\r\n1013\r\n0310\r\n1200\r\n0012\r\n0002\r\n1003\r\n0213\r\n1210\r\n1300";
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(8, 432);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(120, 23);
     this.button5.TabIndex = 26;
     this.button5.Text     = "Save Individual Tiles";
     this.button5.Click   += new System.EventHandler(this.button5_Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(8, 400);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(120, 23);
     this.button4.TabIndex = 25;
     this.button4.Text     = "Generate Wang Tiles";
     this.button4.Click   += new System.EventHandler(this.button4_Click);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(8, 96);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(120, 23);
     this.label8.TabIndex = 24;
     this.label8.Text     = "Max Matching Error:";
     //
     // numericUpDownMaxWangMatchError
     //
     this.numericUpDownMaxWangMatchError.Increment = new System.Decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numericUpDownMaxWangMatchError.Location = new System.Drawing.Point(140, 96);
     this.numericUpDownMaxWangMatchError.Maximum  = new System.Decimal(new int[] {
         100000,
         0,
         0,
         0
     });
     this.numericUpDownMaxWangMatchError.Name     = "numericUpDownMaxWangMatchError";
     this.numericUpDownMaxWangMatchError.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownMaxWangMatchError.TabIndex = 23;
     this.numericUpDownMaxWangMatchError.Value    = new System.Decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(4, 72);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(128, 23);
     this.label9.TabIndex = 22;
     this.label9.Text     = "Max Attempts:";
     //
     // numericUpDownMaxWangMatchAttempts
     //
     this.numericUpDownMaxWangMatchAttempts.Location = new System.Drawing.Point(140, 72);
     this.numericUpDownMaxWangMatchAttempts.Maximum  = new System.Decimal(new int[] {
         200,
         0,
         0,
         0
     });
     this.numericUpDownMaxWangMatchAttempts.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDownMaxWangMatchAttempts.Name     = "numericUpDownMaxWangMatchAttempts";
     this.numericUpDownMaxWangMatchAttempts.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownMaxWangMatchAttempts.TabIndex = 21;
     this.numericUpDownMaxWangMatchAttempts.Value    = new System.Decimal(new int[] {
         15,
         0,
         0,
         0
     });
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(32, 32);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(96, 23);
     this.label10.TabIndex = 20;
     this.label10.Text     = "Wang Tile Size:";
     //
     // numericUpDownWangTileSize
     //
     this.numericUpDownWangTileSize.Increment = new System.Decimal(new int[] {
         32,
         0,
         0,
         0
     });
     this.numericUpDownWangTileSize.Location = new System.Drawing.Point(140, 32);
     this.numericUpDownWangTileSize.Maximum  = new System.Decimal(new int[] {
         65536,
         0,
         0,
         0
     });
     this.numericUpDownWangTileSize.Minimum = new System.Decimal(new int[] {
         32,
         0,
         0,
         0
     });
     this.numericUpDownWangTileSize.Name     = "numericUpDownWangTileSize";
     this.numericUpDownWangTileSize.Size     = new System.Drawing.Size(64, 20);
     this.numericUpDownWangTileSize.TabIndex = 19;
     this.numericUpDownWangTileSize.Value    = new System.Decimal(new int[] {
         256,
         0,
         0,
         0
     });
     //
     // WangTileForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1096, 617);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.textBoxDebugSpew);
     this.Controls.Add(this.statusBar1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Menu = this.mainMenu1;
     this.Name = "WangTileForm";
     this.Text = "Texture Quilting and Wang Tiling Utility";
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownSelectFromNBestCandidateQuiltErrorTolerance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownNumCandidateQuiltBlocks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingBlockOverlap)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingBlockSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingHeight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownQuiltingWidth)).EndInit();
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMaxWangMatchError)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownMaxWangMatchAttempts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownWangTileSize)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.imaginaryTextBox = new System.Windows.Forms.TextBox();
     this.imaginaryLabel   = new System.Windows.Forms.Label();
     this.addButton        = new System.Windows.Forms.Button();
     this.secondButton     = new System.Windows.Forms.Button();
     this.realLabel        = new System.Windows.Forms.Label();
     this.firstButton      = new System.Windows.Forms.Button();
     this.realTextBox      = new System.Windows.Forms.TextBox();
     this.multiplyButton   = new System.Windows.Forms.Button();
     this.subtractButton   = new System.Windows.Forms.Button();
     this.statusLabel      = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // imaginaryTextBox
     //
     this.imaginaryTextBox.Location = new System.Drawing.Point(73, 56);
     this.imaginaryTextBox.Name     = "imaginaryTextBox";
     this.imaginaryTextBox.Size     = new System.Drawing.Size(86, 20);
     this.imaginaryTextBox.TabIndex = 4;
     this.imaginaryTextBox.Text     = "";
     //
     // imaginaryLabel
     //
     this.imaginaryLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.imaginaryLabel.Location = new System.Drawing.Point(10, 56);
     this.imaginaryLabel.Name     = "imaginaryLabel";
     this.imaginaryLabel.Size     = new System.Drawing.Size(60, 18);
     this.imaginaryLabel.TabIndex = 1;
     this.imaginaryLabel.Text     = "Imaginary";
     //
     // addButton
     //
     this.addButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.addButton.Location = new System.Drawing.Point(38, 112);
     this.addButton.Name     = "addButton";
     this.addButton.TabIndex = 7;
     this.addButton.Text     = "+";
     this.addButton.Click   += new System.EventHandler(this.addButton_Click);
     //
     // secondButton
     //
     this.secondButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.secondButton.Location = new System.Drawing.Point(172, 56);
     this.secondButton.Name     = "secondButton";
     this.secondButton.Size     = new System.Drawing.Size(178, 25);
     this.secondButton.TabIndex = 6;
     this.secondButton.Text     = "Set Second Complex Number";
     this.secondButton.Click   += new System.EventHandler(this.secondButton_Click);
     //
     // realLabel
     //
     this.realLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.realLabel.Location = new System.Drawing.Point(24, 16);
     this.realLabel.Name     = "realLabel";
     this.realLabel.Size     = new System.Drawing.Size(32, 17);
     this.realLabel.TabIndex = 0;
     this.realLabel.Text     = "Real";
     //
     // firstButton
     //
     this.firstButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.firstButton.Location = new System.Drawing.Point(172, 16);
     this.firstButton.Name     = "firstButton";
     this.firstButton.Size     = new System.Drawing.Size(178, 25);
     this.firstButton.TabIndex = 5;
     this.firstButton.Text     = "Set First Complex Number";
     this.firstButton.Click   += new System.EventHandler(this.firstButton_Click);
     //
     // realTextBox
     //
     this.realTextBox.Location = new System.Drawing.Point(73, 16);
     this.realTextBox.Name     = "realTextBox";
     this.realTextBox.Size     = new System.Drawing.Size(86, 20);
     this.realTextBox.TabIndex = 3;
     this.realTextBox.Text     = "";
     //
     // multiplyButton
     //
     this.multiplyButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.multiplyButton.Location = new System.Drawing.Point(250, 112);
     this.multiplyButton.Name     = "multiplyButton";
     this.multiplyButton.TabIndex = 9;
     this.multiplyButton.Text     = "x";
     this.multiplyButton.Click   += new System.EventHandler(this.multiplyButton_Click);
     //
     // subtractButton
     //
     this.subtractButton.Font     = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.subtractButton.Location = new System.Drawing.Point(144, 112);
     this.subtractButton.Name     = "subtractButton";
     this.subtractButton.TabIndex = 8;
     this.subtractButton.Text     = "-";
     this.subtractButton.Click   += new System.EventHandler(this.subtractButton_Click);
     //
     // statusLabel
     //
     this.statusLabel.Location = new System.Drawing.Point(34, 160);
     this.statusLabel.Name     = "statusLabel";
     this.statusLabel.Size     = new System.Drawing.Size(294, 23);
     this.statusLabel.TabIndex = 2;
     //
     // ComplexTest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(360, 197);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.multiplyButton,
         this.subtractButton,
         this.addButton,
         this.secondButton,
         this.firstButton,
         this.imaginaryTextBox,
         this.realTextBox,
         this.statusLabel,
         this.imaginaryLabel,
         this.realLabel
     });
     this.Name = "ComplexTest";
     this.Text = "ComplexNumberTest";
     this.ResumeLayout(false);
 }
Esempio n. 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.tabEventView       = new System.Windows.Forms.TabControl();
            this.tabPage1           = new System.Windows.Forms.TabPage();
            this.treeView1          = new Genetibase.Debug.HighlightTrackTreeView();
            this.contextMenu        = new System.Windows.Forms.ContextMenu();
            this.contextStopTracing = new System.Windows.Forms.MenuItem();
            this.contextClear       = new System.Windows.Forms.MenuItem();
            this.panel1             = new System.Windows.Forms.Panel();
            this.traceEventCheckbox = new System.Windows.Forms.CheckBox();
            this.checkedListBox1    = new System.Windows.Forms.CheckedListBox();
            this.bSetAll            = new System.Windows.Forms.Button();
            this.bClearAll          = new System.Windows.Forms.Button();
            this.paneltop_          = new System.Windows.Forms.Panel();
            this.splitter2          = new System.Windows.Forms.Splitter();
            this.splitter1          = new System.Windows.Forms.Splitter();
            this.propertyGrid1      = new Genetibase.Debug.NuGenPropertyGrid();
            this.splitter3          = new System.Windows.Forms.Splitter();
            nuGenOInternal1         = new NuGenTraceOutputControl();
            this.tabEventView.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.panel1.SuspendLayout();
            this.paneltop_.SuspendLayout();
            this.SuspendLayout();
            //
            // tabEventView
            //
            this.tabEventView.CausesValidation = false;
            this.tabEventView.Controls.Add(this.tabPage1);
            this.tabEventView.Dock                  = System.Windows.Forms.DockStyle.Fill;
            this.tabEventView.Location              = new System.Drawing.Point(391, 0);
            this.tabEventView.Name                  = "tabEventView";
            this.tabEventView.SelectedIndex         = 0;
            this.tabEventView.ShowToolTips          = true;
            this.tabEventView.Size                  = new System.Drawing.Size(209, 448);
            this.tabEventView.TabIndex              = 12;
            this.tabEventView.SelectedIndexChanged += new System.EventHandler(this.tabEventView_SelectedIndexChanged);
            //
            // tabPage1
            //
            this.tabPage1.CausesValidation = false;
            this.tabPage1.Controls.Add(this.treeView1);
            this.tabPage1.Location = new System.Drawing.Point(4, 25);
            this.tabPage1.Name     = "tabPage1";
            this.tabPage1.Size     = new System.Drawing.Size(201, 419);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text     = "All Events";
            //
            // treeView1
            //
            this.treeView1.CausesValidation   = false;
            this.treeView1.ContextMenu        = this.contextMenu;
            this.treeView1.Dock               = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.ImageIndex         = -1;
            this.treeView1.Location           = new System.Drawing.Point(0, 0);
            this.treeView1.Name               = "treeView1";
            this.treeView1.SelectedImageIndex = -1;
            this.treeView1.Size               = new System.Drawing.Size(201, 419);
            this.treeView1.TabIndex           = 4;
            //
            // contextMenu
            //
            this.contextMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                this.contextStopTracing,
                this.contextClear
            });
            //
            // contextStopTracing
            //
            this.contextStopTracing.Index  = 0;
            this.contextStopTracing.Text   = "Stop tracing this event";
            this.contextStopTracing.Click += new System.EventHandler(this.contextStopTracing_Click);
            //
            // contextClear
            //
            this.contextClear.Index  = 1;
            this.contextClear.Text   = "Clear event window";
            this.contextClear.Click += new System.EventHandler(this.contextClear_Click);
            //
            // panel1
            //
            this.panel1.Controls.Add(this.traceEventCheckbox);
            this.panel1.Controls.Add(this.checkedListBox1);
            this.panel1.Controls.Add(this.bSetAll);
            this.panel1.Controls.Add(this.bClearAll);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(224, 0);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(164, 448);
            this.panel1.TabIndex = 14;
            //
            // traceEventCheckbox
            //
            this.traceEventCheckbox.Checked    = true;
            this.traceEventCheckbox.CheckState = System.Windows.Forms.CheckState.Checked;
            this.traceEventCheckbox.Location   = new System.Drawing.Point(16, 384);
            this.traceEventCheckbox.Name       = "traceEventCheckbox";
            this.traceEventCheckbox.Size       = new System.Drawing.Size(136, 16);
            this.traceEventCheckbox.TabIndex   = 11;
            this.traceEventCheckbox.Text       = "Trace Events";
            //
            // checkedListBox1
            //
            this.checkedListBox1.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.checkedListBox1.CausesValidation = false;
            this.checkedListBox1.CheckOnClick     = true;
            this.checkedListBox1.Location         = new System.Drawing.Point(0, 0);
            this.checkedListBox1.Name             = "checkedListBox1";
            this.checkedListBox1.Size             = new System.Drawing.Size(163, 361);
            this.checkedListBox1.TabIndex         = 8;
            this.checkedListBox1.ItemCheck       += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox1_ItemCheck);
            //
            // bSetAll
            //
            this.bSetAll.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.bSetAll.Location = new System.Drawing.Point(86, 413);
            this.bSetAll.Name     = "bSetAll";
            this.bSetAll.Size     = new System.Drawing.Size(68, 28);
            this.bSetAll.TabIndex = 10;
            this.bSetAll.Text     = "Set All";
            this.bSetAll.Click   += new System.EventHandler(this.bSetAll_Click);
            //
            // bClearAll
            //
            this.bClearAll.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.bClearAll.Location = new System.Drawing.Point(10, 413);
            this.bClearAll.Name     = "bClearAll";
            this.bClearAll.Size     = new System.Drawing.Size(67, 28);
            this.bClearAll.TabIndex = 9;
            this.bClearAll.Text     = "Clear All";
            this.bClearAll.Click   += new System.EventHandler(this.bClearAll_Click);
            //
            // paneltop_
            //
            this.paneltop_.Controls.Add(this.tabEventView);
            this.paneltop_.Controls.Add(this.splitter2);
            this.paneltop_.Controls.Add(this.panel1);
            this.paneltop_.Controls.Add(this.splitter1);
            this.paneltop_.Controls.Add(this.propertyGrid1);
            this.paneltop_.Dock     = System.Windows.Forms.DockStyle.Top;
            this.paneltop_.Location = new System.Drawing.Point(0, 0);
            this.paneltop_.Name     = "paneltop_";
            this.paneltop_.Size     = new System.Drawing.Size(600, 448);
            this.paneltop_.TabIndex = 0;
            //
            // splitter2
            //
            this.splitter2.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
            this.splitter2.CausesValidation = false;
            this.splitter2.Location         = new System.Drawing.Point(388, 0);
            this.splitter2.Name             = "splitter2";
            this.splitter2.Size             = new System.Drawing.Size(3, 448);
            this.splitter2.TabIndex         = 13;
            this.splitter2.TabStop          = false;
            //
            // splitter1
            //
            this.splitter1.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
            this.splitter1.CausesValidation = false;
            this.splitter1.Location         = new System.Drawing.Point(221, 0);
            this.splitter1.Name             = "splitter1";
            this.splitter1.Size             = new System.Drawing.Size(3, 448);
            this.splitter1.TabIndex         = 12;
            this.splitter1.TabStop          = false;
            //
            // propertyGrid1
            //
            this.propertyGrid1.CausesValidation           = false;
            this.propertyGrid1.CommandsVisibleIfAvailable = true;
            this.propertyGrid1.Dock          = System.Windows.Forms.DockStyle.Left;
            this.propertyGrid1.LargeButtons  = false;
            this.propertyGrid1.LineColor     = System.Drawing.SystemColors.ScrollBar;
            this.propertyGrid1.Location      = new System.Drawing.Point(0, 0);
            this.propertyGrid1.Name          = "propertyGrid1";
            this.propertyGrid1.Size          = new System.Drawing.Size(221, 448);
            this.propertyGrid1.TabIndex      = 13;
            this.propertyGrid1.Text          = "propertyGrid1";
            this.propertyGrid1.ViewBackColor = System.Drawing.SystemColors.Window;
            this.propertyGrid1.ViewForeColor = System.Drawing.SystemColors.WindowText;
            //
            // splitter3
            //
            this.splitter3.Dock     = System.Windows.Forms.DockStyle.Top;
            this.splitter3.Location = new System.Drawing.Point(0, 448);
            this.splitter3.Name     = "splitter3";
            this.splitter3.Size     = new System.Drawing.Size(600, 3);
            this.splitter3.TabIndex = 1;
            this.splitter3.TabStop  = false;

            nuGenOInternal1.Dock = DockStyle.Fill;
            //
            // NuGenSnoopControl
            //
            this.Controls.Add(this.splitter3);
            this.Controls.Add(this.paneltop_);
            this.Controls.Add(nuGenOInternal1);
            this.Name = "NuGenSnoopControl";
            this.Size = new System.Drawing.Size(600, 640);
            this.tabEventView.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.paneltop_.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Esempio n. 56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.sortCounter      = new System.Windows.Forms.ComboBox();
     this.sortOrder        = new System.Windows.Forms.ComboBox();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.highlightOrder   = new System.Windows.Forms.ComboBox();
     this.highlightCounter = new System.Windows.Forms.ComboBox();
     this.button2          = new System.Windows.Forms.Button();
     this.button1          = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.sortOrder,
         this.sortCounter
     });
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(296, 56);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Sort...";
     //
     // sortCounter
     //
     this.sortCounter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.sortCounter.Location      = new System.Drawing.Point(8, 24);
     this.sortCounter.Name          = "sortCounter";
     this.sortCounter.Size          = new System.Drawing.Size(144, 21);
     this.sortCounter.TabIndex      = 0;
     //
     // sortOrder
     //
     this.sortOrder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.sortOrder.Items.AddRange(new object[] {
         "in ascending order",
         "in descending order"
     });
     this.sortOrder.Location = new System.Drawing.Point(160, 24);
     this.sortOrder.Name     = "sortOrder";
     this.sortOrder.Size     = new System.Drawing.Size(128, 21);
     this.sortOrder.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.highlightCounter,
         this.highlightOrder
     });
     this.groupBox2.Location = new System.Drawing.Point(8, 72);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(296, 56);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Highlight...";
     //
     // highlightOrder
     //
     this.highlightOrder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.highlightOrder.Items.AddRange(new object[] {
         "most",
         "least"
     });
     this.highlightOrder.Location = new System.Drawing.Point(8, 24);
     this.highlightOrder.Name     = "highlightOrder";
     this.highlightOrder.Size     = new System.Drawing.Size(80, 21);
     this.highlightOrder.TabIndex = 0;
     //
     // highlightCounter
     //
     this.highlightCounter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.highlightCounter.Location      = new System.Drawing.Point(96, 24);
     this.highlightCounter.Name          = "highlightCounter";
     this.highlightCounter.Size          = new System.Drawing.Size(192, 21);
     this.highlightCounter.TabIndex      = 1;
     //
     // button2
     //
     this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button2.Location     = new System.Drawing.Point(232, 136);
     this.button2.Name         = "button2";
     this.button2.Size         = new System.Drawing.Size(72, 24);
     this.button2.TabIndex     = 3;
     this.button2.Text         = "Cancel";
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location     = new System.Drawing.Point(152, 136);
     this.button1.Name         = "button1";
     this.button1.Size         = new System.Drawing.Size(72, 24);
     this.button1.TabIndex     = 2;
     this.button1.Text         = "OK";
     //
     // SortAndHighlightSelector
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(312, 173);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.button2,
         this.button1,
         this.groupBox2,
         this.groupBox1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "SortAndHighlightSelector";
     this.Text            = "Sort options";
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.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.button1   = new System.Windows.Forms.Button();
     this.button2   = new System.Windows.Forms.Button();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.gridBand1 = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.chartContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Text = "Grid bands will be centered if CenteredGrid property is set to True for the Axis." +
                          "";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.button1);
     //
     // tChart1
     //
     //
     //
     //
     this.tChart1.Aspect.View3D  = false;
     this.tChart1.Aspect.ZOffset = 0;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Left.Grid.Color   = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Axes.Left.Grid.Visible = false;
     //
     //
     //
     this.tChart1.Header.Lines = new string[] {
         "Axes Grid Bands Centered"
     };
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Legend.Font.Brush.Color = System.Drawing.Color.Blue;
     this.tChart1.Legend.Visible          = false;
     //
     //
     //
     //
     //
     //
     this.tChart1.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.Raised;
     this.tChart1.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.Lowered;
     //
     //
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Size = new System.Drawing.Size(440, 205);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Back.Pen.Visible = false;
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 4;
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 4;
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(24, 8);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(75, 23);
     this.button1.TabIndex  = 0;
     this.button1.Text      = "Band 1...";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Location  = new System.Drawing.Point(120, 8);
     this.button2.Name      = "button2";
     this.button2.Size      = new System.Drawing.Size(75, 23);
     this.button2.TabIndex  = 1;
     this.button2.Text      = "Band 2...";
     this.button2.Click    += new System.EventHandler(this.button2_Click);
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(202, 9);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(78, 24);
     this.checkBox1.TabIndex = 2;
     this.checkBox1.Text     = "View 3D";
     this.checkBox1.Click   += new System.EventHandler(this.checkBox1_Click);
     //
     // checkBox2
     //
     this.checkBox2.Checked         = true;
     this.checkBox2.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBox2.Location        = new System.Drawing.Point(287, 9);
     this.checkBox2.Name            = "checkBox2";
     this.checkBox2.Size            = new System.Drawing.Size(141, 24);
     this.checkBox2.TabIndex        = 3;
     this.checkBox2.Text            = "Axes Left grid centered";
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     //
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     //
     //
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     //
     // Axes_GridBandsCentered
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 317);
     this.Name = "Axes_GridBandsCentered";
     this.panel1.ResumeLayout(false);
     this.chartContainer.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(DiseñoForm));
     this.panelDiseño          = new System.Windows.Forms.Panel();
     this.botonSalir           = new System.Windows.Forms.Button();
     this.botonCancelar        = new System.Windows.Forms.Button();
     this.botonNuevaMesa       = new System.Windows.Forms.Button();
     this.botonNuevoPuntoBarra = new System.Windows.Forms.Button();
     this.botonQuitar          = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // panelDiseño
     //
     this.panelDiseño.AllowDrop       = true;
     this.panelDiseño.BackgroundImage = ((System.Drawing.Bitmap)(resources.GetObject("panelDiseño.BackgroundImage")));
     this.panelDiseño.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panelDiseño.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.panelDiseño.Location        = new System.Drawing.Point(8, 8);
     this.panelDiseño.Name            = "panelDiseño";
     this.panelDiseño.Size            = new System.Drawing.Size(1000, 312);
     this.panelDiseño.TabIndex        = 19;
     //
     // botonSalir
     //
     this.botonSalir.Location = new System.Drawing.Point(944, 328);
     this.botonSalir.Name     = "botonSalir";
     this.botonSalir.Size     = new System.Drawing.Size(64, 64);
     this.botonSalir.TabIndex = 20;
     this.botonSalir.Text     = "SALIR";
     this.botonSalir.Click   += new System.EventHandler(this.botonSalir_Click);
     //
     // botonCancelar
     //
     this.botonCancelar.Font     = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.botonCancelar.Location = new System.Drawing.Point(872, 328);
     this.botonCancelar.Name     = "botonCancelar";
     this.botonCancelar.Size     = new System.Drawing.Size(64, 64);
     this.botonCancelar.TabIndex = 21;
     this.botonCancelar.Text     = "CANCELAR";
     this.botonCancelar.Click   += new System.EventHandler(this.botonCancelar_Click);
     //
     // botonNuevaMesa
     //
     this.botonNuevaMesa.Location = new System.Drawing.Point(8, 328);
     this.botonNuevaMesa.Name     = "botonNuevaMesa";
     this.botonNuevaMesa.Size     = new System.Drawing.Size(64, 64);
     this.botonNuevaMesa.TabIndex = 22;
     this.botonNuevaMesa.Text     = "NUEVA MESA";
     this.botonNuevaMesa.Click   += new System.EventHandler(this.botonNuevaMesa_Click);
     //
     // botonNuevoPuntoBarra
     //
     this.botonNuevoPuntoBarra.Location = new System.Drawing.Point(80, 328);
     this.botonNuevoPuntoBarra.Name     = "botonNuevoPuntoBarra";
     this.botonNuevoPuntoBarra.Size     = new System.Drawing.Size(64, 64);
     this.botonNuevoPuntoBarra.TabIndex = 23;
     this.botonNuevoPuntoBarra.Text     = "NUEVO PUNTO DE BARRA";
     this.botonNuevoPuntoBarra.Click   += new System.EventHandler(this.botonNuevoPuntoBarra_Click);
     //
     // botonQuitar
     //
     this.botonQuitar.Location = new System.Drawing.Point(152, 328);
     this.botonQuitar.Name     = "botonQuitar";
     this.botonQuitar.Size     = new System.Drawing.Size(64, 64);
     this.botonQuitar.TabIndex = 24;
     this.botonQuitar.Text     = "QUITAR";
     this.botonQuitar.Click   += new System.EventHandler(this.botonQuitar_Click);
     //
     // DiseñoForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1016, 397);
     this.ControlBox        = false;
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.botonQuitar,
         this.botonNuevoPuntoBarra,
         this.botonNuevaMesa,
         this.botonCancelar,
         this.botonSalir,
         this.panelDiseño
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "DiseñoForm";
     this.Text            = "DiseñoForm";
     this.ResumeLayout(false);
 }
Esempio n. 59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExtensionDialog));
     this.extensionListView                = new System.Windows.Forms.ListView();
     this.extensionNameColumn              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.extensionStatusColumn            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.extensionPointDescriptionTextBox = new System.Windows.Forms.TextBox();
     this.label1  = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.extensionPointsListBox = new System.Windows.Forms.ListBox();
     this.groupBox1                   = new System.Windows.Forms.GroupBox();
     this.groupBox2                   = new System.Windows.Forms.GroupBox();
     this.propertiesTextBox           = new System.Windows.Forms.TextBox();
     this.label3                      = new System.Windows.Forms.Label();
     this.extensionDescriptionTextBox = new System.Windows.Forms.TextBox();
     this.label2                      = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // extensionListView
     //
     this.extensionListView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.extensionListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.extensionNameColumn,
         this.extensionStatusColumn
     });
     this.extensionListView.FullRowSelect = true;
     this.extensionListView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.extensionListView.HideSelection = false;
     this.extensionListView.Location      = new System.Drawing.Point(7, 23);
     this.extensionListView.MultiSelect   = false;
     this.extensionListView.Name          = "extensionListView";
     this.extensionListView.Size          = new System.Drawing.Size(432, 59);
     this.extensionListView.TabIndex      = 0;
     this.extensionListView.UseCompatibleStateImageBehavior = false;
     this.extensionListView.View = System.Windows.Forms.View.Details;
     this.extensionListView.SelectedIndexChanged += new System.EventHandler(this.extensionListView_SelectedIndexChanged);
     this.extensionListView.Resize += new System.EventHandler(this.extensionListView_Resize);
     //
     // extensionNameColumn
     //
     this.extensionNameColumn.Text  = "Extension";
     this.extensionNameColumn.Width = 357;
     //
     // extensionStatusColumn
     //
     this.extensionStatusColumn.Text  = "Status";
     this.extensionStatusColumn.Width = 71;
     //
     // extensionPointDescriptionTextBox
     //
     this.extensionPointDescriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.extensionPointDescriptionTextBox.Location  = new System.Drawing.Point(9, 128);
     this.extensionPointDescriptionTextBox.Multiline = true;
     this.extensionPointDescriptionTextBox.Name      = "extensionPointDescriptionTextBox";
     this.extensionPointDescriptionTextBox.Size      = new System.Drawing.Size(432, 31);
     this.extensionPointDescriptionTextBox.TabIndex  = 1;
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Location = new System.Drawing.Point(6, 109);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(211, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Description:";
     //
     // button1
     //
     this.button1.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.button1.Location = new System.Drawing.Point(192, 420);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 3;
     this.button1.Text     = "OK";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // extensionPointsListBox
     //
     this.extensionPointsListBox.FormattingEnabled = true;
     this.extensionPointsListBox.Location          = new System.Drawing.Point(9, 19);
     this.extensionPointsListBox.Name                  = "extensionPointsListBox";
     this.extensionPointsListBox.Size                  = new System.Drawing.Size(432, 82);
     this.extensionPointsListBox.TabIndex              = 6;
     this.extensionPointsListBox.SelectedIndexChanged += new System.EventHandler(this.extensionPointsListBox_SelectedIndexChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.extensionPointDescriptionTextBox);
     this.groupBox1.Controls.Add(this.extensionPointsListBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(5, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(450, 165);
     this.groupBox1.TabIndex = 7;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Extension Points";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.propertiesTextBox);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.extensionDescriptionTextBox);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.extensionListView);
     this.groupBox2.Location = new System.Drawing.Point(5, 184);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(450, 230);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Installed Extensions";
     //
     // propertiesTextBox
     //
     this.propertiesTextBox.Location  = new System.Drawing.Point(7, 179);
     this.propertiesTextBox.Multiline = true;
     this.propertiesTextBox.Name      = "propertiesTextBox";
     this.propertiesTextBox.Size      = new System.Drawing.Size(432, 41);
     this.propertiesTextBox.TabIndex  = 6;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(7, 157);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(54, 13);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Properties";
     //
     // extensionDescriptionTextBox
     //
     this.extensionDescriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.extensionDescriptionTextBox.Location  = new System.Drawing.Point(7, 115);
     this.extensionDescriptionTextBox.Multiline = true;
     this.extensionDescriptionTextBox.Name      = "extensionDescriptionTextBox";
     this.extensionDescriptionTextBox.Size      = new System.Drawing.Size(432, 31);
     this.extensionDescriptionTextBox.TabIndex  = 4;
     //
     // label2
     //
     this.label2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.Location = new System.Drawing.Point(6, 94);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(211, 16);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Description:";
     //
     // ExtensionDialog
     //
     this.ClientSize = new System.Drawing.Size(464, 449);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.button1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "ExtensionDialog";
     this.ShowInTaskbar = false;
     this.Text          = "Engine Extensions";
     this.Load         += new System.EventHandler(this.ExtensionDialog_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(QuickStartForm));
     this.groupBox = new System.Windows.Forms.GroupBox();
     this.viewWalkthroughButton = new System.Windows.Forms.Button();
     this.quitButton            = new System.Windows.Forms.Button();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.label2          = new System.Windows.Forms.Label();
     this.logoPictureBox  = new System.Windows.Forms.PictureBox();
     this.resultsTextBox  = new System.Windows.Forms.TextBox();
     this.encryptButton   = new System.Windows.Forms.Button();
     this.decryptButton   = new System.Windows.Forms.Button();
     this.getHashButton   = new System.Windows.Forms.Button();
     this.checkTextButton = new System.Windows.Forms.Button();
     this.groupBox.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox
     //
     this.groupBox.AccessibleDescription = resources.GetString("groupBox.AccessibleDescription");
     this.groupBox.AccessibleName        = resources.GetString("groupBox.AccessibleName");
     this.groupBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("groupBox.Anchor")));
     this.groupBox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("groupBox.BackgroundImage")));
     this.groupBox.Controls.Add(this.viewWalkthroughButton);
     this.groupBox.Controls.Add(this.quitButton);
     this.groupBox.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("groupBox.Dock")));
     this.groupBox.Enabled     = ((bool)(resources.GetObject("groupBox.Enabled")));
     this.groupBox.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.groupBox.Font        = ((System.Drawing.Font)(resources.GetObject("groupBox.Font")));
     this.groupBox.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("groupBox.ImeMode")));
     this.groupBox.Location    = ((System.Drawing.Point)(resources.GetObject("groupBox.Location")));
     this.groupBox.Name        = "groupBox";
     this.groupBox.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("groupBox.RightToLeft")));
     this.groupBox.Size        = ((System.Drawing.Size)(resources.GetObject("groupBox.Size")));
     this.groupBox.TabIndex    = ((int)(resources.GetObject("groupBox.TabIndex")));
     this.groupBox.TabStop     = false;
     this.groupBox.Text        = resources.GetString("groupBox.Text");
     this.groupBox.Visible     = ((bool)(resources.GetObject("groupBox.Visible")));
     //
     // viewWalkthroughButton
     //
     this.viewWalkthroughButton.AccessibleDescription = resources.GetString("viewWalkthroughButton.AccessibleDescription");
     this.viewWalkthroughButton.AccessibleName        = resources.GetString("viewWalkthroughButton.AccessibleName");
     this.viewWalkthroughButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("viewWalkthroughButton.Anchor")));
     this.viewWalkthroughButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("viewWalkthroughButton.BackgroundImage")));
     this.viewWalkthroughButton.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("viewWalkthroughButton.Dock")));
     this.viewWalkthroughButton.Enabled         = ((bool)(resources.GetObject("viewWalkthroughButton.Enabled")));
     this.viewWalkthroughButton.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("viewWalkthroughButton.FlatStyle")));
     this.viewWalkthroughButton.Font            = ((System.Drawing.Font)(resources.GetObject("viewWalkthroughButton.Font")));
     this.viewWalkthroughButton.Image           = ((System.Drawing.Image)(resources.GetObject("viewWalkthroughButton.Image")));
     this.viewWalkthroughButton.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("viewWalkthroughButton.ImageAlign")));
     this.viewWalkthroughButton.ImageIndex      = ((int)(resources.GetObject("viewWalkthroughButton.ImageIndex")));
     this.viewWalkthroughButton.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("viewWalkthroughButton.ImeMode")));
     this.viewWalkthroughButton.Location        = ((System.Drawing.Point)(resources.GetObject("viewWalkthroughButton.Location")));
     this.viewWalkthroughButton.Name            = "viewWalkthroughButton";
     this.viewWalkthroughButton.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("viewWalkthroughButton.RightToLeft")));
     this.viewWalkthroughButton.Size            = ((System.Drawing.Size)(resources.GetObject("viewWalkthroughButton.Size")));
     this.viewWalkthroughButton.TabIndex        = ((int)(resources.GetObject("viewWalkthroughButton.TabIndex")));
     this.viewWalkthroughButton.Text            = resources.GetString("viewWalkthroughButton.Text");
     this.viewWalkthroughButton.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("viewWalkthroughButton.TextAlign")));
     this.viewWalkthroughButton.Visible         = ((bool)(resources.GetObject("viewWalkthroughButton.Visible")));
     this.viewWalkthroughButton.Click          += new System.EventHandler(this.viewWalkthroughButton_Click);
     //
     // quitButton
     //
     this.quitButton.AccessibleDescription = resources.GetString("quitButton.AccessibleDescription");
     this.quitButton.AccessibleName        = resources.GetString("quitButton.AccessibleName");
     this.quitButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("quitButton.Anchor")));
     this.quitButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("quitButton.BackgroundImage")));
     this.quitButton.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.quitButton.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("quitButton.Dock")));
     this.quitButton.Enabled         = ((bool)(resources.GetObject("quitButton.Enabled")));
     this.quitButton.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("quitButton.FlatStyle")));
     this.quitButton.Font            = ((System.Drawing.Font)(resources.GetObject("quitButton.Font")));
     this.quitButton.Image           = ((System.Drawing.Image)(resources.GetObject("quitButton.Image")));
     this.quitButton.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("quitButton.ImageAlign")));
     this.quitButton.ImageIndex      = ((int)(resources.GetObject("quitButton.ImageIndex")));
     this.quitButton.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("quitButton.ImeMode")));
     this.quitButton.Location        = ((System.Drawing.Point)(resources.GetObject("quitButton.Location")));
     this.quitButton.Name            = "quitButton";
     this.quitButton.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("quitButton.RightToLeft")));
     this.quitButton.Size            = ((System.Drawing.Size)(resources.GetObject("quitButton.Size")));
     this.quitButton.TabIndex        = ((int)(resources.GetObject("quitButton.TabIndex")));
     this.quitButton.Text            = resources.GetString("quitButton.Text");
     this.quitButton.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("quitButton.TextAlign")));
     this.quitButton.Visible         = ((bool)(resources.GetObject("quitButton.Visible")));
     this.quitButton.Click          += new System.EventHandler(this.quitButton_Click);
     //
     // groupBox1
     //
     this.groupBox1.AccessibleDescription = resources.GetString("groupBox1.AccessibleDescription");
     this.groupBox1.AccessibleName        = resources.GetString("groupBox1.AccessibleName");
     this.groupBox1.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("groupBox1.Anchor")));
     this.groupBox1.BackColor       = System.Drawing.Color.White;
     this.groupBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("groupBox1.BackgroundImage")));
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.logoPictureBox);
     this.groupBox1.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("groupBox1.Dock")));
     this.groupBox1.Enabled     = ((bool)(resources.GetObject("groupBox1.Enabled")));
     this.groupBox1.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Font        = ((System.Drawing.Font)(resources.GetObject("groupBox1.Font")));
     this.groupBox1.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("groupBox1.ImeMode")));
     this.groupBox1.Location    = ((System.Drawing.Point)(resources.GetObject("groupBox1.Location")));
     this.groupBox1.Name        = "groupBox1";
     this.groupBox1.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("groupBox1.RightToLeft")));
     this.groupBox1.Size        = ((System.Drawing.Size)(resources.GetObject("groupBox1.Size")));
     this.groupBox1.TabIndex    = ((int)(resources.GetObject("groupBox1.TabIndex")));
     this.groupBox1.TabStop     = false;
     this.groupBox1.Text        = resources.GetString("groupBox1.Text");
     this.groupBox1.Visible     = ((bool)(resources.GetObject("groupBox1.Visible")));
     //
     // label2
     //
     this.label2.AccessibleDescription = resources.GetString("label2.AccessibleDescription");
     this.label2.AccessibleName        = resources.GetString("label2.AccessibleName");
     this.label2.Anchor      = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("label2.Anchor")));
     this.label2.AutoSize    = ((bool)(resources.GetObject("label2.AutoSize")));
     this.label2.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("label2.Dock")));
     this.label2.Enabled     = ((bool)(resources.GetObject("label2.Enabled")));
     this.label2.Font        = ((System.Drawing.Font)(resources.GetObject("label2.Font")));
     this.label2.Image       = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
     this.label2.ImageAlign  = ((System.Drawing.ContentAlignment)(resources.GetObject("label2.ImageAlign")));
     this.label2.ImageIndex  = ((int)(resources.GetObject("label2.ImageIndex")));
     this.label2.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("label2.ImeMode")));
     this.label2.Location    = ((System.Drawing.Point)(resources.GetObject("label2.Location")));
     this.label2.Name        = "label2";
     this.label2.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("label2.RightToLeft")));
     this.label2.Size        = ((System.Drawing.Size)(resources.GetObject("label2.Size")));
     this.label2.TabIndex    = ((int)(resources.GetObject("label2.TabIndex")));
     this.label2.Text        = resources.GetString("label2.Text");
     this.label2.TextAlign   = ((System.Drawing.ContentAlignment)(resources.GetObject("label2.TextAlign")));
     this.label2.Visible     = ((bool)(resources.GetObject("label2.Visible")));
     //
     // logoPictureBox
     //
     this.logoPictureBox.AccessibleDescription = resources.GetString("logoPictureBox.AccessibleDescription");
     this.logoPictureBox.AccessibleName        = resources.GetString("logoPictureBox.AccessibleName");
     this.logoPictureBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("logoPictureBox.Anchor")));
     this.logoPictureBox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.BackgroundImage")));
     this.logoPictureBox.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("logoPictureBox.Dock")));
     this.logoPictureBox.Enabled         = ((bool)(resources.GetObject("logoPictureBox.Enabled")));
     this.logoPictureBox.Font            = ((System.Drawing.Font)(resources.GetObject("logoPictureBox.Font")));
     this.logoPictureBox.Image           = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
     this.logoPictureBox.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("logoPictureBox.ImeMode")));
     this.logoPictureBox.Location        = ((System.Drawing.Point)(resources.GetObject("logoPictureBox.Location")));
     this.logoPictureBox.Name            = "logoPictureBox";
     this.logoPictureBox.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("logoPictureBox.RightToLeft")));
     this.logoPictureBox.Size            = ((System.Drawing.Size)(resources.GetObject("logoPictureBox.Size")));
     this.logoPictureBox.SizeMode        = ((System.Windows.Forms.PictureBoxSizeMode)(resources.GetObject("logoPictureBox.SizeMode")));
     this.logoPictureBox.TabIndex        = ((int)(resources.GetObject("logoPictureBox.TabIndex")));
     this.logoPictureBox.TabStop         = false;
     this.logoPictureBox.Text            = resources.GetString("logoPictureBox.Text");
     this.logoPictureBox.Visible         = ((bool)(resources.GetObject("logoPictureBox.Visible")));
     //
     // resultsTextBox
     //
     this.resultsTextBox.AccessibleDescription = resources.GetString("resultsTextBox.AccessibleDescription");
     this.resultsTextBox.AccessibleName        = resources.GetString("resultsTextBox.AccessibleName");
     this.resultsTextBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("resultsTextBox.Anchor")));
     this.resultsTextBox.AutoSize        = ((bool)(resources.GetObject("resultsTextBox.AutoSize")));
     this.resultsTextBox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("resultsTextBox.BackgroundImage")));
     this.resultsTextBox.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("resultsTextBox.Dock")));
     this.resultsTextBox.Enabled         = ((bool)(resources.GetObject("resultsTextBox.Enabled")));
     this.resultsTextBox.Font            = ((System.Drawing.Font)(resources.GetObject("resultsTextBox.Font")));
     this.resultsTextBox.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("resultsTextBox.ImeMode")));
     this.resultsTextBox.Location        = ((System.Drawing.Point)(resources.GetObject("resultsTextBox.Location")));
     this.resultsTextBox.MaxLength       = ((int)(resources.GetObject("resultsTextBox.MaxLength")));
     this.resultsTextBox.Multiline       = ((bool)(resources.GetObject("resultsTextBox.Multiline")));
     this.resultsTextBox.Name            = "resultsTextBox";
     this.resultsTextBox.PasswordChar    = ((char)(resources.GetObject("resultsTextBox.PasswordChar")));
     this.resultsTextBox.ReadOnly        = true;
     this.resultsTextBox.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("resultsTextBox.RightToLeft")));
     this.resultsTextBox.ScrollBars      = ((System.Windows.Forms.ScrollBars)(resources.GetObject("resultsTextBox.ScrollBars")));
     this.resultsTextBox.Size            = ((System.Drawing.Size)(resources.GetObject("resultsTextBox.Size")));
     this.resultsTextBox.TabIndex        = ((int)(resources.GetObject("resultsTextBox.TabIndex")));
     this.resultsTextBox.TabStop         = false;
     this.resultsTextBox.Text            = resources.GetString("resultsTextBox.Text");
     this.resultsTextBox.TextAlign       = ((System.Windows.Forms.HorizontalAlignment)(resources.GetObject("resultsTextBox.TextAlign")));
     this.resultsTextBox.Visible         = ((bool)(resources.GetObject("resultsTextBox.Visible")));
     this.resultsTextBox.WordWrap        = ((bool)(resources.GetObject("resultsTextBox.WordWrap")));
     //
     // encryptButton
     //
     this.encryptButton.AccessibleDescription = resources.GetString("encryptButton.AccessibleDescription");
     this.encryptButton.AccessibleName        = resources.GetString("encryptButton.AccessibleName");
     this.encryptButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("encryptButton.Anchor")));
     this.encryptButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("encryptButton.BackgroundImage")));
     this.encryptButton.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("encryptButton.Dock")));
     this.encryptButton.Enabled         = ((bool)(resources.GetObject("encryptButton.Enabled")));
     this.encryptButton.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("encryptButton.FlatStyle")));
     this.encryptButton.Font            = ((System.Drawing.Font)(resources.GetObject("encryptButton.Font")));
     this.encryptButton.Image           = ((System.Drawing.Image)(resources.GetObject("encryptButton.Image")));
     this.encryptButton.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("encryptButton.ImageAlign")));
     this.encryptButton.ImageIndex      = ((int)(resources.GetObject("encryptButton.ImageIndex")));
     this.encryptButton.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("encryptButton.ImeMode")));
     this.encryptButton.Location        = ((System.Drawing.Point)(resources.GetObject("encryptButton.Location")));
     this.encryptButton.Name            = "encryptButton";
     this.encryptButton.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("encryptButton.RightToLeft")));
     this.encryptButton.Size            = ((System.Drawing.Size)(resources.GetObject("encryptButton.Size")));
     this.encryptButton.TabIndex        = ((int)(resources.GetObject("encryptButton.TabIndex")));
     this.encryptButton.Text            = resources.GetString("encryptButton.Text");
     this.encryptButton.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("encryptButton.TextAlign")));
     this.encryptButton.Visible         = ((bool)(resources.GetObject("encryptButton.Visible")));
     this.encryptButton.Click          += new System.EventHandler(this.encryptButton_Click);
     //
     // decryptButton
     //
     this.decryptButton.AccessibleDescription = resources.GetString("decryptButton.AccessibleDescription");
     this.decryptButton.AccessibleName        = resources.GetString("decryptButton.AccessibleName");
     this.decryptButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("decryptButton.Anchor")));
     this.decryptButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("decryptButton.BackgroundImage")));
     this.decryptButton.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("decryptButton.Dock")));
     this.decryptButton.Enabled         = ((bool)(resources.GetObject("decryptButton.Enabled")));
     this.decryptButton.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("decryptButton.FlatStyle")));
     this.decryptButton.Font            = ((System.Drawing.Font)(resources.GetObject("decryptButton.Font")));
     this.decryptButton.Image           = ((System.Drawing.Image)(resources.GetObject("decryptButton.Image")));
     this.decryptButton.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("decryptButton.ImageAlign")));
     this.decryptButton.ImageIndex      = ((int)(resources.GetObject("decryptButton.ImageIndex")));
     this.decryptButton.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("decryptButton.ImeMode")));
     this.decryptButton.Location        = ((System.Drawing.Point)(resources.GetObject("decryptButton.Location")));
     this.decryptButton.Name            = "decryptButton";
     this.decryptButton.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("decryptButton.RightToLeft")));
     this.decryptButton.Size            = ((System.Drawing.Size)(resources.GetObject("decryptButton.Size")));
     this.decryptButton.TabIndex        = ((int)(resources.GetObject("decryptButton.TabIndex")));
     this.decryptButton.Text            = resources.GetString("decryptButton.Text");
     this.decryptButton.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("decryptButton.TextAlign")));
     this.decryptButton.Visible         = ((bool)(resources.GetObject("decryptButton.Visible")));
     this.decryptButton.Click          += new System.EventHandler(this.decryptButton_Click);
     //
     // getHashButton
     //
     this.getHashButton.AccessibleDescription = resources.GetString("getHashButton.AccessibleDescription");
     this.getHashButton.AccessibleName        = resources.GetString("getHashButton.AccessibleName");
     this.getHashButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("getHashButton.Anchor")));
     this.getHashButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("getHashButton.BackgroundImage")));
     this.getHashButton.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("getHashButton.Dock")));
     this.getHashButton.Enabled         = ((bool)(resources.GetObject("getHashButton.Enabled")));
     this.getHashButton.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("getHashButton.FlatStyle")));
     this.getHashButton.Font            = ((System.Drawing.Font)(resources.GetObject("getHashButton.Font")));
     this.getHashButton.Image           = ((System.Drawing.Image)(resources.GetObject("getHashButton.Image")));
     this.getHashButton.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("getHashButton.ImageAlign")));
     this.getHashButton.ImageIndex      = ((int)(resources.GetObject("getHashButton.ImageIndex")));
     this.getHashButton.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("getHashButton.ImeMode")));
     this.getHashButton.Location        = ((System.Drawing.Point)(resources.GetObject("getHashButton.Location")));
     this.getHashButton.Name            = "getHashButton";
     this.getHashButton.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("getHashButton.RightToLeft")));
     this.getHashButton.Size            = ((System.Drawing.Size)(resources.GetObject("getHashButton.Size")));
     this.getHashButton.TabIndex        = ((int)(resources.GetObject("getHashButton.TabIndex")));
     this.getHashButton.Text            = resources.GetString("getHashButton.Text");
     this.getHashButton.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("getHashButton.TextAlign")));
     this.getHashButton.Visible         = ((bool)(resources.GetObject("getHashButton.Visible")));
     this.getHashButton.Click          += new System.EventHandler(this.getHashButton_Click);
     //
     // checkTextButton
     //
     this.checkTextButton.AccessibleDescription = resources.GetString("checkTextButton.AccessibleDescription");
     this.checkTextButton.AccessibleName        = resources.GetString("checkTextButton.AccessibleName");
     this.checkTextButton.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("checkTextButton.Anchor")));
     this.checkTextButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("checkTextButton.BackgroundImage")));
     this.checkTextButton.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("checkTextButton.Dock")));
     this.checkTextButton.Enabled         = ((bool)(resources.GetObject("checkTextButton.Enabled")));
     this.checkTextButton.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("checkTextButton.FlatStyle")));
     this.checkTextButton.Font            = ((System.Drawing.Font)(resources.GetObject("checkTextButton.Font")));
     this.checkTextButton.Image           = ((System.Drawing.Image)(resources.GetObject("checkTextButton.Image")));
     this.checkTextButton.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("checkTextButton.ImageAlign")));
     this.checkTextButton.ImageIndex      = ((int)(resources.GetObject("checkTextButton.ImageIndex")));
     this.checkTextButton.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("checkTextButton.ImeMode")));
     this.checkTextButton.Location        = ((System.Drawing.Point)(resources.GetObject("checkTextButton.Location")));
     this.checkTextButton.Name            = "checkTextButton";
     this.checkTextButton.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("checkTextButton.RightToLeft")));
     this.checkTextButton.Size            = ((System.Drawing.Size)(resources.GetObject("checkTextButton.Size")));
     this.checkTextButton.TabIndex        = ((int)(resources.GetObject("checkTextButton.TabIndex")));
     this.checkTextButton.Text            = resources.GetString("checkTextButton.Text");
     this.checkTextButton.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("checkTextButton.TextAlign")));
     this.checkTextButton.Visible         = ((bool)(resources.GetObject("checkTextButton.Visible")));
     this.checkTextButton.Click          += new System.EventHandler(this.checkTextButton_Click);
     //
     // QuickStartForm
     //
     this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
     this.AccessibleName        = resources.GetString("$this.AccessibleName");
     this.AutoScroll            = ((bool)(resources.GetObject("$this.AutoScroll")));
     this.AutoScrollMargin      = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMargin")));
     this.AutoScrollMinSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMinSize")));
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.CancelButton          = this.quitButton;
     this.ClientSize            = ((System.Drawing.Size)(resources.GetObject("$this.ClientSize")));
     this.Controls.Add(this.checkTextButton);
     this.Controls.Add(this.getHashButton);
     this.Controls.Add(this.decryptButton);
     this.Controls.Add(this.groupBox);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.resultsTextBox);
     this.Controls.Add(this.encryptButton);
     this.Enabled       = ((bool)(resources.GetObject("$this.Enabled")));
     this.Font          = ((System.Drawing.Font)(resources.GetObject("$this.Font")));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.ImeMode       = ((System.Windows.Forms.ImeMode)(resources.GetObject("$this.ImeMode")));
     this.Location      = ((System.Drawing.Point)(resources.GetObject("$this.Location")));
     this.MaximizeBox   = false;
     this.MaximumSize   = ((System.Drawing.Size)(resources.GetObject("$this.MaximumSize")));
     this.MinimumSize   = ((System.Drawing.Size)(resources.GetObject("$this.MinimumSize")));
     this.Name          = "QuickStartForm";
     this.RightToLeft   = ((System.Windows.Forms.RightToLeft)(resources.GetObject("$this.RightToLeft")));
     this.StartPosition = ((System.Windows.Forms.FormStartPosition)(resources.GetObject("$this.StartPosition")));
     this.Text          = resources.GetString("$this.Text");
     this.Load         += new System.EventHandler(this.QuickStartForm_Load);
     this.groupBox.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }