Inheritance: ButtonBase
        public CheckableGroupBox()
        {
            // This call is required by the Windows Form Designer.
            InitializeComponent();

            _checkBox = new CheckBox();
            _checkBox.Name = "checkBox";
            _checkBox.TabIndex = 1;
            _checkBox.Text = string.Empty;
            _checkBox.Checked = false;
            _checkBox.AutoCheck = true;
            _checkBox.Location = new Point(8, 0);
            _checkBox.Size = new Size(16, 16);
            _checkBox.CheckedChanged += new EventHandler(_checkBox_CheckedChanged);
            _checkBox.Click += new EventHandler(_checkBox_Click);

            _radioButton = new RadioButton();
            _radioButton.Name = "radioButton";
            _radioButton.TabIndex = 1;
            _radioButton.Text = string.Empty;
            _radioButton.Checked = false;
            _radioButton.AutoCheck = false;
            _radioButton.Location = new Point(8, 0);
            _radioButton.Size = new Size(16, 16);
            _radioButton.CheckedChanged +=new EventHandler(_radioButton_CheckedChanged);
            _radioButton.Click += new EventHandler(_radioButton_Click);

            this.Controls.Add(_checkBox);
            this.Controls.Add(_radioButton);
        }
Example #2
0
		public osd_screen (int num, OSD aosd)
		{
			number=num;
			osd=aosd;
			
			num+=1;
			
			this.tabPage = new System.Windows.Forms.TabPage();		
			this.panelItems=new Panel[64];
			this.panelItems_default = new Panel[64];
			this.LIST_items=new System.Windows.Forms.TreeView();
			this.rbtSortCategory = new System.Windows.Forms.RadioButton();
            this.rbtSortAlphabetic = new System.Windows.Forms.RadioButton();
			this.groupBox = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.NUM_Y = new System.Windows.Forms.NumericUpDown();
            this.NUM_X = new System.Windows.Forms.NumericUpDown();
			this.pictureBox = new System.Windows.Forms.PictureBox();
			this.chkSign = new System.Windows.Forms.CheckBox();
			
			this.tabPage.SuspendLayout();
			this.groupBox.SuspendLayout();
			this.pictureBox.SuspendLayout();
		}
Example #3
0
        public static string fcnBuildSQL(string strSQL, string strGroupBy, RadioButton _radSpecificEvent, ComboBox _cboSpecificEvent, TextBox _txtStartDate, TextBox _txtEndDate, ComboBox _cboProgram)
        {
            try
            {
                strSQL = strSQL + "WHERE tlkpCampName.blnUpload=True AND " +
                                    "tlkpCampName.lngProgramTypeID=" + (int)clsGlobalEnum.conPROGRAMTYPE.GroupEvent + " ";

                if (_radSpecificEvent.Checked) strSQL = strSQL + "AND tblGGCC.lngGGCCID=" + ((clsCboItem)_cboSpecificEvent.SelectedItem).ID + " ";

                if (_txtStartDate.Text != "")
                {
                    DateTime dteStart;
                    DateTime dteEnd;

                    DateTime.TryParse(_txtStartDate.Text, out dteStart);
                    DateTime.TryParse(_txtEndDate.Text, out dteEnd);

                    strSQL = strSQL + "AND DateDiff('d', #" + dteStart.ToString("MM/dd/yyyy") + "#, tblGGCC.dteStartDate)>=0 AND DateDiff('d', tblGGCC.dteStartDate, #" + dteEnd.ToString("MM/dd/yyyy") + "#)>=0 ";
                }

                if (_cboProgram.SelectedIndex >= 0) strSQL = strSQL + "AND tblGGCC.lngProgramTypeID=" + ((clsCboItem)_cboProgram.SelectedItem).ID + " ";

                strSQL = strSQL + strGroupBy;
            }
            catch (Exception ex)
            {
                clsErr.subLogErr("frmUploadEvents.fcnBuildSQL", ex);
            }

            return strSQL;
        }
Example #4
0
        private void Form1_Load(object sender, EventArgs e)
        {
           
            System.IO.StreamReader sr = new System.IO.StreamReader("config.txt",System.Text.Encoding.GetEncoding("gb2312"));
            
            while (!sr.EndOfStream)
            {

                //Panel p = new Panel();
                RadioButton p = new RadioButton();
                
                Padding p1 = new Padding();
                p1.Left = 10;
                p1.Top = 10;
                p.Margin = p1;
                flowLayoutPanel1.Controls.Add(p);
                String str=sr.ReadLine();
              //  DHCamera dhc1 = new DHCamera();
                CameraData cd = new CameraData();
                p.Text = str.Split('|')[0];
                cd.Handle = p.Handle;
                cd.IP = str.Split('|')[0];
                cd.Port =Convert.ToInt32( str.Split('|')[1]) ;
                cd.UserName = str.Split('|')[2];
                cd.Pwd = str.Split('|')[3];
                cd.Code= str.Split('|')[4];
                cd.ImagesPath= str.Split('|')[5];
                //dhc1.Init(cd);
                listcamera.Add(cd);
            }
            sr.Close();

        }
Example #5
0
        private OptionsBox( string choicesDescription, Option[] options )
        {
            InitializeComponent();

            Text = Application.ProductName;

            int descriptionHeight = _description.Height;

            _description.Text = choicesDescription;
            _pictureBox.Image = SystemIcons.Question.ToBitmap();

            Point pt = new Point( _description.Left + 2, _description.Bottom + 20 );
            int diff = _description.Height - descriptionHeight + _okButton.Height;
            int tabIndex = 1;

            foreach( Option option in options )
            {
                RadioButton rb = new RadioButton();

                rb.AutoSize = true;
                rb.Location = pt;
                rb.Name = "radioButton" + tabIndex.ToString();
                rb.Tag = option;
                rb.TabIndex = tabIndex++;
                rb.TabStop = true;
                rb.Text = option.Description;
                rb.UseVisualStyleBackColor = true;
                Controls.Add( rb );
                rb.Visible = true;
                pt.Y += rb.Size.Height + 2;
                diff += rb.Size.Height + 2;
            }

            Size = new Size( Size.Width, Size.Height + diff );
        }
        private void frmDemoRageMessageBox_Load(object sender, EventArgs e)
        {
            foreach (var option in Enum.GetValues(typeof(RageMessageBox.RageMessageBoxButtons)))
            {
                var radioButton = new RadioButton
                {
                    Tag = option,
                    Text = option.ToString(),
                    Padding = new Padding(1),
                    Margin = new Padding(1),
                };

                optionsMessageBoxButtons.Controls.Add(radioButton);
                radioButton.Checked = true;
            }

            foreach (var option in Enum.GetValues(typeof(RageMessageBox.RageMessageBoxIcon)))
            {
                var radioButton = new RadioButton
                {
                    Tag = option,
                    Text = option.ToString(),
                };

                optionsMessageBoxIcons.Controls.Add(radioButton);
                radioButton.Checked = true;
            }
        }
Example #7
0
        /// <summary>
        /// Cette méthode crée des controles de type chckbox ou radio button dans un controle de type panel.
        /// Elle va chercher les données dans la base de données et crée autant de controles (les uns au dessous des autres
        /// qu'il y a de lignes renvoyées par la base de données.
        /// </summary>
        /// <param name="UneForme">Le formulaire concerné</param> 
        /// <param name="UneConnexion">L'objet connexion à utiliser pour la connexion à la BD</param> 
        /// <param name="pUneTable">Le nom de la source de données qui va fournir les données. Il s'agit en fait d'une vue de type
        /// VXXXXOn ou XXXX représente le nom de la tabl à partir de laquelle la vue est créée. n représente un numéro de séquence</param>  
        /// <param name="pPrefixe">les noms des controles sont standard : NomControle_XX
        ///                                         ou XX estl'id de l'enregistrement récupéré dans la vue qui
        ///                                         sert de source de données</param>
        /// <param name="UnPanel">panel ou groupbox dans lequel on va créer les controles</param>
        /// <param name="unTypeControle">type de controle à créer : checkbox ou radiobutton</param>
        /// <param name="callback"> Le pointeur de fonction. En fait le pointeur sur la fonction qui réagira à l'événement déclencheur </param>
        public static void CreerDesControles(Form UneForme, Bdd UneConnexion, String pUneTable, String pPrefixe, ScrollableControl UnPanel, String unTypeControle, Action<object, EventArgs> callback)
        {
            DataTable UneTable = UneConnexion.ObtenirDonnesOracle(pUneTable);
            // on va récupérer les statuts dans un datatable puis on va parcourir les lignes(rows) de ce datatable pour
            // construire dynamiquement les boutons radio pour le statut de l'intervenant dans son atelier

            Int16 i = 0;
            foreach (DataRow UneLigne in UneTable.Rows)
            {
                //object UnControle = Activator.CreateInstance(object unobjet, unTypeControle);
                //UnControle=Convert.ChangeType(UnControle, TypeC);

                if (unTypeControle == "CheckBox")
                {
                    CheckBox UnControle = new CheckBox();
                    AffecterControle(UneForme, UnPanel, UnControle, pPrefixe, UneLigne, i++, callback);

                }
                else if (unTypeControle == "RadioButton")
                {
                    RadioButton UnControle = new RadioButton();
                    AffecterControle(UneForme, UnPanel, UnControle, pPrefixe, UneLigne, i++, callback);
                    UnControle.CheckedChanged += new System.EventHandler(callback);
                }
                i++;
            }
            UnPanel.Height = 20 * i + 5;
        }
        private void btnKaydet_Click(object sender, EventArgs e)
        {
            int soruID = 0;
            int cevapPanel = 0;

            for (int i = 0; i < panel1.Controls.Count; i++)
            {
                if (panel1.Controls[i] is Label)
                {
                    for (int l = 0; l < pnl[cevapPanel].Controls.Count; l++)
                    {
                        if (pnl[cevapPanel].Controls[l] is RadioButton)
                        {
                            cevaplar = (RadioButton)pnl[cevapPanel].Controls[l];
                        }
                        if (cevaplar.Checked == true)
                        {
                            veritabani.BaglantiKoptuysaAc();
                            veritabani.kmt.Connection = veritabani.baglanti;
                            veritabani.kmt.CommandText = "INSERT INTO AnketCevaplar(SoruID,Cevap) VALUES (" + soruIDler[soruID] + ",'" + cevaplar.Text + "')";
                            veritabani.kmt.ExecuteNonQuery();
                            veritabani.baglanti.Close();

                        }
                    }
                    cevapPanel++;
                    soruID++;
                }
            }
            //this.Refresh();
            this.Close();
        }
Example #9
0
 /*return true when one radio button is checked else false*/
 public bool check_radioButton()
 {
     if (radioButton1.Enabled == true && radioButton1.Checked) {
         HiAddr = 0xBB;
         LoAddr = 0x22;
         selected = radioButton1;
         return true;
     }
     else if (radioButton2.Enabled == true && radioButton2.Checked) {
         HiAddr = 0xCC;
         LoAddr = 0x33;
         selected = radioButton2;
         return true;
     }
     else if(radioButton3.Enabled == true && radioButton3.Checked) {
         HiAddr = 0xDD;
         LoAddr = 0x44;
         selected = radioButton3;
         return true;
     }
     else if(radioButton4.Enabled == true && radioButton4.Checked) {
         HiAddr = 0xEE;
         LoAddr = 0x55;
         selected = radioButton4;
         return true;
     }
     else if(radioButton5.Enabled == true && radioButton5.Checked) {
         HiAddr = 0xE1;
         LoAddr = 0x66;
         selected = radioButton5;
         return true;
     }
     else return false;
 }
Example #10
0
        public Form1()
        {
            InitializeComponent();

            // establish the  buttons list
            buttons = new List<Button>();

            // create a group box and hide it
            hiddenBox = new GroupBox();
            hiddenBox.Visible = false;

            // add three radio buttons to the hidden group box
            rb1 = new RadioButton();
            rb1.CheckedChanged += new EventHandler(Radio_CheckedChanged);
            hiddenBox.Controls.Add(rb1);

            rb4 = new RadioButton();
            rb4.CheckedChanged += new EventHandler(Radio_CheckedChanged);
            hiddenBox.Controls.Add(rb4);

            rb6 = new RadioButton();
            rb6.CheckedChanged += new EventHandler(Radio_CheckedChanged);
            hiddenBox.Controls.Add(rb6);

            rb9 = new RadioButton();
            rb9.CheckedChanged += new EventHandler(Radio_CheckedChanged);
            hiddenBox.Controls.Add(rb9);
        }
Example #11
0
 private void insertRadioButtons()
 {
     addControl((y11 = new RadioButton()), 1, 1, AnchorStyles.None,1, "Year 11");
     addControl((y12 = new RadioButton()), 2, 1, AnchorStyles.None,1, "Year 12");
     y11.Click += setSelected;
     y12.Click += setSelected;
 }
Example #12
0
        void changePage()
        {
            System.Drawing.Size size = new System.Drawing.Size(371, 24);
            System.Drawing.Point pos = new Point(3, 3);

            var x = res.selectedOprosnik.elements[page];
            richTextBox1quest.Text = x.question;
            panel1.Controls.Clear();
            foreach (string s in x.answers)
            {
                if (x.IsOneVariant) //radio
                {
                    RadioButton rb = new RadioButton();
                    rb.Location = pos;
                    rb.Size = size;
                    rb.Text = s;
                    this.panel1.Controls.Add(rb);
                }

                else //check
                {
                    CheckBox ch = new CheckBox();
                    ch.Location = pos;
                    ch.Size = size;
                    ch.Text = s;
                    this.panel1.Controls.Add(ch);
                }

                pos.Y += 30;
            }

            progressBar1.Value = (page+1) * 100 / res.selectedOprosnik.elements.Count();
        }
Example #13
0
 public static int GetPhai(RadioButton rdnam,RadioButton rdnu)
 {
     if (rdnam.Checked == true)
         return 1;
     else
         return 0;
 }
Example #14
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Initializes a new instance of the <see cref="T:EditQuestion"/> class.
		/// </summary>
		/// ------------------------------------------------------------------------------------
		public EditQuestionDlg(TranslatablePhrase question)
		{
			m_question = question;
			InitializeComponent();
			m_txtOriginal.Text = question.OriginalPhrase;
			m_txtModified.Text = question.PhraseInUse;
			Question q = question.QuestionInfo;
			if (q != null && q.AlternateForms != null)
			{
				System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditQuestionDlg));

				foreach (string alternateForm in q.AlternateForms.Skip(1))
				{
					RadioButton newBtn = new RadioButton();
					m_pnlAlternatives.Controls.Add(newBtn);
					resources.ApplyResources(newBtn, "m_rdoAlternative");
					m_pnlAlternatives.SetFlowBreak(newBtn, true);
					newBtn.Text = alternateForm;
					newBtn.CheckedChanged += m_rdoAlternative_CheckedChanged;
				}
				m_rdoAlternative.Text = q.AlternateForms.First();
				return;
			}
			m_pnlAlternatives.Hide();
		}
 public OptionFileRadioButtonAdaptor(RadioButton cbValue, string key, bool defaultValue)
   : base(key)
 {
   this.cbValue = cbValue;
   this.key = key;
   this.defaultValue = defaultValue;
 }
Example #16
0
        // Radiobuttons
        public void InitializeRadioButtons()
        {
            this.groupBox11 = new System.Windows.Forms.GroupBox();
            this.radioButton21 = new System.Windows.Forms.RadioButton();
            this.radioButton11 = new System.Windows.Forms.RadioButton();
            // adding members into the groupbox

            this.groupBox11.Controls.Add(this.radioButton11);
            this.groupBox11.Controls.Add(this.radioButton21);
            this.groupBox11.Location = new System.Drawing.Point(1000, 200);
            this.groupBox11.Size = new System.Drawing.Size(200, 100);
            this.groupBox11.Text = "Radio Buttons";

            this.radioButton21.Location = new System.Drawing.Point(1000, 250);
            this.radioButton21.Size = new System.Drawing.Size(67, 17);
            this.radioButton21.Text = "Choice 2";

            this.radioButton11.Location = new System.Drawing.Point(1000, 350);
            this.radioButton11.Name = "radioButton1";
            this.radioButton11.Size = new System.Drawing.Size(67, 17);
            this.radioButton11.Text = "Choice 1";

            this.ClientSize = new System.Drawing.Size(1000, 266);
            this.Controls.Add(this.groupBox11);
        }
Example #17
0
        private void radioButton_CheckedChanged(object sender, EventArgs e)
        {
            RadioButton radioButton = sender as RadioButton;
            if (radioButton != null)
            {
                if (radioButton.Checked)
                {
                    checkedRadioButton = radioButton;
                }
                else if (checkedRadioButton == radioButton)
                {
                    checkedRadioButton = null;
                }

                if (checkedRadioButton == radioButton1)
                    AxisLayout.algorithm = AxisLayout.Algorithm.OURS;
                else if(checkedRadioButton == radioButton2)
                    AxisLayout.algorithm = AxisLayout.Algorithm.WILKINSON;
                else if (checkedRadioButton == radioButton3)
                    AxisLayout.algorithm = AxisLayout.Algorithm.HECKBERT;
                else if (checkedRadioButton == radioButton5)
                    AxisLayout.algorithm = AxisLayout.Algorithm.MATPLOTLIB;

                if (checkedRadioButton != null && state != null)
                    state.NotifyDisplayChanged();
            }
        }
Example #18
0
 //Method to switch based on the selected radiobutton
 public void radiobuttonColorChange(RadioButton radioButtonSelectedControl)
 {
     //Set the text back to 'Selected color: '
     lbl_SelectedColor.Text = "Selected color: ";
     //Figure out the action based on the radio button name
     /*
     A switch is not required for this as using the following line of code alone would work, but to include a switch, this is used.
     lbl_SelectedColor.Text += radioButtonSelectedControl.Text;
     */
     switch (radioButtonSelectedControl.Name)
     {
         //Blue radiobutton selected.
         case "rb_colorBlue":
             //Set concatenate the selected color to 
             lbl_SelectedColor.Text += radioButtonSelectedControl.Text;
             break;
         //Black radiobutton selected.
         case "rb_colorBlack":
             lbl_SelectedColor.Text += radioButtonSelectedControl.Text;
             break;
         //Red radiobutton selected.
         case "rb_colorRed":
             lbl_SelectedColor.Text += radioButtonSelectedControl.Text;
             break;
         //Yellow radiobutton selected.
         case "rb_colorYellow":
             lbl_SelectedColor.Text += radioButtonSelectedControl.Text;
             break;
     } //switch (radioButtonSelectedControl.Name)
 } //public void radiobuttonColorChange
 public void Clear()
 {
     //gB3.Controls.Clear();
     if (rad1 != null)
     {
         gB3.Controls.Remove(rad1);
         gB3.Controls.Remove(rad2);
         gB3.Controls.Remove(rad3);
         gB3.Controls.Remove(rad4);
         rad1 = null;
         rad2 = null;
         rad3 = null;
         rad4 = null;
     }
     if (cB1 != null)
     {
         gB3.Controls.Remove(cB1);
         gB3.Controls.Remove(cB2);
         gB3.Controls.Remove(cB3);
         gB3.Controls.Remove(cB4);
         cB1 = null;
         cB2 = null;
         cB3 = null;
         cB4 = null;
     }
     if (lbl6 != null)
     {
         gB3.Controls.Remove(lbl6);
         gB3.Controls.Remove(lbl7);
         lbl6 = null;
         lbl7 = null;
     }
     //добавить стиралку для 2 черт
 }
        private void backgroundWorkerLoadThumbnail_ProgressChanged(object sender, ProgressChangedEventArgs e)
        {
            // Load thumbnails & associated labels into panel
            Image thumbnail = (Image)e.UserState;
            RadioButton rb = new RadioButton();
            rb.Width = thumbnail.Width;
            rb.Appearance = Appearance.Button;
            rb.FlatStyle = FlatStyle.Flat;
            rb.FlatAppearance.BorderColor = Color.Gray;
            rb.BackgroundImage = thumbnail;
            rb.ImageAlign = ContentAlignment.MiddleCenter;
            int horizontalMargin = (this.flowLayoutPanelThumbnail.Width - rb.Width) / 2;
            rb.Margin = new Padding(horizontalMargin, 0, horizontalMargin, 2);
            rb.Height = thumbnail.Height;
            rb.ImageIndex = e.ProgressPercentage;
            rb.Click += new System.EventHandler(this.radioButton_Click);
            group.Controls.Add(rb);
            this.flowLayoutPanelThumbnail.Controls.Add(rb);

            Label label = new Label();
            label.Text = (rb.ImageIndex + 1).ToString();
            label.Width = 20;
            horizontalMargin = (this.flowLayoutPanelThumbnail.Width - label.Width) / 2;
            label.Margin = new Padding(horizontalMargin, 0, horizontalMargin, 0);
            this.flowLayoutPanelThumbnail.Controls.Add(label);
        }
Example #21
0
		public void CheckedTest ()
		{
			RadioButton rb = new RadioButton ();

			Assert.AreEqual (false, rb.TabStop, "#A1");
			Assert.AreEqual (false, rb.Checked, "#A2");

			rb.Checked = true;

			Assert.AreEqual (true, rb.TabStop, "#B1");
			Assert.AreEqual (true, rb.Checked, "#B2");

			rb.Checked = false;

			Assert.AreEqual (false, rb.TabStop, "#C1");
			Assert.AreEqual (false, rb.Checked, "#C2");

			// RadioButton is NOT checked, but since it is the only
			// RadioButton instance in Form, when it gets selected (Form.Show)
			// it should acquire the focus
			Form f = new Form ();
			f.Controls.Add (rb);
			rb.CheckedChanged += new EventHandler (rb_checked_changed);
			event_received = false;

			f.ActiveControl = rb;

			Assert.AreEqual (true, event_received, "#D1");
			Assert.AreEqual (true, rb.Checked, "#D2");
			Assert.AreEqual (true, rb.TabStop, "#D3");

			f.Dispose ();
		}
        public void SetEnumType(Type enumType)
        {
            this.AutoSize = true;
            this.enumType = enumType;

            this.SuspendLayout();
            Point position = startingPoint;
            string[] names = Enum.GetNames(enumType);

            int maxWidth = 0;
            buttons = new RadioButton[names.Length];
            for (int i = 0; i < buttons.Length; i++)
            {
                buttons[i] = new RadioButton();
                buttons[i].AutoSize = true;
                buttons[i].Location = position;
                buttons[i].Name = names[i];
                buttons[i].Text = names[i];
                buttons[i].UseVisualStyleBackColor = true;
                maxWidth = Math.Max(maxWidth, buttons[i].Width);
                position.Y += buttons[i].Height;
                this.Controls.Add(buttons[i]);
            }

            buttons[0].Checked = true;
            this.ResumeLayout();
            this.AutoSize = false;
        }
Example #23
0
		private void PlatformChooser_Load(object sender, EventArgs e)
		{
			if (RomGame.RomData.Length > 10 * 1024 * 1024) // If 10mb, show in megabytes
			{
				RomSizeLabel.Text = string.Format("{0:n0}", (RomGame.RomData.Length / 1024 / 1024)) + "mb";
			}
			else
			{
				RomSizeLabel.Text = string.Format("{0:n0}", (RomGame.RomData.Length / 1024)) + "kb";
			}

			ExtensionLabel.Text = RomGame.Extension.ToLower();

			int count = 0;
			int spacing = 25;
			foreach (var platform in GlobalWin.MainForm.SupportedPlatforms)
			{
				var radio = new RadioButton
				{
					Text = platform.Value,
					Location = new Point(15, 15 + (count * spacing)),
					Size = new Size(200, 23)
				};

				PlatformsGroupBox.Controls.Add(radio);
				count++;
			}

			PlatformsGroupBox.Controls
				.OfType<RadioButton>()
				.First()
				.Select();
		}
Example #24
0
        public FormOpenFontDialog()
        {
            InitializeComponent();

            string[] fontSizeList = FormFontViewer.getFontSizeList();
            string prevFontSize = null;
            Size radioSize = new Size(120, 30);
            int radioOriX = 25;
            Point radioLocation = new Point(radioOriX, 30);
            foreach (string fontSize in fontSizeList)
            {
                if (prevFontSize == null)
                {
                    prevFontSize = fontSize.Substring(0, 2);
                }
                else if (fontSize.Substring(0, 2) != prevFontSize)
                {
                    radioLocation.Y += radioSize.Height;
                    radioLocation.X = radioOriX;
                    prevFontSize = fontSize.Substring(0, 2);
                }

                RadioButton radio = new RadioButton();
                radio.Text = fontSize;
                radio.Location = radioLocation;
                radio.CheckedChanged += new System.EventHandler(this.radio_CheckedChanged);
                this.groupBox1.Controls.Add(radio);

                radioLocation.X += radioSize.Width;
            }
        }
Example #25
0
		private void AddPageLayout ()
		{
			
			groupPageLayout = new GroupBox();
			groupPageLayout.Location = new Point (16,110);
			groupPageLayout.Size = new System.Drawing.Size(360, 48);
			groupPageLayout.Text = "Page Layout";
			
			radioStandardLayout = new RadioButton();
			radioStandardLayout.Text = "Standard";
			radioStandardLayout.Location = new Point(24,15);
			radioStandardLayout.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			radioStandardLayout.CheckedChanged += SetSuccessor;
			
			groupPageLayout.Controls.Add(radioStandardLayout);
			
			radioLandscape = new RadioButton();
			radioLandscape.Text = "Landscape";
			radioLandscape.Location = new Point (150,15);
			radioLandscape.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			radioLandscape.CheckedChanged += SetSuccessor;
			
			groupPageLayout.Controls.Add(radioLandscape);
			
			this.groupBox1.Controls.Add(groupPageLayout);
		}
Example #26
0
		private void PlatformChooser_Load(object sender, EventArgs e)
		{
			if (RomGame.RomData.Length > 10 * 1024 * 1024) // If 10mb, show in megabytes
			{
				RomSizeLabel.Text = string.Format("{0:n0}", (RomGame.RomData.Length / 1024 / 1024)) + "mb";
			}
			else
			{
				RomSizeLabel.Text = string.Format("{0:n0}", (RomGame.RomData.Length / 1024)) + "kb";
			}

			ExtensionLabel.Text = RomGame.Extension.ToLower();
			HashBox.Text = RomGame.GameInfo.Hash;
			int count = 0;
			int spacing = 25;
			foreach (var platform in AvailableSystems)
			{
				var radio = new RadioButton
				{
					Text = platform.FullName,
					Location = UIHelper.Scale(new Point(15, 15 + (count * spacing))),
					Size = UIHelper.Scale(new Size(200, 23))
				};

				PlatformsGroupBox.Controls.Add(radio);
				count++;
			}

			PlatformsGroupBox.Controls
				.OfType<RadioButton>()
				.First()
				.Select();
		}
Example #27
0
 //QuyDinhData m_QuyDinhData = new QuyDinhData();
 public void HienThi(TextBox txtTenCongTy,
     TextBox txtDiaChi,
     TextBox txtDienThoai,
     Label lblTaiKhoanCo,
     NumericUpDown nudLichSaoLuu,
     TextBox txtViTriSaoLuu,
     Label lblThoiDiemSaoLuu,
     RadioButton rdbBat,
     RadioButton rdbTat)
 {
     DataTable dT = QuyDinh.LayDsQuyDinh();
     if (dT.Rows.Count == 0) return;
     int timKiemTuDong = Convert.ToInt32(dT.Rows[0]["TimKiemTuDong"]);
     if (timKiemTuDong==1)
         rdbBat.Checked = true;
     else
         rdbTat.Checked = true;
     txtTenCongTy.Text = dT.Rows[0]["TenCongTy"].ToString();
     txtDiaChi.Text = dT.Rows[0]["DiaChi"].ToString();
     txtDienThoai.Text = dT.Rows[0]["DienThoai"].ToString();
     lblTaiKhoanCo.Text = dT.Rows[0]["TaiKhoanCo"].ToString();
     nudLichSaoLuu.Value = Convert.ToInt32(dT.Rows[0]["LichSaoLuu"]);
     txtViTriSaoLuu.Text = dT.Rows[0]["ViTriSaoLuu"].ToString();
     lblThoiDiemSaoLuu.Text = dT.Rows[0]["ThoiDiemSaoLuuTiepTheo"].ToString();
 }
Example #28
0
 private void btnAddControl_Click(object sender, EventArgs e)
 {
     Decimal nNum = nuNum.Value;
     if (nNum <= 0)
     {
         MessageBox.Show("请输入要加载的控件个正整数个数!");
         return;
     }
     pnlContent.Controls.Clear();
     if (rbButton.Checked)
     {
         watch.Reset();
         watch.Start();
         for (int i = 0; i < nNum; i++)
         {
             Button btn = new Button();
             pnlContent.Controls.Add(btn);
         }
         watch.Stop();
         lblResult.Text = watch.Elapsed.ToString() + "s";
     }
     else if (rbRadioButton.Checked)
     {
         watch.Reset();
         watch.Start();
         for (int i = 0; i < nNum; i++)
         {
             RadioButton radio = new RadioButton();
             pnlContent.Controls.Add(radio);
         }
         watch.Stop();
         lblResult.Text = watch.Elapsed.ToString() + "s";
     }
     else if (rbCheckBox.Checked)
     {
         watch.Reset();
         watch.Start();
         for (int i = 0; i < nNum; i++)
         {
             CheckBox cb = new CheckBox();
             pnlContent.Controls.Add(cb);
         }
         watch.Stop();
         lblResult.Text = watch.Elapsed.ToString() + "s";
     }
     else if (rbTextBox.Checked)
     {
         watch.Reset();
         watch.Start();
         for (int i = 0; i < nNum; i++)
         {
             TextBox txt = new TextBox();
             pnlContent.Controls.Add(txt);
         }
         watch.Stop();
         lblResult.Text = watch.Elapsed.ToString() + "s";
     }
     MessageBox.Show("耗时:" + watch.Elapsed.ToString() + "s");
 }
Example #29
0
 public frmEdicionConcepto(int tabla)
 {
     InitializeComponent();
     idTablaLiquidacion = tabla;
     activarPaso(pasos.Inicio);
     OperandorActivo = radioButtonVariable;
     Controles.cargaComboBox(comboBoxOperandosGeneral, "descripcion", "indice", "tablasConsultarIndiceDescripcion", "tabla", "VAR");
 }
Example #30
0
 public Guy(string name, int Cash, Label MyLabel, RadioButton guyButton)
 {
     Name = name;
     this.Cash = Cash;
     this.MyLabel = MyLabel;
     MyRadioButton = guyButton;
     MyBet = null;
 }
Example #31
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_gbGeral         = new System.Windows.Forms.GroupBox();
     this.m_gbParametros    = new System.Windows.Forms.GroupBox();
     this.m_txtIdImportador = new System.Windows.Forms.TextBox();
     this.label2            = new System.Windows.Forms.Label();
     this.m_txtIdCodigo     = new System.Windows.Forms.TextBox();
     this.m_txtIdExportador = new System.Windows.Forms.TextBox();
     this.m_lbIdCodigo      = new System.Windows.Forms.Label();
     this.m_lbIdExportador  = new System.Windows.Forms.Label();
     this.m_gbRetorno       = new System.Windows.Forms.GroupBox();
     this.m_txtRetorno      = new System.Windows.Forms.TextBox();
     this.m_lbRetorno       = new System.Windows.Forms.Label();
     this.m_gbMoeda         = new System.Windows.Forms.GroupBox();
     this.button1           = new System.Windows.Forms.Button();
     this.m_btAgentes       = new System.Windows.Forms.Button();
     this.m_gbBD            = new System.Windows.Forms.GroupBox();
     this.m_gbConfiguracao  = new System.Windows.Forms.GroupBox();
     this.m_txtPath         = new System.Windows.Forms.TextBox();
     this.m_lbPath          = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.m_txtDataBaseName = new System.Windows.Forms.TextBox();
     this.m_gbTipoAcesso    = new System.Windows.Forms.GroupBox();
     this.m_rbMySql         = new System.Windows.Forms.RadioButton();
     this.m_rbJet40         = new System.Windows.Forms.RadioButton();
     this.m_gbLogin         = new System.Windows.Forms.GroupBox();
     this.m_txtHost         = new System.Windows.Forms.TextBox();
     this.m_lbHost          = new System.Windows.Forms.Label();
     this.m_txtPassword     = new System.Windows.Forms.TextBox();
     this.m_txtUser         = new System.Windows.Forms.TextBox();
     this.m_lbPassword      = new System.Windows.Forms.Label();
     this.m_lbUser          = new System.Windows.Forms.Label();
     this.button2           = new System.Windows.Forms.Button();
     this.m_gbGeral.SuspendLayout();
     this.m_gbParametros.SuspendLayout();
     this.m_gbRetorno.SuspendLayout();
     this.m_gbMoeda.SuspendLayout();
     this.m_gbBD.SuspendLayout();
     this.m_gbConfiguracao.SuspendLayout();
     this.m_gbTipoAcesso.SuspendLayout();
     this.m_gbLogin.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbGeral
     //
     this.m_gbGeral.Controls.Add(this.m_gbParametros);
     this.m_gbGeral.Controls.Add(this.m_gbRetorno);
     this.m_gbGeral.Controls.Add(this.m_gbMoeda);
     this.m_gbGeral.Controls.Add(this.m_gbBD);
     this.m_gbGeral.Location = new System.Drawing.Point(4, -2);
     this.m_gbGeral.Name     = "m_gbGeral";
     this.m_gbGeral.Size     = new System.Drawing.Size(615, 450);
     this.m_gbGeral.TabIndex = 1;
     this.m_gbGeral.TabStop  = false;
     //
     // m_gbParametros
     //
     this.m_gbParametros.Controls.Add(this.m_txtIdImportador);
     this.m_gbParametros.Controls.Add(this.label2);
     this.m_gbParametros.Controls.Add(this.m_txtIdCodigo);
     this.m_gbParametros.Controls.Add(this.m_txtIdExportador);
     this.m_gbParametros.Controls.Add(this.m_lbIdCodigo);
     this.m_gbParametros.Controls.Add(this.m_lbIdExportador);
     this.m_gbParametros.Location = new System.Drawing.Point(8, 248);
     this.m_gbParametros.Name     = "m_gbParametros";
     this.m_gbParametros.Size     = new System.Drawing.Size(600, 80);
     this.m_gbParametros.TabIndex = 3;
     this.m_gbParametros.TabStop  = false;
     this.m_gbParametros.Text     = "Parametros";
     //
     // m_txtIdImportador
     //
     this.m_txtIdImportador.Location  = new System.Drawing.Point(456, 22);
     this.m_txtIdImportador.Name      = "m_txtIdImportador";
     this.m_txtIdImportador.Size      = new System.Drawing.Size(91, 20);
     this.m_txtIdImportador.TabIndex  = 9;
     this.m_txtIdImportador.Text      = "";
     this.m_txtIdImportador.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(376, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(75, 16);
     this.label2.TabIndex = 8;
     this.label2.Text     = "idImportador";
     //
     // m_txtIdCodigo
     //
     this.m_txtIdCodigo.Location  = new System.Drawing.Point(108, 47);
     this.m_txtIdCodigo.Name      = "m_txtIdCodigo";
     this.m_txtIdCodigo.Size      = new System.Drawing.Size(91, 20);
     this.m_txtIdCodigo.TabIndex  = 7;
     this.m_txtIdCodigo.Text      = "001";
     this.m_txtIdCodigo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // m_txtIdExportador
     //
     this.m_txtIdExportador.Location  = new System.Drawing.Point(108, 23);
     this.m_txtIdExportador.Name      = "m_txtIdExportador";
     this.m_txtIdExportador.Size      = new System.Drawing.Size(91, 20);
     this.m_txtIdExportador.TabIndex  = 6;
     this.m_txtIdExportador.Text      = "1";
     this.m_txtIdExportador.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // m_lbIdCodigo
     //
     this.m_lbIdCodigo.Location = new System.Drawing.Point(13, 46);
     this.m_lbIdCodigo.Name     = "m_lbIdCodigo";
     this.m_lbIdCodigo.Size     = new System.Drawing.Size(88, 16);
     this.m_lbIdCodigo.TabIndex = 5;
     this.m_lbIdCodigo.Text     = "idCodigo";
     //
     // m_lbIdExportador
     //
     this.m_lbIdExportador.Location = new System.Drawing.Point(14, 27);
     this.m_lbIdExportador.Name     = "m_lbIdExportador";
     this.m_lbIdExportador.Size     = new System.Drawing.Size(75, 16);
     this.m_lbIdExportador.TabIndex = 4;
     this.m_lbIdExportador.Text     = "idExportador";
     //
     // m_gbRetorno
     //
     this.m_gbRetorno.Controls.Add(this.m_txtRetorno);
     this.m_gbRetorno.Controls.Add(this.m_lbRetorno);
     this.m_gbRetorno.Location = new System.Drawing.Point(8, 392);
     this.m_gbRetorno.Name     = "m_gbRetorno";
     this.m_gbRetorno.Size     = new System.Drawing.Size(600, 48);
     this.m_gbRetorno.TabIndex = 2;
     this.m_gbRetorno.TabStop  = false;
     this.m_gbRetorno.Text     = "Retorno";
     //
     // m_txtRetorno
     //
     this.m_txtRetorno.Location = new System.Drawing.Point(79, 19);
     this.m_txtRetorno.Name     = "m_txtRetorno";
     this.m_txtRetorno.Size     = new System.Drawing.Size(504, 20);
     this.m_txtRetorno.TabIndex = 5;
     this.m_txtRetorno.Text     = "";
     //
     // m_lbRetorno
     //
     this.m_lbRetorno.Location = new System.Drawing.Point(24, 24);
     this.m_lbRetorno.Name     = "m_lbRetorno";
     this.m_lbRetorno.Size     = new System.Drawing.Size(56, 16);
     this.m_lbRetorno.TabIndex = 4;
     this.m_lbRetorno.Text     = "Retorno:";
     //
     // m_gbMoeda
     //
     this.m_gbMoeda.Controls.Add(this.button2);
     this.m_gbMoeda.Controls.Add(this.button1);
     this.m_gbMoeda.Controls.Add(this.m_btAgentes);
     this.m_gbMoeda.Location = new System.Drawing.Point(8, 328);
     this.m_gbMoeda.Name     = "m_gbMoeda";
     this.m_gbMoeda.Size     = new System.Drawing.Size(600, 62);
     this.m_gbMoeda.TabIndex = 1;
     this.m_gbMoeda.TabStop  = false;
     this.m_gbMoeda.Text     = "Instruções de Embarque";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(324, 20);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(96, 32);
     this.button1.TabIndex = 3;
     this.button1.Text     = "Contatos";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // m_btAgentes
     //
     this.m_btAgentes.Location = new System.Drawing.Point(180, 20);
     this.m_btAgentes.Name     = "m_btAgentes";
     this.m_btAgentes.Size     = new System.Drawing.Size(96, 32);
     this.m_btAgentes.TabIndex = 2;
     this.m_btAgentes.Text     = "Agentes";
     this.m_btAgentes.Click   += new System.EventHandler(this.m_btAgentes_Click);
     //
     // m_gbBD
     //
     this.m_gbBD.Controls.Add(this.m_gbConfiguracao);
     this.m_gbBD.Controls.Add(this.m_gbTipoAcesso);
     this.m_gbBD.Controls.Add(this.m_gbLogin);
     this.m_gbBD.Location = new System.Drawing.Point(8, 16);
     this.m_gbBD.Name     = "m_gbBD";
     this.m_gbBD.Size     = new System.Drawing.Size(600, 232);
     this.m_gbBD.TabIndex = 0;
     this.m_gbBD.TabStop  = false;
     this.m_gbBD.Text     = "Acesso Banco Dados";
     //
     // m_gbConfiguracao
     //
     this.m_gbConfiguracao.Controls.Add(this.m_txtPath);
     this.m_gbConfiguracao.Controls.Add(this.m_lbPath);
     this.m_gbConfiguracao.Controls.Add(this.label1);
     this.m_gbConfiguracao.Controls.Add(this.m_txtDataBaseName);
     this.m_gbConfiguracao.Location = new System.Drawing.Point(8, 16);
     this.m_gbConfiguracao.Name     = "m_gbConfiguracao";
     this.m_gbConfiguracao.Size     = new System.Drawing.Size(384, 72);
     this.m_gbConfiguracao.TabIndex = 11;
     this.m_gbConfiguracao.TabStop  = false;
     this.m_gbConfiguracao.Text     = "Configuracao";
     //
     // m_txtPath
     //
     this.m_txtPath.Location = new System.Drawing.Point(108, 20);
     this.m_txtPath.Name     = "m_txtPath";
     this.m_txtPath.Size     = new System.Drawing.Size(264, 20);
     this.m_txtPath.TabIndex = 2;
     this.m_txtPath.Text     = "C:\\Projetos\\Siscobras\\Binarios\\";
     //
     // m_lbPath
     //
     this.m_lbPath.Location = new System.Drawing.Point(12, 20);
     this.m_lbPath.Name     = "m_lbPath";
     this.m_lbPath.Size     = new System.Drawing.Size(40, 16);
     this.m_lbPath.TabIndex = 0;
     this.m_lbPath.Text     = "Path";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 44);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "DataBaseName";
     //
     // m_txtDataBaseName
     //
     this.m_txtDataBaseName.Location = new System.Drawing.Point(108, 44);
     this.m_txtDataBaseName.Name     = "m_txtDataBaseName";
     this.m_txtDataBaseName.Size     = new System.Drawing.Size(264, 20);
     this.m_txtDataBaseName.TabIndex = 3;
     this.m_txtDataBaseName.Text     = "Siscobras";
     //
     // m_gbTipoAcesso
     //
     this.m_gbTipoAcesso.Controls.Add(this.m_rbMySql);
     this.m_gbTipoAcesso.Controls.Add(this.m_rbJet40);
     this.m_gbTipoAcesso.Location = new System.Drawing.Point(7, 94);
     this.m_gbTipoAcesso.Name     = "m_gbTipoAcesso";
     this.m_gbTipoAcesso.Size     = new System.Drawing.Size(577, 128);
     this.m_gbTipoAcesso.TabIndex = 10;
     this.m_gbTipoAcesso.TabStop  = false;
     this.m_gbTipoAcesso.Text     = "Tipo Acesso";
     //
     // m_rbMySql
     //
     this.m_rbMySql.Location = new System.Drawing.Point(24, 32);
     this.m_rbMySql.Name     = "m_rbMySql";
     this.m_rbMySql.Size     = new System.Drawing.Size(200, 16);
     this.m_rbMySql.TabIndex = 5;
     this.m_rbMySql.Text     = "MySql";
     //
     // m_rbJet40
     //
     this.m_rbJet40.Checked  = true;
     this.m_rbJet40.Location = new System.Drawing.Point(24, 16);
     this.m_rbJet40.Name     = "m_rbJet40";
     this.m_rbJet40.Size     = new System.Drawing.Size(200, 16);
     this.m_rbJet40.TabIndex = 4;
     this.m_rbJet40.TabStop  = true;
     this.m_rbJet40.Text     = "Jet40";
     //
     // m_gbLogin
     //
     this.m_gbLogin.Controls.Add(this.m_txtHost);
     this.m_gbLogin.Controls.Add(this.m_lbHost);
     this.m_gbLogin.Controls.Add(this.m_txtPassword);
     this.m_gbLogin.Controls.Add(this.m_txtUser);
     this.m_gbLogin.Controls.Add(this.m_lbPassword);
     this.m_gbLogin.Controls.Add(this.m_lbUser);
     this.m_gbLogin.Location = new System.Drawing.Point(396, 8);
     this.m_gbLogin.Name     = "m_gbLogin";
     this.m_gbLogin.Size     = new System.Drawing.Size(192, 80);
     this.m_gbLogin.TabIndex = 9;
     this.m_gbLogin.TabStop  = false;
     this.m_gbLogin.Text     = "Login";
     //
     // m_txtHost
     //
     this.m_txtHost.Location = new System.Drawing.Point(62, 12);
     this.m_txtHost.Name     = "m_txtHost";
     this.m_txtHost.Size     = new System.Drawing.Size(122, 20);
     this.m_txtHost.TabIndex = 10;
     this.m_txtHost.Text     = "127.0.0.1";
     //
     // m_lbHost
     //
     this.m_lbHost.Location = new System.Drawing.Point(7, 20);
     this.m_lbHost.Name     = "m_lbHost";
     this.m_lbHost.Size     = new System.Drawing.Size(32, 16);
     this.m_lbHost.TabIndex = 9;
     this.m_lbHost.Text     = "Host";
     //
     // m_txtPassword
     //
     this.m_txtPassword.Location = new System.Drawing.Point(62, 55);
     this.m_txtPassword.Name     = "m_txtPassword";
     this.m_txtPassword.Size     = new System.Drawing.Size(122, 20);
     this.m_txtPassword.TabIndex = 8;
     this.m_txtPassword.Text     = "siscobras";
     //
     // m_txtUser
     //
     this.m_txtUser.Location = new System.Drawing.Point(62, 34);
     this.m_txtUser.Name     = "m_txtUser";
     this.m_txtUser.Size     = new System.Drawing.Size(122, 20);
     this.m_txtUser.TabIndex = 7;
     this.m_txtUser.Text     = "siscobras";
     //
     // m_lbPassword
     //
     this.m_lbPassword.Location = new System.Drawing.Point(7, 57);
     this.m_lbPassword.Name     = "m_lbPassword";
     this.m_lbPassword.Size     = new System.Drawing.Size(56, 16);
     this.m_lbPassword.TabIndex = 6;
     this.m_lbPassword.Text     = "Password";
     //
     // m_lbUser
     //
     this.m_lbUser.Location = new System.Drawing.Point(8, 40);
     this.m_lbUser.Name     = "m_lbUser";
     this.m_lbUser.Size     = new System.Drawing.Size(32, 16);
     this.m_lbUser.TabIndex = 5;
     this.m_lbUser.Text     = "User";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(8, 20);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(96, 32);
     this.button2.TabIndex = 4;
     this.button2.Text     = "Comissao";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(624, 454);
     this.Controls.Add(this.m_gbGeral);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Agentes";
     this.m_gbGeral.ResumeLayout(false);
     this.m_gbParametros.ResumeLayout(false);
     this.m_gbRetorno.ResumeLayout(false);
     this.m_gbMoeda.ResumeLayout(false);
     this.m_gbBD.ResumeLayout(false);
     this.m_gbConfiguracao.ResumeLayout(false);
     this.m_gbTipoAcesso.ResumeLayout(false);
     this.m_gbLogin.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.gpbInkSketch        = new System.Windows.Forms.GroupBox();
     this.lblAutoComplete     = new System.Windows.Forms.Label();
     this.lbl10sec            = new System.Windows.Forms.Label();
     this.lbl1sec             = new System.Windows.Forms.Label();
     this.tbrAutoComplete     = new System.Windows.Forms.TrackBar();
     this.radAutoText         = new System.Windows.Forms.RadioButton();
     this.radAutoGraphic      = new System.Windows.Forms.RadioButton();
     this.radManual           = new System.Windows.Forms.RadioButton();
     this.lblInfo             = new System.Windows.Forms.Label();
     this.gpbReport           = new System.Windows.Forms.GroupBox();
     this.tbxNumber           = new System.Windows.Forms.TextBox();
     this.label1              = new System.Windows.Forms.Label();
     this.lblCollectingStatus = new System.Windows.Forms.Label();
     this.tableLayoutPanel1   = new System.Windows.Forms.TableLayoutPanel();
     this.axToolbarControl1   = new ESRI.ArcGIS.Controls.AxToolbarControl();
     this.axMapControl1       = new ESRI.ArcGIS.Controls.AxMapControl();
     this.axLicenseControl1   = new ESRI.ArcGIS.Controls.AxLicenseControl();
     this.gpbInkSketch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbrAutoComplete)).BeginInit();
     this.gpbReport.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axToolbarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axMapControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axLicenseControl1)).BeginInit();
     this.SuspendLayout();
     //
     // gpbInkSketch
     //
     this.gpbInkSketch.Controls.Add(this.lblAutoComplete);
     this.gpbInkSketch.Controls.Add(this.lbl10sec);
     this.gpbInkSketch.Controls.Add(this.lbl1sec);
     this.gpbInkSketch.Controls.Add(this.tbrAutoComplete);
     this.gpbInkSketch.Controls.Add(this.radAutoText);
     this.gpbInkSketch.Controls.Add(this.radAutoGraphic);
     this.gpbInkSketch.Controls.Add(this.radManual);
     this.gpbInkSketch.Controls.Add(this.lblInfo);
     this.gpbInkSketch.Location = new System.Drawing.Point(433, 51);
     this.gpbInkSketch.Name     = "gpbInkSketch";
     this.gpbInkSketch.Size     = new System.Drawing.Size(296, 352);
     this.gpbInkSketch.TabIndex = 3;
     this.gpbInkSketch.TabStop  = false;
     this.gpbInkSketch.Text     = "Ink Sketch Commit Options";
     //
     // lblAutoComplete
     //
     this.lblAutoComplete.Location = new System.Drawing.Point(24, 240);
     this.lblAutoComplete.Name     = "lblAutoComplete";
     this.lblAutoComplete.Size     = new System.Drawing.Size(263, 23);
     this.lblAutoComplete.TabIndex = 7;
     this.lblAutoComplete.Text     = "Automatically Commit the Ink Sketch after:";
     //
     // lbl10sec
     //
     this.lbl10sec.Location = new System.Drawing.Point(216, 303);
     this.lbl10sec.Name     = "lbl10sec";
     this.lbl10sec.Size     = new System.Drawing.Size(64, 24);
     this.lbl10sec.TabIndex = 6;
     this.lbl10sec.Text     = "(10 sec)";
     //
     // lbl1sec
     //
     this.lbl1sec.Location = new System.Drawing.Point(8, 303);
     this.lbl1sec.Name     = "lbl1sec";
     this.lbl1sec.Size     = new System.Drawing.Size(65, 24);
     this.lbl1sec.TabIndex = 5;
     this.lbl1sec.Text     = "(1 sec)";
     //
     // tbrAutoComplete
     //
     this.tbrAutoComplete.Location = new System.Drawing.Point(8, 264);
     this.tbrAutoComplete.Minimum  = 1;
     this.tbrAutoComplete.Name     = "tbrAutoComplete";
     this.tbrAutoComplete.Size     = new System.Drawing.Size(264, 56);
     this.tbrAutoComplete.TabIndex = 4;
     this.tbrAutoComplete.Value    = 1;
     this.tbrAutoComplete.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tbrAutoComplete_MouseUp);
     //
     // radAutoText
     //
     this.radAutoText.Location        = new System.Drawing.Point(16, 167);
     this.radAutoText.Name            = "radAutoText";
     this.radAutoText.Size            = new System.Drawing.Size(272, 54);
     this.radAutoText.TabIndex        = 3;
     this.radAutoText.Text            = "Automatically Committed and Recognized as Text (Tablet PC only)";
     this.radAutoText.CheckedChanged += new System.EventHandler(this.radAutoText_CheckedChanged);
     //
     // radAutoGraphic
     //
     this.radAutoGraphic.Location        = new System.Drawing.Point(16, 144);
     this.radAutoGraphic.Name            = "radAutoGraphic";
     this.radAutoGraphic.Size            = new System.Drawing.Size(271, 24);
     this.radAutoGraphic.TabIndex        = 2;
     this.radAutoGraphic.Text            = "Automatically Committed to Graphic";
     this.radAutoGraphic.CheckedChanged += new System.EventHandler(this.radAutoGraphic_CheckedChanged);
     //
     // radManual
     //
     this.radManual.Location        = new System.Drawing.Point(16, 112);
     this.radManual.Name            = "radManual";
     this.radManual.Size            = new System.Drawing.Size(160, 24);
     this.radManual.TabIndex        = 1;
     this.radManual.Text            = "Manually Committed";
     this.radManual.CheckedChanged += new System.EventHandler(this.radManual_CheckedChanged);
     //
     // lblInfo
     //
     this.lblInfo.Location = new System.Drawing.Point(16, 40);
     this.lblInfo.Name     = "lblInfo";
     this.lblInfo.Size     = new System.Drawing.Size(264, 56);
     this.lblInfo.TabIndex = 0;
     this.lblInfo.Text     = "Ink sketches can be committed manually or automatically. Click on the buttons belo" +
                             "w to change the commit method.";
     //
     // gpbReport
     //
     this.gpbReport.Controls.Add(this.tbxNumber);
     this.gpbReport.Controls.Add(this.label1);
     this.gpbReport.Controls.Add(this.lblCollectingStatus);
     this.gpbReport.Location = new System.Drawing.Point(433, 409);
     this.gpbReport.Name     = "gpbReport";
     this.gpbReport.Size     = new System.Drawing.Size(296, 112);
     this.gpbReport.TabIndex = 4;
     this.gpbReport.TabStop  = false;
     this.gpbReport.Text     = "Sketch Report";
     //
     // tbxNumber
     //
     this.tbxNumber.BackColor   = System.Drawing.SystemColors.Control;
     this.tbxNumber.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.tbxNumber.Location    = new System.Drawing.Point(176, 32);
     this.tbxNumber.Name        = "tbxNumber";
     this.tbxNumber.Size        = new System.Drawing.Size(100, 15);
     this.tbxNumber.TabIndex    = 2;
     this.tbxNumber.Text        = "0";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 32);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(168, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Number of Ink Sketches = ";
     //
     // lblCollectingStatus
     //
     this.lblCollectingStatus.Location = new System.Drawing.Point(8, 80);
     this.lblCollectingStatus.Name     = "lblCollectingStatus";
     this.lblCollectingStatus.Size     = new System.Drawing.Size(272, 16);
     this.lblCollectingStatus.TabIndex = 0;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 58.46906F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 41.53094F));
     this.tableLayoutPanel1.Controls.Add(this.gpbInkSketch, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.axToolbarControl1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.axMapControl1, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.gpbReport, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.axLicenseControl1, 0, 2);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(14, 8);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.88406F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 88.11594F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 120F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(737, 527);
     this.tableLayoutPanel1.TabIndex = 5;
     //
     // axToolbarControl1
     //
     this.tableLayoutPanel1.SetColumnSpan(this.axToolbarControl1, 2);
     this.axToolbarControl1.Location = new System.Drawing.Point(3, 3);
     this.axToolbarControl1.Name     = "axToolbarControl1";
     this.axToolbarControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axToolbarControl1.OcxState")));
     this.axToolbarControl1.Size     = new System.Drawing.Size(729, 28);
     this.axToolbarControl1.TabIndex = 5;
     //
     // axMapControl1
     //
     this.axMapControl1.Location           = new System.Drawing.Point(3, 51);
     this.axMapControl1.Name               = "axMapControl1";
     this.axMapControl1.OcxState           = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMapControl1.OcxState")));
     this.axMapControl1.Size               = new System.Drawing.Size(423, 352);
     this.axMapControl1.TabIndex           = 6;
     this.axMapControl1.OnAfterScreenDraw += new ESRI.ArcGIS.Controls.IMapControlEvents2_Ax_OnAfterScreenDrawEventHandler(this.axMapControl1_OnAfterScreenDraw);
     //
     // axLicenseControl1
     //
     this.axLicenseControl1.Enabled  = true;
     this.axLicenseControl1.Location = new System.Drawing.Point(3, 409);
     this.axLicenseControl1.Name     = "axLicenseControl1";
     this.axLicenseControl1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axLicenseControl1.OcxState")));
     this.axLicenseControl1.Size     = new System.Drawing.Size(32, 32);
     this.axLicenseControl1.TabIndex = 7;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(767, 540);
     this.Controls.Add(this.tableLayoutPanel1);
     this.MaximumSize = new System.Drawing.Size(775, 580);
     this.MinimumSize = new System.Drawing.Size(775, 580);
     this.Name        = "Form1";
     this.Text        = "Ink Sketch Commit";
     this.Load       += new System.EventHandler(this.Form1_Load);
     this.gpbInkSketch.ResumeLayout(false);
     this.gpbInkSketch.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbrAutoComplete)).EndInit();
     this.gpbReport.ResumeLayout(false);
     this.gpbReport.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axToolbarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axMapControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axLicenseControl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.mergeAssembliesCheckBox = new System.Windows.Forms.CheckBox();
     this.singleDomainRadioButton = new System.Windows.Forms.RadioButton();
     this.multiDomainRadioButton  = new System.Windows.Forms.RadioButton();
     this.helpProvider1           = new System.Windows.Forms.HelpProvider();
     this.label3    = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.multiProcessRadioButton    = new System.Windows.Forms.RadioButton();
     this.separateProcessRadioButton = new System.Windows.Forms.RadioButton();
     this.sameProcessRadioButton     = new System.Windows.Forms.RadioButton();
     this.label2    = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.SuspendLayout();
     //
     // mergeAssembliesCheckBox
     //
     this.mergeAssembliesCheckBox.AutoSize = true;
     this.helpProvider1.SetHelpString(this.mergeAssembliesCheckBox, "If checked, tests in each assembly will be merged into a single tree.");
     this.mergeAssembliesCheckBox.Location = new System.Drawing.Point(48, 221);
     this.mergeAssembliesCheckBox.Name     = "mergeAssembliesCheckBox";
     this.helpProvider1.SetShowHelp(this.mergeAssembliesCheckBox, true);
     this.mergeAssembliesCheckBox.Size     = new System.Drawing.Size(169, 17);
     this.mergeAssembliesCheckBox.TabIndex = 10;
     this.mergeAssembliesCheckBox.Text     = "Merge tests across assemblies";
     //
     // singleDomainRadioButton
     //
     this.singleDomainRadioButton.AutoCheck = false;
     this.singleDomainRadioButton.AutoSize  = true;
     this.singleDomainRadioButton.Checked   = true;
     this.helpProvider1.SetHelpString(this.singleDomainRadioButton, "If selected, all test assemblies will be loaded in the same AppDomain.");
     this.singleDomainRadioButton.Location = new System.Drawing.Point(32, 190);
     this.singleDomainRadioButton.Name     = "singleDomainRadioButton";
     this.helpProvider1.SetShowHelp(this.singleDomainRadioButton, true);
     this.singleDomainRadioButton.Size     = new System.Drawing.Size(194, 17);
     this.singleDomainRadioButton.TabIndex = 9;
     this.singleDomainRadioButton.TabStop  = true;
     this.singleDomainRadioButton.Text     = "Use a single AppDomain for all tests";
     this.singleDomainRadioButton.Click   += new System.EventHandler(this.toggleMultiDomain);
     //
     // multiDomainRadioButton
     //
     this.multiDomainRadioButton.AutoCheck = false;
     this.multiDomainRadioButton.AutoSize  = true;
     this.helpProvider1.SetHelpString(this.multiDomainRadioButton, "If selected, each test assembly will be loaded in a separate AppDomain.");
     this.multiDomainRadioButton.Location = new System.Drawing.Point(32, 160);
     this.multiDomainRadioButton.Name     = "multiDomainRadioButton";
     this.helpProvider1.SetShowHelp(this.multiDomainRadioButton, true);
     this.multiDomainRadioButton.Size     = new System.Drawing.Size(220, 17);
     this.multiDomainRadioButton.TabIndex = 8;
     this.multiDomainRadioButton.Text     = "Use a separate AppDomain per Assembly";
     this.multiDomainRadioButton.Click   += new System.EventHandler(this.toggleMultiDomain);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(16, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(114, 13);
     this.label3.TabIndex = 35;
     this.label3.Text     = "Default Process Model";
     //
     // groupBox3
     //
     this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Location = new System.Drawing.Point(199, 8);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(253, 8);
     this.groupBox3.TabIndex = 34;
     this.groupBox3.TabStop  = false;
     //
     // multiProcessRadioButton
     //
     this.multiProcessRadioButton.AutoSize        = true;
     this.multiProcessRadioButton.Location        = new System.Drawing.Point(32, 99);
     this.multiProcessRadioButton.Name            = "multiProcessRadioButton";
     this.multiProcessRadioButton.Size            = new System.Drawing.Size(239, 17);
     this.multiProcessRadioButton.TabIndex        = 36;
     this.multiProcessRadioButton.Text            = "Run tests in a separate process per Assembly";
     this.multiProcessRadioButton.CheckedChanged += new System.EventHandler(this.toggleProcessUsage);
     //
     // separateProcessRadioButton
     //
     this.separateProcessRadioButton.AutoSize        = true;
     this.separateProcessRadioButton.Location        = new System.Drawing.Point(32, 66);
     this.separateProcessRadioButton.Name            = "separateProcessRadioButton";
     this.separateProcessRadioButton.Size            = new System.Drawing.Size(204, 17);
     this.separateProcessRadioButton.TabIndex        = 37;
     this.separateProcessRadioButton.Text            = "Run tests in a single separate process";
     this.separateProcessRadioButton.CheckedChanged += new System.EventHandler(this.toggleProcessUsage);
     //
     // sameProcessRadioButton
     //
     this.sameProcessRadioButton.AutoSize        = true;
     this.sameProcessRadioButton.Checked         = true;
     this.sameProcessRadioButton.Location        = new System.Drawing.Point(32, 33);
     this.sameProcessRadioButton.Name            = "sameProcessRadioButton";
     this.sameProcessRadioButton.Size            = new System.Drawing.Size(205, 17);
     this.sameProcessRadioButton.TabIndex        = 38;
     this.sameProcessRadioButton.TabStop         = true;
     this.sameProcessRadioButton.Text            = "Run tests directly in the NUnit process";
     this.sameProcessRadioButton.CheckedChanged += new System.EventHandler(this.toggleProcessUsage);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(16, 136);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(114, 13);
     this.label2.TabIndex = 40;
     this.label2.Text     = "Default Domain Usage";
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Location = new System.Drawing.Point(199, 136);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(253, 8);
     this.groupBox2.TabIndex = 39;
     this.groupBox2.TabStop  = false;
     //
     // TestLoaderSettingsPage
     //
     this.Controls.Add(this.label2);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.sameProcessRadioButton);
     this.Controls.Add(this.separateProcessRadioButton);
     this.Controls.Add(this.multiProcessRadioButton);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.mergeAssembliesCheckBox);
     this.Controls.Add(this.singleDomainRadioButton);
     this.Controls.Add(this.multiDomainRadioButton);
     this.Name = "TestLoaderSettingsPage";
     this.Size = new System.Drawing.Size(456, 341);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grpBoxVisibility = new System.Windows.Forms.GroupBox();
     this.bHidden          = new System.Windows.Forms.Button();
     this.cbToggle         = new System.Windows.Forms.ComboBox();
     this.tbHidden         = new System.Windows.Forms.TextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.bBookmarkLink    = new System.Windows.Forms.Button();
     this.bHyperlink       = new System.Windows.Forms.Button();
     this.rbNoAction       = new System.Windows.Forms.RadioButton();
     this.bParameters      = new System.Windows.Forms.Button();
     this.bDrillthrough    = new System.Windows.Forms.Button();
     this.tbDrillthrough   = new System.Windows.Forms.TextBox();
     this.tbBookmarkLink   = new System.Windows.Forms.TextBox();
     this.tbHyperlink      = new System.Windows.Forms.TextBox();
     this.rbDrillthrough   = new System.Windows.Forms.RadioButton();
     this.rbBookmarkLink   = new System.Windows.Forms.RadioButton();
     this.rbHyperlink      = new System.Windows.Forms.RadioButton();
     this.label1           = new System.Windows.Forms.Label();
     this.tbBookmark       = new System.Windows.Forms.TextBox();
     this.bBookmark        = new System.Windows.Forms.Button();
     this.grpBoxVisibility.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // grpBoxVisibility
     //
     this.grpBoxVisibility.Controls.Add(this.bHidden);
     this.grpBoxVisibility.Controls.Add(this.cbToggle);
     this.grpBoxVisibility.Controls.Add(this.tbHidden);
     this.grpBoxVisibility.Controls.Add(this.label3);
     this.grpBoxVisibility.Controls.Add(this.label2);
     this.grpBoxVisibility.Location = new System.Drawing.Point(8, 152);
     this.grpBoxVisibility.Name     = "grpBoxVisibility";
     this.grpBoxVisibility.Size     = new System.Drawing.Size(432, 80);
     this.grpBoxVisibility.TabIndex = 1;
     this.grpBoxVisibility.TabStop  = false;
     this.grpBoxVisibility.Text     = "Visibility";
     //
     // bHidden
     //
     this.bHidden.Font      = new System.Drawing.Font("Arial", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.bHidden.Location  = new System.Drawing.Point(400, 26);
     this.bHidden.Name      = "bHidden";
     this.bHidden.Size      = new System.Drawing.Size(22, 16);
     this.bHidden.TabIndex  = 1;
     this.bHidden.Tag       = "visibility";
     this.bHidden.Text      = "fx";
     this.bHidden.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bHidden.Click    += new System.EventHandler(this.bExpr_Click);
     //
     // cbToggle
     //
     this.cbToggle.Location              = new System.Drawing.Point(168, 48);
     this.cbToggle.Name                  = "cbToggle";
     this.cbToggle.Size                  = new System.Drawing.Size(152, 21);
     this.cbToggle.TabIndex              = 2;
     this.cbToggle.TextChanged          += new System.EventHandler(this.cbToggle_SelectedIndexChanged);
     this.cbToggle.SelectedIndexChanged += new System.EventHandler(this.cbToggle_SelectedIndexChanged);
     //
     // tbHidden
     //
     this.tbHidden.Location     = new System.Drawing.Point(168, 24);
     this.tbHidden.Name         = "tbHidden";
     this.tbHidden.Size         = new System.Drawing.Size(224, 20);
     this.tbHidden.TabIndex     = 0;
     this.tbHidden.Text         = "";
     this.tbHidden.TextChanged += new System.EventHandler(this.tbHidden_TextChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(152, 23);
     this.label3.TabIndex = 1;
     this.label3.Text     = "Toggle Item (Textbox name)";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(120, 23);
     this.label2.TabIndex = 0;
     this.label2.Text     = "Hidden (initial visibility)";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.bBookmarkLink);
     this.groupBox1.Controls.Add(this.bHyperlink);
     this.groupBox1.Controls.Add(this.rbNoAction);
     this.groupBox1.Controls.Add(this.bParameters);
     this.groupBox1.Controls.Add(this.bDrillthrough);
     this.groupBox1.Controls.Add(this.tbDrillthrough);
     this.groupBox1.Controls.Add(this.tbBookmarkLink);
     this.groupBox1.Controls.Add(this.tbHyperlink);
     this.groupBox1.Controls.Add(this.rbDrillthrough);
     this.groupBox1.Controls.Add(this.rbBookmarkLink);
     this.groupBox1.Controls.Add(this.rbHyperlink);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(432, 136);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Action";
     //
     // bBookmarkLink
     //
     this.bBookmarkLink.Font      = new System.Drawing.Font("Arial", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.bBookmarkLink.Location  = new System.Drawing.Point(400, 80);
     this.bBookmarkLink.Name      = "bBookmarkLink";
     this.bBookmarkLink.Size      = new System.Drawing.Size(22, 16);
     this.bBookmarkLink.TabIndex  = 3;
     this.bBookmarkLink.Tag       = "bookmarklink";
     this.bBookmarkLink.Text      = "fx";
     this.bBookmarkLink.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bBookmarkLink.Click    += new System.EventHandler(this.bExpr_Click);
     //
     // bHyperlink
     //
     this.bHyperlink.Font      = new System.Drawing.Font("Arial", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.bHyperlink.Location  = new System.Drawing.Point(400, 50);
     this.bHyperlink.Name      = "bHyperlink";
     this.bHyperlink.Size      = new System.Drawing.Size(22, 16);
     this.bHyperlink.TabIndex  = 1;
     this.bHyperlink.Tag       = "hyperlink";
     this.bHyperlink.Text      = "fx";
     this.bHyperlink.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bHyperlink.Click    += new System.EventHandler(this.bExpr_Click);
     //
     // rbNoAction
     //
     this.rbNoAction.Location        = new System.Drawing.Point(16, 16);
     this.rbNoAction.Name            = "rbNoAction";
     this.rbNoAction.TabIndex        = 5;
     this.rbNoAction.Text            = "None";
     this.rbNoAction.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // bParameters
     //
     this.bParameters.Location = new System.Drawing.Point(344, 104);
     this.bParameters.Name     = "bParameters";
     this.bParameters.Size     = new System.Drawing.Size(80, 23);
     this.bParameters.TabIndex = 6;
     this.bParameters.Text     = "Parameters...";
     this.bParameters.Click   += new System.EventHandler(this.bParameters_Click);
     //
     // bDrillthrough
     //
     this.bDrillthrough.Location = new System.Drawing.Point(312, 104);
     this.bDrillthrough.Name     = "bDrillthrough";
     this.bDrillthrough.Size     = new System.Drawing.Size(24, 23);
     this.bDrillthrough.TabIndex = 5;
     this.bDrillthrough.Text     = "...";
     this.bDrillthrough.Click   += new System.EventHandler(this.bDrillthrough_Click);
     //
     // tbDrillthrough
     //
     this.tbDrillthrough.Location     = new System.Drawing.Point(128, 104);
     this.tbDrillthrough.Name         = "tbDrillthrough";
     this.tbDrillthrough.Size         = new System.Drawing.Size(176, 20);
     this.tbDrillthrough.TabIndex     = 4;
     this.tbDrillthrough.Text         = "";
     this.tbDrillthrough.TextChanged += new System.EventHandler(this.tbAction_TextChanged);
     //
     // tbBookmarkLink
     //
     this.tbBookmarkLink.Location     = new System.Drawing.Point(128, 76);
     this.tbBookmarkLink.Name         = "tbBookmarkLink";
     this.tbBookmarkLink.Size         = new System.Drawing.Size(264, 20);
     this.tbBookmarkLink.TabIndex     = 2;
     this.tbBookmarkLink.Text         = "";
     this.tbBookmarkLink.TextChanged += new System.EventHandler(this.tbAction_TextChanged);
     //
     // tbHyperlink
     //
     this.tbHyperlink.Location     = new System.Drawing.Point(128, 47);
     this.tbHyperlink.Name         = "tbHyperlink";
     this.tbHyperlink.Size         = new System.Drawing.Size(264, 20);
     this.tbHyperlink.TabIndex     = 0;
     this.tbHyperlink.Text         = "";
     this.tbHyperlink.TextChanged += new System.EventHandler(this.tbAction_TextChanged);
     //
     // rbDrillthrough
     //
     this.rbDrillthrough.Location        = new System.Drawing.Point(16, 102);
     this.rbDrillthrough.Name            = "rbDrillthrough";
     this.rbDrillthrough.TabIndex        = 2;
     this.rbDrillthrough.Text            = "Drill Through";
     this.rbDrillthrough.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // rbBookmarkLink
     //
     this.rbBookmarkLink.Location        = new System.Drawing.Point(16, 74);
     this.rbBookmarkLink.Name            = "rbBookmarkLink";
     this.rbBookmarkLink.TabIndex        = 1;
     this.rbBookmarkLink.Text            = "Bookmark Link";
     this.rbBookmarkLink.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // rbHyperlink
     //
     this.rbHyperlink.Location        = new System.Drawing.Point(16, 45);
     this.rbHyperlink.Name            = "rbHyperlink";
     this.rbHyperlink.TabIndex        = 0;
     this.rbHyperlink.Text            = "Hyperlink";
     this.rbHyperlink.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 256);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(56, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Bookmark";
     //
     // tbBookmark
     //
     this.tbBookmark.Location = new System.Drawing.Point(88, 254);
     this.tbBookmark.Name     = "tbBookmark";
     this.tbBookmark.Size     = new System.Drawing.Size(312, 20);
     this.tbBookmark.TabIndex = 3;
     this.tbBookmark.Text     = "";
     //
     // bBookmark
     //
     this.bBookmark.Font      = new System.Drawing.Font("Arial", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.bBookmark.Location  = new System.Drawing.Point(408, 258);
     this.bBookmark.Name      = "bBookmark";
     this.bBookmark.Size      = new System.Drawing.Size(22, 16);
     this.bBookmark.TabIndex  = 4;
     this.bBookmark.Tag       = "bookmark";
     this.bBookmark.Text      = "fx";
     this.bBookmark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.bBookmark.Click    += new System.EventHandler(this.bExpr_Click);
     //
     // InteractivityCtl
     //
     this.Controls.Add(this.bBookmark);
     this.Controls.Add(this.tbBookmark);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.grpBoxVisibility);
     this.Name = "InteractivityCtl";
     this.Size = new System.Drawing.Size(472, 288);
     this.grpBoxVisibility.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewGame));
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.PlayersHvC       = new System.Windows.Forms.RadioButton();
     this.PlayesrHvH       = new System.Windows.Forms.RadioButton();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.PlayerLevel3     = new System.Windows.Forms.RadioButton();
     this.PlayerLevel2     = new System.Windows.Forms.RadioButton();
     this.PlayerLevel1     = new System.Windows.Forms.RadioButton();
     this.groupBox3        = new System.Windows.Forms.GroupBox();
     this.BlackPlayerName  = new System.Windows.Forms.TextBox();
     this.BlackPlayerImage = new System.Windows.Forms.PictureBox();
     this.btnStart         = new System.Windows.Forms.Button();
     this.btnCancel        = new System.Windows.Forms.Button();
     this.groupBox4        = new System.Windows.Forms.GroupBox();
     this.WhitePlayerName  = new System.Windows.Forms.TextBox();
     this.WhitePlayerImage = new System.Windows.Forms.PictureBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BlackPlayerImage)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.WhitePlayerImage)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.PlayersHvC);
     this.groupBox1.Controls.Add(this.PlayesrHvH);
     this.groupBox1.Location = new System.Drawing.Point(24, 24);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(160, 96);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Player Options";
     //
     // PlayersHvC
     //
     this.PlayersHvC.Location        = new System.Drawing.Point(14, 47);
     this.PlayersHvC.Name            = "PlayersHvC";
     this.PlayersHvC.Size            = new System.Drawing.Size(136, 20);
     this.PlayersHvC.TabIndex        = 1;
     this.PlayersHvC.Text            = "Human Vs. Computer";
     this.PlayersHvC.CheckedChanged += new System.EventHandler(this.PlayesrType_CheckedChanged);
     //
     // PlayesrHvH
     //
     this.PlayesrHvH.Checked         = true;
     this.PlayesrHvH.Location        = new System.Drawing.Point(14, 24);
     this.PlayesrHvH.Name            = "PlayesrHvH";
     this.PlayesrHvH.Size            = new System.Drawing.Size(136, 20);
     this.PlayesrHvH.TabIndex        = 0;
     this.PlayesrHvH.TabStop         = true;
     this.PlayesrHvH.Text            = "Human Vs. Human";
     this.PlayesrHvH.CheckedChanged += new System.EventHandler(this.PlayesrType_CheckedChanged);
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.PlayerLevel3);
     this.groupBox2.Controls.Add(this.PlayerLevel2);
     this.groupBox2.Controls.Add(this.PlayerLevel1);
     this.groupBox2.Location = new System.Drawing.Point(24, 125);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(160, 91);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Player Level";
     //
     // PlayerLevel3
     //
     this.PlayerLevel3.Location = new System.Drawing.Point(13, 64);
     this.PlayerLevel3.Name     = "PlayerLevel3";
     this.PlayerLevel3.Size     = new System.Drawing.Size(139, 20);
     this.PlayerLevel3.TabIndex = 2;
     this.PlayerLevel3.Text     = "Chess Master";
     //
     // PlayerLevel2
     //
     this.PlayerLevel2.Location = new System.Drawing.Point(13, 44);
     this.PlayerLevel2.Name     = "PlayerLevel2";
     this.PlayerLevel2.Size     = new System.Drawing.Size(139, 20);
     this.PlayerLevel2.TabIndex = 1;
     this.PlayerLevel2.Text     = "Intermediate";
     //
     // PlayerLevel1
     //
     this.PlayerLevel1.Checked  = true;
     this.PlayerLevel1.Location = new System.Drawing.Point(13, 24);
     this.PlayerLevel1.Name     = "PlayerLevel1";
     this.PlayerLevel1.Size     = new System.Drawing.Size(139, 20);
     this.PlayerLevel1.TabIndex = 0;
     this.PlayerLevel1.TabStop  = true;
     this.PlayerLevel1.Text     = "Beginner";
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.Transparent;
     this.groupBox3.Controls.Add(this.BlackPlayerName);
     this.groupBox3.Controls.Add(this.BlackPlayerImage);
     this.groupBox3.Location = new System.Drawing.Point(192, 24);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(156, 95);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Black Player";
     //
     // BlackPlayerName
     //
     this.BlackPlayerName.Location = new System.Drawing.Point(67, 40);
     this.BlackPlayerName.Name     = "BlackPlayerName";
     this.BlackPlayerName.Size     = new System.Drawing.Size(80, 20);
     this.BlackPlayerName.TabIndex = 0;
     this.BlackPlayerName.Text     = "Black Player";
     this.BlackPlayerName.Click   += new System.EventHandler(this.PlayerName_Focus);
     this.BlackPlayerName.Enter   += new System.EventHandler(this.PlayerName_Focus);
     //
     // BlackPlayerImage
     //
     this.BlackPlayerImage.BackColor   = System.Drawing.Color.Transparent;
     this.BlackPlayerImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.BlackPlayerImage.Location    = new System.Drawing.Point(14, 24);
     this.BlackPlayerImage.Name        = "BlackPlayerImage";
     this.BlackPlayerImage.Size        = new System.Drawing.Size(45, 50);
     this.BlackPlayerImage.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.BlackPlayerImage.TabIndex    = 1;
     this.BlackPlayerImage.TabStop     = false;
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(277, 230);
     this.btnStart.Name     = "btnStart";
     this.btnStart.Size     = new System.Drawing.Size(71, 24);
     this.btnStart.TabIndex = 5;
     this.btnStart.Text     = "&Start";
     this.btnStart.Click   += new System.EventHandler(this.btnStart_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(197, 230);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(71, 24);
     this.btnCancel.TabIndex = 4;
     this.btnCancel.Text     = "&Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.Transparent;
     this.groupBox4.Controls.Add(this.WhitePlayerName);
     this.groupBox4.Controls.Add(this.WhitePlayerImage);
     this.groupBox4.Location = new System.Drawing.Point(192, 124);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(156, 92);
     this.groupBox4.TabIndex = 3;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "White Player";
     //
     // WhitePlayerName
     //
     this.WhitePlayerName.Location = new System.Drawing.Point(67, 40);
     this.WhitePlayerName.Name     = "WhitePlayerName";
     this.WhitePlayerName.Size     = new System.Drawing.Size(80, 20);
     this.WhitePlayerName.TabIndex = 0;
     this.WhitePlayerName.Text     = "White Player";
     this.WhitePlayerName.Click   += new System.EventHandler(this.PlayerName_Focus);
     this.WhitePlayerName.Enter   += new System.EventHandler(this.PlayerName_Focus);
     //
     // WhitePlayerImage
     //
     this.WhitePlayerImage.BackColor   = System.Drawing.Color.Transparent;
     this.WhitePlayerImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.WhitePlayerImage.Location    = new System.Drawing.Point(14, 24);
     this.WhitePlayerImage.Name        = "WhitePlayerImage";
     this.WhitePlayerImage.Size        = new System.Drawing.Size(45, 50);
     this.WhitePlayerImage.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.WhitePlayerImage.TabIndex    = 1;
     this.WhitePlayerImage.TabStop     = false;
     //
     // NewGame
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize        = new System.Drawing.Size(374, 284);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnStart);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "NewGame";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New Game";
     this.Load           += new System.EventHandler(this.NewGame_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BlackPlayerImage)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.WhitePlayerImage)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.optionsTabControl              = new System.Windows.Forms.TabControl();
     this.displayTabPage                 = new System.Windows.Forms.TabPage();
     this.previewMovesCheckBox           = new System.Windows.Forms.CheckBox();
     this.moveIndicatorColorButton       = new System.Windows.Forms.Button();
     this.moveIndicatorColorPanel        = new System.Windows.Forms.Panel();
     this.moveIndicatorColorLabel        = new System.Windows.Forms.Label();
     this.animateMovesCheckBox           = new System.Windows.Forms.CheckBox();
     this.validColorButton               = new System.Windows.Forms.Button();
     this.validColorPanel                = new System.Windows.Forms.Panel();
     this.validColorLabel                = new System.Windows.Forms.Label();
     this.activeColorButton              = new System.Windows.Forms.Button();
     this.activeColorPanel               = new System.Windows.Forms.Panel();
     this.activeColorLabel               = new System.Windows.Forms.Label();
     this.boardColorButton               = new System.Windows.Forms.Button();
     this.boardColorPanel                = new System.Windows.Forms.Panel();
     this.boardColorLabel                = new System.Windows.Forms.Label();
     this.showValidMovesCheckBox         = new System.Windows.Forms.CheckBox();
     this.playersTabPage                 = new System.Windows.Forms.TabPage();
     this.whitePlayerPanel               = new System.Windows.Forms.Panel();
     this.whitePlayerUserRadioButton     = new System.Windows.Forms.RadioButton();
     this.whiteExampleAIRadioButton      = new System.Windows.Forms.RadioButton();
     this.whitePlayerComputerRadioButton = new System.Windows.Forms.RadioButton();
     this.whitePlayerLabel               = new System.Windows.Forms.Label();
     this.blackPlayerPanel               = new System.Windows.Forms.Panel();
     this.blackPlayerUserRadioButton     = new System.Windows.Forms.RadioButton();
     this.blackExampleAIRadioButton      = new System.Windows.Forms.RadioButton();
     this.blackPlayerComputerRadioButton = new System.Windows.Forms.RadioButton();
     this.blackPlayerLabel               = new System.Windows.Forms.Label();
     this.difficultyTabPage              = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1              = new System.Windows.Forms.TableLayoutPanel();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.blackDifficultyLBL    = new System.Windows.Forms.Label();
     this.blackDifficultyTB     = new System.Windows.Forms.TrackBar();
     this.groupBox2             = new System.Windows.Forms.GroupBox();
     this.whiteDifficultyLBL    = new System.Windows.Forms.Label();
     this.whiteDifficultyTB     = new System.Windows.Forms.TrackBar();
     this.okButton              = new System.Windows.Forms.Button();
     this.cancelButton          = new System.Windows.Forms.Button();
     this.restoreDefaultsButton = new System.Windows.Forms.Button();
     this.optionsTabControl.SuspendLayout();
     this.displayTabPage.SuspendLayout();
     this.playersTabPage.SuspendLayout();
     this.whitePlayerPanel.SuspendLayout();
     this.blackPlayerPanel.SuspendLayout();
     this.difficultyTabPage.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.blackDifficultyTB)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.whiteDifficultyTB)).BeginInit();
     this.SuspendLayout();
     //
     // optionsTabControl
     //
     this.optionsTabControl.Controls.Add(this.displayTabPage);
     this.optionsTabControl.Controls.Add(this.playersTabPage);
     this.optionsTabControl.Controls.Add(this.difficultyTabPage);
     this.optionsTabControl.Location      = new System.Drawing.Point(8, 16);
     this.optionsTabControl.Name          = "optionsTabControl";
     this.optionsTabControl.SelectedIndex = 0;
     this.optionsTabControl.Size          = new System.Drawing.Size(288, 216);
     this.optionsTabControl.TabIndex      = 0;
     //
     // displayTabPage
     //
     this.displayTabPage.Controls.Add(this.previewMovesCheckBox);
     this.displayTabPage.Controls.Add(this.moveIndicatorColorButton);
     this.displayTabPage.Controls.Add(this.moveIndicatorColorPanel);
     this.displayTabPage.Controls.Add(this.moveIndicatorColorLabel);
     this.displayTabPage.Controls.Add(this.animateMovesCheckBox);
     this.displayTabPage.Controls.Add(this.validColorButton);
     this.displayTabPage.Controls.Add(this.validColorPanel);
     this.displayTabPage.Controls.Add(this.validColorLabel);
     this.displayTabPage.Controls.Add(this.activeColorButton);
     this.displayTabPage.Controls.Add(this.activeColorPanel);
     this.displayTabPage.Controls.Add(this.activeColorLabel);
     this.displayTabPage.Controls.Add(this.boardColorButton);
     this.displayTabPage.Controls.Add(this.boardColorPanel);
     this.displayTabPage.Controls.Add(this.boardColorLabel);
     this.displayTabPage.Controls.Add(this.showValidMovesCheckBox);
     this.displayTabPage.Location = new System.Drawing.Point(4, 22);
     this.displayTabPage.Name     = "displayTabPage";
     this.displayTabPage.Size     = new System.Drawing.Size(280, 190);
     this.displayTabPage.TabIndex = 0;
     this.displayTabPage.Text     = "Display";
     //
     // previewMovesCheckBox
     //
     this.previewMovesCheckBox.Location = new System.Drawing.Point(144, 10);
     this.previewMovesCheckBox.Name     = "previewMovesCheckBox";
     this.previewMovesCheckBox.Size     = new System.Drawing.Size(104, 24);
     this.previewMovesCheckBox.TabIndex = 1;
     this.previewMovesCheckBox.Text     = "Preview moves";
     //
     // moveIndicatorColorButton
     //
     this.moveIndicatorColorButton.Location = new System.Drawing.Point(175, 157);
     this.moveIndicatorColorButton.Name     = "moveIndicatorColorButton";
     this.moveIndicatorColorButton.Size     = new System.Drawing.Size(75, 23);
     this.moveIndicatorColorButton.TabIndex = 14;
     this.moveIndicatorColorButton.Text     = "Select...";
     this.moveIndicatorColorButton.Click   += new System.EventHandler(this.moveIndicatorColorButton_Click);
     //
     // moveIndicatorColorPanel
     //
     this.moveIndicatorColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.moveIndicatorColorPanel.Location    = new System.Drawing.Point(143, 160);
     this.moveIndicatorColorPanel.Name        = "moveIndicatorColorPanel";
     this.moveIndicatorColorPanel.Size        = new System.Drawing.Size(16, 16);
     this.moveIndicatorColorPanel.TabIndex    = 13;
     //
     // moveIndicatorColorLabel
     //
     this.moveIndicatorColorLabel.AutoSize = true;
     this.moveIndicatorColorLabel.Location = new System.Drawing.Point(27, 162);
     this.moveIndicatorColorLabel.Name     = "moveIndicatorColorLabel";
     this.moveIndicatorColorLabel.Size     = new System.Drawing.Size(106, 13);
     this.moveIndicatorColorLabel.TabIndex = 12;
     this.moveIndicatorColorLabel.Text     = "Move indicator color:";
     //
     // animateMovesCheckBox
     //
     this.animateMovesCheckBox.Location = new System.Drawing.Point(16, 34);
     this.animateMovesCheckBox.Name     = "animateMovesCheckBox";
     this.animateMovesCheckBox.Size     = new System.Drawing.Size(104, 24);
     this.animateMovesCheckBox.TabIndex = 2;
     this.animateMovesCheckBox.Text     = "Animate moves";
     //
     // validColorButton
     //
     this.validColorButton.Location = new System.Drawing.Point(175, 93);
     this.validColorButton.Name     = "validColorButton";
     this.validColorButton.Size     = new System.Drawing.Size(75, 23);
     this.validColorButton.TabIndex = 8;
     this.validColorButton.Text     = "Select...";
     this.validColorButton.Click   += new System.EventHandler(this.validColorButton_Click);
     //
     // validColorPanel
     //
     this.validColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.validColorPanel.Location    = new System.Drawing.Point(143, 96);
     this.validColorPanel.Name        = "validColorPanel";
     this.validColorPanel.Size        = new System.Drawing.Size(16, 16);
     this.validColorPanel.TabIndex    = 7;
     //
     // validColorLabel
     //
     this.validColorLabel.AutoSize = true;
     this.validColorLabel.Location = new System.Drawing.Point(45, 98);
     this.validColorLabel.Name     = "validColorLabel";
     this.validColorLabel.Size     = new System.Drawing.Size(88, 13);
     this.validColorLabel.TabIndex = 6;
     this.validColorLabel.Text     = "Valid move color:";
     //
     // activeColorButton
     //
     this.activeColorButton.Location = new System.Drawing.Point(175, 125);
     this.activeColorButton.Name     = "activeColorButton";
     this.activeColorButton.Size     = new System.Drawing.Size(75, 23);
     this.activeColorButton.TabIndex = 11;
     this.activeColorButton.Text     = "Select...";
     this.activeColorButton.Click   += new System.EventHandler(this.activeColorButton_Click);
     //
     // activeColorPanel
     //
     this.activeColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.activeColorPanel.Location    = new System.Drawing.Point(143, 128);
     this.activeColorPanel.Name        = "activeColorPanel";
     this.activeColorPanel.Size        = new System.Drawing.Size(16, 16);
     this.activeColorPanel.TabIndex    = 10;
     //
     // activeColorLabel
     //
     this.activeColorLabel.AutoSize = true;
     this.activeColorLabel.Location = new System.Drawing.Point(32, 130);
     this.activeColorLabel.Name     = "activeColorLabel";
     this.activeColorLabel.Size     = new System.Drawing.Size(101, 13);
     this.activeColorLabel.TabIndex = 9;
     this.activeColorLabel.Text     = "Active square color:";
     //
     // boardColorButton
     //
     this.boardColorButton.Location = new System.Drawing.Point(175, 61);
     this.boardColorButton.Name     = "boardColorButton";
     this.boardColorButton.Size     = new System.Drawing.Size(75, 23);
     this.boardColorButton.TabIndex = 5;
     this.boardColorButton.Text     = "Select...";
     this.boardColorButton.Click   += new System.EventHandler(this.boardColorButton_Click);
     //
     // boardColorPanel
     //
     this.boardColorPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.boardColorPanel.Location    = new System.Drawing.Point(143, 64);
     this.boardColorPanel.Name        = "boardColorPanel";
     this.boardColorPanel.Size        = new System.Drawing.Size(16, 16);
     this.boardColorPanel.TabIndex    = 4;
     //
     // boardColorLabel
     //
     this.boardColorLabel.AutoSize = true;
     this.boardColorLabel.Location = new System.Drawing.Point(71, 66);
     this.boardColorLabel.Name     = "boardColorLabel";
     this.boardColorLabel.Size     = new System.Drawing.Size(64, 13);
     this.boardColorLabel.TabIndex = 3;
     this.boardColorLabel.Text     = "Board color:";
     //
     // showValidMovesCheckBox
     //
     this.showValidMovesCheckBox.Location = new System.Drawing.Point(16, 10);
     this.showValidMovesCheckBox.Name     = "showValidMovesCheckBox";
     this.showValidMovesCheckBox.Size     = new System.Drawing.Size(120, 24);
     this.showValidMovesCheckBox.TabIndex = 0;
     this.showValidMovesCheckBox.Text     = "Show valid moves";
     //
     // playersTabPage
     //
     this.playersTabPage.Controls.Add(this.whitePlayerPanel);
     this.playersTabPage.Controls.Add(this.blackPlayerPanel);
     this.playersTabPage.Location = new System.Drawing.Point(4, 22);
     this.playersTabPage.Name     = "playersTabPage";
     this.playersTabPage.Size     = new System.Drawing.Size(280, 190);
     this.playersTabPage.TabIndex = 1;
     this.playersTabPage.Text     = "Players";
     //
     // whitePlayerPanel
     //
     this.whitePlayerPanel.Controls.Add(this.whitePlayerUserRadioButton);
     this.whitePlayerPanel.Controls.Add(this.whiteExampleAIRadioButton);
     this.whitePlayerPanel.Controls.Add(this.whitePlayerComputerRadioButton);
     this.whitePlayerPanel.Controls.Add(this.whitePlayerLabel);
     this.whitePlayerPanel.Location = new System.Drawing.Point(40, 99);
     this.whitePlayerPanel.Name     = "whitePlayerPanel";
     this.whitePlayerPanel.Size     = new System.Drawing.Size(200, 82);
     this.whitePlayerPanel.TabIndex = 5;
     //
     // whitePlayerUserRadioButton
     //
     this.whitePlayerUserRadioButton.Location = new System.Drawing.Point(88, 54);
     this.whitePlayerUserRadioButton.Name     = "whitePlayerUserRadioButton";
     this.whitePlayerUserRadioButton.Size     = new System.Drawing.Size(104, 24);
     this.whitePlayerUserRadioButton.TabIndex = 1;
     this.whitePlayerUserRadioButton.Text     = "User";
     //
     // whiteExampleAIRadioButton
     //
     this.whiteExampleAIRadioButton.Location = new System.Drawing.Point(88, 6);
     this.whiteExampleAIRadioButton.Name     = "whiteExampleAIRadioButton";
     this.whiteExampleAIRadioButton.Size     = new System.Drawing.Size(104, 24);
     this.whiteExampleAIRadioButton.TabIndex = 0;
     this.whiteExampleAIRadioButton.Text     = "Example AI";
     //
     // whitePlayerComputerRadioButton
     //
     this.whitePlayerComputerRadioButton.Location = new System.Drawing.Point(88, 30);
     this.whitePlayerComputerRadioButton.Name     = "whitePlayerComputerRadioButton";
     this.whitePlayerComputerRadioButton.Size     = new System.Drawing.Size(104, 24);
     this.whitePlayerComputerRadioButton.TabIndex = 0;
     this.whitePlayerComputerRadioButton.Text     = "Student AI";
     //
     // whitePlayerLabel
     //
     this.whitePlayerLabel.AutoSize = true;
     this.whitePlayerLabel.Location = new System.Drawing.Point(8, 12);
     this.whitePlayerLabel.Name     = "whitePlayerLabel";
     this.whitePlayerLabel.Size     = new System.Drawing.Size(69, 13);
     this.whitePlayerLabel.TabIndex = 4;
     this.whitePlayerLabel.Text     = "White player:";
     //
     // blackPlayerPanel
     //
     this.blackPlayerPanel.Controls.Add(this.blackPlayerUserRadioButton);
     this.blackPlayerPanel.Controls.Add(this.blackExampleAIRadioButton);
     this.blackPlayerPanel.Controls.Add(this.blackPlayerComputerRadioButton);
     this.blackPlayerPanel.Controls.Add(this.blackPlayerLabel);
     this.blackPlayerPanel.Location = new System.Drawing.Point(40, 9);
     this.blackPlayerPanel.Name     = "blackPlayerPanel";
     this.blackPlayerPanel.Size     = new System.Drawing.Size(200, 79);
     this.blackPlayerPanel.TabIndex = 3;
     //
     // blackPlayerUserRadioButton
     //
     this.blackPlayerUserRadioButton.Location = new System.Drawing.Point(88, 54);
     this.blackPlayerUserRadioButton.Name     = "blackPlayerUserRadioButton";
     this.blackPlayerUserRadioButton.Size     = new System.Drawing.Size(104, 24);
     this.blackPlayerUserRadioButton.TabIndex = 2;
     this.blackPlayerUserRadioButton.Text     = "User";
     //
     // blackExampleAIRadioButton
     //
     this.blackExampleAIRadioButton.Location = new System.Drawing.Point(88, 6);
     this.blackExampleAIRadioButton.Name     = "blackExampleAIRadioButton";
     this.blackExampleAIRadioButton.Size     = new System.Drawing.Size(104, 24);
     this.blackExampleAIRadioButton.TabIndex = 0;
     this.blackExampleAIRadioButton.Text     = "Example AI";
     //
     // blackPlayerComputerRadioButton
     //
     this.blackPlayerComputerRadioButton.Location = new System.Drawing.Point(88, 30);
     this.blackPlayerComputerRadioButton.Name     = "blackPlayerComputerRadioButton";
     this.blackPlayerComputerRadioButton.Size     = new System.Drawing.Size(104, 24);
     this.blackPlayerComputerRadioButton.TabIndex = 1;
     this.blackPlayerComputerRadioButton.Text     = "Student AI";
     //
     // blackPlayerLabel
     //
     this.blackPlayerLabel.AutoSize = true;
     this.blackPlayerLabel.Location = new System.Drawing.Point(9, 12);
     this.blackPlayerLabel.Name     = "blackPlayerLabel";
     this.blackPlayerLabel.Size     = new System.Drawing.Size(68, 13);
     this.blackPlayerLabel.TabIndex = 2;
     this.blackPlayerLabel.Text     = "Black player:";
     //
     // difficultyTabPage
     //
     this.difficultyTabPage.Controls.Add(this.tableLayoutPanel1);
     this.difficultyTabPage.Location = new System.Drawing.Point(4, 22);
     this.difficultyTabPage.Name     = "difficultyTabPage";
     this.difficultyTabPage.Size     = new System.Drawing.Size(280, 190);
     this.difficultyTabPage.TabIndex = 2;
     this.difficultyTabPage.Text     = "Difficulty";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 1;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.groupBox1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.groupBox2, 0, 1);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(280, 190);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.blackDifficultyLBL);
     this.groupBox1.Controls.Add(this.blackDifficultyTB);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(3, 3);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(274, 89);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Black Player";
     //
     // blackDifficultyLBL
     //
     this.blackDifficultyLBL.AutoSize = true;
     this.blackDifficultyLBL.Location = new System.Drawing.Point(6, 67);
     this.blackDifficultyLBL.Name     = "blackDifficultyLBL";
     this.blackDifficultyLBL.Size     = new System.Drawing.Size(160, 13);
     this.blackDifficultyLBL.TabIndex = 1;
     this.blackDifficultyLBL.Text     = "Look Ahead Depth: 0 - Beginner";
     //
     // blackDifficultyTB
     //
     this.blackDifficultyTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.blackDifficultyTB.LargeChange = 1;
     this.blackDifficultyTB.Location    = new System.Drawing.Point(6, 19);
     this.blackDifficultyTB.Maximum     = 2;
     this.blackDifficultyTB.Name        = "blackDifficultyTB";
     this.blackDifficultyTB.Size        = new System.Drawing.Size(263, 45);
     this.blackDifficultyTB.TabIndex    = 0;
     this.blackDifficultyTB.Scroll     += new System.EventHandler(this.blackDifficultyTB_Scroll);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.whiteDifficultyLBL);
     this.groupBox2.Controls.Add(this.whiteDifficultyTB);
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(3, 98);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(274, 89);
     this.groupBox2.TabIndex = 0;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "White Player";
     //
     // whiteDifficultyLBL
     //
     this.whiteDifficultyLBL.AutoSize = true;
     this.whiteDifficultyLBL.Location = new System.Drawing.Point(6, 67);
     this.whiteDifficultyLBL.Name     = "whiteDifficultyLBL";
     this.whiteDifficultyLBL.Size     = new System.Drawing.Size(160, 13);
     this.whiteDifficultyLBL.TabIndex = 1;
     this.whiteDifficultyLBL.Text     = "Look Ahead Depth: 0 - Beginner";
     //
     // whiteDifficultyTB
     //
     this.whiteDifficultyTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.whiteDifficultyTB.LargeChange = 1;
     this.whiteDifficultyTB.Location    = new System.Drawing.Point(6, 19);
     this.whiteDifficultyTB.Maximum     = 2;
     this.whiteDifficultyTB.Name        = "whiteDifficultyTB";
     this.whiteDifficultyTB.Size        = new System.Drawing.Size(263, 45);
     this.whiteDifficultyTB.TabIndex    = 0;
     this.whiteDifficultyTB.Scroll     += new System.EventHandler(this.whiteDifficultyTB_Scroll);
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.okButton.Location     = new System.Drawing.Point(136, 240);
     this.okButton.Name         = "okButton";
     this.okButton.Size         = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex     = 1;
     this.okButton.Text         = "OK";
     this.okButton.Click       += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location     = new System.Drawing.Point(221, 240);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex     = 2;
     this.cancelButton.Text         = "Cancel";
     //
     // restoreDefaultsButton
     //
     this.restoreDefaultsButton.Location = new System.Drawing.Point(8, 240);
     this.restoreDefaultsButton.Name     = "restoreDefaultsButton";
     this.restoreDefaultsButton.Size     = new System.Drawing.Size(96, 23);
     this.restoreDefaultsButton.TabIndex = 3;
     this.restoreDefaultsButton.Text     = "Restore Defaults";
     this.restoreDefaultsButton.Click   += new System.EventHandler(this.restoreDefaultsButton_Click);
     //
     // OptionsDialog
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(304, 276);
     this.ControlBox        = false;
     this.Controls.Add(this.restoreDefaultsButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.optionsTabControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "OptionsDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Options";
     this.optionsTabControl.ResumeLayout(false);
     this.displayTabPage.ResumeLayout(false);
     this.displayTabPage.PerformLayout();
     this.playersTabPage.ResumeLayout(false);
     this.whitePlayerPanel.ResumeLayout(false);
     this.whitePlayerPanel.PerformLayout();
     this.blackPlayerPanel.ResumeLayout(false);
     this.blackPlayerPanel.PerformLayout();
     this.difficultyTabPage.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.blackDifficultyTB)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.whiteDifficultyTB)).EndInit();
     this.ResumeLayout(false);
 }
Example #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     BYHXPrinterManager.Style style1 = new BYHXPrinterManager.Style();
     BYHXPrinterManager.Style style2 = new BYHXPrinterManager.Style();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SpotColorMaskSetting));
     this.grouper1             = new BYHXPrinterManager.GradientControls.Grouper();
     this.groupBox1            = new System.Windows.Forms.Panel();
     this.m_clbimage1          = new System.Windows.Forms.CheckedListBox();
     this.m_clbimage1Opt       = new System.Windows.Forms.CheckedListBox();
     this.m_clbimage2Opt       = new System.Windows.Forms.CheckedListBox();
     this.m_cbkSpotColor1Image = new System.Windows.Forms.RadioButton();
     this.m_cbkSpotColor1Rip   = new System.Windows.Forms.RadioButton();
     this.m_numAllpercent1     = new System.Windows.Forms.NumericUpDown();
     this.m_cbkSpotColor1All   = new System.Windows.Forms.RadioButton();
     this.grouper1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_numAllpercent1)).BeginInit();
     this.SuspendLayout();
     //
     // grouper1
     //
     this.grouper1.BackgroundGradientMode = BYHXPrinterManager.GradientControls.GroupBoxGradientMode.Vertical;
     this.grouper1.BorderThickness        = 1F;
     this.grouper1.Controls.Add(this.groupBox1);
     this.grouper1.Controls.Add(this.m_cbkSpotColor1Image);
     this.grouper1.Controls.Add(this.m_cbkSpotColor1Rip);
     this.grouper1.Controls.Add(this.m_numAllpercent1);
     this.grouper1.Controls.Add(this.m_cbkSpotColor1All);
     style1.Color1 = System.Drawing.Color.LightBlue;
     style1.Color2 = System.Drawing.Color.SteelBlue;
     this.grouper1.GradientColors = style1;
     this.grouper1.GroupImage     = null;
     resources.ApplyResources(this.grouper1, "grouper1");
     this.grouper1.Name            = "grouper1";
     this.grouper1.PaintGroupBox   = false;
     this.grouper1.RoundCorners    = 10;
     this.grouper1.ShadowColor     = System.Drawing.Color.DarkGray;
     this.grouper1.ShadowControl   = false;
     this.grouper1.ShadowThickness = 3;
     this.grouper1.TabStop         = false;
     style2.Color1 = System.Drawing.Color.LightBlue;
     style2.Color2 = System.Drawing.Color.SteelBlue;
     this.grouper1.TitileGradientColors = style2;
     this.grouper1.TitleStyle           = BYHXPrinterManager.GradientControls.TitleStyles.Default;
     this.grouper1.TitleTextColor       = System.Drawing.SystemColors.ActiveCaption;
     //
     // groupBox1
     //
     this.groupBox1.BackColor   = System.Drawing.Color.Transparent;
     this.groupBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.groupBox1.Controls.Add(this.m_clbimage1);
     this.groupBox1.Controls.Add(this.m_clbimage1Opt);
     this.groupBox1.Controls.Add(this.m_clbimage2Opt);
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.Name = "groupBox1";
     //
     // m_clbimage1
     //
     this.m_clbimage1.CheckOnClick = true;
     resources.ApplyResources(this.m_clbimage1, "m_clbimage1");
     this.m_clbimage1.Name       = "m_clbimage1";
     this.m_clbimage1.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.m_clbimage1_ItemCheck);
     //
     // m_clbimage1Opt
     //
     this.m_clbimage1Opt.CheckOnClick = true;
     resources.ApplyResources(this.m_clbimage1Opt, "m_clbimage1Opt");
     this.m_clbimage1Opt.Name = "m_clbimage1Opt";
     //
     // m_clbimage2Opt
     //
     this.m_clbimage2Opt.CheckOnClick = true;
     resources.ApplyResources(this.m_clbimage2Opt, "m_clbimage2Opt");
     this.m_clbimage2Opt.Name = "m_clbimage2Opt";
     //
     // m_cbkSpotColor1Image
     //
     this.m_cbkSpotColor1Image.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.m_cbkSpotColor1Image, "m_cbkSpotColor1Image");
     this.m_cbkSpotColor1Image.Name = "m_cbkSpotColor1Image";
     this.m_cbkSpotColor1Image.UseVisualStyleBackColor = false;
     this.m_cbkSpotColor1Image.CheckedChanged         += new System.EventHandler(this.m_cbkSpotColor1Image_CheckedChanged);
     //
     // m_cbkSpotColor1Rip
     //
     this.m_cbkSpotColor1Rip.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.m_cbkSpotColor1Rip, "m_cbkSpotColor1Rip");
     this.m_cbkSpotColor1Rip.Name = "m_cbkSpotColor1Rip";
     this.m_cbkSpotColor1Rip.UseVisualStyleBackColor = false;
     this.m_cbkSpotColor1Rip.CheckedChanged         += new System.EventHandler(this.m_cbkSpotColor1All_CheckedChanged);
     //
     // m_numAllpercent1
     //
     resources.ApplyResources(this.m_numAllpercent1, "m_numAllpercent1");
     this.m_numAllpercent1.Name = "m_numAllpercent1";
     //
     // m_cbkSpotColor1All
     //
     this.m_cbkSpotColor1All.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.m_cbkSpotColor1All, "m_cbkSpotColor1All");
     this.m_cbkSpotColor1All.Name = "m_cbkSpotColor1All";
     this.m_cbkSpotColor1All.UseVisualStyleBackColor = false;
     this.m_cbkSpotColor1All.CheckedChanged         += new System.EventHandler(this.m_cbkSpotColor1All_CheckedChanged);
     //
     // SpotColorMaskSetting
     //
     this.Controls.Add(this.grouper1);
     this.Name = "SpotColorMaskSetting";
     resources.ApplyResources(this, "$this");
     this.grouper1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_numAllpercent1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFRegistroInformacoes));
     this.m_gbGeral    = new System.Windows.Forms.GroupBox();
     this.m_btConcluir = new System.Windows.Forms.Button();
     this.m_gbImagem   = new System.Windows.Forms.GroupBox();
     this.m_picImagem  = new System.Windows.Forms.PictureBox();
     this.groupBox1    = new System.Windows.Forms.GroupBox();
     this.m_rbConhecimentoSiscobras4  = new System.Windows.Forms.RadioButton();
     this.m_rbConhecimentoSiscobras3  = new System.Windows.Forms.RadioButton();
     this.m_rbConhecimentoSiscobras5  = new System.Windows.Forms.RadioButton();
     this.m_rbConhecimentoSiscobras2  = new System.Windows.Forms.RadioButton();
     this.m_rbConhecimentoSiscobras1  = new System.Windows.Forms.RadioButton();
     this.m_txtConhecimentoSiscobras5 = new mdlComponentesGraficos.TextBox();
     this.m_gbIdentificacao           = new System.Windows.Forms.GroupBox();
     this.m_txtProcessoExportacao3    = new mdlComponentesGraficos.TextBox();
     this.m_rbProcessoExportacao3     = new System.Windows.Forms.RadioButton();
     this.m_rbProcessoExportacao4     = new System.Windows.Forms.RadioButton();
     this.m_rbProcessoExportacao2     = new System.Windows.Forms.RadioButton();
     this.m_rbProcessoExportacao1     = new System.Windows.Forms.RadioButton();
     this.m_txtProcessoExportacao4    = new mdlComponentesGraficos.TextBox();
     this.m_btVoltar   = new System.Windows.Forms.Button();
     this.m_btCancelar = new System.Windows.Forms.Button();
     this.m_ttDica     = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbGeral.SuspendLayout();
     this.m_gbImagem.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.m_gbIdentificacao.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbGeral
     //
     this.m_gbGeral.Controls.Add(this.m_btConcluir);
     this.m_gbGeral.Controls.Add(this.m_gbImagem);
     this.m_gbGeral.Controls.Add(this.groupBox1);
     this.m_gbGeral.Controls.Add(this.m_gbIdentificacao);
     this.m_gbGeral.Controls.Add(this.m_btVoltar);
     this.m_gbGeral.Controls.Add(this.m_btCancelar);
     this.m_gbGeral.Location = new System.Drawing.Point(6, 2);
     this.m_gbGeral.Name     = "m_gbGeral";
     this.m_gbGeral.Size     = new System.Drawing.Size(429, 409);
     this.m_gbGeral.TabIndex = 2;
     this.m_gbGeral.TabStop  = false;
     //
     // m_btConcluir
     //
     this.m_btConcluir.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btConcluir.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btConcluir.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btConcluir.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btConcluir.Image       = ((System.Drawing.Image)(resources.GetObject("m_btConcluir.Image")));
     this.m_btConcluir.Location    = new System.Drawing.Point(248, 376);
     this.m_btConcluir.Name        = "m_btConcluir";
     this.m_btConcluir.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btConcluir.Size        = new System.Drawing.Size(57, 25);
     this.m_btConcluir.TabIndex    = 15;
     this.m_ttDica.SetToolTip(this.m_btConcluir, "Salvar e Prosseguir");
     this.m_btConcluir.Click += new System.EventHandler(this.m_btConcluir_Click);
     //
     // m_gbImagem
     //
     this.m_gbImagem.Controls.Add(this.m_picImagem);
     this.m_gbImagem.Location = new System.Drawing.Point(8, 7);
     this.m_gbImagem.Name     = "m_gbImagem";
     this.m_gbImagem.Size     = new System.Drawing.Size(416, 112);
     this.m_gbImagem.TabIndex = 50;
     this.m_gbImagem.TabStop  = false;
     //
     // m_picImagem
     //
     this.m_picImagem.Image    = ((System.Drawing.Image)(resources.GetObject("m_picImagem.Image")));
     this.m_picImagem.Location = new System.Drawing.Point(8, 16);
     this.m_picImagem.Name     = "m_picImagem";
     this.m_picImagem.Size     = new System.Drawing.Size(400, 88);
     this.m_picImagem.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.m_picImagem.TabIndex = 0;
     this.m_picImagem.TabStop  = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.m_rbConhecimentoSiscobras4);
     this.groupBox1.Controls.Add(this.m_rbConhecimentoSiscobras3);
     this.groupBox1.Controls.Add(this.m_rbConhecimentoSiscobras5);
     this.groupBox1.Controls.Add(this.m_rbConhecimentoSiscobras2);
     this.groupBox1.Controls.Add(this.m_rbConhecimentoSiscobras1);
     this.groupBox1.Controls.Add(this.m_txtConhecimentoSiscobras5);
     this.groupBox1.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(9, 247);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(415, 124);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Como você soube do Siscobras";
     //
     // m_rbConhecimentoSiscobras4
     //
     this.m_rbConhecimentoSiscobras4.Location = new System.Drawing.Point(16, 63);
     this.m_rbConhecimentoSiscobras4.Name     = "m_rbConhecimentoSiscobras4";
     this.m_rbConhecimentoSiscobras4.Size     = new System.Drawing.Size(263, 16);
     this.m_rbConhecimentoSiscobras4.TabIndex = 12;
     this.m_rbConhecimentoSiscobras4.Text     = "Amigo";
     //
     // m_rbConhecimentoSiscobras3
     //
     this.m_rbConhecimentoSiscobras3.Location = new System.Drawing.Point(16, 47);
     this.m_rbConhecimentoSiscobras3.Name     = "m_rbConhecimentoSiscobras3";
     this.m_rbConhecimentoSiscobras3.Size     = new System.Drawing.Size(263, 16);
     this.m_rbConhecimentoSiscobras3.TabIndex = 11;
     this.m_rbConhecimentoSiscobras3.Text     = "Telefone";
     //
     // m_rbConhecimentoSiscobras5
     //
     this.m_rbConhecimentoSiscobras5.Location = new System.Drawing.Point(16, 79);
     this.m_rbConhecimentoSiscobras5.Name     = "m_rbConhecimentoSiscobras5";
     this.m_rbConhecimentoSiscobras5.Size     = new System.Drawing.Size(352, 16);
     this.m_rbConhecimentoSiscobras5.TabIndex = 13;
     this.m_rbConhecimentoSiscobras5.Text     = "Outros meios";
     //
     // m_rbConhecimentoSiscobras2
     //
     this.m_rbConhecimentoSiscobras2.Location = new System.Drawing.Point(16, 31);
     this.m_rbConhecimentoSiscobras2.Name     = "m_rbConhecimentoSiscobras2";
     this.m_rbConhecimentoSiscobras2.Size     = new System.Drawing.Size(304, 16);
     this.m_rbConhecimentoSiscobras2.TabIndex = 10;
     this.m_rbConhecimentoSiscobras2.Text     = "Correio";
     //
     // m_rbConhecimentoSiscobras1
     //
     this.m_rbConhecimentoSiscobras1.Checked  = true;
     this.m_rbConhecimentoSiscobras1.Location = new System.Drawing.Point(16, 17);
     this.m_rbConhecimentoSiscobras1.Name     = "m_rbConhecimentoSiscobras1";
     this.m_rbConhecimentoSiscobras1.Size     = new System.Drawing.Size(352, 16);
     this.m_rbConhecimentoSiscobras1.TabIndex = 9;
     this.m_rbConhecimentoSiscobras1.TabStop  = true;
     this.m_rbConhecimentoSiscobras1.Text     = "Internet";
     //
     // m_txtConhecimentoSiscobras5
     //
     this.m_txtConhecimentoSiscobras5.Location = new System.Drawing.Point(36, 98);
     this.m_txtConhecimentoSiscobras5.Name     = "m_txtConhecimentoSiscobras5";
     this.m_txtConhecimentoSiscobras5.Size     = new System.Drawing.Size(360, 20);
     this.m_txtConhecimentoSiscobras5.TabIndex = 14;
     this.m_txtConhecimentoSiscobras5.Text     = "";
     //
     // m_gbIdentificacao
     //
     this.m_gbIdentificacao.Controls.Add(this.m_txtProcessoExportacao3);
     this.m_gbIdentificacao.Controls.Add(this.m_rbProcessoExportacao3);
     this.m_gbIdentificacao.Controls.Add(this.m_rbProcessoExportacao4);
     this.m_gbIdentificacao.Controls.Add(this.m_rbProcessoExportacao2);
     this.m_gbIdentificacao.Controls.Add(this.m_rbProcessoExportacao1);
     this.m_gbIdentificacao.Controls.Add(this.m_txtProcessoExportacao4);
     this.m_gbIdentificacao.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbIdentificacao.Location = new System.Drawing.Point(8, 117);
     this.m_gbIdentificacao.Name     = "m_gbIdentificacao";
     this.m_gbIdentificacao.Size     = new System.Drawing.Size(416, 129);
     this.m_gbIdentificacao.TabIndex = 1;
     this.m_gbIdentificacao.TabStop  = false;
     this.m_gbIdentificacao.Text     = "Como você realiza atualmente seus processos de exportação";
     //
     // m_txtProcessoExportacao3
     //
     this.m_txtProcessoExportacao3.Location = new System.Drawing.Point(38, 67);
     this.m_txtProcessoExportacao3.Name     = "m_txtProcessoExportacao3";
     this.m_txtProcessoExportacao3.Size     = new System.Drawing.Size(360, 20);
     this.m_txtProcessoExportacao3.TabIndex = 5;
     this.m_txtProcessoExportacao3.Text     = "";
     //
     // m_rbProcessoExportacao3
     //
     this.m_rbProcessoExportacao3.Location = new System.Drawing.Point(17, 52);
     this.m_rbProcessoExportacao3.Name     = "m_rbProcessoExportacao3";
     this.m_rbProcessoExportacao3.Size     = new System.Drawing.Size(263, 16);
     this.m_rbProcessoExportacao3.TabIndex = 4;
     this.m_rbProcessoExportacao3.Text     = "Software especifico de comercio exterior";
     //
     // m_rbProcessoExportacao4
     //
     this.m_rbProcessoExportacao4.Location = new System.Drawing.Point(18, 87);
     this.m_rbProcessoExportacao4.Name     = "m_rbProcessoExportacao4";
     this.m_rbProcessoExportacao4.Size     = new System.Drawing.Size(352, 16);
     this.m_rbProcessoExportacao4.TabIndex = 6;
     this.m_rbProcessoExportacao4.Text     = "Outros meios";
     //
     // m_rbProcessoExportacao2
     //
     this.m_rbProcessoExportacao2.Location = new System.Drawing.Point(16, 33);
     this.m_rbProcessoExportacao2.Name     = "m_rbProcessoExportacao2";
     this.m_rbProcessoExportacao2.Size     = new System.Drawing.Size(304, 16);
     this.m_rbProcessoExportacao2.TabIndex = 3;
     this.m_rbProcessoExportacao2.Text     = "Softwares de processamento de texto e planilhas";
     //
     // m_rbProcessoExportacao1
     //
     this.m_rbProcessoExportacao1.Checked  = true;
     this.m_rbProcessoExportacao1.Location = new System.Drawing.Point(16, 17);
     this.m_rbProcessoExportacao1.Name     = "m_rbProcessoExportacao1";
     this.m_rbProcessoExportacao1.Size     = new System.Drawing.Size(352, 16);
     this.m_rbProcessoExportacao1.TabIndex = 2;
     this.m_rbProcessoExportacao1.TabStop  = true;
     this.m_rbProcessoExportacao1.Text     = "Nunca exportei";
     //
     // m_txtProcessoExportacao4
     //
     this.m_txtProcessoExportacao4.Location = new System.Drawing.Point(38, 103);
     this.m_txtProcessoExportacao4.Name     = "m_txtProcessoExportacao4";
     this.m_txtProcessoExportacao4.Size     = new System.Drawing.Size(360, 20);
     this.m_txtProcessoExportacao4.TabIndex = 7;
     this.m_txtProcessoExportacao4.Text     = "";
     //
     // m_btVoltar
     //
     this.m_btVoltar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btVoltar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btVoltar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btVoltar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btVoltar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btVoltar.Image")));
     this.m_btVoltar.Location    = new System.Drawing.Point(121, 375);
     this.m_btVoltar.Name        = "m_btVoltar";
     this.m_btVoltar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btVoltar.Size        = new System.Drawing.Size(57, 25);
     this.m_btVoltar.TabIndex    = 16;
     this.m_ttDica.SetToolTip(this.m_btVoltar, "Voltar");
     this.m_btVoltar.Click += new System.EventHandler(this.m_btVoltar_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(185, 375);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 25);
     this.m_btCancelar.TabIndex    = 17;
     this.m_ttDica.SetToolTip(this.m_btCancelar, "Cancelar");
     this.m_btCancelar.Click += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_ttDica
     //
     this.m_ttDica.AutomaticDelay = 100;
     this.m_ttDica.AutoPopDelay   = 5000;
     this.m_ttDica.InitialDelay   = 100;
     this.m_ttDica.ReshowDelay    = 20;
     //
     // frmFRegistroInformacoes
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(442, 416);
     this.Controls.Add(this.m_gbGeral);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFRegistroInformacoes";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Informações adicionais";
     this.Load           += new System.EventHandler(this.frmFRegistroInformacoes_Load);
     this.m_gbGeral.ResumeLayout(false);
     this.m_gbImagem.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.m_gbIdentificacao.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InteractivityCtl));
     this.grpBoxVisibility = new System.Windows.Forms.GroupBox();
     this.bHidden          = new System.Windows.Forms.Button();
     this.cbToggle         = new System.Windows.Forms.ComboBox();
     this.tbHidden         = new System.Windows.Forms.TextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.bBookmarkLink    = new System.Windows.Forms.Button();
     this.bHyperlink       = new System.Windows.Forms.Button();
     this.rbNoAction       = new System.Windows.Forms.RadioButton();
     this.bParameters      = new System.Windows.Forms.Button();
     this.bDrillthrough    = new System.Windows.Forms.Button();
     this.tbDrillthrough   = new System.Windows.Forms.TextBox();
     this.tbBookmarkLink   = new System.Windows.Forms.TextBox();
     this.tbHyperlink      = new System.Windows.Forms.TextBox();
     this.rbDrillthrough   = new System.Windows.Forms.RadioButton();
     this.rbBookmarkLink   = new System.Windows.Forms.RadioButton();
     this.rbHyperlink      = new System.Windows.Forms.RadioButton();
     this.label1           = new System.Windows.Forms.Label();
     this.tbBookmark       = new System.Windows.Forms.TextBox();
     this.bBookmark        = new System.Windows.Forms.Button();
     this.grpBoxVisibility.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // grpBoxVisibility
     //
     resources.ApplyResources(this.grpBoxVisibility, "grpBoxVisibility");
     this.grpBoxVisibility.Controls.Add(this.bHidden);
     this.grpBoxVisibility.Controls.Add(this.cbToggle);
     this.grpBoxVisibility.Controls.Add(this.tbHidden);
     this.grpBoxVisibility.Controls.Add(this.label3);
     this.grpBoxVisibility.Controls.Add(this.label2);
     this.grpBoxVisibility.Name    = "grpBoxVisibility";
     this.grpBoxVisibility.TabStop = false;
     //
     // bHidden
     //
     resources.ApplyResources(this.bHidden, "bHidden");
     this.bHidden.Name   = "bHidden";
     this.bHidden.Tag    = "visibility";
     this.bHidden.Click += new System.EventHandler(this.bExpr_Click);
     //
     // cbToggle
     //
     resources.ApplyResources(this.cbToggle, "cbToggle");
     this.cbToggle.Name = "cbToggle";
     this.cbToggle.SelectedIndexChanged += new System.EventHandler(this.cbToggle_SelectedIndexChanged);
     this.cbToggle.TextChanged          += new System.EventHandler(this.cbToggle_SelectedIndexChanged);
     //
     // tbHidden
     //
     resources.ApplyResources(this.tbHidden, "tbHidden");
     this.tbHidden.Name         = "tbHidden";
     this.tbHidden.TextChanged += new System.EventHandler(this.tbHidden_TextChanged);
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // groupBox1
     //
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.Controls.Add(this.bBookmarkLink);
     this.groupBox1.Controls.Add(this.bHyperlink);
     this.groupBox1.Controls.Add(this.rbNoAction);
     this.groupBox1.Controls.Add(this.bParameters);
     this.groupBox1.Controls.Add(this.bDrillthrough);
     this.groupBox1.Controls.Add(this.tbDrillthrough);
     this.groupBox1.Controls.Add(this.tbBookmarkLink);
     this.groupBox1.Controls.Add(this.tbHyperlink);
     this.groupBox1.Controls.Add(this.rbDrillthrough);
     this.groupBox1.Controls.Add(this.rbBookmarkLink);
     this.groupBox1.Controls.Add(this.rbHyperlink);
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     //
     // bBookmarkLink
     //
     resources.ApplyResources(this.bBookmarkLink, "bBookmarkLink");
     this.bBookmarkLink.Name   = "bBookmarkLink";
     this.bBookmarkLink.Tag    = "bookmarklink";
     this.bBookmarkLink.Click += new System.EventHandler(this.bExpr_Click);
     //
     // bHyperlink
     //
     resources.ApplyResources(this.bHyperlink, "bHyperlink");
     this.bHyperlink.Name   = "bHyperlink";
     this.bHyperlink.Tag    = "hyperlink";
     this.bHyperlink.Click += new System.EventHandler(this.bExpr_Click);
     //
     // rbNoAction
     //
     resources.ApplyResources(this.rbNoAction, "rbNoAction");
     this.rbNoAction.Name            = "rbNoAction";
     this.rbNoAction.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // bParameters
     //
     resources.ApplyResources(this.bParameters, "bParameters");
     this.bParameters.Name   = "bParameters";
     this.bParameters.Click += new System.EventHandler(this.bParameters_Click);
     //
     // bDrillthrough
     //
     resources.ApplyResources(this.bDrillthrough, "bDrillthrough");
     this.bDrillthrough.Name   = "bDrillthrough";
     this.bDrillthrough.Click += new System.EventHandler(this.bDrillthrough_Click);
     //
     // tbDrillthrough
     //
     resources.ApplyResources(this.tbDrillthrough, "tbDrillthrough");
     this.tbDrillthrough.Name         = "tbDrillthrough";
     this.tbDrillthrough.TextChanged += new System.EventHandler(this.tbAction_TextChanged);
     //
     // tbBookmarkLink
     //
     resources.ApplyResources(this.tbBookmarkLink, "tbBookmarkLink");
     this.tbBookmarkLink.Name         = "tbBookmarkLink";
     this.tbBookmarkLink.TextChanged += new System.EventHandler(this.tbAction_TextChanged);
     //
     // tbHyperlink
     //
     resources.ApplyResources(this.tbHyperlink, "tbHyperlink");
     this.tbHyperlink.Name         = "tbHyperlink";
     this.tbHyperlink.TextChanged += new System.EventHandler(this.tbAction_TextChanged);
     //
     // rbDrillthrough
     //
     resources.ApplyResources(this.rbDrillthrough, "rbDrillthrough");
     this.rbDrillthrough.Name            = "rbDrillthrough";
     this.rbDrillthrough.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // rbBookmarkLink
     //
     resources.ApplyResources(this.rbBookmarkLink, "rbBookmarkLink");
     this.rbBookmarkLink.Name            = "rbBookmarkLink";
     this.rbBookmarkLink.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // rbHyperlink
     //
     resources.ApplyResources(this.rbHyperlink, "rbHyperlink");
     this.rbHyperlink.Name            = "rbHyperlink";
     this.rbHyperlink.CheckedChanged += new System.EventHandler(this.rbAction_CheckedChanged);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // tbBookmark
     //
     resources.ApplyResources(this.tbBookmark, "tbBookmark");
     this.tbBookmark.Name = "tbBookmark";
     //
     // bBookmark
     //
     resources.ApplyResources(this.bBookmark, "bBookmark");
     this.bBookmark.Name   = "bBookmark";
     this.bBookmark.Tag    = "bookmark";
     this.bBookmark.Click += new System.EventHandler(this.bExpr_Click);
     //
     // InteractivityCtl
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.bBookmark);
     this.Controls.Add(this.tbBookmark);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.grpBoxVisibility);
     this.Name = "InteractivityCtl";
     this.grpBoxVisibility.ResumeLayout(false);
     this.grpBoxVisibility.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblOutput   = new System.Windows.Forms.Label();
     this.lstFontName = new System.Windows.Forms.ListBox();
     this.rad10       = new System.Windows.Forms.RadioButton();
     this.chkItalic   = new System.Windows.Forms.CheckBox();
     this.rad20       = new System.Windows.Forms.RadioButton();
     this.chkBold     = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // lblOutput
     //
     this.lblOutput.Font      = new System.Drawing.Font("Microsoft Sans Serif", 25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblOutput.Location  = new System.Drawing.Point(48, 24);
     this.lblOutput.Name      = "lblOutput";
     this.lblOutput.Size      = new System.Drawing.Size(184, 80);
     this.lblOutput.TabIndex  = 1;
     this.lblOutput.Text      = "Sample Text";
     this.lblOutput.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lstFontName
     //
     this.lstFontName.Items.AddRange(new object[] {
         "Arial",
         "Times New Roman",
         "Comic Sans MS"
     });
     this.lstFontName.Location              = new System.Drawing.Point(40, 144);
     this.lstFontName.Name                  = "lstFontName";
     this.lstFontName.Size                  = new System.Drawing.Size(192, 43);
     this.lstFontName.TabIndex              = 0;
     this.lstFontName.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
     //
     // rad10
     //
     this.rad10.Location        = new System.Drawing.Point(16, 200);
     this.rad10.Name            = "rad10";
     this.rad10.Size            = new System.Drawing.Size(112, 16);
     this.rad10.TabIndex        = 4;
     this.rad10.Text            = "10 pts";
     this.rad10.CheckedChanged += new System.EventHandler(this.rad10_CheckedChanged_1);
     //
     // chkItalic
     //
     this.chkItalic.Location        = new System.Drawing.Point(160, 232);
     this.chkItalic.Name            = "chkItalic";
     this.chkItalic.Size            = new System.Drawing.Size(104, 16);
     this.chkItalic.TabIndex        = 3;
     this.chkItalic.Text            = "italic";
     this.chkItalic.CheckedChanged += new System.EventHandler(this.chkItalic_CheckedChanged);
     //
     // rad20
     //
     this.rad20.Location        = new System.Drawing.Point(16, 232);
     this.rad20.Name            = "rad20";
     this.rad20.Size            = new System.Drawing.Size(104, 16);
     this.rad20.TabIndex        = 5;
     this.rad20.Text            = "20 pts";
     this.rad20.CheckedChanged += new System.EventHandler(this.rad20_CheckedChanged);
     //
     // chkBold
     //
     this.chkBold.Location        = new System.Drawing.Point(160, 200);
     this.chkBold.Name            = "chkBold";
     this.chkBold.Size            = new System.Drawing.Size(104, 16);
     this.chkBold.TabIndex        = 2;
     this.chkBold.Text            = "bold";
     this.chkBold.CheckedChanged += new System.EventHandler(this.chkBold_CheckedChanged);
     //
     // myForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 301);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.rad20,
         this.rad10,
         this.chkItalic,
         this.chkBold,
         this.lblOutput,
         this.lstFontName
     });
     this.Name = "myForm";
     this.Text = "Font Chooser";
     this.ResumeLayout(false);
 }
Example #41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.opGreen    = new System.Windows.Forms.RadioButton();
     this.groupBox1  = new System.Windows.Forms.GroupBox();
     this.opBlack    = new System.Windows.Forms.RadioButton();
     this.opRed      = new System.Windows.Forms.RadioButton();
     this.lsCommands = new System.Windows.Forms.ListBox();
     this.cbFont     = new System.Windows.Forms.ComboBox();
     this.mainMenu1  = new System.Windows.Forms.MainMenu();
     this.mnuFile    = new System.Windows.Forms.MenuItem();
     this.mnuExit    = new System.Windows.Forms.MenuItem();
     this.ckBold     = new System.Windows.Forms.CheckBox();
     this.txBox      = new System.Windows.Forms.TextBox();
     this.btPush     = new System.Windows.Forms.Button();
     this.lbText     = new System.Windows.Forms.Label();
     this.tips       = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // opGreen
     //
     this.opGreen.Location        = new System.Drawing.Point(16, 40);
     this.opGreen.Name            = "opGreen";
     this.opGreen.Size            = new System.Drawing.Size(72, 24);
     this.opGreen.TabIndex        = 0;
     this.opGreen.Text            = "Green";
     this.opGreen.CheckedChanged += new System.EventHandler(this.opGreen_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.opBlack,
         this.opRed,
         this.opGreen
     });
     this.groupBox1.Location = new System.Drawing.Point(160, 120);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(104, 88);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Grouping";
     //
     // opBlack
     //
     this.opBlack.Checked         = true;
     this.opBlack.Location        = new System.Drawing.Point(16, 24);
     this.opBlack.Name            = "opBlack";
     this.opBlack.Size            = new System.Drawing.Size(64, 16);
     this.opBlack.TabIndex        = 2;
     this.opBlack.TabStop         = true;
     this.opBlack.Text            = "Black";
     this.opBlack.CheckedChanged += new System.EventHandler(this.opBlack_CheckedChanged);
     //
     // opRed
     //
     this.opRed.Location        = new System.Drawing.Point(16, 64);
     this.opRed.Name            = "opRed";
     this.opRed.Size            = new System.Drawing.Size(64, 16);
     this.opRed.TabIndex        = 1;
     this.opRed.Text            = "Red";
     this.opRed.CheckedChanged += new System.EventHandler(this.opRed_CheckedChanged);
     //
     // lsCommands
     //
     this.lsCommands.Location              = new System.Drawing.Point(16, 120);
     this.lsCommands.Name                  = "lsCommands";
     this.lsCommands.Size                  = new System.Drawing.Size(112, 121);
     this.lsCommands.TabIndex              = 3;
     this.lsCommands.SelectedIndexChanged += new System.EventHandler(this.lsCommands_SelectedIndexChanged);
     //
     // cbFont
     //
     this.cbFont.DropDownWidth         = 112;
     this.cbFont.Location              = new System.Drawing.Point(16, 88);
     this.cbFont.Name                  = "cbFont";
     this.cbFont.Size                  = new System.Drawing.Size(112, 21);
     this.cbFont.TabIndex              = 4;
     this.cbFont.SelectedIndexChanged += new System.EventHandler(this.cbFont_SelectedIndexChanged);
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFile
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuExit
     });
     this.mnuFile.Text = "File";
     //
     // mnuExit
     //
     this.mnuExit.Index  = 0;
     this.mnuExit.Text   = "Exit";
     this.mnuExit.Click += new System.EventHandler(this.menuItem2_Click);
     //
     // ckBold
     //
     this.ckBold.Location        = new System.Drawing.Point(176, 72);
     this.ckBold.Name            = "ckBold";
     this.ckBold.Size            = new System.Drawing.Size(88, 16);
     this.ckBold.TabIndex        = 2;
     this.ckBold.Text            = "Bold";
     this.ckBold.CheckedChanged += new System.EventHandler(this.ckBold_CheckedChanged);
     //
     // txBox
     //
     this.txBox.Location = new System.Drawing.Point(8, 16);
     this.txBox.Name     = "txBox";
     this.txBox.Size     = new System.Drawing.Size(128, 20);
     this.txBox.TabIndex = 0;
     this.txBox.Text     = "Greetings";
     //
     // btPush
     //
     this.btPush.Location = new System.Drawing.Point(160, 16);
     this.btPush.Name     = "btPush";
     this.btPush.Size     = new System.Drawing.Size(88, 24);
     this.btPush.TabIndex = 1;
     this.btPush.Text     = "Push here";
     this.btPush.Click   += new System.EventHandler(this.btPush_Click);
     //
     // lbText
     //
     this.lbText.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.lbText.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbText.Location  = new System.Drawing.Point(16, 48);
     this.lbText.Name      = "lbText";
     this.lbText.Size      = new System.Drawing.Size(120, 32);
     this.lbText.TabIndex  = 6;
     //
     // 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.lbText,
         this.groupBox1,
         this.cbFont,
         this.lsCommands,
         this.ckBold,
         this.btPush,
         this.txBox
     });
     this.Menu = this.mainMenu1;
     this.Name = "Form1";
     this.Text = "Windows controls";
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1   = new System.Windows.Forms.TabControl();
     this.tabPage1      = new System.Windows.Forms.TabPage();
     this.button1       = new System.Windows.Forms.Button();
     this.label4        = new System.Windows.Forms.Label();
     this.txtV          = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.txtM          = new System.Windows.Forms.TextBox();
     this.tabPage2      = new System.Windows.Forms.TabPage();
     this.label5        = new System.Windows.Forms.Label();
     this.raManual      = new System.Windows.Forms.RadioButton();
     this.raAuto        = new System.Windows.Forms.RadioButton();
     this.lbThreshManu  = new System.Windows.Forms.Label();
     this.txtThreshold  = new System.Windows.Forms.TextBox();
     this.tabPage3      = new System.Windows.Forms.TabPage();
     this.txtMaskNumber = new System.Windows.Forms.TextBox();
     this.label9        = new System.Windows.Forms.Label();
     this.chbMask       = new System.Windows.Forms.CheckBox();
     this.label3        = new System.Windows.Forms.Label();
     this.button4       = new System.Windows.Forms.Button();
     this.label6        = new System.Windows.Forms.Label();
     this.txtfi         = new System.Windows.Forms.TextBox();
     this.label7        = new System.Windows.Forms.Label();
     this.label8        = new System.Windows.Forms.Label();
     this.txtF          = new System.Windows.Forms.TextBox();
     this.button3       = new System.Windows.Forms.Button();
     this.button2       = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(8, 16);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(296, 176);
     this.tabControl1.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Controls.Add(this.label4);
     this.tabPage1.Controls.Add(this.txtV);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.txtM);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(288, 150);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Chuẩn Hóa";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(216, 16);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(56, 23);
     this.button1.TabIndex = 9;
     this.button1.Text     = "Default";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 16);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(192, 23);
     this.label4.TabIndex = 8;
     this.label4.Text     = "Thiết đặt thông số chuẩn hóa ảnh";
     //
     // txtV
     //
     this.txtV.Location = new System.Drawing.Point(216, 96);
     this.txtV.Name     = "txtV";
     this.txtV.Size     = new System.Drawing.Size(48, 20);
     this.txtV.TabIndex = 6;
     this.txtV.Text     = "";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(40, 56);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(160, 23);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Giá trị kỳ vọng mong muốn";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(40, 96);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(160, 23);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Giá trị phương sai mong muốn";
     //
     // txtM
     //
     this.txtM.Location = new System.Drawing.Point(216, 56);
     this.txtM.Name     = "txtM";
     this.txtM.Size     = new System.Drawing.Size(48, 20);
     this.txtM.TabIndex = 4;
     this.txtM.Text     = "";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.label5);
     this.tabPage2.Controls.Add(this.raManual);
     this.tabPage2.Controls.Add(this.raAuto);
     this.tabPage2.Controls.Add(this.lbThreshManu);
     this.tabPage2.Controls.Add(this.txtThreshold);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(288, 150);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Nhị Phân";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 8);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(192, 23);
     this.label5.TabIndex = 9;
     this.label5.Text     = "Thiết đặt thông số nhị phân hóa ảnh";
     //
     // raManual
     //
     this.raManual.Location = new System.Drawing.Point(36, 68);
     this.raManual.Name     = "raManual";
     this.raManual.Size     = new System.Drawing.Size(152, 24);
     this.raManual.TabIndex = 7;
     this.raManual.Text     = "Tự thiết đặt giá trị ngưỡng";
     this.raManual.MouseUp += new System.Windows.Forms.MouseEventHandler(this.raManual_MouseUp);
     //
     // raAuto
     //
     this.raAuto.Location        = new System.Drawing.Point(36, 44);
     this.raAuto.Name            = "raAuto";
     this.raAuto.Size            = new System.Drawing.Size(160, 24);
     this.raAuto.TabIndex        = 6;
     this.raAuto.Text            = "Tính ngưỡng tự động";
     this.raAuto.MouseUp        += new System.Windows.Forms.MouseEventHandler(this.raAuto_MouseUp);
     this.raAuto.CheckedChanged += new System.EventHandler(this.raAuto_CheckedChanged);
     //
     // lbThreshManu
     //
     this.lbThreshManu.Location = new System.Drawing.Point(60, 100);
     this.lbThreshManu.Name     = "lbThreshManu";
     this.lbThreshManu.Size     = new System.Drawing.Size(120, 23);
     this.lbThreshManu.TabIndex = 5;
     this.lbThreshManu.Text     = "Đặt giá trị ngưỡng";
     //
     // txtThreshold
     //
     this.txtThreshold.Location = new System.Drawing.Point(180, 100);
     this.txtThreshold.Name     = "txtThreshold";
     this.txtThreshold.Size     = new System.Drawing.Size(48, 20);
     this.txtThreshold.TabIndex = 4;
     this.txtThreshold.Text     = "";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.txtMaskNumber);
     this.tabPage3.Controls.Add(this.label9);
     this.tabPage3.Controls.Add(this.chbMask);
     this.tabPage3.Controls.Add(this.label3);
     this.tabPage3.Controls.Add(this.button4);
     this.tabPage3.Controls.Add(this.label6);
     this.tabPage3.Controls.Add(this.txtfi);
     this.tabPage3.Controls.Add(this.label7);
     this.tabPage3.Controls.Add(this.label8);
     this.tabPage3.Controls.Add(this.txtF);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(288, 150);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Tăng cường";
     //
     // txtMaskNumber
     //
     this.txtMaskNumber.Location = new System.Drawing.Point(224, 120);
     this.txtMaskNumber.Name     = "txtMaskNumber";
     this.txtMaskNumber.Size     = new System.Drawing.Size(48, 20);
     this.txtMaskNumber.TabIndex = 17;
     this.txtMaskNumber.Text     = "";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(96, 128);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(88, 16);
     this.label9.TabIndex = 18;
     this.label9.Text     = "Số lượng mặt nạ";
     //
     // chbMask
     //
     this.chbMask.Location        = new System.Drawing.Point(40, 96);
     this.chbMask.Name            = "chbMask";
     this.chbMask.Size            = new System.Drawing.Size(160, 24);
     this.chbMask.TabIndex        = 16;
     this.chbMask.Text            = "Sử dụng bộ mặt nạ chuẩn";
     this.chbMask.CheckedChanged += new System.EventHandler(this.chbMask_CheckedChanged);
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(208, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(16, 16);
     this.label3.TabIndex = 15;
     this.label3.Text     = "1/";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(224, 16);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(56, 23);
     this.button4.TabIndex = 14;
     this.button4.Text     = "Default";
     this.button4.Click   += new System.EventHandler(this.button4_Click);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(16, 16);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(192, 23);
     this.label6.TabIndex = 13;
     this.label6.Text     = "Thiết đặt thông số tăng cường ảnh";
     //
     // txtfi
     //
     this.txtfi.Location = new System.Drawing.Point(224, 72);
     this.txtfi.Name     = "txtfi";
     this.txtfi.Size     = new System.Drawing.Size(48, 20);
     this.txtfi.TabIndex = 11;
     this.txtfi.Text     = "";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(40, 48);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(152, 16);
     this.label7.TabIndex = 10;
     this.label7.Text     = "Giá trị tần suất vân tay cụ bộ";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(40, 72);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(160, 16);
     this.label8.TabIndex = 12;
     this.label8.Text     = "Đại diện giải thông";
     //
     // txtF
     //
     this.txtF.Location = new System.Drawing.Point(224, 48);
     this.txtF.Name     = "txtF";
     this.txtF.Size     = new System.Drawing.Size(48, 20);
     this.txtF.TabIndex = 9;
     this.txtF.Text     = "";
     //
     // button3
     //
     this.button3.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button3.Location     = new System.Drawing.Point(168, 200);
     this.button3.Name         = "button3";
     this.button3.Size         = new System.Drawing.Size(56, 23);
     this.button3.TabIndex     = 9;
     this.button3.Text         = "OK";
     this.button3.Click       += new System.EventHandler(this.button3_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(232, 200);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(56, 23);
     this.button2.TabIndex = 8;
     this.button2.Text     = "Cancel";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // ImageProcessSetting
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(320, 229);
     this.ControlBox        = false;
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.tabControl1);
     this.Name  = "ImageProcessSetting";
     this.Text  = "Thông số xử lý ảnh";
     this.Load += new System.EventHandler(this.ImageProcessSetting_Load);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #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.absoluteRadio   = new System.Windows.Forms.RadioButton();
     this.relativeRadio   = new System.Windows.Forms.RadioButton();
     this.cancelButton    = new System.Windows.Forms.Button();
     this.okButton        = new System.Windows.Forms.Button();
     this.rotationLabel   = new System.Windows.Forms.Label();
     this.rotationTextBox = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // absoluteRadio
     //
     this.absoluteRadio.Location        = new System.Drawing.Point(85, 35);
     this.absoluteRadio.Name            = "absoluteRadio";
     this.absoluteRadio.Size            = new System.Drawing.Size(72, 24);
     this.absoluteRadio.TabIndex        = 0;
     this.absoluteRadio.Text            = "Absolute";
     this.absoluteRadio.CheckedChanged += new System.EventHandler(this.allRadio_CheckedChanged);
     //
     // relativeRadio
     //
     this.relativeRadio.Checked         = true;
     this.relativeRadio.Location        = new System.Drawing.Point(15, 35);
     this.relativeRadio.Name            = "relativeRadio";
     this.relativeRadio.Size            = new System.Drawing.Size(64, 24);
     this.relativeRadio.TabIndex        = 1;
     this.relativeRadio.TabStop         = true;
     this.relativeRadio.Text            = "Relative";
     this.relativeRadio.CheckedChanged += new System.EventHandler(this.singleRadio_CheckedChanged);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location     = new System.Drawing.Point(93, 65);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex     = 6;
     this.cancelButton.Text         = "&Cancel";
     this.cancelButton.Click       += new System.EventHandler(this.cancelButton_Click);
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(15, 65);
     this.okButton.Name     = "okButton";
     this.okButton.Size     = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 8;
     this.okButton.Text     = "&OK";
     this.okButton.Click   += new System.EventHandler(this.okButton_Click);
     //
     // rotationLabel
     //
     this.rotationLabel.Location = new System.Drawing.Point(12, 12);
     this.rotationLabel.Name     = "rotationLabel";
     this.rotationLabel.Size     = new System.Drawing.Size(50, 16);
     this.rotationLabel.TabIndex = 10;
     this.rotationLabel.Text     = "Rotation";
     //
     // rotationTextBox
     //
     this.rotationTextBox.Location     = new System.Drawing.Point(68, 9);
     this.rotationTextBox.Name         = "rotationTextBox";
     this.rotationTextBox.Size         = new System.Drawing.Size(100, 20);
     this.rotationTextBox.TabIndex     = 1;
     this.rotationTextBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.rotationTextBox_KeyPress);
     this.rotationTextBox.TextChanged += new System.EventHandler(this.rotationTextBox_TextChanged);
     //
     // RotateFramingObjectsForm
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(185, 101);
     this.Controls.Add(this.rotationTextBox);
     this.Controls.Add(this.relativeRadio);
     this.Controls.Add(this.rotationLabel);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.absoluteRadio);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "RotateFramingObjectsForm";
     this.ShowInTaskbar   = false;
     this.Text            = "Rotate Framing Objects";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #44
0
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.pictureBox2   = new System.Windows.Forms.PictureBox();
     this.connect       = new System.Windows.Forms.Button();
     this.password      = new System.Windows.Forms.TextBox();
     this.label4        = new System.Windows.Forms.Label();
     this.username      = new System.Windows.Forms.TextBox();
     this.label3        = new System.Windows.Forms.Label();
     this.server_url    = new System.Windows.Forms.TextBox();
     this.label2        = new System.Windows.Forms.Label();
     this.report        = new System.Windows.Forms.RichTextBox();
     this.pictureBox1   = new System.Windows.Forms.PictureBox();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.toolColor     = new System.Windows.Forms.Button();
     this.label5        = new System.Windows.Forms.Label();
     this.imageList     = new System.Windows.Forms.ImageList(this.components);
     this.toolEllipse   = new System.Windows.Forms.RadioButton();
     this.toolFill      = new System.Windows.Forms.CheckBox();
     this.toolErase     = new System.Windows.Forms.Button();
     this.toolTriangle  = new System.Windows.Forms.RadioButton();
     this.toolRectangle = new System.Windows.Forms.RadioButton();
     this.toolLine      = new System.Windows.Forms.RadioButton();
     this.colorDialog1  = new System.Windows.Forms.ColorDialog();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.pictureBox2);
     this.groupBox1.Controls.Add(this.connect);
     this.groupBox1.Controls.Add(this.password);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.username);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.server_url);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(488, 76);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "connection";
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(424, 12);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(56, 52);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 8;
     this.pictureBox2.TabStop  = false;
     //
     // connect
     //
     this.connect.Location = new System.Drawing.Point(348, 44);
     this.connect.Name     = "connect";
     this.connect.Size     = new System.Drawing.Size(64, 24);
     this.connect.TabIndex = 6;
     this.connect.Text     = "connect";
     this.connect.Click   += new System.EventHandler(this.connect_Click);
     //
     // password
     //
     this.password.Location = new System.Drawing.Point(208, 48);
     this.password.Name     = "password";
     this.password.Size     = new System.Drawing.Size(88, 20);
     this.password.TabIndex = 5;
     this.password.Text     = "password";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(160, 48);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(47, 16);
     this.label4.TabIndex = 4;
     this.label4.Text     = "pasword";
     //
     // username
     //
     this.username.Location = new System.Drawing.Point(64, 48);
     this.username.Name     = "username";
     this.username.Size     = new System.Drawing.Size(88, 20);
     this.username.TabIndex = 3;
     this.username.Text     = "username";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(8, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(55, 16);
     this.label3.TabIndex = 2;
     this.label3.Text     = "username";
     //
     // server_url
     //
     this.server_url.Location = new System.Drawing.Point(64, 20);
     this.server_url.Name     = "server_url";
     this.server_url.Size     = new System.Drawing.Size(348, 20);
     this.server_url.TabIndex = 1;
     this.server_url.Text     = "server_url";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(8, 20);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(51, 16);
     this.label2.TabIndex = 0;
     this.label2.Text     = "server url";
     //
     // report
     //
     this.report.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.report.Location = new System.Drawing.Point(0, 333);
     this.report.Name     = "report";
     this.report.ReadOnly = true;
     this.report.Size     = new System.Drawing.Size(488, 72);
     this.report.TabIndex = 2;
     this.report.Text     = "report";
     //
     // pictureBox1
     //
     this.pictureBox1.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.pictureBox1.BackColor  = System.Drawing.Color.White;
     this.pictureBox1.Location   = new System.Drawing.Point(60, 80);
     this.pictureBox1.Name       = "pictureBox1";
     this.pictureBox1.Size       = new System.Drawing.Size(424, 248);
     this.pictureBox1.TabIndex   = 3;
     this.pictureBox1.TabStop    = false;
     this.pictureBox1.Resize    += new System.EventHandler(this.pictureBox1_Resize);
     this.pictureBox1.Paint     += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
     this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
     this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.toolColor);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.toolEllipse);
     this.groupBox2.Controls.Add(this.toolFill);
     this.groupBox2.Controls.Add(this.toolErase);
     this.groupBox2.Controls.Add(this.toolTriangle);
     this.groupBox2.Controls.Add(this.toolRectangle);
     this.groupBox2.Controls.Add(this.toolLine);
     this.groupBox2.Dock      = System.Windows.Forms.DockStyle.Left;
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.groupBox2.Location  = new System.Drawing.Point(0, 76);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(60, 257);
     this.groupBox2.TabIndex  = 16;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "tools";
     //
     // toolColor
     //
     this.toolColor.BackColor = System.Drawing.Color.Black;
     this.toolColor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolColor.Location  = new System.Drawing.Point(28, 192);
     this.toolColor.Name      = "toolColor";
     this.toolColor.Size      = new System.Drawing.Size(20, 20);
     this.toolColor.TabIndex  = 22;
     this.toolColor.Click    += new System.EventHandler(this.toolColor_Click);
     //
     // label5
     //
     this.label5.ImageIndex = 7;
     this.label5.ImageList  = this.imageList;
     this.label5.Location   = new System.Drawing.Point(24, 188);
     this.label5.Name       = "label5";
     this.label5.Size       = new System.Drawing.Size(27, 28);
     this.label5.TabIndex   = 23;
     //
     // imageList
     //
     this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList.ImageSize        = new System.Drawing.Size(27, 28);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Empty;
     //
     // toolEllipse
     //
     this.toolEllipse.FlatStyle       = System.Windows.Forms.FlatStyle.Popup;
     this.toolEllipse.ImageIndex      = 2;
     this.toolEllipse.ImageList       = this.imageList;
     this.toolEllipse.Location        = new System.Drawing.Point(8, 84);
     this.toolEllipse.Name            = "toolEllipse";
     this.toolEllipse.Size            = new System.Drawing.Size(48, 32);
     this.toolEllipse.TabIndex        = 21;
     this.toolEllipse.CheckedChanged += new System.EventHandler(this.radioButtonX_CheckedChanged);
     //
     // toolFill
     //
     this.toolFill.BackColor       = System.Drawing.Color.Transparent;
     this.toolFill.FlatStyle       = System.Windows.Forms.FlatStyle.Popup;
     this.toolFill.ImageIndex      = 5;
     this.toolFill.ImageList       = this.imageList;
     this.toolFill.Location        = new System.Drawing.Point(8, 152);
     this.toolFill.Name            = "toolFill";
     this.toolFill.Size            = new System.Drawing.Size(48, 32);
     this.toolFill.TabIndex        = 20;
     this.toolFill.CheckedChanged += new System.EventHandler(this.radioButtonX_CheckedChanged);
     //
     // toolErase
     //
     this.toolErase.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.toolErase.ForeColor  = System.Drawing.SystemColors.Control;
     this.toolErase.ImageIndex = 6;
     this.toolErase.ImageList  = this.imageList;
     this.toolErase.Location   = new System.Drawing.Point(20, 216);
     this.toolErase.Name       = "toolErase";
     this.toolErase.Size       = new System.Drawing.Size(32, 32);
     this.toolErase.TabIndex   = 19;
     this.toolErase.Click     += new System.EventHandler(this.toolErase_Click);
     //
     // toolTriangle
     //
     this.toolTriangle.FlatStyle       = System.Windows.Forms.FlatStyle.Popup;
     this.toolTriangle.ImageIndex      = 3;
     this.toolTriangle.ImageList       = this.imageList;
     this.toolTriangle.Location        = new System.Drawing.Point(8, 120);
     this.toolTriangle.Name            = "toolTriangle";
     this.toolTriangle.Size            = new System.Drawing.Size(48, 32);
     this.toolTriangle.TabIndex        = 18;
     this.toolTriangle.CheckedChanged += new System.EventHandler(this.radioButtonX_CheckedChanged);
     //
     // toolRectangle
     //
     this.toolRectangle.FlatStyle       = System.Windows.Forms.FlatStyle.Popup;
     this.toolRectangle.ImageIndex      = 1;
     this.toolRectangle.ImageList       = this.imageList;
     this.toolRectangle.Location        = new System.Drawing.Point(8, 52);
     this.toolRectangle.Name            = "toolRectangle";
     this.toolRectangle.Size            = new System.Drawing.Size(48, 32);
     this.toolRectangle.TabIndex        = 17;
     this.toolRectangle.CheckedChanged += new System.EventHandler(this.radioButtonX_CheckedChanged);
     //
     // toolLine
     //
     this.toolLine.BackColor       = System.Drawing.SystemColors.Control;
     this.toolLine.Checked         = true;
     this.toolLine.FlatStyle       = System.Windows.Forms.FlatStyle.Popup;
     this.toolLine.ImageIndex      = 0;
     this.toolLine.ImageList       = this.imageList;
     this.toolLine.Location        = new System.Drawing.Point(8, 20);
     this.toolLine.Name            = "toolLine";
     this.toolLine.Size            = new System.Drawing.Size(48, 32);
     this.toolLine.TabIndex        = 16;
     this.toolLine.TabStop         = true;
     this.toolLine.CheckedChanged += new System.EventHandler(this.radioButtonX_CheckedChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(488, 405);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.report);
     this.Controls.Add(this.groupBox1);
     this.MinimumSize = new System.Drawing.Size(496, 432);
     this.Name        = "Form1";
     this.Text        = "XmlBlaster C# demo using XML-RPC";
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
     this.Load       += new System.EventHandler(this.Form1_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(CommonInteractiveForm));
     this.panel_interactive            = new System.Windows.Forms.Panel();
     this.panel1                       = new System.Windows.Forms.Panel();
     this.textBox_editable             = new System.Windows.Forms.TextBox();
     this.panel_cmd                    = new System.Windows.Forms.Panel();
     this.panel2                       = new System.Windows.Forms.Panel();
     this.groupBox_close               = new System.Windows.Forms.GroupBox();
     this.checkBox_close_client_socket = new System.Windows.Forms.CheckBox();
     this.checkBox_close_server_socket = new System.Windows.Forms.CheckBox();
     this.checkBox_transmit_close      = new System.Windows.Forms.CheckBox();
     this.button_clear                 = new System.Windows.Forms.Button();
     this.groupBox_send_data_options   = new System.Windows.Forms.GroupBox();
     this.radioButton_send_to_clt      = new System.Windows.Forms.RadioButton();
     this.radioButton_send_to_srv      = new System.Windows.Forms.RadioButton();
     this.groupBox_clt_to_srv_options  = new System.Windows.Forms.GroupBox();
     this.radioButton_clt_to_srv_ask   = new System.Windows.Forms.RadioButton();
     this.radioButton_clt_to_srv_block = new System.Windows.Forms.RadioButton();
     this.radioButton_clt_to_srv_allow = new System.Windows.Forms.RadioButton();
     this.groupBox_srv_to_clt_options  = new System.Windows.Forms.GroupBox();
     this.radioButton_srv_to_clt_ask   = new System.Windows.Forms.RadioButton();
     this.radioButton_srv_to_clt_block = new System.Windows.Forms.RadioButton();
     this.radioButton_srv_to_clt_allow = new System.Windows.Forms.RadioButton();
     this.button_close                 = new System.Windows.Forms.Button();
     this.button_send                  = new System.Windows.Forms.Button();
     this.checkBox_send_hexa_data      = new System.Windows.Forms.CheckBox();
     this.hexview                      = new Tools.GUI.Controls.HexViewer.HexViewer();
     this.panel_interactive.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel_cmd.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox_close.SuspendLayout();
     this.groupBox_send_data_options.SuspendLayout();
     this.groupBox_clt_to_srv_options.SuspendLayout();
     this.groupBox_srv_to_clt_options.SuspendLayout();
     this.SuspendLayout();
     //
     // panel_interactive
     //
     this.panel_interactive.Controls.Add(this.panel1);
     this.panel_interactive.Controls.Add(this.panel_cmd);
     this.panel_interactive.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel_interactive.Location = new System.Drawing.Point(0, 246);
     this.panel_interactive.Name     = "panel_interactive";
     this.panel_interactive.Size     = new System.Drawing.Size(560, 160);
     this.panel_interactive.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.textBox_editable);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(560, 80);
     this.panel1.TabIndex = 15;
     //
     // textBox_editable
     //
     this.textBox_editable.AcceptsReturn = true;
     this.textBox_editable.AcceptsTab    = true;
     this.textBox_editable.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.textBox_editable.Location      = new System.Drawing.Point(0, 0);
     this.textBox_editable.Multiline     = true;
     this.textBox_editable.Name          = "textBox_editable";
     this.textBox_editable.ScrollBars    = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox_editable.Size          = new System.Drawing.Size(560, 80);
     this.textBox_editable.TabIndex      = 0;
     this.textBox_editable.Text          = "";
     //
     // panel_cmd
     //
     this.panel_cmd.Controls.Add(this.panel2);
     this.panel_cmd.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel_cmd.Location = new System.Drawing.Point(0, 80);
     this.panel_cmd.Name     = "panel_cmd";
     this.panel_cmd.Size     = new System.Drawing.Size(560, 80);
     this.panel_cmd.TabIndex = 14;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.groupBox_close);
     this.panel2.Controls.Add(this.checkBox_transmit_close);
     this.panel2.Controls.Add(this.button_clear);
     this.panel2.Controls.Add(this.groupBox_send_data_options);
     this.panel2.Controls.Add(this.groupBox_clt_to_srv_options);
     this.panel2.Controls.Add(this.groupBox_srv_to_clt_options);
     this.panel2.Controls.Add(this.button_close);
     this.panel2.Controls.Add(this.button_send);
     this.panel2.Controls.Add(this.checkBox_send_hexa_data);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel2.Location = new System.Drawing.Point(-24, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(584, 80);
     this.panel2.TabIndex = 0;
     //
     // groupBox_close
     //
     this.groupBox_close.Controls.Add(this.checkBox_close_client_socket);
     this.groupBox_close.Controls.Add(this.checkBox_close_server_socket);
     this.groupBox_close.Location = new System.Drawing.Point(224, 24);
     this.groupBox_close.Name     = "groupBox_close";
     this.groupBox_close.Size     = new System.Drawing.Size(152, 56);
     this.groupBox_close.TabIndex = 3;
     this.groupBox_close.TabStop  = false;
     this.groupBox_close.Text     = "Close button action";
     //
     // checkBox_close_client_socket
     //
     this.checkBox_close_client_socket.Checked    = true;
     this.checkBox_close_client_socket.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox_close_client_socket.Location   = new System.Drawing.Point(8, 32);
     this.checkBox_close_client_socket.Name       = "checkBox_close_client_socket";
     this.checkBox_close_client_socket.Size       = new System.Drawing.Size(128, 16);
     this.checkBox_close_client_socket.TabIndex   = 1;
     this.checkBox_close_client_socket.Text       = "Close Client Socket";
     //
     // checkBox_close_server_socket
     //
     this.checkBox_close_server_socket.Checked    = true;
     this.checkBox_close_server_socket.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox_close_server_socket.Location   = new System.Drawing.Point(8, 16);
     this.checkBox_close_server_socket.Name       = "checkBox_close_server_socket";
     this.checkBox_close_server_socket.Size       = new System.Drawing.Size(128, 16);
     this.checkBox_close_server_socket.TabIndex   = 0;
     this.checkBox_close_server_socket.Text       = "Close Server Socket";
     //
     // checkBox_transmit_close
     //
     this.checkBox_transmit_close.Checked    = true;
     this.checkBox_transmit_close.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox_transmit_close.Location   = new System.Drawing.Point(224, 8);
     this.checkBox_transmit_close.Name       = "checkBox_transmit_close";
     this.checkBox_transmit_close.Size       = new System.Drawing.Size(152, 16);
     this.checkBox_transmit_close.TabIndex   = 2;
     this.checkBox_transmit_close.Text       = "Transmit socket closing";
     //
     // button_clear
     //
     this.button_clear.CausesValidation = false;
     this.button_clear.Location         = new System.Drawing.Point(496, 32);
     this.button_clear.Name             = "button_clear";
     this.button_clear.TabIndex         = 7;
     this.button_clear.Text             = "Clear";
     this.button_clear.Click           += new System.EventHandler(this.button_clear_Click);
     //
     // groupBox_send_data_options
     //
     this.groupBox_send_data_options.Controls.Add(this.radioButton_send_to_clt);
     this.groupBox_send_data_options.Controls.Add(this.radioButton_send_to_srv);
     this.groupBox_send_data_options.Location = new System.Drawing.Point(376, 24);
     this.groupBox_send_data_options.Name     = "groupBox_send_data_options";
     this.groupBox_send_data_options.Size     = new System.Drawing.Size(112, 56);
     this.groupBox_send_data_options.TabIndex = 5;
     this.groupBox_send_data_options.TabStop  = false;
     this.groupBox_send_data_options.Text     = "Send data to";
     //
     // radioButton_send_to_clt
     //
     this.radioButton_send_to_clt.Location = new System.Drawing.Point(16, 32);
     this.radioButton_send_to_clt.Name     = "radioButton_send_to_clt";
     this.radioButton_send_to_clt.Size     = new System.Drawing.Size(64, 16);
     this.radioButton_send_to_clt.TabIndex = 1;
     this.radioButton_send_to_clt.Text     = "Client";
     //
     // radioButton_send_to_srv
     //
     this.radioButton_send_to_srv.Checked  = true;
     this.radioButton_send_to_srv.Location = new System.Drawing.Point(16, 16);
     this.radioButton_send_to_srv.Name     = "radioButton_send_to_srv";
     this.radioButton_send_to_srv.Size     = new System.Drawing.Size(64, 16);
     this.radioButton_send_to_srv.TabIndex = 0;
     this.radioButton_send_to_srv.TabStop  = true;
     this.radioButton_send_to_srv.Text     = "Server";
     //
     // groupBox_clt_to_srv_options
     //
     this.groupBox_clt_to_srv_options.Controls.Add(this.radioButton_clt_to_srv_ask);
     this.groupBox_clt_to_srv_options.Controls.Add(this.radioButton_clt_to_srv_block);
     this.groupBox_clt_to_srv_options.Controls.Add(this.radioButton_clt_to_srv_allow);
     this.groupBox_clt_to_srv_options.Location = new System.Drawing.Point(32, 40);
     this.groupBox_clt_to_srv_options.Name     = "groupBox_clt_to_srv_options";
     this.groupBox_clt_to_srv_options.Size     = new System.Drawing.Size(189, 40);
     this.groupBox_clt_to_srv_options.TabIndex = 1;
     this.groupBox_clt_to_srv_options.TabStop  = false;
     this.groupBox_clt_to_srv_options.Text     = "Client to Server data transfert";
     //
     // radioButton_clt_to_srv_ask
     //
     this.radioButton_clt_to_srv_ask.Location = new System.Drawing.Point(72, 16);
     this.radioButton_clt_to_srv_ask.Name     = "radioButton_clt_to_srv_ask";
     this.radioButton_clt_to_srv_ask.Size     = new System.Drawing.Size(56, 16);
     this.radioButton_clt_to_srv_ask.TabIndex = 1;
     this.radioButton_clt_to_srv_ask.Text     = "Ask";
     //
     // radioButton_clt_to_srv_block
     //
     this.radioButton_clt_to_srv_block.Location = new System.Drawing.Point(128, 16);
     this.radioButton_clt_to_srv_block.Name     = "radioButton_clt_to_srv_block";
     this.radioButton_clt_to_srv_block.Size     = new System.Drawing.Size(56, 16);
     this.radioButton_clt_to_srv_block.TabIndex = 2;
     this.radioButton_clt_to_srv_block.Text     = "Block";
     //
     // radioButton_clt_to_srv_allow
     //
     this.radioButton_clt_to_srv_allow.Checked  = true;
     this.radioButton_clt_to_srv_allow.Location = new System.Drawing.Point(8, 16);
     this.radioButton_clt_to_srv_allow.Name     = "radioButton_clt_to_srv_allow";
     this.radioButton_clt_to_srv_allow.Size     = new System.Drawing.Size(56, 16);
     this.radioButton_clt_to_srv_allow.TabIndex = 0;
     this.radioButton_clt_to_srv_allow.TabStop  = true;
     this.radioButton_clt_to_srv_allow.Text     = "Allow";
     //
     // groupBox_srv_to_clt_options
     //
     this.groupBox_srv_to_clt_options.Controls.Add(this.radioButton_srv_to_clt_ask);
     this.groupBox_srv_to_clt_options.Controls.Add(this.radioButton_srv_to_clt_block);
     this.groupBox_srv_to_clt_options.Controls.Add(this.radioButton_srv_to_clt_allow);
     this.groupBox_srv_to_clt_options.Location = new System.Drawing.Point(32, 0);
     this.groupBox_srv_to_clt_options.Name     = "groupBox_srv_to_clt_options";
     this.groupBox_srv_to_clt_options.Size     = new System.Drawing.Size(189, 40);
     this.groupBox_srv_to_clt_options.TabIndex = 0;
     this.groupBox_srv_to_clt_options.TabStop  = false;
     this.groupBox_srv_to_clt_options.Text     = "Server to Client data transfert";
     //
     // radioButton_srv_to_clt_ask
     //
     this.radioButton_srv_to_clt_ask.Location = new System.Drawing.Point(72, 16);
     this.radioButton_srv_to_clt_ask.Name     = "radioButton_srv_to_clt_ask";
     this.radioButton_srv_to_clt_ask.Size     = new System.Drawing.Size(56, 16);
     this.radioButton_srv_to_clt_ask.TabIndex = 1;
     this.radioButton_srv_to_clt_ask.Text     = "Ask";
     //
     // radioButton_srv_to_clt_block
     //
     this.radioButton_srv_to_clt_block.Location = new System.Drawing.Point(128, 16);
     this.radioButton_srv_to_clt_block.Name     = "radioButton_srv_to_clt_block";
     this.radioButton_srv_to_clt_block.Size     = new System.Drawing.Size(56, 16);
     this.radioButton_srv_to_clt_block.TabIndex = 2;
     this.radioButton_srv_to_clt_block.Text     = "Block";
     //
     // radioButton_srv_to_clt_allow
     //
     this.radioButton_srv_to_clt_allow.Checked  = true;
     this.radioButton_srv_to_clt_allow.Location = new System.Drawing.Point(8, 16);
     this.radioButton_srv_to_clt_allow.Name     = "radioButton_srv_to_clt_allow";
     this.radioButton_srv_to_clt_allow.Size     = new System.Drawing.Size(56, 16);
     this.radioButton_srv_to_clt_allow.TabIndex = 0;
     this.radioButton_srv_to_clt_allow.TabStop  = true;
     this.radioButton_srv_to_clt_allow.Text     = "Allow";
     //
     // button_close
     //
     this.button_close.Location = new System.Drawing.Point(496, 56);
     this.button_close.Name     = "button_close";
     this.button_close.TabIndex = 8;
     this.button_close.Text     = "Close";
     this.button_close.Click   += new System.EventHandler(this.button_close_Click);
     //
     // button_send
     //
     this.button_send.CausesValidation = false;
     this.button_send.Location         = new System.Drawing.Point(496, 8);
     this.button_send.Name             = "button_send";
     this.button_send.TabIndex         = 6;
     this.button_send.Text             = "Send";
     this.button_send.Click           += new System.EventHandler(this.button_send_Click);
     //
     // checkBox_send_hexa_data
     //
     this.checkBox_send_hexa_data.Location        = new System.Drawing.Point(376, 8);
     this.checkBox_send_hexa_data.Name            = "checkBox_send_hexa_data";
     this.checkBox_send_hexa_data.Size            = new System.Drawing.Size(104, 16);
     this.checkBox_send_hexa_data.TabIndex        = 4;
     this.checkBox_send_hexa_data.Text            = "Send hexa data";
     this.checkBox_send_hexa_data.CheckedChanged += new System.EventHandler(this.checkBox_send_hexa_data_CheckedChanged);
     //
     // hexview
     //
     this.hexview.AutoRefresh     = true;
     this.hexview.BlockLength     = 2;
     this.hexview.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.hexview.Location        = new System.Drawing.Point(0, 0);
     this.hexview.Name            = "hexview";
     this.hexview.ScrollToEnd     = false;
     this.hexview.SelectionLength = 0;
     this.hexview.SelectionStart  = 0;
     this.hexview.Size            = new System.Drawing.Size(560, 246);
     this.hexview.TabIndex        = 0;
     this.hexview.VisibleAddr     = true;
     //
     // CommonInteractiveForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(560, 406);
     this.Controls.Add(this.hexview);
     this.Controls.Add(this.panel_interactive);
     this.Icon     = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name     = "CommonInteractiveForm";
     this.Text     = "TCP Interactive";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.FormTCPInteractive_Closing);
     this.panel_interactive.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel_cmd.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.groupBox_close.ResumeLayout(false);
     this.groupBox_send_data_options.ResumeLayout(false);
     this.groupBox_clt_to_srv_options.ResumeLayout(false);
     this.groupBox_srv_to_clt_options.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel3    = new System.Windows.Forms.Panel();
     this.label5    = new System.Windows.Forms.Label();
     this.panel7    = new System.Windows.Forms.Panel();
     this.nav       = new Navigator1._0.NavigatorAuto();
     this.panel1    = new System.Windows.Forms.Panel();
     this.vs1       = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.vs        = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.panel2    = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rd3       = new System.Windows.Forms.RadioButton();
     this.rd2       = new System.Windows.Forms.RadioButton();
     this.rd1       = new System.Windows.Forms.RadioButton();
     this.panel4    = new System.Windows.Forms.Panel();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel5    = new System.Windows.Forms.Panel();
     this.panel6    = new System.Windows.Forms.Panel();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.panel8    = new System.Windows.Forms.Panel();
     this.panel3.SuspendLayout();
     this.panel7.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vs1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vs)).BeginInit();
     this.panel2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel8.SuspendLayout();
     this.SuspendLayout();
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.panel3.Controls.Add(this.label5);
     this.panel3.Controls.Add(this.panel7);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(920, 36);
     this.panel3.TabIndex = 6;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.label5.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label5.Font      = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label5.Location  = new System.Drawing.Point(412, 0);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(508, 36);
     this.label5.TabIndex  = 12;
     this.label5.Tag       = "";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.nav);
     this.panel7.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel7.Location = new System.Drawing.Point(0, 0);
     this.panel7.Name     = "panel7";
     this.panel7.Size     = new System.Drawing.Size(412, 36);
     this.panel7.TabIndex = 0;
     //
     // nav
     //
     this.nav.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.nav.Connection    = null;
     this.nav.ConnectionDel = null;
     this.nav.Font          = new System.Drawing.Font("Tahoma", 9.75F);
     this.nav.form          = null;
     this.nav.FormName      = null;
     this.nav.Grid          = null;
     this.nav.History       = false;
     this.nav.IsNull        = true;
     this.nav.Language      = "EN";
     this.nav.Location      = new System.Drawing.Point(4, 4);
     this.nav.MSG_Exit      = false;
     this.nav.MulltiDel     = false;
     this.nav.Name          = "nav";
     this.nav.Security      = 0;
     this.nav.ShowPopupMenu = true;
     this.nav.Size          = new System.Drawing.Size(400, 32);
     this.nav.TabIndex      = 13;
     this.nav.Tag           = "";
     this.nav.ToolBar_Auto  = true;
     this.nav.UserID        = null;
     this.nav.VisibleGrid   = true;
     this.nav.Where         = null;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 36);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(920, 512);
     this.panel1.TabIndex = 7;
     //
     // vs1
     //
     this.vs1.AllowEditing = false;
     this.vs1.BorderStyle  = C1.Win.C1FlexGrid.Util.BaseControls.BorderStyleEnum.XpThemes;
     this.vs1.ColumnInfo   = "10,1,0,0,0,100,Columns:0{Width:38;}\t";
     this.vs1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.vs1.KeyActionTab = C1.Win.C1FlexGrid.KeyActionEnum.MoveAcross;
     this.vs1.Location     = new System.Drawing.Point(0, 0);
     this.vs1.Name         = "vs1";
     this.vs1.Size         = new System.Drawing.Size(733, 285);
     this.vs1.Styles       = ((C1.Win.C1FlexGrid.CellStyleCollection)(new C1.Win.C1FlexGrid.CellStyleCollection("")));
     this.vs1.TabIndex     = 13;
     //
     // vs
     //
     this.vs.AllowDragging = C1.Win.C1FlexGrid.AllowDraggingEnum.Both;
     this.vs.BorderStyle   = C1.Win.C1FlexGrid.Util.BaseControls.BorderStyleEnum.XpThemes;
     this.vs.ColumnInfo    = "10,1,0,0,0,100,Columns:0{Width:38;}\t";
     this.vs.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.vs.KeyActionTab  = C1.Win.C1FlexGrid.KeyActionEnum.MoveAcross;
     this.vs.Location      = new System.Drawing.Point(0, 0);
     this.vs.Name          = "vs";
     this.vs.Size          = new System.Drawing.Size(920, 224);
     this.vs.Styles        = ((C1.Win.C1FlexGrid.CellStyleCollection)(new C1.Win.C1FlexGrid.CellStyleCollection("")));
     this.vs.TabIndex      = 12;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel5);
     this.panel2.Controls.Add(this.splitter1);
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(920, 512);
     this.panel2.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.rd3);
     this.groupBox1.Controls.Add(this.rd2);
     this.groupBox1.Controls.Add(this.rd1);
     this.groupBox1.Location = new System.Drawing.Point(8, 4);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(172, 108);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Tag      = "N";
     //
     // rd3
     //
     this.rd3.Location        = new System.Drawing.Point(12, 76);
     this.rd3.Name            = "rd3";
     this.rd3.Size            = new System.Drawing.Size(156, 24);
     this.rd3.TabIndex        = 2;
     this.rd3.Text            = "Non-Caculation";
     this.rd3.CheckedChanged += new System.EventHandler(this.rd1_CheckedChanged);
     //
     // rd2
     //
     this.rd2.Location        = new System.Drawing.Point(12, 48);
     this.rd2.Name            = "rd2";
     this.rd2.Size            = new System.Drawing.Size(156, 24);
     this.rd2.TabIndex        = 1;
     this.rd2.Text            = "Deductible";
     this.rd2.CheckedChanged += new System.EventHandler(this.rd1_CheckedChanged);
     //
     // rd1
     //
     this.rd1.Checked         = true;
     this.rd1.Location        = new System.Drawing.Point(12, 20);
     this.rd1.Name            = "rd1";
     this.rd1.Size            = new System.Drawing.Size(156, 24);
     this.rd1.TabIndex        = 0;
     this.rd1.TabStop         = true;
     this.rd1.Text            = "Payable";
     this.rd1.CheckedChanged += new System.EventHandler(this.rd1_CheckedChanged);
     //
     // panel4
     //
     this.panel4.Controls.Add(this.vs);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(920, 224);
     this.panel4.TabIndex = 13;
     //
     // splitter1
     //
     this.splitter1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitter1.Location = new System.Drawing.Point(0, 224);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(920, 3);
     this.splitter1.TabIndex = 14;
     this.splitter1.TabStop  = false;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.panel8);
     this.panel5.Controls.Add(this.splitter2);
     this.panel5.Controls.Add(this.panel6);
     this.panel5.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 227);
     this.panel5.Name     = "panel5";
     this.panel5.Size     = new System.Drawing.Size(920, 285);
     this.panel5.TabIndex = 15;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.groupBox1);
     this.panel6.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(736, 0);
     this.panel6.Name     = "panel6";
     this.panel6.Size     = new System.Drawing.Size(184, 285);
     this.panel6.TabIndex = 0;
     //
     // splitter2
     //
     this.splitter2.Dock     = System.Windows.Forms.DockStyle.Right;
     this.splitter2.Location = new System.Drawing.Point(733, 0);
     this.splitter2.Name     = "splitter2";
     this.splitter2.Size     = new System.Drawing.Size(3, 285);
     this.splitter2.TabIndex = 1;
     this.splitter2.TabStop  = false;
     //
     // panel8
     //
     this.panel8.Controls.Add(this.vs1);
     this.panel8.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel8.Location = new System.Drawing.Point(0, 0);
     this.panel8.Name     = "panel8";
     this.panel8.Size     = new System.Drawing.Size(733, 285);
     this.panel8.TabIndex = 2;
     //
     // frmTaPayItem
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.ClientSize        = new System.Drawing.Size(920, 548);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel3);
     this.Font  = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name  = "frmTaPayItem";
     this.Text  = "frmTaPayItem";
     this.Load += new System.EventHandler(this.frmTaPayItem_Load);
     this.panel3.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vs1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vs)).EndInit();
     this.panel2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel8.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormFinanceCharges));
     this.textDate    = new OpenDental.ValidDate();
     this.label1      = new System.Windows.Forms.Label();
     this.groupBox1   = new System.Windows.Forms.GroupBox();
     this.radio30     = new System.Windows.Forms.RadioButton();
     this.radio90     = new System.Windows.Forms.RadioButton();
     this.radio60     = new System.Windows.Forms.RadioButton();
     this.butCancel   = new OpenDental.UI.Button();
     this.butOK       = new OpenDental.UI.Button();
     this.label2      = new System.Windows.Forms.Label();
     this.label3      = new System.Windows.Forms.Label();
     this.label4      = new System.Windows.Forms.Label();
     this.textAPR     = new OpenDental.ValidNum();
     this.listAdjType = new System.Windows.Forms.ListBox();
     this.label6      = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // textDate
     //
     this.textDate.Location = new System.Drawing.Point(86, 28);
     this.textDate.Name     = "textDate";
     this.textDate.ReadOnly = true;
     this.textDate.Size     = new System.Drawing.Size(78, 20);
     this.textDate.TabIndex = 15;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(4, 32);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 14);
     this.label1.TabIndex  = 20;
     this.label1.Text      = "Date";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radio30);
     this.groupBox1.Controls.Add(this.radio90);
     this.groupBox1.Controls.Add(this.radio60);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(50, 90);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(144, 98);
     this.groupBox1.TabIndex  = 16;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Age of Account";
     //
     // radio30
     //
     this.radio30.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radio30.Location  = new System.Drawing.Point(12, 24);
     this.radio30.Name      = "radio30";
     this.radio30.Size      = new System.Drawing.Size(104, 16);
     this.radio30.TabIndex  = 1;
     this.radio30.Text      = "Over 30 Days";
     //
     // radio90
     //
     this.radio90.Checked   = true;
     this.radio90.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radio90.Location  = new System.Drawing.Point(12, 70);
     this.radio90.Name      = "radio90";
     this.radio90.Size      = new System.Drawing.Size(104, 18);
     this.radio90.TabIndex  = 3;
     this.radio90.TabStop   = true;
     this.radio90.Text      = "Over 90 Days";
     //
     // radio60
     //
     this.radio60.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radio60.Location  = new System.Drawing.Point(12, 46);
     this.radio60.Name      = "radio60";
     this.radio60.Size      = new System.Drawing.Size(104, 18);
     this.radio60.TabIndex  = 2;
     this.radio60.Text      = "Over 60 Days";
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butCancel.Autosize     = true;
     this.butCancel.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.CornerRadius = 4F;
     this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location     = new System.Drawing.Point(588, 380);
     this.butCancel.Name         = "butCancel";
     this.butCancel.Size         = new System.Drawing.Size(75, 25);
     this.butCancel.TabIndex     = 19;
     this.butCancel.Text         = "&Cancel";
     this.butCancel.Click       += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.butOK.Autosize     = true;
     this.butOK.BtnShape     = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle     = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.CornerRadius = 4F;
     this.butOK.Location     = new System.Drawing.Point(588, 346);
     this.butOK.Name         = "butOK";
     this.butOK.Size         = new System.Drawing.Size(75, 25);
     this.butOK.TabIndex     = 18;
     this.butOK.Text         = "Run";
     this.butOK.Click       += new System.EventHandler(this.butOK_Click);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(4, 62);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(80, 14);
     this.label2.TabIndex  = 22;
     this.label2.Text      = "APR";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(130, 62);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(12, 14);
     this.label3.TabIndex  = 23;
     this.label3.Text      = "%";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(148, 62);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(144, 14);
     this.label4.TabIndex = 24;
     this.label4.Text     = "(For Example: 18)";
     //
     // textAPR
     //
     this.textAPR.Location = new System.Drawing.Point(86, 58);
     this.textAPR.MaxVal   = 255;
     this.textAPR.MinVal   = 0;
     this.textAPR.Name     = "textAPR";
     this.textAPR.Size     = new System.Drawing.Size(42, 20);
     this.textAPR.TabIndex = 26;
     //
     // listAdjType
     //
     this.listAdjType.Location      = new System.Drawing.Point(312, 94);
     this.listAdjType.Name          = "listAdjType";
     this.listAdjType.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listAdjType.Size          = new System.Drawing.Size(158, 186);
     this.listAdjType.TabIndex      = 27;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(310, 12);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(192, 72);
     this.label6.TabIndex = 29;
     this.label6.Text     = "Finance charges are entered into the guarantor\'s account as an adjustment.  Pleas" +
                            "e choose which type of positive adjustment to use.";
     this.label6.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // FormFinanceCharges
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(692, 440);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.listAdjType);
     this.Controls.Add(this.textAPR);
     this.Controls.Add(this.textDate);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormFinanceCharges";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Finance Charges";
     this.Load         += new System.EventHandler(this.FormFinanceCharges_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ConnTest));
     this.tbConnectionString = new System.Windows.Forms.TextBox();
     this.butTestAction      = new System.Windows.Forms.Button();
     this.pictureBox1        = new System.Windows.Forms.PictureBox();
     this.label1             = new System.Windows.Forms.Label();
     this.rbUseSqlClient     = new System.Windows.Forms.RadioButton();
     this.rbUseOleDb         = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // tbConnectionString
     //
     this.tbConnectionString.Location  = new System.Drawing.Point(152, 24);
     this.tbConnectionString.Multiline = true;
     this.tbConnectionString.Name      = "tbConnectionString";
     this.tbConnectionString.Size      = new System.Drawing.Size(392, 56);
     this.tbConnectionString.TabIndex  = 0;
     this.tbConnectionString.Text      = "<Connection String>";
     //
     // butTestAction
     //
     this.butTestAction.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.butTestAction.Location  = new System.Drawing.Point(400, 96);
     this.butTestAction.Name      = "butTestAction";
     this.butTestAction.Size      = new System.Drawing.Size(144, 23);
     this.butTestAction.TabIndex  = 1;
     this.butTestAction.Text      = "Test Connection!";
     this.butTestAction.Click    += new System.EventHandler(this.butTestAction_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox1.Image       = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location    = new System.Drawing.Point(8, 8);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(128, 192);
     this.pictureBox1.TabIndex    = 2;
     this.pictureBox1.TabStop     = false;
     this.pictureBox1.Click      += new System.EventHandler(this.pictureBox1_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(152, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(240, 16);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Enter the database connection string to test:";
     //
     // rbUseSqlClient
     //
     this.rbUseSqlClient.Checked   = true;
     this.rbUseSqlClient.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.rbUseSqlClient.Location  = new System.Drawing.Point(152, 88);
     this.rbUseSqlClient.Name      = "rbUseSqlClient";
     this.rbUseSqlClient.Size      = new System.Drawing.Size(160, 24);
     this.rbUseSqlClient.TabIndex  = 4;
     this.rbUseSqlClient.TabStop   = true;
     this.rbUseSqlClient.Text      = "Use SqlClient connection";
     //
     // rbUseOleDb
     //
     this.rbUseOleDb.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.rbUseOleDb.Location  = new System.Drawing.Point(152, 112);
     this.rbUseOleDb.Name      = "rbUseOleDb";
     this.rbUseOleDb.Size      = new System.Drawing.Size(160, 24);
     this.rbUseOleDb.TabIndex  = 5;
     this.rbUseOleDb.Text      = "Use OleDb connection";
     //
     // ConnTest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(560, 205);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.rbUseOleDb,
         this.rbUseSqlClient,
         this.label1,
         this.pictureBox1,
         this.butTestAction,
         this.tbConnectionString
     });
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "ConnTest";
     this.Text = "Opinionated Geek Database Connection Tester v1.1";
     this.ResumeLayout(false);
 }
Example #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.radioDefault  = new System.Windows.Forms.RadioButton();
     this.tmrUpdate     = new System.Timers.Timer();
     this.checkLoop     = new System.Windows.Forms.CheckBox();
     this.textVolume    = new System.Windows.Forms.TextBox();
     this.label10       = new System.Windows.Forms.Label();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.groupBox4     = new System.Windows.Forms.GroupBox();
     this.radioHardware = new System.Windows.Forms.RadioButton();
     this.label12       = new System.Windows.Forms.Label();
     this.radioSoftware = new System.Windows.Forms.RadioButton();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.radioSticky   = new System.Windows.Forms.RadioButton();
     this.label13       = new System.Windows.Forms.Label();
     this.radioGlobal   = new System.Windows.Forms.RadioButton();
     this.radioNormal   = new System.Windows.Forms.RadioButton();
     this.textFile      = new System.Windows.Forms.TextBox();
     this.groupBox5     = new System.Windows.Forms.GroupBox();
     this.lblBehavior   = new System.Windows.Forms.Label();
     this.buttonSound   = new System.Windows.Forms.Button();
     this.textStatus    = new System.Windows.Forms.TextBox();
     this.buttonPlay    = new System.Windows.Forms.Button();
     this.tbarPan       = new System.Windows.Forms.TrackBar();
     this.ofdFile       = new System.Windows.Forms.OpenFileDialog();
     this.buttonExit    = new System.Windows.Forms.Button();
     this.label11       = new System.Windows.Forms.Label();
     this.tbarVolume    = new System.Windows.Forms.TrackBar();
     this.label8        = new System.Windows.Forms.Label();
     this.label9        = new System.Windows.Forms.Label();
     this.buttonStop    = new System.Windows.Forms.Button();
     this.lblMaxFreq    = new System.Windows.Forms.Label();
     this.label5        = new System.Windows.Forms.Label();
     this.label6        = new System.Windows.Forms.Label();
     this.label7        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.lblMinFreq    = new System.Windows.Forms.Label();
     this.textFreq      = new System.Windows.Forms.TextBox();
     this.tbarFreq      = new System.Windows.Forms.TrackBar();
     this.textPan       = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.tmrUpdate)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbarPan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbarVolume)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbarFreq)).BeginInit();
     this.SuspendLayout();
     //
     // radioDefault
     //
     this.radioDefault.Checked         = true;
     this.radioDefault.Location        = new System.Drawing.Point(93, 16);
     this.radioDefault.Name            = "radioDefault";
     this.radioDefault.Size            = new System.Drawing.Size(79, 14);
     this.radioDefault.TabIndex        = 3;
     this.radioDefault.TabStop         = true;
     this.radioDefault.Text            = "Default";
     this.radioDefault.CheckedChanged += new System.EventHandler(this.RadioChecked);
     //
     // tmrUpdate
     //
     this.tmrUpdate.Enabled             = true;
     this.tmrUpdate.SynchronizingObject = this;
     this.tmrUpdate.Elapsed            += new System.Timers.ElapsedEventHandler(this.tmrUpdate_Elapsed);
     //
     // checkLoop
     //
     this.checkLoop.Location = new System.Drawing.Point(8, 399);
     this.checkLoop.Name     = "checkLoop";
     this.checkLoop.Size     = new System.Drawing.Size(151, 19);
     this.checkLoop.TabIndex = 3;
     this.checkLoop.Text     = "Loop Sound";
     //
     // textVolume
     //
     this.textVolume.Location = new System.Drawing.Point(85, 148);
     this.textVolume.Name     = "textVolume";
     this.textVolume.ReadOnly = true;
     this.textVolume.Size     = new System.Drawing.Size(43, 20);
     this.textVolume.TabIndex = 1;
     this.textVolume.Text     = "0";
     //
     // label10
     //
     this.label10.Location  = new System.Drawing.Point(6, 140);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(73, 38);
     this.label10.TabIndex  = 2;
     this.label10.Text      = "Volume";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.groupBox4,
         this.groupBox2
     });
     this.groupBox1.Location = new System.Drawing.Point(6, 181);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(437, 91);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Buffer Settings";
     //
     // groupBox4
     //
     this.groupBox4.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.radioHardware,
         this.label12,
         this.radioSoftware,
         this.radioDefault
     });
     this.groupBox4.Location = new System.Drawing.Point(8, 48);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(423, 36);
     this.groupBox4.TabIndex = 6;
     this.groupBox4.TabStop  = false;
     //
     // radioHardware
     //
     this.radioHardware.Location        = new System.Drawing.Point(173, 16);
     this.radioHardware.Name            = "radioHardware";
     this.radioHardware.Size            = new System.Drawing.Size(79, 14);
     this.radioHardware.TabIndex        = 3;
     this.radioHardware.Text            = "Hardware";
     this.radioHardware.CheckedChanged += new System.EventHandler(this.RadioChecked);
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(6, 13);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(73, 15);
     this.label12.TabIndex  = 2;
     this.label12.Text      = "Buffer Mixing";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radioSoftware
     //
     this.radioSoftware.Location        = new System.Drawing.Point(268, 17);
     this.radioSoftware.Name            = "radioSoftware";
     this.radioSoftware.Size            = new System.Drawing.Size(79, 14);
     this.radioSoftware.TabIndex        = 3;
     this.radioSoftware.Text            = "Software";
     this.radioSoftware.CheckedChanged += new System.EventHandler(this.RadioChecked);
     //
     // groupBox2
     //
     this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.radioSticky,
         this.label13,
         this.radioGlobal,
         this.radioNormal
     });
     this.groupBox2.Location = new System.Drawing.Point(7, 11);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(423, 36);
     this.groupBox2.TabIndex = 6;
     this.groupBox2.TabStop  = false;
     //
     // radioSticky
     //
     this.radioSticky.Location        = new System.Drawing.Point(173, 16);
     this.radioSticky.Name            = "radioSticky";
     this.radioSticky.Size            = new System.Drawing.Size(79, 16);
     this.radioSticky.TabIndex        = 3;
     this.radioSticky.Text            = "Sticky";
     this.radioSticky.CheckedChanged += new System.EventHandler(this.RadioChecked);
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(6, 13);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(73, 15);
     this.label13.TabIndex  = 2;
     this.label13.Text      = "Focus";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radioGlobal
     //
     this.radioGlobal.Location        = new System.Drawing.Point(268, 17);
     this.radioGlobal.Name            = "radioGlobal";
     this.radioGlobal.Size            = new System.Drawing.Size(79, 14);
     this.radioGlobal.TabIndex        = 3;
     this.radioGlobal.Text            = "Global";
     this.radioGlobal.CheckedChanged += new System.EventHandler(this.RadioChecked);
     //
     // radioNormal
     //
     this.radioNormal.Checked         = true;
     this.radioNormal.Location        = new System.Drawing.Point(93, 16);
     this.radioNormal.Name            = "radioNormal";
     this.radioNormal.Size            = new System.Drawing.Size(79, 14);
     this.radioNormal.TabIndex        = 3;
     this.radioNormal.TabStop         = true;
     this.radioNormal.Text            = "Normal";
     this.radioNormal.CheckedChanged += new System.EventHandler(this.RadioChecked);
     //
     // textFile
     //
     this.textFile.Location = new System.Drawing.Point(85, 6);
     this.textFile.Name     = "textFile";
     this.textFile.ReadOnly = true;
     this.textFile.Size     = new System.Drawing.Size(350, 20);
     this.textFile.TabIndex = 1;
     this.textFile.Text     = "";
     //
     // groupBox5
     //
     this.groupBox5.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.lblBehavior
     });
     this.groupBox5.Location = new System.Drawing.Point(8, 278);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(431, 120);
     this.groupBox5.TabIndex = 6;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Expected Behavior";
     //
     // lblBehavior
     //
     this.lblBehavior.Location  = new System.Drawing.Point(6, 16);
     this.lblBehavior.Name      = "lblBehavior";
     this.lblBehavior.Size      = new System.Drawing.Size(422, 100);
     this.lblBehavior.TabIndex  = 0;
     this.lblBehavior.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // buttonSound
     //
     this.buttonSound.Location = new System.Drawing.Point(3, 6);
     this.buttonSound.Name     = "buttonSound";
     this.buttonSound.Size     = new System.Drawing.Size(74, 21);
     this.buttonSound.TabIndex = 0;
     this.buttonSound.Text     = "Sound File...";
     this.buttonSound.Click   += new System.EventHandler(this.buttonSound_Click);
     //
     // textStatus
     //
     this.textStatus.Location = new System.Drawing.Point(85, 33);
     this.textStatus.Name     = "textStatus";
     this.textStatus.ReadOnly = true;
     this.textStatus.Size     = new System.Drawing.Size(350, 20);
     this.textStatus.TabIndex = 1;
     this.textStatus.Text     = "No File Loaded.";
     //
     // buttonPlay
     //
     this.buttonPlay.Enabled  = false;
     this.buttonPlay.Location = new System.Drawing.Point(7, 421);
     this.buttonPlay.Name     = "buttonPlay";
     this.buttonPlay.Size     = new System.Drawing.Size(74, 21);
     this.buttonPlay.TabIndex = 0;
     this.buttonPlay.Text     = "Play";
     this.buttonPlay.Click   += new System.EventHandler(this.buttonPlay_Click);
     //
     // tbarPan
     //
     this.tbarPan.Location      = new System.Drawing.Point(164, 97);
     this.tbarPan.Maximum       = 20;
     this.tbarPan.Minimum       = -20;
     this.tbarPan.Name          = "tbarPan";
     this.tbarPan.Size          = new System.Drawing.Size(236, 42);
     this.tbarPan.TabIndex      = 4;
     this.tbarPan.TickFrequency = 5;
     this.tbarPan.Scroll       += new System.EventHandler(this.tbarPan_Scroll);
     //
     // ofdFile
     //
     this.ofdFile.Filter = "Wave Files (*.wav)|*.wav|All Files (*.*)|*.*";
     this.ofdFile.Title  = "Open Audio File";
     //
     // buttonExit
     //
     this.buttonExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonExit.Location     = new System.Drawing.Point(362, 421);
     this.buttonExit.Name         = "buttonExit";
     this.buttonExit.Size         = new System.Drawing.Size(74, 21);
     this.buttonExit.TabIndex     = 0;
     this.buttonExit.Text         = "Exit";
     this.buttonExit.Click       += new System.EventHandler(this.buttonExit_Click);
     //
     // label11
     //
     this.label11.Location  = new System.Drawing.Point(6, 13);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(73, 15);
     this.label11.TabIndex  = 2;
     this.label11.Text      = "Focus";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // tbarVolume
     //
     this.tbarVolume.Location = new System.Drawing.Point(165, 140);
     this.tbarVolume.Maximum  = 0;
     this.tbarVolume.Minimum  = -50;
     this.tbarVolume.Name     = "tbarVolume";
     this.tbarVolume.Size     = new System.Drawing.Size(236, 42);
     this.tbarVolume.TabIndex = 4;
     this.tbarVolume.Scroll  += new System.EventHandler(this.tbarVolume_Scroll);
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(131, 147);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(41, 20);
     this.label8.TabIndex  = 2;
     this.label8.Text      = "Low";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label9
     //
     this.label9.Location  = new System.Drawing.Point(396, 149);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(47, 20);
     this.label9.TabIndex  = 2;
     this.label9.Text      = "High";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // buttonStop
     //
     this.buttonStop.Enabled  = false;
     this.buttonStop.Location = new System.Drawing.Point(87, 421);
     this.buttonStop.Name     = "buttonStop";
     this.buttonStop.Size     = new System.Drawing.Size(74, 21);
     this.buttonStop.TabIndex = 0;
     this.buttonStop.Text     = "Stop";
     this.buttonStop.Click   += new System.EventHandler(this.buttonStop_Click);
     //
     // lblMaxFreq
     //
     this.lblMaxFreq.Location  = new System.Drawing.Point(396, 68);
     this.lblMaxFreq.Name      = "lblMaxFreq";
     this.lblMaxFreq.Size      = new System.Drawing.Size(47, 20);
     this.lblMaxFreq.TabIndex  = 2;
     this.lblMaxFreq.Text      = "100 KHz";
     this.lblMaxFreq.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(130, 104);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(41, 20);
     this.label5.TabIndex  = 2;
     this.label5.Text      = "Left";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(395, 106);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(47, 20);
     this.label6.TabIndex  = 2;
     this.label6.Text      = "Right";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(5, 97);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(73, 38);
     this.label7.TabIndex  = 2;
     this.label7.Text      = "Pan";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(4, 33);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(73, 20);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Status";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(6, 59);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(73, 38);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Frequency";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblMinFreq
     //
     this.lblMinFreq.Location  = new System.Drawing.Point(131, 66);
     this.lblMinFreq.Name      = "lblMinFreq";
     this.lblMinFreq.Size      = new System.Drawing.Size(41, 20);
     this.lblMinFreq.TabIndex  = 2;
     this.lblMinFreq.Text      = "100 Hz";
     this.lblMinFreq.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // textFreq
     //
     this.textFreq.Location = new System.Drawing.Point(85, 67);
     this.textFreq.Name     = "textFreq";
     this.textFreq.ReadOnly = true;
     this.textFreq.Size     = new System.Drawing.Size(43, 20);
     this.textFreq.TabIndex = 1;
     this.textFreq.Text     = "0";
     //
     // tbarFreq
     //
     this.tbarFreq.LargeChange   = 1000;
     this.tbarFreq.Location      = new System.Drawing.Point(165, 59);
     this.tbarFreq.Maximum       = 100000;
     this.tbarFreq.Minimum       = 100;
     this.tbarFreq.Name          = "tbarFreq";
     this.tbarFreq.Size          = new System.Drawing.Size(236, 42);
     this.tbarFreq.SmallChange   = 100;
     this.tbarFreq.TabIndex      = 4;
     this.tbarFreq.TickFrequency = 10000;
     this.tbarFreq.Value         = 100;
     this.tbarFreq.Scroll       += new System.EventHandler(this.tbarFreq_Scroll);
     //
     // textPan
     //
     this.textPan.Location = new System.Drawing.Point(85, 105);
     this.textPan.Name     = "textPan";
     this.textPan.ReadOnly = true;
     this.textPan.Size     = new System.Drawing.Size(43, 20);
     this.textPan.TabIndex = 1;
     this.textPan.Text     = "0";
     //
     // wfAdjust
     //
     this.AcceptButton      = this.buttonSound;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.buttonExit;
     this.ClientSize        = new System.Drawing.Size(460, 448);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.groupBox5,
         this.groupBox1,
         this.textVolume,
         this.label8,
         this.label9,
         this.label10,
         this.tbarVolume,
         this.label5,
         this.label6,
         this.tbarPan,
         this.textPan,
         this.label7,
         this.lblMaxFreq,
         this.lblMinFreq,
         this.textFreq,
         this.tbarFreq,
         this.label2,
         this.checkLoop,
         this.buttonStop,
         this.buttonPlay,
         this.buttonExit,
         this.label1,
         this.textStatus,
         this.textFile,
         this.buttonSound
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.Name            = "wfAdjust";
     this.Text            = "AdjustSound";
     ((System.ComponentModel.ISupportInitialize)(this.tmrUpdate)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbarPan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbarVolume)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbarFreq)).EndInit();
     this.ResumeLayout(false);
 }
Example #50
0
        //private System.ComponentModel.Container components = null;

        #region Windows Form Designer generated code
        /// <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(frmMain));
            this.button1     = new System.Windows.Forms.Button();
            this.rdoFloat    = new System.Windows.Forms.RadioButton();
            this.rdoRight    = new System.Windows.Forms.RadioButton();
            this.rdoTop      = new System.Windows.Forms.RadioButton();
            this.rdoBottom   = new System.Windows.Forms.RadioButton();
            this.rdoLeft     = new System.Windows.Forms.RadioButton();
            this.button2     = new System.Windows.Forms.Button();
            this.checkBox1   = new System.Windows.Forms.CheckBox();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.button3     = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            //
            // button1
            //
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.button1.Location  = new System.Drawing.Point(3, 143);
            this.button1.Name      = "button1";
            this.button1.Size      = new System.Drawing.Size(72, 26);
            this.button1.TabIndex  = 10;
            this.button1.Text      = "Snip Screen";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            //
            // rdoFloat
            //
            this.rdoFloat.Location        = new System.Drawing.Point(37, 120);
            this.rdoFloat.Name            = "rdoFloat";
            this.rdoFloat.Size            = new System.Drawing.Size(51, 17);
            this.rdoFloat.TabIndex        = 9;
            this.rdoFloat.Text            = "Float";
            this.rdoFloat.CheckedChanged += new System.EventHandler(this.rdo_CheckedChanged);
            //
            // rdoRight
            //
            this.rdoRight.Location        = new System.Drawing.Point(9, 96);
            this.rdoRight.Name            = "rdoRight";
            this.rdoRight.Size            = new System.Drawing.Size(52, 26);
            this.rdoRight.TabIndex        = 8;
            this.rdoRight.Text            = "Right";
            this.rdoRight.CheckedChanged += new System.EventHandler(this.rdo_CheckedChanged);
            //
            // rdoTop
            //
            this.rdoTop.Location        = new System.Drawing.Point(65, 76);
            this.rdoTop.Name            = "rdoTop";
            this.rdoTop.Size            = new System.Drawing.Size(50, 22);
            this.rdoTop.TabIndex        = 7;
            this.rdoTop.Text            = "Top";
            this.rdoTop.CheckedChanged += new System.EventHandler(this.rdo_CheckedChanged);
            //
            // rdoBottom
            //
            this.rdoBottom.Location        = new System.Drawing.Point(64, 98);
            this.rdoBottom.Name            = "rdoBottom";
            this.rdoBottom.Size            = new System.Drawing.Size(61, 22);
            this.rdoBottom.TabIndex        = 11;
            this.rdoBottom.Text            = "Bottom";
            this.rdoBottom.CheckedChanged += new System.EventHandler(this.rdo_CheckedChanged);
            //
            // rdoLeft
            //
            this.rdoLeft.Location        = new System.Drawing.Point(9, 76);
            this.rdoLeft.Name            = "rdoLeft";
            this.rdoLeft.Size            = new System.Drawing.Size(50, 22);
            this.rdoLeft.TabIndex        = 7;
            this.rdoLeft.Text            = "Left";
            this.rdoLeft.CheckedChanged += new System.EventHandler(this.rdo_CheckedChanged);
            //
            // button2
            //
            this.button2.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.button2.Location  = new System.Drawing.Point(79, 143);
            this.button2.Name      = "button2";
            this.button2.Size      = new System.Drawing.Size(38, 26);
            this.button2.TabIndex  = 12;
            this.button2.Text      = "Clear";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            //
            // checkBox1
            //
            this.checkBox1.AutoSize   = true;
            this.checkBox1.Checked    = true;
            this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBox1.Location   = new System.Drawing.Point(10, 58);
            this.checkBox1.Name       = "checkBox1";
            this.checkBox1.Size       = new System.Drawing.Size(108, 17);
            this.checkBox1.TabIndex   = 14;
            this.checkBox1.Text       = "Snips go to Dock";
            this.checkBox1.UseVisualStyleBackColor = true;
            this.checkBox1.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
            //
            // pictureBox1
            //
            this.pictureBox1.Location = new System.Drawing.Point(9, 175);
            this.pictureBox1.Name     = "pictureBox1";
            this.pictureBox1.Size     = new System.Drawing.Size(10, 5);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 19;
            this.pictureBox1.TabStop  = false;
            //
            // pictureBox2
            //
            this.pictureBox2.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
            this.pictureBox2.InitialImage = null;
            this.pictureBox2.Location     = new System.Drawing.Point(10, 6);
            this.pictureBox2.Name         = "pictureBox2";
            this.pictureBox2.Size         = new System.Drawing.Size(46, 45);
            this.pictureBox2.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex     = 20;
            this.pictureBox2.TabStop      = false;
            //
            // button3
            //
            this.button3.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.button3.Location  = new System.Drawing.Point(60, 6);
            this.button3.Name      = "button3";
            this.button3.Size      = new System.Drawing.Size(53, 24);
            this.button3.TabIndex  = 21;
            this.button3.Text      = "More";
            this.button3.UseVisualStyleBackColor = true;
            this.button3.Click += new System.EventHandler(this.button3_Click);
            //
            // frmMain
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.AutoSize          = true;
            this.ClientSize        = new System.Drawing.Size(119, 459);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.pictureBox2);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.checkBox1);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.rdoFloat);
            this.Controls.Add(this.rdoRight);
            this.Controls.Add(this.rdoTop);
            this.Controls.Add(this.rdoBottom);
            this.Controls.Add(this.rdoLeft);
            this.Icon    = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name    = "frmMain";
            this.Padding = new System.Windows.Forms.Padding(0, 0, 5, 0);
            this.Text    = "SnipDock";
            this.TopMost = true;
            this.Load   += new System.EventHandler(this.frmMain_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Example #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
     this.chartControl1         = new Syncfusion.Windows.Forms.Chart.ChartControl();
     this.panel1                = new System.Windows.Forms.Panel();
     this.panel3                = new System.Windows.Forms.Panel();
     this.label22               = new System.Windows.Forms.Label();
     this.radioButton1          = new System.Windows.Forms.RadioButton();
     this.colorPickerButton1    = new Syncfusion.Windows.Forms.ColorPickerButton();
     this.radioButton2          = new System.Windows.Forms.RadioButton();
     this.label1                = new System.Windows.Forms.Label();
     this.checkBoxAutoHighlight = new System.Windows.Forms.CheckBox();
     this.panel2                = new System.Windows.Forms.Panel();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.ChartArea.CursorLocation  = new System.Drawing.Point(0, 0);
     this.chartControl1.ChartArea.CursorReDraw    = false;
     this.chartControl1.ChartArea.XAxesLayoutMode = Syncfusion.Windows.Forms.Chart.ChartAxesLayoutMode.SideBySide;
     this.chartControl1.ChartArea.YAxesLayoutMode = Syncfusion.Windows.Forms.Chart.ChartAxesLayoutMode.SideBySide;
     this.chartControl1.ChartAreaMargins          = new Syncfusion.Windows.Forms.Chart.ChartMargins(10, 10, 20, 10);
     this.chartControl1.ChartInterior             = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(209)))), ((int)(((byte)(226))))), System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(232)))), ((int)(((byte)(243))))));
     this.chartControl1.Cursor         = System.Windows.Forms.Cursors.Hand;
     this.chartControl1.DataSourceName = "";
     this.chartControl1.Font           = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chartControl1.IsWindowLess   = false;
     //
     //
     //
     this.chartControl1.Legend.Font        = new System.Drawing.Font("Segoe UI", 10F);
     this.chartControl1.Legend.Location    = new System.Drawing.Point(58, 409);
     this.chartControl1.Legend.Orientation = Syncfusion.Windows.Forms.Chart.ChartOrientation.Horizontal;
     this.chartControl1.Legend.Position    = Syncfusion.Windows.Forms.Chart.ChartDock.Bottom;
     this.chartControl1.Localize           = null;
     this.chartControl1.Location           = new System.Drawing.Point(12, 12);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.PrimaryXAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryXAxis.Margin   = true;
     this.chartControl1.PrimaryXAxis.SmartDateZoomMonthLevelLabelFormat = "m";
     this.chartControl1.PrimaryYAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryYAxis.Margin   = true;
     this.chartControl1.PrimaryYAxis.SmartDateZoomMonthLevelLabelFormat = "m";
     this.chartControl1.Size     = new System.Drawing.Size(650, 486);
     this.chartControl1.TabIndex = 2;
     this.chartControl1.Text     = "Essential Chart";
     //
     //
     //
     this.chartControl1.Title.Name = "Def_title";
     this.chartControl1.Title.Text = "Essential Chart";
     this.chartControl1.Titles.Add(this.chartControl1.Title);
     this.chartControl1.ZoomOutIncrement = 1.5D;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.AutoSize  = true;
     this.panel1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.checkBoxAutoHighlight);
     this.panel1.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.panel1.Location  = new System.Drawing.Point(700, 0);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(260, 590);
     this.panel1.TabIndex  = 3;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.label22);
     this.panel3.Controls.Add(this.radioButton1);
     this.panel3.Controls.Add(this.colorPickerButton1);
     this.panel3.Controls.Add(this.radioButton2);
     this.panel3.Location = new System.Drawing.Point(22, 100);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(171, 161);
     this.panel3.TabIndex = 6;
     //
     // label22
     //
     this.label22.AutoSize  = true;
     this.label22.BackColor = System.Drawing.Color.Transparent;
     this.label22.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label22.Location  = new System.Drawing.Point(27, 7);
     this.label22.Name      = "label22";
     this.label22.Size      = new System.Drawing.Size(116, 21);
     this.label22.TabIndex  = 4;
     this.label22.Text      = "Highlight Color";
     //
     // radioButton1
     //
     this.radioButton1.AutoSize        = true;
     this.radioButton1.Checked         = true;
     this.radioButton1.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.radioButton1.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.radioButton1.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioButton1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.radioButton1.Location        = new System.Drawing.Point(30, 39);
     this.radioButton1.Name            = "radioButton1";
     this.radioButton1.Size            = new System.Drawing.Size(102, 25);
     this.radioButton1.TabIndex        = 0;
     this.radioButton1.TabStop         = true;
     this.radioButton1.Text            = "Automatic";
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // colorPickerButton1
     //
     this.colorPickerButton1.BackColor               = System.Drawing.Color.Transparent;
     this.colorPickerButton1.BeforeTouchSize         = new System.Drawing.Size(100, 30);
     this.colorPickerButton1.ColorUISize             = new System.Drawing.Size(208, 230);
     this.colorPickerButton1.Cursor                  = System.Windows.Forms.Cursors.Hand;
     this.colorPickerButton1.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.colorPickerButton1.Font                    = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.colorPickerButton1.ForeColor               = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.colorPickerButton1.IsBackStageButton       = false;
     this.colorPickerButton1.Location                = new System.Drawing.Point(30, 107);
     this.colorPickerButton1.Name                    = "colorPickerButton1";
     this.colorPickerButton1.SelectedAsBackcolor     = true;
     this.colorPickerButton1.SelectedColor           = System.Drawing.Color.Transparent;
     this.colorPickerButton1.Size                    = new System.Drawing.Size(100, 30);
     this.colorPickerButton1.TabIndex                = 2;
     this.colorPickerButton1.UseVisualStyleBackColor = false;
     this.colorPickerButton1.ColorSelected          += new System.EventHandler(this.Color_Selected);
     //
     // radioButton2
     //
     this.radioButton2.AutoSize        = true;
     this.radioButton2.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.radioButton2.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.radioButton2.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioButton2.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.radioButton2.Location        = new System.Drawing.Point(30, 70);
     this.radioButton2.Name            = "radioButton2";
     this.radioButton2.Size            = new System.Drawing.Size(85, 25);
     this.radioButton2.TabIndex        = 1;
     this.radioButton2.Text            = "Specific";
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label1.Location  = new System.Drawing.Point(49, 30);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(90, 25);
     this.label1.TabIndex  = 5;
     this.label1.Text      = "Highlight";
     //
     // checkBoxAutoHighlight
     //
     this.checkBoxAutoHighlight.AutoSize        = true;
     this.checkBoxAutoHighlight.Checked         = true;
     this.checkBoxAutoHighlight.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBoxAutoHighlight.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.checkBoxAutoHighlight.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.checkBoxAutoHighlight.Font            = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBoxAutoHighlight.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.checkBoxAutoHighlight.Location        = new System.Drawing.Point(54, 71);
     this.checkBoxAutoHighlight.Name            = "checkBoxAutoHighlight";
     this.checkBoxAutoHighlight.Size            = new System.Drawing.Size(66, 25);
     this.checkBoxAutoHighlight.TabIndex        = 0;
     this.checkBoxAutoHighlight.Text            = "Auto";
     this.checkBoxAutoHighlight.CheckedChanged += new System.EventHandler(this.checkBoxAutoHighlight_CheckedChanged);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.White;
     this.panel2.Controls.Add(this.chartControl1);
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(700, 580);
     this.panel2.TabIndex = 4;
     //
     // FormMain
     //
     this.BackColor  = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(954, 581);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.MinimumSize         = new System.Drawing.Size(527, 488);
     this.Name          = "FormMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Auto Highlight ";
     this.Load         += new System.EventHandler(this.FormMain_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #52
0
    public static string ShowTypeDialog()
    {
        Form prompt = new Form();

        System.Windows.Forms.Label       label1;
        System.Windows.Forms.Label       label2;
        System.Windows.Forms.Panel       panel1;
        System.Windows.Forms.RadioButton radioButton2;
        System.Windows.Forms.RadioButton radioButton1;
        System.Windows.Forms.Panel       panel2;
        System.Windows.Forms.Button      button1;
        label1       = new System.Windows.Forms.Label();
        label2       = new System.Windows.Forms.Label();
        panel1       = new System.Windows.Forms.Panel();
        panel2       = new System.Windows.Forms.Panel();
        button1      = new System.Windows.Forms.Button();
        radioButton1 = new System.Windows.Forms.RadioButton();
        radioButton2 = new System.Windows.Forms.RadioButton();

        //
        // label1
        //
        label1.AutoSize = true;
        label1.Dock     = System.Windows.Forms.DockStyle.Top;
        label1.Font     = new System.Drawing.Font("Arial Black", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
        label1.Location = new System.Drawing.Point(0, 0);
        label1.Name     = "label1";
        label1.Size     = new System.Drawing.Size(248, 33);
        label1.TabIndex = 1;
        label1.Text     = "Login Verification";
        //
        // label2
        //
        label2.AutoSize = true;
        label2.Dock     = System.Windows.Forms.DockStyle.Top;
        label2.Location = new System.Drawing.Point(0, 33);
        label2.Name     = "label2";
        label2.Size     = new System.Drawing.Size(402, 13);
        label2.TabIndex = 2;
        label2.Text     = "In order to verify your identity, we\'ll send you a code to your preferred method " +
                          "below.";
        //
        // panel1
        //
        panel1.Controls.Add(radioButton2);
        panel1.Controls.Add(radioButton1);
        panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
        panel1.Location = new System.Drawing.Point(0, 46);
        panel1.Name     = "panel1";
        panel1.Size     = new System.Drawing.Size(587, 84);
        panel1.TabIndex = 3;
        //
        // panel2
        //
        panel2.Controls.Add(button1);
        panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
        panel2.Location = new System.Drawing.Point(0, 130);
        panel2.Name     = "panel2";
        panel2.Size     = new System.Drawing.Size(587, 39);
        panel2.TabIndex = 0;
        //
        // button1
        //
        button1.Location = new System.Drawing.Point(12, 6);
        button1.Name     = "button1";
        button1.Size     = new System.Drawing.Size(142, 23);
        button1.TabIndex = 0;
        button1.Text     = "Send Security Code";
        button1.UseVisualStyleBackColor = true;
        button1.DialogResult            = DialogResult.OK;
        //
        // radioButton1
        //
        radioButton1.AutoSize = true;
        radioButton1.Checked  = true;
        radioButton1.Location = new System.Drawing.Point(12, 29);
        radioButton1.Name     = "radioButton1";
        radioButton1.Size     = new System.Drawing.Size(143, 17);
        radioButton1.TabIndex = 0;
        radioButton1.TabStop  = true;
        radioButton1.Text     = "Send to my Primary Email";
        radioButton1.UseVisualStyleBackColor = true;
        //
        // radioButton2
        //
        radioButton2.AutoSize = true;
        radioButton2.Location = new System.Drawing.Point(12, 52);
        radioButton2.Name     = "radioButton2";
        radioButton2.Size     = new System.Drawing.Size(148, 17);
        radioButton2.TabIndex = 1;
        radioButton2.TabStop  = true;
        radioButton2.Text     = "Use my App Authenticator";
        radioButton2.UseVisualStyleBackColor = true;
        //
        // LoginVerification
        //
        prompt.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        prompt.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
        prompt.ClientSize          = new System.Drawing.Size(587, 169);
        prompt.Controls.Add(panel1);
        prompt.Controls.Add(panel2);
        prompt.Controls.Add(label2);
        prompt.Controls.Add(label1);
        prompt.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
        prompt.Name            = "LoginVerification";
        prompt.Text            = "LoginVerification";
        panel1.ResumeLayout(false);
        panel1.PerformLayout();
        panel2.ResumeLayout(false);
        prompt.ResumeLayout(false);
        prompt.PerformLayout();

        button1.Click      += (sender, e) => { prompt.Close(); };
        prompt.AcceptButton = button1;

        return(prompt.ShowDialog() == DialogResult.OK ? (radioButton1.Checked ? "EMAIL" : "APP") : "");
    }
Example #53
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(frmSettings));
     this.tabSettings      = new System.Windows.Forms.TabControl();
     this.tpWorkingContext = new System.Windows.Forms.TabPage();
     this.txtDatabase      = new System.Windows.Forms.ComboBox();
     this.txtServer        = new System.Windows.Forms.ComboBox();
     this.txtPassWord      = new System.Windows.Forms.TextBox();
     this.lblPassword      = new System.Windows.Forms.Label();
     this.lblDatabase      = new System.Windows.Forms.Label();
     this.txtUserName      = new System.Windows.Forms.TextBox();
     this.lblUserID        = new System.Windows.Forms.Label();
     this.lblServer        = new System.Windows.Forms.Label();
     this.tpPicturePath    = new System.Windows.Forms.TabPage();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.txtPicturePath   = new System.Windows.Forms.TextBox();
     this.btnBrowse        = new System.Windows.Forms.Button();
     this.tbLanguage       = new System.Windows.Forms.TabPage();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.rdoVietnamese    = new System.Windows.Forms.RadioButton();
     this.rdoJapanese      = new System.Windows.Forms.RadioButton();
     this.rdoEnglish       = new System.Windows.Forms.RadioButton();
     this.btnClose         = new System.Windows.Forms.Button();
     this.btnSaveSettings  = new System.Windows.Forms.Button();
     this.groupBox3        = new System.Windows.Forms.GroupBox();
     this.txtReportPath    = new System.Windows.Forms.TextBox();
     this.btnBrowseReport  = new System.Windows.Forms.Button();
     this.tabSettings.SuspendLayout();
     this.tpWorkingContext.SuspendLayout();
     this.tpPicturePath.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tbLanguage.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabSettings
     //
     this.tabSettings.Controls.Add(this.tpWorkingContext);
     this.tabSettings.Controls.Add(this.tpPicturePath);
     this.tabSettings.Controls.Add(this.tbLanguage);
     this.tabSettings.Location      = new System.Drawing.Point(0, 0);
     this.tabSettings.Name          = "tabSettings";
     this.tabSettings.SelectedIndex = 0;
     this.tabSettings.Size          = new System.Drawing.Size(296, 138);
     this.tabSettings.TabIndex      = 0;
     //
     // tpWorkingContext
     //
     this.tpWorkingContext.Controls.Add(this.txtDatabase);
     this.tpWorkingContext.Controls.Add(this.txtServer);
     this.tpWorkingContext.Controls.Add(this.txtPassWord);
     this.tpWorkingContext.Controls.Add(this.lblPassword);
     this.tpWorkingContext.Controls.Add(this.lblDatabase);
     this.tpWorkingContext.Controls.Add(this.txtUserName);
     this.tpWorkingContext.Controls.Add(this.lblUserID);
     this.tpWorkingContext.Controls.Add(this.lblServer);
     this.tpWorkingContext.Location = new System.Drawing.Point(4, 22);
     this.tpWorkingContext.Name     = "tpWorkingContext";
     this.tpWorkingContext.Size     = new System.Drawing.Size(288, 112);
     this.tpWorkingContext.TabIndex = 0;
     this.tpWorkingContext.Text     = "Kết nối dữ liệu";
     this.tpWorkingContext.UseVisualStyleBackColor = true;
     //
     // txtDatabase
     //
     this.txtDatabase.FormattingEnabled = true;
     this.txtDatabase.Location          = new System.Drawing.Point(112, 84);
     this.txtDatabase.Name      = "txtDatabase";
     this.txtDatabase.Size      = new System.Drawing.Size(168, 21);
     this.txtDatabase.TabIndex  = 4;
     this.txtDatabase.DropDown += new System.EventHandler(this.Onchange);
     //
     // txtServer
     //
     this.txtServer.FormattingEnabled = true;
     this.txtServer.Location          = new System.Drawing.Point(112, 8);
     this.txtServer.Name     = "txtServer";
     this.txtServer.Size     = new System.Drawing.Size(168, 21);
     this.txtServer.TabIndex = 1;
     //
     // txtPassWord
     //
     this.txtPassWord.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassWord.Location     = new System.Drawing.Point(112, 59);
     this.txtPassWord.Name         = "txtPassWord";
     this.txtPassWord.PasswordChar = '*';
     this.txtPassWord.Size         = new System.Drawing.Size(168, 20);
     this.txtPassWord.TabIndex     = 3;
     //
     // lblPassword
     //
     this.lblPassword.Location  = new System.Drawing.Point(8, 59);
     this.lblPassword.Name      = "lblPassword";
     this.lblPassword.Size      = new System.Drawing.Size(100, 23);
     this.lblPassword.TabIndex  = 14;
     this.lblPassword.Text      = "Mật khẩu";
     this.lblPassword.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblDatabase
     //
     this.lblDatabase.Location  = new System.Drawing.Point(8, 84);
     this.lblDatabase.Name      = "lblDatabase";
     this.lblDatabase.Size      = new System.Drawing.Size(100, 23);
     this.lblDatabase.TabIndex  = 10;
     this.lblDatabase.Text      = "Tên cơ sơ dữ liệu";
     this.lblDatabase.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtUserName
     //
     this.txtUserName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUserName.Location = new System.Drawing.Point(112, 34);
     this.txtUserName.Name     = "txtUserName";
     this.txtUserName.Size     = new System.Drawing.Size(168, 20);
     this.txtUserName.TabIndex = 2;
     //
     // lblUserID
     //
     this.lblUserID.Location  = new System.Drawing.Point(8, 34);
     this.lblUserID.Name      = "lblUserID";
     this.lblUserID.Size      = new System.Drawing.Size(100, 23);
     this.lblUserID.TabIndex  = 12;
     this.lblUserID.Text      = "Tên đăng nhập";
     this.lblUserID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblServer
     //
     this.lblServer.Location  = new System.Drawing.Point(8, 8);
     this.lblServer.Name      = "lblServer";
     this.lblServer.Size      = new System.Drawing.Size(100, 23);
     this.lblServer.TabIndex  = 8;
     this.lblServer.Text      = "Máy chủ";
     this.lblServer.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tpPicturePath
     //
     this.tpPicturePath.Controls.Add(this.groupBox3);
     this.tpPicturePath.Controls.Add(this.groupBox2);
     this.tpPicturePath.Location = new System.Drawing.Point(4, 22);
     this.tpPicturePath.Name     = "tpPicturePath";
     this.tpPicturePath.Size     = new System.Drawing.Size(288, 112);
     this.tpPicturePath.TabIndex = 1;
     this.tpPicturePath.Text     = "Thiết lập Đường Dẫn";
     this.tpPicturePath.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.txtPicturePath);
     this.groupBox2.Controls.Add(this.btnBrowse);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location  = new System.Drawing.Point(8, 5);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(272, 47);
     this.groupBox2.TabIndex  = 0;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Đường dẫn ảnh";
     //
     // txtPicturePath
     //
     this.txtPicturePath.Location = new System.Drawing.Point(8, 18);
     this.txtPicturePath.Name     = "txtPicturePath";
     this.txtPicturePath.Size     = new System.Drawing.Size(200, 20);
     this.txtPicturePath.TabIndex = 1;
     //
     // btnBrowse
     //
     this.btnBrowse.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnBrowse.Location  = new System.Drawing.Point(208, 18);
     this.btnBrowse.Name      = "btnBrowse";
     this.btnBrowse.Size      = new System.Drawing.Size(56, 23);
     this.btnBrowse.TabIndex  = 0;
     this.btnBrowse.Text      = "Chọn...";
     this.btnBrowse.Click    += new System.EventHandler(this.btnBrowse_Click);
     //
     // tbLanguage
     //
     this.tbLanguage.Controls.Add(this.groupBox1);
     this.tbLanguage.Location = new System.Drawing.Point(4, 22);
     this.tbLanguage.Name     = "tbLanguage";
     this.tbLanguage.Size     = new System.Drawing.Size(288, 112);
     this.tbLanguage.TabIndex = 2;
     this.tbLanguage.Text     = "Ngôn ngữ";
     this.tbLanguage.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdoVietnamese);
     this.groupBox1.Controls.Add(this.rdoJapanese);
     this.groupBox1.Controls.Add(this.rdoEnglish);
     this.groupBox1.Location = new System.Drawing.Point(8, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(272, 104);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     //
     // rdoVietnamese
     //
     this.rdoVietnamese.Location = new System.Drawing.Point(16, 64);
     this.rdoVietnamese.Name     = "rdoVietnamese";
     this.rdoVietnamese.Size     = new System.Drawing.Size(104, 24);
     this.rdoVietnamese.TabIndex = 2;
     this.rdoVietnamese.Text     = "Tiếng Việt";
     //
     // rdoJapanese
     //
     this.rdoJapanese.Location = new System.Drawing.Point(16, 40);
     this.rdoJapanese.Name     = "rdoJapanese";
     this.rdoJapanese.Size     = new System.Drawing.Size(104, 24);
     this.rdoJapanese.TabIndex = 1;
     this.rdoJapanese.Text     = "Japanese";
     //
     // rdoEnglish
     //
     this.rdoEnglish.Location = new System.Drawing.Point(16, 16);
     this.rdoEnglish.Name     = "rdoEnglish";
     this.rdoEnglish.Size     = new System.Drawing.Size(104, 24);
     this.rdoEnglish.TabIndex = 0;
     this.rdoEnglish.Text     = "English";
     //
     // btnClose
     //
     this.btnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.Location     = new System.Drawing.Point(218, 144);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex     = 6;
     this.btnClose.Text         = "Đóng";
     this.btnClose.Click       += new System.EventHandler(this.btnClose_Click);
     //
     // btnSaveSettings
     //
     this.btnSaveSettings.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSaveSettings.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnSaveSettings.Location  = new System.Drawing.Point(138, 144);
     this.btnSaveSettings.Name      = "btnSaveSettings";
     this.btnSaveSettings.Size      = new System.Drawing.Size(75, 23);
     this.btnSaveSettings.TabIndex  = 5;
     this.btnSaveSettings.Text      = "Đồng ý";
     this.btnSaveSettings.Click    += new System.EventHandler(this.btnSaveSettings_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.txtReportPath);
     this.groupBox3.Controls.Add(this.btnBrowseReport);
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox3.Location  = new System.Drawing.Point(8, 60);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(272, 47);
     this.groupBox3.TabIndex  = 2;
     this.groupBox3.TabStop   = false;
     this.groupBox3.Text      = "Đường dẫn báo cáo";
     //
     // txtReportPath
     //
     this.txtReportPath.Location = new System.Drawing.Point(8, 18);
     this.txtReportPath.Name     = "txtReportPath";
     this.txtReportPath.Size     = new System.Drawing.Size(200, 20);
     this.txtReportPath.TabIndex = 1;
     //
     // btnBrowseReport
     //
     this.btnBrowseReport.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnBrowseReport.Location  = new System.Drawing.Point(208, 18);
     this.btnBrowseReport.Name      = "btnBrowseReport";
     this.btnBrowseReport.Size      = new System.Drawing.Size(56, 23);
     this.btnBrowseReport.TabIndex  = 0;
     this.btnBrowseReport.Text      = "Chọn...";
     this.btnBrowseReport.Click    += new System.EventHandler(this.btnBrowseReport_Click);
     //
     // frmSettings
     //
     this.AcceptButton      = this.btnSaveSettings;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnClose;
     this.ClientSize        = new System.Drawing.Size(298, 174);
     this.Controls.Add(this.tabSettings);
     this.Controls.Add(this.btnSaveSettings);
     this.Controls.Add(this.btnClose);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmSettings";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Cấu hình hệ thống";
     this.Load           += new System.EventHandler(this.frmSettings_Load);
     this.tabSettings.ResumeLayout(false);
     this.tpWorkingContext.ResumeLayout(false);
     this.tpWorkingContext.PerformLayout();
     this.tpPicturePath.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.tbLanguage.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
Example #54
0
        /// <summary>
        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
        /// コード エディタで変更しないでください。
        /// </summary>
        private void InitializeComponent()
        {
            this.groupBox1     = new System.Windows.Forms.GroupBox();
            this.radioReverse  = new System.Windows.Forms.RadioButton();
            this.minBox        = new System.Windows.Forms.ComboBox();
            this.radioGo       = new System.Windows.Forms.RadioButton();
            this.radioStop     = new System.Windows.Forms.RadioButton();
            this.radioPass     = new System.Windows.Forms.RadioButton();
            this.buttonReplace = new System.Windows.Forms.Button();
            this.hourBox       = new System.Windows.Forms.ComboBox();
            this.dayOfWeekBox  = new System.Windows.Forms.ComboBox();
            this.dayBox        = new System.Windows.Forms.ComboBox();
            this.monthBox      = new System.Windows.Forms.ComboBox();
            this.buttonAdd     = new System.Windows.Forms.Button();
            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.buttonUp      = new System.Windows.Forms.Button();
            this.buttonDown    = new System.Windows.Forms.Button();
            this.buttonRemove  = new System.Windows.Forms.Button();
            this.buttonOk      = new System.Windows.Forms.Button();
            this.triggerList   = new System.Windows.Forms.ListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            //
            // groupBox1
            //
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.radioReverse);
            this.groupBox1.Controls.Add(this.minBox);
            this.groupBox1.Controls.Add(this.radioGo);
            this.groupBox1.Controls.Add(this.radioStop);
            this.groupBox1.Controls.Add(this.radioPass);
            this.groupBox1.Controls.Add(this.buttonReplace);
            this.groupBox1.Controls.Add(this.hourBox);
            this.groupBox1.Controls.Add(this.dayOfWeekBox);
            this.groupBox1.Controls.Add(this.dayBox);
            this.groupBox1.Controls.Add(this.monthBox);
            this.groupBox1.Controls.Add(this.buttonAdd);
            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.Location = new System.Drawing.Point(0, 9);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(499, 86);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "Requirements";
            //! this.groupBox1.Text = "条件";
            //
            // radioReverse
            //
            this.radioReverse.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.radioReverse.Location = new System.Drawing.Point(160, 52);
            this.radioReverse.Name     = "radioReverse";
            this.radioReverse.Size     = new System.Drawing.Size(72, 26);
            this.radioReverse.TabIndex = 15;
            this.radioReverse.Text     = "Reverse";
            //! this.radioReverse.Text = "折返発車";
            this.radioReverse.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // minBox
            //
            this.minBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.minBox.Items.AddRange(new object[] {
                "*",
                "00",
                "10",
                "20",
                "30",
                "40",
                "50"
            });
            this.minBox.Location         = new System.Drawing.Point(389, 17);
            this.minBox.MaxDropDownItems = 13;
            this.minBox.Name             = "minBox";
            this.minBox.Size             = new System.Drawing.Size(40, 21);
            this.minBox.TabIndex         = 13;
            //
            // radioGo
            //
            this.radioGo.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.radioGo.Location = new System.Drawing.Point(112, 52);
            this.radioGo.Name     = "radioGo";
            this.radioGo.Size     = new System.Drawing.Size(48, 26);
            this.radioGo.TabIndex = 12;
            this.radioGo.Text     = "Go";
            //! this.radioGo.Text = "発車";
            this.radioGo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // radioStop
            //
            this.radioStop.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.radioStop.Location = new System.Drawing.Point(64, 52);
            this.radioStop.Name     = "radioStop";
            this.radioStop.Size     = new System.Drawing.Size(48, 26);
            this.radioStop.TabIndex = 9;
            this.radioStop.Text     = "Stop";
            //! this.radioStop.Text = "停車";
            this.radioStop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // radioPass
            //
            this.radioPass.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.radioPass.Checked  = true;
            this.radioPass.Location = new System.Drawing.Point(16, 52);
            this.radioPass.Name     = "radioPass";
            this.radioPass.Size     = new System.Drawing.Size(48, 26);
            this.radioPass.TabIndex = 8;
            this.radioPass.TabStop  = true;
            this.radioPass.Text     = "Pass";
            //! this.radioPass.Text = "通過";
            //
            // buttonReplace
            //
            this.buttonReplace.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonReplace.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonReplace.Location  = new System.Drawing.Point(427, 52);
            this.buttonReplace.Name      = "buttonReplace";
            this.buttonReplace.Size      = new System.Drawing.Size(64, 26);
            this.buttonReplace.TabIndex  = 11;
            this.buttonReplace.Text      = "&Replace";
            //! this.buttonReplace.Text = "置換(&R)";
            this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click);
            //
            // hourBox
            //
            this.hourBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.hourBox.Items.AddRange(new object[] {
                "*",
                "00",
                "01",
                "02",
                "03",
                "04",
                "05",
                "06",
                "07",
                "08",
                "09",
                "10",
                "11",
                "12",
                "13",
                "14",
                "15",
                "16",
                "17",
                "18",
                "19",
                "20",
                "21",
                "22",
                "23"
            });
            this.hourBox.Location         = new System.Drawing.Point(309, 17);
            this.hourBox.MaxDropDownItems = 13;
            this.hourBox.Name             = "hourBox";
            this.hourBox.Size             = new System.Drawing.Size(40, 21);
            this.hourBox.TabIndex         = 6;
            //
            // dayOfWeekBox
            //
            this.dayOfWeekBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;

            /*this.dayOfWeekBox.Items.AddRange(new object[] {
             *                                                                                                "*",
             *                                                                                                "日",
             *                                                                                                "月",
             *                                                                                                "火",
             *                                                                                                "水",
             *                                                                                                "木",
             *                                                                                                "金",
             *                                                                                                "土"*/
            this.dayOfWeekBox.Items.AddRange(new object[] {
                "*",
                "7",
                "1",
                "2",
                "3",
                "4",
                "5",
                "6"
            });
            this.dayOfWeekBox.Location         = new System.Drawing.Point(205, 17);
            this.dayOfWeekBox.MaxDropDownItems = 13;
            this.dayOfWeekBox.Name             = "dayOfWeekBox";
            this.dayOfWeekBox.Size             = new System.Drawing.Size(43, 21);
            this.dayOfWeekBox.TabIndex         = 4;
            //
            // dayBox
            //
            this.dayBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.dayBox.Items.AddRange(new object[] {
                "*",
                "1",
                "2",
                "3",
                "4",
                "5",
                "6",
                "7",
                "8",
                "9",
                "10",
                "11",
                "12",
                "13",
                "14",
                "15",
                "16",
                "17",
                "18",
                "19",
                "20",
                "21",
                "22",
                "23",
                "24",
                "25",
                "26",
                "27",
                "28",
                "29",
                "30",
                "31"
            });
            this.dayBox.Location         = new System.Drawing.Point(112, 17);
            this.dayBox.MaxDropDownItems = 13;
            this.dayBox.Name             = "dayBox";
            this.dayBox.Size             = new System.Drawing.Size(48, 21);
            this.dayBox.TabIndex         = 2;
            //
            // monthBox
            //
            this.monthBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.monthBox.Items.AddRange(new object[] {
                "*",
                "1",
                "2",
                "3",
                "4",
                "5",
                "6",
                "7",
                "8",
                "9",
                "10",
                "11",
                "12"
            });
            this.monthBox.Location         = new System.Drawing.Point(12, 18);
            this.monthBox.MaxDropDownItems = 13;
            this.monthBox.Name             = "monthBox";
            this.monthBox.Size             = new System.Drawing.Size(56, 21);
            this.monthBox.TabIndex         = 0;
            //
            // buttonAdd
            //
            this.buttonAdd.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonAdd.Location  = new System.Drawing.Point(355, 52);
            this.buttonAdd.Name      = "buttonAdd";
            this.buttonAdd.Size      = new System.Drawing.Size(64, 26);
            this.buttonAdd.TabIndex  = 10;
            this.buttonAdd.Text      = "&Add";
            //! this.buttonAdd.Text = "追加(&A)";
            this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
            //
            // label5
            //
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Location  = new System.Drawing.Point(435, 17);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(58, 21);
            this.label5.TabIndex  = 14;
            this.label5.Text      = "Minute";
            //! this.label5.Text = "分";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label4
            //
            this.label4.BackColor = System.Drawing.Color.Transparent;
            this.label4.Location  = new System.Drawing.Point(355, 16);
            this.label4.Name      = "label4";
            this.label4.Size      = new System.Drawing.Size(50, 22);
            this.label4.TabIndex  = 7;
            this.label4.Text      = "Hour";
            //! this.label4.Text = "時";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label3
            //
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Location  = new System.Drawing.Point(254, 18);
            this.label3.Name      = "label3";
            this.label3.Size      = new System.Drawing.Size(62, 22);
            this.label3.TabIndex  = 5;
            this.label3.Text      = "Weekday";
            //! this.label3.Text = "曜日";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label2
            //
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Location  = new System.Drawing.Point(166, 17);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(33, 22);
            this.label2.TabIndex  = 3;
            this.label2.Text      = "Day";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label1
            //
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Location  = new System.Drawing.Point(74, 17);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(53, 22);
            this.label1.TabIndex  = 1;
            this.label1.Text      = "Month";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // buttonUp
            //
            this.buttonUp.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonUp.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonUp.Location  = new System.Drawing.Point(427, 104);
            this.buttonUp.Name      = "buttonUp";
            this.buttonUp.Size      = new System.Drawing.Size(64, 26);
            this.buttonUp.TabIndex  = 13;
            //this.buttonUp.Text = "↑";
            this.buttonUp.Text   = "Up";
            this.buttonUp.Click += new System.EventHandler(this.buttonUp_Click);
            //
            // buttonDown
            //
            this.buttonDown.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonDown.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonDown.Location  = new System.Drawing.Point(427, 139);
            this.buttonDown.Name      = "buttonDown";
            this.buttonDown.Size      = new System.Drawing.Size(64, 26);
            this.buttonDown.TabIndex  = 14;
            //this.buttonDown.Text = "↓";
            this.buttonDown.Text   = "Down";
            this.buttonDown.Click += new System.EventHandler(this.buttonDown_Click);
            //
            // buttonRemove
            //
            this.buttonRemove.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonRemove.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonRemove.Location  = new System.Drawing.Point(427, 173);
            this.buttonRemove.Name      = "buttonRemove";
            this.buttonRemove.Size      = new System.Drawing.Size(64, 26);
            this.buttonRemove.TabIndex  = 15;
            this.buttonRemove.Text      = "Delete";
            //! this.buttonRemove.Text = "削除";
            this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click);
            //
            // buttonOk
            //
            this.buttonOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.buttonOk.FlatStyle    = System.Windows.Forms.FlatStyle.System;
            this.buttonOk.Location     = new System.Drawing.Point(427, 266);
            this.buttonOk.Name         = "buttonOk";
            this.buttonOk.Size         = new System.Drawing.Size(64, 26);
            this.buttonOk.TabIndex     = 16;
            this.buttonOk.Text         = "&OK";
            //
            // triggerList
            //
            this.triggerList.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.triggerList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
                this.columnHeader1,
                this.columnHeader2,
                this.columnHeader3,
                this.columnHeader4,
                this.columnHeader5,
                this.columnHeader6
            });
            this.triggerList.FullRowSelect = true;
            this.triggerList.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.triggerList.HideSelection = false;
            this.triggerList.Location      = new System.Drawing.Point(8, 104);
            this.triggerList.MultiSelect   = false;
            this.triggerList.Name          = "triggerList";
            this.triggerList.Scrollable    = false;
            this.triggerList.Size          = new System.Drawing.Size(403, 188);
            this.triggerList.TabIndex      = 12;
            this.triggerList.UseCompatibleStateImageBehavior = false;
            this.triggerList.View = System.Windows.Forms.View.Details;
            this.triggerList.SelectedIndexChanged += new System.EventHandler(this.onSelectionChanged);
            //
            // columnHeader1
            //
            this.columnHeader1.Text = "Month";
            //! this.columnHeader1.Text = "月";
            //
            // columnHeader2
            //
            this.columnHeader2.Text = "Date";
            //! this.columnHeader2.Text = "日";
            //
            // columnHeader3
            //
            this.columnHeader3.Text = "Day";
            //! this.columnHeader3.Text = "曜日";
            //
            // columnHeader4
            //
            this.columnHeader4.Text = "Hour";
            //! this.columnHeader4.Text = "時";
            //
            // columnHeader5
            //
            this.columnHeader5.Text = "Minute";
            //! this.columnHeader5.Text = "分";
            //
            // columnHeader6
            //
            this.columnHeader6.Text = "Action";
            //! this.columnHeader6.Text = "動作";
            //
            // StationAdvancedDialog
            //
            this.AcceptButton      = this.buttonOk;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(499, 304);
            this.Controls.Add(this.triggerList);
            this.Controls.Add(this.buttonOk);
            this.Controls.Add(this.buttonRemove);
            this.Controls.Add(this.buttonDown);
            this.Controls.Add(this.buttonUp);
            this.Controls.Add(this.groupBox1);
            this.MaximizeBox   = false;
            this.MinimizeBox   = false;
            this.MinimumSize   = new System.Drawing.Size(456, 338);
            this.Name          = "StationAdvancedDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text          = "Advanced departure time settings";
            //! this.Text = "発車時刻の詳細設定";
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Example #55
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.panel1            = new System.Windows.Forms.Panel();
     this.label2            = new System.Windows.Forms.Label();
     this.checkBox1         = new System.Windows.Forms.CheckBox();
     this.ColTypeCombo      = new System.Windows.Forms.ComboBox();
     this.label7            = new System.Windows.Forms.Label();
     this.groupBox2         = new System.Windows.Forms.GroupBox();
     this.rbDefaultMode     = new System.Windows.Forms.RadioButton();
     this.rbFixedMode       = new System.Windows.Forms.RadioButton();
     this.rbRelativeMode    = new System.Windows.Forms.RadioButton();
     this.udSpacing         = new System.Windows.Forms.NumericUpDown();
     this.comboBoxChartType = new System.Windows.Forms.ComboBox();
     this.label1            = new System.Windows.Forms.Label();
     this.label3            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.chartControl1     = new Syncfusion.Windows.Forms.Chart.ChartControl();
     this.panel1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.udSpacing)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Dock             = DockStyle.Right;
     this.panel1.AutoScroll       = true;
     this.panel1.AutoScrollMargin = new System.Drawing.Size(0, 20);
     this.panel1.BackColor        = System.Drawing.Color.WhiteSmoke;
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.ColTypeCombo);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.udSpacing);
     this.panel1.Controls.Add(this.comboBoxChartType);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Location = new System.Drawing.Point(700, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(260, 585);
     this.panel1.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label2.Location  = new System.Drawing.Point(36, 351);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(35, 25);
     this.label2.TabIndex  = 127;
     this.label2.Text      = "3D";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize  = true;
     this.checkBox1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.checkBox1.Location  = new System.Drawing.Point(40, 391);
     this.checkBox1.Name      = "checkBox1";
     this.checkBox1.Size      = new System.Drawing.Size(83, 24);
     this.checkBox1.TabIndex  = 15;
     this.checkBox1.Text      = "3D View";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // ColTypeCombo
     //
     this.ColTypeCombo.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ColTypeCombo.Enabled               = false;
     this.ColTypeCombo.FlatStyle             = System.Windows.Forms.FlatStyle.System;
     this.ColTypeCombo.Font                  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ColTypeCombo.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.ColTypeCombo.FormattingEnabled     = true;
     this.ColTypeCombo.Location              = new System.Drawing.Point(39, 469);
     this.ColTypeCombo.Name                  = "ColTypeCombo";
     this.ColTypeCombo.Size                  = new System.Drawing.Size(168, 28);
     this.ColTypeCombo.TabIndex              = 14;
     this.ColTypeCombo.SelectedIndexChanged += new System.EventHandler(this.ColTypeCombo_SelectedIndexChanged);
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(120)))));
     this.label7.Location  = new System.Drawing.Point(36, 439);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(96, 20);
     this.label7.TabIndex  = 12;
     this.label7.Text      = "Column Type";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rbDefaultMode);
     this.groupBox2.Controls.Add(this.rbFixedMode);
     this.groupBox2.Controls.Add(this.rbRelativeMode);
     this.groupBox2.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.ForeColor = System.Drawing.Color.Black;
     this.groupBox2.Location  = new System.Drawing.Point(40, 133);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(167, 128);
     this.groupBox2.TabIndex  = 11;
     this.groupBox2.TabStop   = false;
     //
     // rbDefaultMode
     //
     this.rbDefaultMode.Checked         = true;
     this.rbDefaultMode.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.rbDefaultMode.Font            = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rbDefaultMode.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.rbDefaultMode.Location        = new System.Drawing.Point(14, 12);
     this.rbDefaultMode.Name            = "rbDefaultMode";
     this.rbDefaultMode.Size            = new System.Drawing.Size(143, 35);
     this.rbDefaultMode.TabIndex        = 0;
     this.rbDefaultMode.TabStop         = true;
     this.rbDefaultMode.Text            = "Default";
     this.rbDefaultMode.CheckedChanged += new System.EventHandler(this.radioButtonWidthMode_CheckedChanged);
     //
     // rbFixedMode
     //
     this.rbFixedMode.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.rbFixedMode.Font            = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rbFixedMode.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.rbFixedMode.Location        = new System.Drawing.Point(14, 91);
     this.rbFixedMode.Name            = "rbFixedMode";
     this.rbFixedMode.Size            = new System.Drawing.Size(104, 30);
     this.rbFixedMode.TabIndex        = 1;
     this.rbFixedMode.Text            = "Fixed";
     this.rbFixedMode.CheckedChanged += new System.EventHandler(this.radioButtonWidthMode_CheckedChanged);
     //
     // rbRelativeMode
     //
     this.rbRelativeMode.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.rbRelativeMode.Font            = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rbRelativeMode.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.rbRelativeMode.Location        = new System.Drawing.Point(14, 53);
     this.rbRelativeMode.Name            = "rbRelativeMode";
     this.rbRelativeMode.Size            = new System.Drawing.Size(118, 32);
     this.rbRelativeMode.TabIndex        = 2;
     this.rbRelativeMode.Text            = "Relative";
     this.rbRelativeMode.CheckedChanged += new System.EventHandler(this.radioButtonWidthMode_CheckedChanged);
     //
     // udSpacing
     //
     this.udSpacing.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.udSpacing.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.udSpacing.Increment = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.udSpacing.Location      = new System.Drawing.Point(40, 309);
     this.udSpacing.Name          = "udSpacing";
     this.udSpacing.ReadOnly      = true;
     this.udSpacing.Size          = new System.Drawing.Size(167, 27);
     this.udSpacing.TabIndex      = 0;
     this.udSpacing.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // comboBoxChartType
     //
     this.comboBoxChartType.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxChartType.FlatStyle             = System.Windows.Forms.FlatStyle.System;
     this.comboBoxChartType.Font                  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxChartType.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.comboBoxChartType.Location              = new System.Drawing.Point(43, 62);
     this.comboBoxChartType.Name                  = "comboBoxChartType";
     this.comboBoxChartType.Size                  = new System.Drawing.Size(167, 28);
     this.comboBoxChartType.TabIndex              = 4;
     this.comboBoxChartType.SelectedIndexChanged += new System.EventHandler(this.comboBoxChartType_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label1.Location  = new System.Drawing.Point(39, 30);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(96, 26);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Chart Type";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label3.Location  = new System.Drawing.Point(39, 106);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(92, 20);
     this.label3.TabIndex  = 4;
     this.label3.Text      = "Width Mode";
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label5.Location  = new System.Drawing.Point(36, 276);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(62, 20);
     this.label5.TabIndex  = 6;
     this.label5.Text      = "Spacing";
     //
     // chartControl1
     //
     this.chartControl1.Dock                     = DockStyle.Fill;
     this.chartControl1.BackInterior             = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(193))))), System.Drawing.Color.White);
     this.chartControl1.ChartArea.BackInterior   = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.chartControl1.ChartArea.CursorLocation = new System.Drawing.Point(0, 0);
     this.chartControl1.ChartArea.CursorReDraw   = false;
     this.chartControl1.ChartAreaMargins         = new Syncfusion.Windows.Forms.Chart.ChartMargins(6, 6, 15, 6);
     this.chartControl1.ChartInterior            = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Horizontal, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.chartControl1.DataSourceName           = "";
     this.chartControl1.ElementsSpacing          = 0;
     this.chartControl1.Font                     = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chartControl1.IsWindowLess             = false;
     //
     //
     //
     this.chartControl1.Legend.BackInterior     = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.chartControl1.Legend.Border.ForeColor = System.Drawing.Color.Transparent;
     this.chartControl1.Legend.Location         = new System.Drawing.Point(606, 41);
     this.chartControl1.Localize = null;
     this.chartControl1.Location = new System.Drawing.Point(0, 0);
     this.chartControl1.Name     = "chartControl1";
     this.chartControl1.Palette  = Syncfusion.Windows.Forms.Chart.ChartColorPalette.Pastel;
     this.chartControl1.PrimaryXAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryXAxis.Margin   = true;
     this.chartControl1.PrimaryYAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryYAxis.Margin   = true;
     this.chartControl1.Size     = new System.Drawing.Size(700, 580);
     this.chartControl1.TabIndex = 5;
     this.chartControl1.Text     = "Essential Chart";
     //
     //
     //
     this.chartControl1.Title.Name = "Def_title";
     this.chartControl1.Title.Text = "Essential Chart";
     this.chartControl1.Titles.Add(this.chartControl1.Title);
     //
     // Form1
     //
     this.BackColor  = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(958, 584);
     this.Controls.Add(this.chartControl1);
     this.Controls.Add(this.panel1);
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(626, 428);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Column";
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.udSpacing)).EndInit();
     this.ResumeLayout(false);
 }
Example #56
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(dgMaterial));
     this.edtThickness       = new System.Windows.Forms.TextBox();
     this.edtBulkDensity     = new System.Windows.Forms.TextBox();
     this.edtStructureFactor = new System.Windows.Forms.TextBox();
     this.edtProsity         = new System.Windows.Forms.TextBox();
     this.edtFlowResistivity = new System.Windows.Forms.TextBox();
     this.edtPoissionsRatio  = new System.Windows.Forms.TextBox();
     this.edtYoungsModulus   = new System.Windows.Forms.TextBox();
     this.edtLossFactor      = new System.Windows.Forms.TextBox();
     this.edtShapeFactor     = new System.Windows.Forms.TextBox();
     this.edtDimensionFactor = new System.Windows.Forms.TextBox();
     this.edtTemperature     = new System.Windows.Forms.TextBox();
     this.rdoThickness       = new System.Windows.Forms.RadioButton();
     this.rdoBulkDensity     = new System.Windows.Forms.RadioButton();
     this.rdoFlowResistivity = new System.Windows.Forms.RadioButton();
     this.rdoStructureFactor = new System.Windows.Forms.RadioButton();
     this.rdoProsity         = new System.Windows.Forms.RadioButton();
     this.rdoShapefactor     = new System.Windows.Forms.RadioButton();
     this.rdoDimensionfactor = new System.Windows.Forms.RadioButton();
     this.rdoYoungsModulus   = new System.Windows.Forms.RadioButton();
     this.rdoPoissionsRatio  = new System.Windows.Forms.RadioButton();
     this.rdoLossFactor      = new System.Windows.Forms.RadioButton();
     this.rdoTemperature     = new System.Windows.Forms.RadioButton();
     this.btnOK   = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // edtThickness
     //
     this.edtThickness.Location = new System.Drawing.Point(144, 8);
     this.edtThickness.Name     = "edtThickness";
     this.edtThickness.Size     = new System.Drawing.Size(184, 21);
     this.edtThickness.TabIndex = 43;
     this.edtThickness.Text     = "";
     //
     // edtBulkDensity
     //
     this.edtBulkDensity.Location = new System.Drawing.Point(144, 36);
     this.edtBulkDensity.Name     = "edtBulkDensity";
     this.edtBulkDensity.Size     = new System.Drawing.Size(184, 21);
     this.edtBulkDensity.TabIndex = 44;
     this.edtBulkDensity.Text     = "";
     //
     // edtStructureFactor
     //
     this.edtStructureFactor.Location = new System.Drawing.Point(144, 92);
     this.edtStructureFactor.Name     = "edtStructureFactor";
     this.edtStructureFactor.Size     = new System.Drawing.Size(184, 21);
     this.edtStructureFactor.TabIndex = 34;
     this.edtStructureFactor.Text     = "";
     //
     // edtProsity
     //
     this.edtProsity.Location = new System.Drawing.Point(144, 120);
     this.edtProsity.Name     = "edtProsity";
     this.edtProsity.Size     = new System.Drawing.Size(184, 21);
     this.edtProsity.TabIndex = 33;
     this.edtProsity.Text     = "";
     //
     // edtFlowResistivity
     //
     this.edtFlowResistivity.Location = new System.Drawing.Point(144, 64);
     this.edtFlowResistivity.Name     = "edtFlowResistivity";
     this.edtFlowResistivity.Size     = new System.Drawing.Size(184, 21);
     this.edtFlowResistivity.TabIndex = 31;
     this.edtFlowResistivity.Text     = "";
     //
     // edtPoissionsRatio
     //
     this.edtPoissionsRatio.Location = new System.Drawing.Point(144, 232);
     this.edtPoissionsRatio.Name     = "edtPoissionsRatio";
     this.edtPoissionsRatio.Size     = new System.Drawing.Size(184, 21);
     this.edtPoissionsRatio.TabIndex = 37;
     this.edtPoissionsRatio.Text     = "";
     //
     // edtYoungsModulus
     //
     this.edtYoungsModulus.Location = new System.Drawing.Point(144, 204);
     this.edtYoungsModulus.Name     = "edtYoungsModulus";
     this.edtYoungsModulus.Size     = new System.Drawing.Size(184, 21);
     this.edtYoungsModulus.TabIndex = 36;
     this.edtYoungsModulus.Text     = "";
     //
     // edtLossFactor
     //
     this.edtLossFactor.Location = new System.Drawing.Point(144, 260);
     this.edtLossFactor.Name     = "edtLossFactor";
     this.edtLossFactor.Size     = new System.Drawing.Size(184, 21);
     this.edtLossFactor.TabIndex = 38;
     this.edtLossFactor.Text     = "";
     //
     // edtShapeFactor
     //
     this.edtShapeFactor.Location = new System.Drawing.Point(144, 148);
     this.edtShapeFactor.Name     = "edtShapeFactor";
     this.edtShapeFactor.Size     = new System.Drawing.Size(184, 21);
     this.edtShapeFactor.TabIndex = 46;
     this.edtShapeFactor.Text     = "";
     //
     // edtDimensionFactor
     //
     this.edtDimensionFactor.Location = new System.Drawing.Point(144, 176);
     this.edtDimensionFactor.Name     = "edtDimensionFactor";
     this.edtDimensionFactor.Size     = new System.Drawing.Size(184, 21);
     this.edtDimensionFactor.TabIndex = 48;
     this.edtDimensionFactor.Text     = "";
     //
     // edtTemperature
     //
     this.edtTemperature.Location = new System.Drawing.Point(144, 288);
     this.edtTemperature.Name     = "edtTemperature";
     this.edtTemperature.Size     = new System.Drawing.Size(184, 21);
     this.edtTemperature.TabIndex = 50;
     this.edtTemperature.Text     = "";
     //
     // rdoThickness
     //
     this.rdoThickness.Checked         = true;
     this.rdoThickness.Location        = new System.Drawing.Point(8, 8);
     this.rdoThickness.Name            = "rdoThickness";
     this.rdoThickness.TabIndex        = 51;
     this.rdoThickness.TabStop         = true;
     this.rdoThickness.Text            = "Thickness";
     this.rdoThickness.CheckedChanged += new System.EventHandler(this.rdoThickness_CheckedChanged);
     //
     // rdoBulkDensity
     //
     this.rdoBulkDensity.Location        = new System.Drawing.Point(8, 36);
     this.rdoBulkDensity.Name            = "rdoBulkDensity";
     this.rdoBulkDensity.TabIndex        = 52;
     this.rdoBulkDensity.Text            = "Bulk Density";
     this.rdoBulkDensity.CheckedChanged += new System.EventHandler(this.rdoBulkDensity_CheckedChanged);
     //
     // rdoFlowResistivity
     //
     this.rdoFlowResistivity.Location        = new System.Drawing.Point(8, 64);
     this.rdoFlowResistivity.Name            = "rdoFlowResistivity";
     this.rdoFlowResistivity.Size            = new System.Drawing.Size(120, 24);
     this.rdoFlowResistivity.TabIndex        = 53;
     this.rdoFlowResistivity.Text            = "Flow Resistivity";
     this.rdoFlowResistivity.CheckedChanged += new System.EventHandler(this.rdoFlowResistivity_CheckedChanged);
     //
     // rdoStructureFactor
     //
     this.rdoStructureFactor.Location        = new System.Drawing.Point(8, 92);
     this.rdoStructureFactor.Name            = "rdoStructureFactor";
     this.rdoStructureFactor.Size            = new System.Drawing.Size(128, 24);
     this.rdoStructureFactor.TabIndex        = 54;
     this.rdoStructureFactor.Text            = "Structure Factor";
     this.rdoStructureFactor.CheckedChanged += new System.EventHandler(this.rdoStructureFactor_CheckedChanged);
     //
     // rdoProsity
     //
     this.rdoProsity.Location        = new System.Drawing.Point(8, 120);
     this.rdoProsity.Name            = "rdoProsity";
     this.rdoProsity.TabIndex        = 55;
     this.rdoProsity.Text            = "Prosity";
     this.rdoProsity.CheckedChanged += new System.EventHandler(this.rdoProsity_CheckedChanged);
     //
     // rdoShapefactor
     //
     this.rdoShapefactor.Location        = new System.Drawing.Point(8, 148);
     this.rdoShapefactor.Name            = "rdoShapefactor";
     this.rdoShapefactor.TabIndex        = 56;
     this.rdoShapefactor.Text            = "Shape factor";
     this.rdoShapefactor.CheckedChanged += new System.EventHandler(this.rdoShapefactor_CheckedChanged);
     //
     // rdoDimensionfactor
     //
     this.rdoDimensionfactor.Location        = new System.Drawing.Point(8, 176);
     this.rdoDimensionfactor.Name            = "rdoDimensionfactor";
     this.rdoDimensionfactor.Size            = new System.Drawing.Size(128, 24);
     this.rdoDimensionfactor.TabIndex        = 57;
     this.rdoDimensionfactor.Text            = "Dimension factor";
     this.rdoDimensionfactor.CheckedChanged += new System.EventHandler(this.rdoDimensionfactor_CheckedChanged);
     //
     // rdoYoungsModulus
     //
     this.rdoYoungsModulus.Location        = new System.Drawing.Point(8, 204);
     this.rdoYoungsModulus.Name            = "rdoYoungsModulus";
     this.rdoYoungsModulus.Size            = new System.Drawing.Size(128, 24);
     this.rdoYoungsModulus.TabIndex        = 58;
     this.rdoYoungsModulus.Text            = "Young’s Modulus";
     this.rdoYoungsModulus.CheckedChanged += new System.EventHandler(this.rdoYoungsModulus_CheckedChanged);
     //
     // rdoPoissionsRatio
     //
     this.rdoPoissionsRatio.Location        = new System.Drawing.Point(8, 232);
     this.rdoPoissionsRatio.Name            = "rdoPoissionsRatio";
     this.rdoPoissionsRatio.Size            = new System.Drawing.Size(120, 24);
     this.rdoPoissionsRatio.TabIndex        = 59;
     this.rdoPoissionsRatio.Text            = "Poission’s Ratio";
     this.rdoPoissionsRatio.CheckedChanged += new System.EventHandler(this.rdoPoissionsRatio_CheckedChanged);
     //
     // rdoLossFactor
     //
     this.rdoLossFactor.Location        = new System.Drawing.Point(8, 260);
     this.rdoLossFactor.Name            = "rdoLossFactor";
     this.rdoLossFactor.TabIndex        = 60;
     this.rdoLossFactor.Text            = "Loss Factor";
     this.rdoLossFactor.CheckedChanged += new System.EventHandler(this.rdoLossFactor_CheckedChanged);
     //
     // rdoTemperature
     //
     this.rdoTemperature.Location        = new System.Drawing.Point(8, 288);
     this.rdoTemperature.Name            = "rdoTemperature";
     this.rdoTemperature.TabIndex        = 61;
     this.rdoTemperature.Text            = "Temperature";
     this.rdoTemperature.CheckedChanged += new System.EventHandler(this.rdoTemperature_CheckedChanged);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(256, 320);
     this.btnOK.Name     = "btnOK";
     this.btnOK.TabIndex = 62;
     this.btnOK.Text     = "OK";
     this.btnOK.Click   += new System.EventHandler(this.btnOK_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(8, 320);
     this.button1.Name     = "button1";
     this.button1.TabIndex = 64;
     this.button1.Text     = "BD Load";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // dgMaterial
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(336, 349);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.rdoTemperature);
     this.Controls.Add(this.rdoLossFactor);
     this.Controls.Add(this.rdoPoissionsRatio);
     this.Controls.Add(this.rdoYoungsModulus);
     this.Controls.Add(this.rdoDimensionfactor);
     this.Controls.Add(this.rdoShapefactor);
     this.Controls.Add(this.rdoProsity);
     this.Controls.Add(this.rdoStructureFactor);
     this.Controls.Add(this.rdoFlowResistivity);
     this.Controls.Add(this.rdoBulkDensity);
     this.Controls.Add(this.rdoThickness);
     this.Controls.Add(this.edtTemperature);
     this.Controls.Add(this.edtDimensionFactor);
     this.Controls.Add(this.edtShapeFactor);
     this.Controls.Add(this.edtThickness);
     this.Controls.Add(this.edtBulkDensity);
     this.Controls.Add(this.edtStructureFactor);
     this.Controls.Add(this.edtProsity);
     this.Controls.Add(this.edtFlowResistivity);
     this.Controls.Add(this.edtPoissionsRatio);
     this.Controls.Add(this.edtYoungsModulus);
     this.Controls.Add(this.edtLossFactor);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "dgMaterial";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Marerial Load";
     this.Load           += new System.EventHandler(this.dgMaterial_Load);
     this.ResumeLayout(false);
 }
Example #57
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOk                = new WiB.Pinkie.Controls.ButtonXP();
     this.btn_Exit             = new WiB.Pinkie.Controls.ButtonXP();
     this.groupBox4            = new System.Windows.Forms.GroupBox();
     this.radbtn_dbtype_Oracle = new System.Windows.Forms.RadioButton();
     this.radbtn_dbtype_SQL    = new System.Windows.Forms.RadioButton();
     this.radbtn_dbtype_Access = new System.Windows.Forms.RadioButton();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOk
     //
     this.btnOk._Image        = null;
     this.btnOk.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(236)), ((System.Byte)(233)), ((System.Byte)(216)));
     this.btnOk.DefaultScheme = false;
     this.btnOk.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.btnOk.Image         = null;
     this.btnOk.Location      = new System.Drawing.Point(112, 176);
     this.btnOk.Name          = "btnOk";
     this.btnOk.Scheme        = WiB.Pinkie.Controls.ButtonXP.Schemes.Blue;
     this.btnOk.Size          = new System.Drawing.Size(75, 26);
     this.btnOk.TabIndex      = 44;
     this.btnOk.Text          = "确  定";
     this.btnOk.Click        += new System.EventHandler(this.btnOk_Click);
     //
     // btn_Exit
     //
     this.btn_Exit._Image        = null;
     this.btn_Exit.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(236)), ((System.Byte)(233)), ((System.Byte)(216)));
     this.btn_Exit.DefaultScheme = false;
     this.btn_Exit.DialogResult  = System.Windows.Forms.DialogResult.None;
     this.btn_Exit.Image         = null;
     this.btn_Exit.Location      = new System.Drawing.Point(200, 176);
     this.btn_Exit.Name          = "btn_Exit";
     this.btn_Exit.Scheme        = WiB.Pinkie.Controls.ButtonXP.Schemes.Blue;
     this.btn_Exit.Size          = new System.Drawing.Size(75, 26);
     this.btn_Exit.TabIndex      = 43;
     this.btn_Exit.Text          = "取  消";
     this.btn_Exit.Click        += new System.EventHandler(this.btn_Exit_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.radbtn_dbtype_Oracle);
     this.groupBox4.Controls.Add(this.radbtn_dbtype_SQL);
     this.groupBox4.Controls.Add(this.radbtn_dbtype_Access);
     this.groupBox4.Location = new System.Drawing.Point(8, 8);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(280, 144);
     this.groupBox4.TabIndex = 47;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "选择数据源类型";
     //
     // radbtn_dbtype_Oracle
     //
     this.radbtn_dbtype_Oracle.Location = new System.Drawing.Point(24, 64);
     this.radbtn_dbtype_Oracle.Name     = "radbtn_dbtype_Oracle";
     this.radbtn_dbtype_Oracle.TabIndex = 1;
     this.radbtn_dbtype_Oracle.Text     = " Oracle";
     //
     // radbtn_dbtype_SQL
     //
     this.radbtn_dbtype_SQL.Checked  = true;
     this.radbtn_dbtype_SQL.Location = new System.Drawing.Point(24, 32);
     this.radbtn_dbtype_SQL.Name     = "radbtn_dbtype_SQL";
     this.radbtn_dbtype_SQL.Size     = new System.Drawing.Size(160, 24);
     this.radbtn_dbtype_SQL.TabIndex = 0;
     this.radbtn_dbtype_SQL.TabStop  = true;
     this.radbtn_dbtype_SQL.Text     = " SQL Server ";
     //
     // radbtn_dbtype_Access
     //
     this.radbtn_dbtype_Access.Location = new System.Drawing.Point(24, 96);
     this.radbtn_dbtype_Access.Name     = "radbtn_dbtype_Access";
     this.radbtn_dbtype_Access.TabIndex = 1;
     this.radbtn_dbtype_Access.Text     = " OleDb";
     //
     // DbOption
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(292, 215);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.btn_Exit);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "DbOption";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "数据源设置";
     this.Load           += new System.EventHandler(this.DbOption_Load);
     this.groupBox4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.factorButton = new System.Windows.Forms.RadioButton();
     this.factorBox    = new System.Windows.Forms.TextBox();
     this.pictureBox1  = new System.Windows.Forms.PictureBox();
     this.sizeButton   = new System.Windows.Forms.RadioButton();
     this.label1       = new System.Windows.Forms.Label();
     this.widthBox     = new System.Windows.Forms.TextBox();
     this.label2       = new System.Windows.Forms.Label();
     this.heightBox    = new System.Windows.Forms.TextBox();
     this.ratioCheck   = new System.Windows.Forms.CheckBox();
     this.pictureBox2  = new System.Windows.Forms.PictureBox();
     this.label3       = new System.Windows.Forms.Label();
     this.methodCombo  = new System.Windows.Forms.ComboBox();
     this.okButton     = new System.Windows.Forms.Button();
     this.cancelButton = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.SuspendLayout();
     //
     // factorButton
     //
     this.factorButton.Checked         = true;
     this.factorButton.Location        = new System.Drawing.Point(10, 10);
     this.factorButton.Name            = "factorButton";
     this.factorButton.Size            = new System.Drawing.Size(100, 20);
     this.factorButton.TabIndex        = 0;
     this.factorButton.TabStop         = true;
     this.factorButton.Text            = "Resize &factor:";
     this.factorButton.CheckedChanged += new System.EventHandler(this.factorButton_CheckedChanged);
     //
     // factorBox
     //
     this.factorBox.Location     = new System.Drawing.Point(100, 10);
     this.factorBox.Name         = "factorBox";
     this.factorBox.Size         = new System.Drawing.Size(100, 20);
     this.factorBox.TabIndex     = 1;
     this.factorBox.TextChanged += new System.EventHandler(this.factorBox_TextChanged);
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Location    = new System.Drawing.Point(10, 40);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(190, 2);
     this.pictureBox1.TabIndex    = 2;
     this.pictureBox1.TabStop     = false;
     //
     // sizeButton
     //
     this.sizeButton.Location        = new System.Drawing.Point(10, 50);
     this.sizeButton.Name            = "sizeButton";
     this.sizeButton.Size            = new System.Drawing.Size(100, 20);
     this.sizeButton.TabIndex        = 2;
     this.sizeButton.Text            = "Resize to &size";
     this.sizeButton.CheckedChanged += new System.EventHandler(this.sizeButton_CheckedChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(30, 78);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(44, 14);
     this.label1.TabIndex = 3;
     this.label1.Text     = "&Width:";
     //
     // widthBox
     //
     this.widthBox.Enabled      = false;
     this.widthBox.Location     = new System.Drawing.Point(100, 75);
     this.widthBox.Name         = "widthBox";
     this.widthBox.Size         = new System.Drawing.Size(100, 20);
     this.widthBox.TabIndex     = 4;
     this.widthBox.TextChanged += new System.EventHandler(this.widthBox_TextChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(30, 103);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(60, 14);
     this.label2.TabIndex = 5;
     this.label2.Text     = "&Height:";
     //
     // heightBox
     //
     this.heightBox.Enabled      = false;
     this.heightBox.Location     = new System.Drawing.Point(100, 100);
     this.heightBox.Name         = "heightBox";
     this.heightBox.Size         = new System.Drawing.Size(100, 20);
     this.heightBox.TabIndex     = 6;
     this.heightBox.TextChanged += new System.EventHandler(this.heightBox_TextChanged);
     //
     // ratioCheck
     //
     this.ratioCheck.Checked    = true;
     this.ratioCheck.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ratioCheck.Enabled    = false;
     this.ratioCheck.Location   = new System.Drawing.Point(30, 130);
     this.ratioCheck.Name       = "ratioCheck";
     this.ratioCheck.Size       = new System.Drawing.Size(150, 20);
     this.ratioCheck.TabIndex   = 7;
     this.ratioCheck.Text       = "&Keep aspect ratio";
     //
     // pictureBox2
     //
     this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox2.Location    = new System.Drawing.Point(10, 155);
     this.pictureBox2.Name        = "pictureBox2";
     this.pictureBox2.Size        = new System.Drawing.Size(190, 2);
     this.pictureBox2.TabIndex    = 9;
     this.pictureBox2.TabStop     = false;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 168);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(85, 14);
     this.label3.TabIndex = 8;
     this.label3.Text     = "&Interpolation:";
     //
     // methodCombo
     //
     this.methodCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.methodCombo.Items.AddRange(new object[] {
         "Nearest neighbour",
         "Bilinear",
         "Bicubic"
     });
     this.methodCombo.Location = new System.Drawing.Point(100, 165);
     this.methodCombo.Name     = "methodCombo";
     this.methodCombo.Size     = new System.Drawing.Size(100, 21);
     this.methodCombo.TabIndex = 9;
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(25, 205);
     this.okButton.Name     = "okButton";
     this.okButton.Size     = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 10;
     this.okButton.Text     = "Ok";
     this.okButton.Click   += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location     = new System.Drawing.Point(115, 205);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex     = 11;
     this.cancelButton.Text         = "Cancel";
     //
     // ResizeForm
     //
     this.AcceptButton      = this.okButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.cancelButton;
     this.ClientSize        = new System.Drawing.Size(214, 238);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.methodCombo);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.ratioCheck);
     this.Controls.Add(this.heightBox);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.widthBox);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.sizeButton);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.factorBox);
     this.Controls.Add(this.factorButton);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ResizeForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Resize image";
     this.Load           += new System.EventHandler(this.ResizeForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #59
0
 private void InitializeComponent()
 {
     this.butCancel            = new OpenDental.UI.Button();
     this.butOK                = new OpenDental.UI.Button();
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.radio30              = new System.Windows.Forms.RadioButton();
     this.radio90              = new System.Windows.Forms.RadioButton();
     this.radio60              = new System.Windows.Forms.RadioButton();
     this.radioAny             = new System.Windows.Forms.RadioButton();
     this.label1               = new System.Windows.Forms.Label();
     this.textDate             = new OpenDental.ValidDate();
     this.listBillType         = new System.Windows.Forms.ListBox();
     this.label2               = new System.Windows.Forms.Label();
     this.butAll               = new OpenDental.UI.Button();
     this.checkIncludeNeg      = new System.Windows.Forms.CheckBox();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.checkOnlyNeg         = new System.Windows.Forms.CheckBox();
     this.checkExcludeInactive = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // butCancel
     //
     this.butCancel.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butCancel.Autosize            = true;
     this.butCancel.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butCancel.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butCancel.DialogResult        = System.Windows.Forms.DialogResult.Cancel;
     this.butCancel.Location            = new System.Drawing.Point(466, 375);
     this.butCancel.Name     = "butCancel";
     this.butCancel.Size     = new System.Drawing.Size(75, 26);
     this.butCancel.TabIndex = 4;
     this.butCancel.Text     = "&Cancel";
     this.butCancel.Click   += new System.EventHandler(this.butCancel_Click);
     //
     // butOK
     //
     this.butOK.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butOK.Autosize            = true;
     this.butOK.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butOK.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butOK.Location            = new System.Drawing.Point(466, 341);
     this.butOK.Name     = "butOK";
     this.butOK.Size     = new System.Drawing.Size(75, 26);
     this.butOK.TabIndex = 3;
     this.butOK.Text     = "&OK";
     this.butOK.Click   += new System.EventHandler(this.butOK_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radio30);
     this.groupBox1.Controls.Add(this.radio90);
     this.groupBox1.Controls.Add(this.radio60);
     this.groupBox1.Controls.Add(this.radioAny);
     this.groupBox1.Location = new System.Drawing.Point(57, 109);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(175, 120);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Age of Account";
     //
     // radio30
     //
     this.radio30.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radio30.Location  = new System.Drawing.Point(12, 44);
     this.radio30.Name      = "radio30";
     this.radio30.Size      = new System.Drawing.Size(152, 16);
     this.radio30.TabIndex  = 1;
     this.radio30.Text      = "Over 30 Days";
     //
     // radio90
     //
     this.radio90.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radio90.Location  = new System.Drawing.Point(12, 90);
     this.radio90.Name      = "radio90";
     this.radio90.Size      = new System.Drawing.Size(152, 18);
     this.radio90.TabIndex  = 3;
     this.radio90.Text      = "Over 90 Days";
     //
     // radio60
     //
     this.radio60.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radio60.Location  = new System.Drawing.Point(12, 66);
     this.radio60.Name      = "radio60";
     this.radio60.Size      = new System.Drawing.Size(152, 18);
     this.radio60.TabIndex  = 2;
     this.radio60.Text      = "Over 60 Days";
     //
     // radioAny
     //
     this.radioAny.Checked   = true;
     this.radioAny.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.radioAny.Location  = new System.Drawing.Point(12, 20);
     this.radioAny.Name      = "radioAny";
     this.radioAny.Size      = new System.Drawing.Size(152, 18);
     this.radioAny.TabIndex  = 0;
     this.radioAny.TabStop   = true;
     this.radioAny.Text      = "Any Balance";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 50);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(114, 14);
     this.label1.TabIndex  = 11;
     this.label1.Text      = "Last Updated";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // textDate
     //
     this.textDate.Location = new System.Drawing.Point(126, 48);
     this.textDate.Name     = "textDate";
     this.textDate.ReadOnly = true;
     this.textDate.Size     = new System.Drawing.Size(78, 20);
     this.textDate.TabIndex = 0;
     this.textDate.Text     = "";
     //
     // listBillType
     //
     this.listBillType.Location      = new System.Drawing.Point(380, 45);
     this.listBillType.Name          = "listBillType";
     this.listBillType.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.listBillType.Size          = new System.Drawing.Size(158, 186);
     this.listBillType.TabIndex      = 2;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(378, 25);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(176, 16);
     this.label2.TabIndex  = 14;
     this.label2.Text      = "Billing Types:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // butAll
     //
     this.butAll.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.butAll.Autosize            = true;
     this.butAll.BtnShape            = OpenDental.UI.enumType.BtnShape.Rectangle;
     this.butAll.BtnStyle            = OpenDental.UI.enumType.XPStyle.Silver;
     this.butAll.Location            = new System.Drawing.Point(380, 237);
     this.butAll.Name     = "butAll";
     this.butAll.Size     = new System.Drawing.Size(75, 26);
     this.butAll.TabIndex = 16;
     this.butAll.Text     = "&All";
     this.butAll.Click   += new System.EventHandler(this.butAll_Click);
     //
     // checkIncludeNeg
     //
     this.checkIncludeNeg.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkIncludeNeg.Location  = new System.Drawing.Point(9, 28);
     this.checkIncludeNeg.Name      = "checkIncludeNeg";
     this.checkIncludeNeg.Size      = new System.Drawing.Size(194, 20);
     this.checkIncludeNeg.TabIndex  = 17;
     this.checkIncludeNeg.Text      = "Include negative balances";
     this.checkIncludeNeg.Click    += new System.EventHandler(this.checkIncludeNeg_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.checkOnlyNeg);
     this.groupBox2.Controls.Add(this.checkIncludeNeg);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location  = new System.Drawing.Point(57, 256);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(225, 84);
     this.groupBox2.TabIndex  = 18;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Negative Balances";
     //
     // checkOnlyNeg
     //
     this.checkOnlyNeg.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkOnlyNeg.Location  = new System.Drawing.Point(9, 55);
     this.checkOnlyNeg.Name      = "checkOnlyNeg";
     this.checkOnlyNeg.Size      = new System.Drawing.Size(210, 19);
     this.checkOnlyNeg.TabIndex  = 18;
     this.checkOnlyNeg.Text      = "Only show negative balances";
     this.checkOnlyNeg.Click    += new System.EventHandler(this.checkOnlyNeg_Click);
     //
     // checkExcludeInactive
     //
     this.checkExcludeInactive.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.checkExcludeInactive.Location  = new System.Drawing.Point(66, 363);
     this.checkExcludeInactive.Name      = "checkExcludeInactive";
     this.checkExcludeInactive.Size      = new System.Drawing.Size(248, 18);
     this.checkExcludeInactive.TabIndex  = 19;
     this.checkExcludeInactive.Text      = "Exclude inactive patients";
     //
     // FormRpAging
     //
     this.AcceptButton      = this.butOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.butCancel;
     this.ClientSize        = new System.Drawing.Size(573, 421);
     this.Controls.Add(this.checkExcludeInactive);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.butAll);
     this.Controls.Add(this.textDate);
     this.Controls.Add(this.butCancel);
     this.Controls.Add(this.butOK);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.listBillType);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormRpAging";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Aging Report";
     this.Load         += new System.EventHandler(this.FormAging_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #60
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.cmbck                  = new System.Windows.Forms.ComboBox();
     this.lblck                  = new System.Windows.Forms.Label();
     this.checkBox1              = new System.Windows.Forms.CheckBox();
     this.cmbyjks                = new System.Windows.Forms.ComboBox();
     this.label6                 = new System.Windows.Forms.Label();
     this.cmbyplx                = new System.Windows.Forms.ComboBox();
     this.label2                 = new System.Windows.Forms.Label();
     this.cmbmonth               = new System.Windows.Forms.ComboBox();
     this.label1                 = new System.Windows.Forms.Label();
     this.cmbyear                = new System.Windows.Forms.ComboBox();
     this.rdomonth               = new System.Windows.Forms.RadioButton();
     this.butquit                = new System.Windows.Forms.Button();
     this.butprint               = new System.Windows.Forms.Button();
     this.buttj                  = new System.Windows.Forms.Button();
     this.statusBar1             = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1        = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2        = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel3        = new System.Windows.Forms.StatusBarPanel();
     this.myDataGrid1            = new myDataGrid.myDataGrid();
     this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
     this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn5 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn6 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn7 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.dataGridTextBoxColumn8 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.panel1                 = new System.Windows.Forms.Panel();
     this.checkBox2              = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkBox2);
     this.groupBox1.Controls.Add(this.cmbck);
     this.groupBox1.Controls.Add(this.lblck);
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.cmbyjks);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.cmbyplx);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.cmbmonth);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.cmbyear);
     this.groupBox1.Controls.Add(this.rdomonth);
     this.groupBox1.Controls.Add(this.butquit);
     this.groupBox1.Controls.Add(this.butprint);
     this.groupBox1.Controls.Add(this.buttj);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(944, 90);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "查询";
     //
     // cmbck
     //
     this.cmbck.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbck.Location              = new System.Drawing.Point(338, 19);
     this.cmbck.Name                  = "cmbck";
     this.cmbck.Size                  = new System.Drawing.Size(141, 20);
     this.cmbck.TabIndex              = 36;
     this.cmbck.SelectedIndexChanged += new System.EventHandler(this.cmbck_SelectedIndexChanged);
     //
     // lblck
     //
     this.lblck.Location = new System.Drawing.Point(282, 23);
     this.lblck.Name     = "lblck";
     this.lblck.Size     = new System.Drawing.Size(67, 16);
     this.lblck.TabIndex = 35;
     this.lblck.Text     = "仓库名称";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize   = true;
     this.checkBox1.Checked    = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location   = new System.Drawing.Point(201, 58);
     this.checkBox1.Name       = "checkBox1";
     this.checkBox1.Size       = new System.Drawing.Size(15, 14);
     this.checkBox1.TabIndex   = 31;
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // cmbyjks
     //
     this.cmbyjks.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbyjks.Location              = new System.Drawing.Point(98, 19);
     this.cmbyjks.Name                  = "cmbyjks";
     this.cmbyjks.Size                  = new System.Drawing.Size(177, 20);
     this.cmbyjks.TabIndex              = 30;
     this.cmbyjks.SelectedIndexChanged += new System.EventHandler(this.cmbyjks_SelectionChangeCommitted);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(35, 24);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(67, 16);
     this.label6.TabIndex = 29;
     this.label6.Text     = "药剂科室";
     //
     // cmbyplx
     //
     this.cmbyplx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbyplx.Location      = new System.Drawing.Point(386, 54);
     this.cmbyplx.Name          = "cmbyplx";
     this.cmbyplx.Size          = new System.Drawing.Size(82, 20);
     this.cmbyplx.TabIndex      = 17;
     //
     // label2
     //
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(288, 58);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(137, 16);
     this.label2.TabIndex  = 16;
     this.label2.Text      = "月     药品类型";
     //
     // cmbmonth
     //
     this.cmbmonth.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbmonth.Location              = new System.Drawing.Point(216, 55);
     this.cmbmonth.Name                  = "cmbmonth";
     this.cmbmonth.Size                  = new System.Drawing.Size(65, 20);
     this.cmbmonth.TabIndex              = 15;
     this.cmbmonth.SelectedIndexChanged += new System.EventHandler(this.cmbmonth_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(180, 60);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(32, 16);
     this.label1.TabIndex  = 14;
     this.label1.Text      = "年";
     //
     // cmbyear
     //
     this.cmbyear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbyear.Items.AddRange(new object[] {
         "2005",
         "2006",
         "2007",
         "2008",
         "2009",
         "2010"
     });
     this.cmbyear.Location              = new System.Drawing.Point(115, 55);
     this.cmbyear.Name                  = "cmbyear";
     this.cmbyear.Size                  = new System.Drawing.Size(65, 20);
     this.cmbyear.TabIndex              = 13;
     this.cmbyear.SelectedIndexChanged += new System.EventHandler(this.cmbyear_SelectedIndexChanged);
     //
     // rdomonth
     //
     this.rdomonth.Checked   = true;
     this.rdomonth.ForeColor = System.Drawing.Color.Black;
     this.rdomonth.Location  = new System.Drawing.Point(35, 54);
     this.rdomonth.Name      = "rdomonth";
     this.rdomonth.Size      = new System.Drawing.Size(96, 25);
     this.rdomonth.TabIndex  = 12;
     this.rdomonth.TabStop   = true;
     this.rdomonth.Text      = "按月份查看";
     //
     // butquit
     //
     this.butquit.Location = new System.Drawing.Point(632, 46);
     this.butquit.Name     = "butquit";
     this.butquit.Size     = new System.Drawing.Size(72, 33);
     this.butquit.TabIndex = 11;
     this.butquit.Text     = "退出(&Q)";
     this.butquit.Click   += new System.EventHandler(this.butquit_Click);
     //
     // butprint
     //
     this.butprint.Location = new System.Drawing.Point(560, 46);
     this.butprint.Name     = "butprint";
     this.butprint.Size     = new System.Drawing.Size(72, 33);
     this.butprint.TabIndex = 10;
     this.butprint.Text     = "打印(&P)";
     this.butprint.Click   += new System.EventHandler(this.butprint_Click);
     //
     // buttj
     //
     this.buttj.Location = new System.Drawing.Point(480, 46);
     this.buttj.Name     = "buttj";
     this.buttj.Size     = new System.Drawing.Size(78, 33);
     this.buttj.TabIndex = 9;
     this.buttj.Text     = "统计(&T)";
     this.buttj.Click   += new System.EventHandler(this.buttj_Click);
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 502);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel1,
         this.statusBarPanel2,
         this.statusBarPanel3
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(944, 23);
     this.statusBar1.TabIndex   = 1;
     this.statusBar1.Text       = "statusBar1";
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.Name  = "statusBarPanel1";
     this.statusBarPanel1.Width = 150;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.Name  = "statusBarPanel2";
     this.statusBarPanel2.Width = 150;
     //
     // statusBarPanel3
     //
     this.statusBarPanel3.Name  = "statusBarPanel3";
     this.statusBarPanel3.Width = 1000;
     //
     // myDataGrid1
     //
     this.myDataGrid1.BackgroundColor      = System.Drawing.Color.White;
     this.myDataGrid1.CaptionBackColor     = System.Drawing.Color.Silver;
     this.myDataGrid1.CaptionFont          = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.myDataGrid1.ColumnHeadersVisible = false;
     this.myDataGrid1.DataMember           = "";
     this.myDataGrid1.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.myDataGrid1.Font               = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.myDataGrid1.GridLineColor      = System.Drawing.Color.Blue;
     this.myDataGrid1.HeaderForeColor    = System.Drawing.SystemColors.ControlText;
     this.myDataGrid1.Location           = new System.Drawing.Point(0, 0);
     this.myDataGrid1.Name               = "myDataGrid1";
     this.myDataGrid1.PreferredRowHeight = 25;
     this.myDataGrid1.Size               = new System.Drawing.Size(944, 412);
     this.myDataGrid1.TabIndex           = 0;
     this.myDataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dataGridTableStyle1
     });
     this.myDataGrid1.Paint += new System.Windows.Forms.PaintEventHandler(this.myDataGrid1_Paint);
     //
     // dataGridTableStyle1
     //
     this.dataGridTableStyle1.AllowSorting         = false;
     this.dataGridTableStyle1.ColumnHeadersVisible = false;
     this.dataGridTableStyle1.DataGrid             = this.myDataGrid1;
     this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
         this.dataGridTextBoxColumn1,
         this.dataGridTextBoxColumn2,
         this.dataGridTextBoxColumn3,
         this.dataGridTextBoxColumn4,
         this.dataGridTextBoxColumn5,
         this.dataGridTextBoxColumn6,
         this.dataGridTextBoxColumn7,
         this.dataGridTextBoxColumn8
     });
     this.dataGridTableStyle1.HeaderForeColor   = System.Drawing.SystemColors.ControlText;
     this.dataGridTableStyle1.MappingName       = "Tb";
     this.dataGridTableStyle1.ReadOnly          = true;
     this.dataGridTableStyle1.RowHeadersVisible = false;
     //
     // dataGridTextBoxColumn1
     //
     this.dataGridTextBoxColumn1.Format     = "";
     this.dataGridTextBoxColumn1.FormatInfo = null;
     this.dataGridTextBoxColumn1.HeaderText = "项目1";
     this.dataGridTextBoxColumn1.Width      = 170;
     //
     // dataGridTextBoxColumn2
     //
     this.dataGridTextBoxColumn2.Format     = "";
     this.dataGridTextBoxColumn2.FormatInfo = null;
     this.dataGridTextBoxColumn2.HeaderText = "进货金额1";
     this.dataGridTextBoxColumn2.Width      = 85;
     //
     // dataGridTextBoxColumn3
     //
     this.dataGridTextBoxColumn3.Format     = "";
     this.dataGridTextBoxColumn3.FormatInfo = null;
     this.dataGridTextBoxColumn3.HeaderText = "零售金额1";
     this.dataGridTextBoxColumn3.Width      = 85;
     //
     // dataGridTextBoxColumn4
     //
     this.dataGridTextBoxColumn4.Format     = "";
     this.dataGridTextBoxColumn4.FormatInfo = null;
     this.dataGridTextBoxColumn4.HeaderText = "进零差额1";
     this.dataGridTextBoxColumn4.Width      = 85;
     //
     // dataGridTextBoxColumn5
     //
     this.dataGridTextBoxColumn5.Format     = "";
     this.dataGridTextBoxColumn5.FormatInfo = null;
     this.dataGridTextBoxColumn5.HeaderText = "项目2";
     this.dataGridTextBoxColumn5.Width      = 170;
     //
     // dataGridTextBoxColumn6
     //
     this.dataGridTextBoxColumn6.Format     = "";
     this.dataGridTextBoxColumn6.FormatInfo = null;
     this.dataGridTextBoxColumn6.HeaderText = "进货金额2";
     this.dataGridTextBoxColumn6.Width      = 85;
     //
     // dataGridTextBoxColumn7
     //
     this.dataGridTextBoxColumn7.Format     = "";
     this.dataGridTextBoxColumn7.FormatInfo = null;
     this.dataGridTextBoxColumn7.HeaderText = "零售金额2";
     this.dataGridTextBoxColumn7.Width      = 85;
     //
     // dataGridTextBoxColumn8
     //
     this.dataGridTextBoxColumn8.Format     = "";
     this.dataGridTextBoxColumn8.FormatInfo = null;
     this.dataGridTextBoxColumn8.HeaderText = "进零差额2";
     this.dataGridTextBoxColumn8.Width      = 85;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.myDataGrid1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 90);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(944, 412);
     this.panel1.TabIndex = 2;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(494, 22);
     this.checkBox2.Name     = "checkBox2";
     this.checkBox2.Size     = new System.Drawing.Size(96, 16);
     this.checkBox2.TabIndex = 37;
     this.checkBox2.Text     = "显示进货金额";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // Frmjxcqkb
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(944, 525);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.statusBar1);
     this.Controls.Add(this.groupBox1);
     this.Name        = "Frmjxcqkb";
     this.Text        = "进销存情况表";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.Frmxspm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.myDataGrid1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }