Example #1
0
 public void TSSetLinks(SCLink[] aLinks)
 {
     if (pnlLinks.InvokeRequired) pnlLinks.Invoke(new Action<SCLink[]>(TSSetLinks), new Object[] { aLinks });
     else
     {
         List<LinkLabel> removeList = new List<LinkLabel>();
         foreach (Control c in pnlLinks.Controls)
         {
             if (c.GetType().ToString().Equals("System.Windows.Forms.LinkLabel")) removeList.Add((LinkLabel)c);
         }
         foreach (Control c in removeList)
         {
             pnlLinks.Controls.Remove(c);
         }
         // loop through each link
         int i = 0;
         foreach (SCLink item in aLinks)
         {
             //create a new label for the link
             LinkLabel ll = new LinkLabel();
             // text is the name or message that will be displayed
             ll.Text = item.Text;
             // this adds the url data to the message that will open the browser page when clicked
             ll.Links.Add(new LinkLabel.Link(0, ll.Text.Length, item.Link));
             // this adds a handler to the LinkLabel to run the URL just like opening something thru explorer
             ll.LinkClicked += new LinkLabelLinkClickedEventHandler(eventHandlerLinkLabelClicked);
             // each label needs a unique name
             ll.Name = "llbl" + i++;
             // sets the width to the max length, otherwise the label will be locked at the short default width
             ll.Width = 300;
             // add the new link label to the appropriate FlowLayoutPanel
             pnlLinks.Controls.Add(ll);
         }
     }
 }
 protected override Control GetTextControlToAdd(int xPos, int yPos, int iconWidth, int iconPadding)
 {
     if (this._linkLabel == null)
       {
     this._linkLabel = new LinkLabel();
     this._linkLabel.Location = new Point(xPos + iconWidth + iconPadding, yPos);
     this._linkLabel.AutoSize = true;
     this._linkLabel.Font = this.Font;
     this._linkLabel.TabStop = true;
     this._linkLabel.TabIndex = 0;
     this._linkLabel.Text = this.InsertNewLines(this._parentDialog.Message, ((ClickableCustomMessageBox) this._parentDialog).FirstLinkText, ((ClickableCustomMessageBox) this._parentDialog).SecondLinkText);
     this._linkLabel.AutoSize = false;
     this._linkLabel.Size = SizeHelper.GetRequiredSizeForText((Control) this._linkLabel);
     this._linkLabel.LinkClicked -= ((ClickableCustomMessageBox) this._parentDialog).LinkHandler;
     this._linkLabel.LinkClicked += ((ClickableCustomMessageBox) this._parentDialog).LinkHandler;
     if (this._linkLabel.Links.Count > 0)
       this._linkLabel.Links.Clear();
     if (!string.IsNullOrEmpty(((ClickableCustomMessageBox) this._parentDialog).FirstLinkText))
     {
       string firstLinkText = ((ClickableCustomMessageBox) this._parentDialog).FirstLinkText;
       if (this._linkLabel.Text.IndexOf(firstLinkText) >= 0)
     this._linkLabel.Links.Add(this._linkLabel.Text.IndexOf(firstLinkText), firstLinkText.Length, (object) WhichLinkClicked.FirstLink);
     }
     if (!string.IsNullOrEmpty(((ClickableCustomMessageBox) this._parentDialog).SecondLinkText))
     {
       string firstLinkText = ((ClickableCustomMessageBox) this._parentDialog).FirstLinkText;
       string secondLinkText = ((ClickableCustomMessageBox) this._parentDialog).SecondLinkText;
       if (this._linkLabel.Text.IndexOf(secondLinkText, this._linkLabel.Text.IndexOf(firstLinkText) + firstLinkText.Length) >= 0)
     this._linkLabel.Links.Add(this._linkLabel.Text.IndexOf(secondLinkText, this._linkLabel.Text.IndexOf(firstLinkText) + firstLinkText.Length), secondLinkText.Length, (object) WhichLinkClicked.SecondLink);
     }
       }
       return (Control) this._linkLabel;
 }
Example #3
0
        public UnavaMgr(Postava pos, Label muL, NumericUpDown unN, FlowLayoutPanel bars, Panel labels, LinkLabel postihULink, Label postihUL)
        {
            postava = pos;
            unavaPanel = bars;
            mezUnavyL = muL;
            unavaLabels = labels;
            unavaN = unN;
            postihLink = postihULink;
            postihL = postihUL;

            int mez = postava.getVlastnostO("Mez únavy");
            boxes = new List<CheckBox>();
            for (int i = 0; i < mez * 3; i++)
            {
                CheckBox box = new CheckBox();
                //box.ThreeState = true;
                box.Checked = false;
                box.Margin = new Padding(0);
                box.Parent = unavaPanel;
                box.Width = box.Height = 15;
                box.Click += new EventHandler(changeCheck);
                box.Tag = i+1;
                boxes.Add(box);
            }
        }
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="gridName"></param>
        /// <param name="dm"></param>
        /// <param name="parentForm"></param>
        /// <param name="addressTextBox"></param>
        public GridRelatedAddressTaskPane(string gridName, IDisplayManager dm, IArchiveMasterForm parentForm, LinkLabel addressTextBox)
        {
            XceedUtility.SetUIStyle(this);

            m_parentForm = parentForm;
            m_dm = dm;
            m_addressTextBox = addressTextBox;

            LoadMenus(gridName);
            if (m_items1.Count != 0)
            {
                var archiveSeeForm = parentForm;
                if (archiveSeeForm != null)
                {
                    archiveSeeForm.MasterGrid.GridControl.CurrentRowChanged += new EventHandler(MasterGrid_CurrentRowChanged);

                    MasterGrid_CurrentRowChanged(archiveSeeForm.DisplayManager, System.EventArgs.Empty);
                }

                if (m_addressTextBox != null)
                {
                    m_addressTextBox.Text = null;
                }
            }
            else
            {
                if (m_addressTextBox != null)
                {
                    m_addressTextBox.Visible = false;
                }
            }
        }
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.LinkBack = new System.Windows.Forms.LinkLabel();
			this.LinkNext = new System.Windows.Forms.LinkLabel();
			this.SuspendLayout();
			// 
			// LinkBack
			// 
			this.LinkBack.Dock = System.Windows.Forms.DockStyle.Left;
			this.LinkBack.Name = "LinkBack";
			this.LinkBack.Size = new System.Drawing.Size(45, 16);
			this.LinkBack.TabIndex = 0;
			this.LinkBack.TabStop = true;
			this.LinkBack.Text = "< Back";
			// 
			// LinkNext
			// 
			this.LinkNext.Dock = System.Windows.Forms.DockStyle.Fill;
			this.LinkNext.Location = new System.Drawing.Point(40, 0);
			this.LinkNext.Name = "LinkNext";
			this.LinkNext.Size = new System.Drawing.Size(45, 16);
			this.LinkNext.TabIndex = 1;
			this.LinkNext.TabStop = true;
			this.LinkNext.Text = "Next >";
			// 
			// WizardPageNavigationControl
			// 
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.LinkNext,
																		  this.LinkBack});
			this.Name = "WizardPageNavigationControl";
			this.Size = new System.Drawing.Size(90, 16);
			this.ResumeLayout(false);

		}
Example #6
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.labName = new System.Windows.Forms.Label();
			this.lnk = new System.Windows.Forms.LinkLabel();
			this.SuspendLayout();
			// 
			// labName
			// 
			this.labName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.labName.Location = new System.Drawing.Point(0, 0);
			this.labName.Name = "labName";
			this.labName.Size = new System.Drawing.Size(96, 16);
			this.labName.TabIndex = 0;
			// 
			// lnk
			// 
			this.lnk.Location = new System.Drawing.Point(0, 16);
			this.lnk.Name = "lnk";
			this.lnk.Size = new System.Drawing.Size(100, 20);
			this.lnk.TabIndex = 1;
			this.lnk.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.lnk.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnk_LinkClicked);
			// 
			// TimeSpanParam
			// 
			this.Controls.Add(this.lnk);
			this.Controls.Add(this.labName);
			this.Name = "TimeSpanParam";
			this.Size = new System.Drawing.Size(96, 36);
			this.Load += new System.EventHandler(this.TimeSpanParam_Load);
			this.ResumeLayout(false);

		}
Example #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // linkLabel1
     //
     this.linkLabel1.Location = new System.Drawing.Point(8, 48);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.TabIndex = 0;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "Add New Group";
     //
     // linkLabel2
     //
     this.linkLabel2.Location = new System.Drawing.Point(8, 80);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.TabIndex = 1;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "Add New Server";
     //
     // NewServer
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ClientSize = new System.Drawing.Size(344, 352);
     this.Controls.Add(this.linkLabel2);
     this.Controls.Add(this.linkLabel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name = "NewServer";
     this.Text = "Manage Server List";
     this.ResumeLayout(false);
 }
		public LinkLabelLinkClickedEventArgs (LinkLabel.Link link)
		{
#if NET_2_0
			this.button = MouseButtons.Left;
#endif
			this.link = link;
		}
Example #9
0
        public Home(string username)
        {
            this.username = username;
            InitializeComponent();
            for (int i = 0; i < 100;i++ )
            {
                lbl[i] = new LinkLabel();
            }

            lbl[0].Click += new System.EventHandler(lbl1Click);
            lbl[1].Click += new System.EventHandler(lbl2Click);
            lbl[2].Click += new System.EventHandler(lbl3Click);
            lbl[3].Click += new System.EventHandler(lbl4Click);
            lbl[4].Click += new System.EventHandler(lbl5Click);
            lbl[5].Click += new System.EventHandler(lbl6Click);
            lbl[6].Click += new System.EventHandler(lbl7Click);
            lbl[7].Click += new System.EventHandler(lbl8Click);
            lbl[8].Click += new System.EventHandler(lbl9Click);
            lbl[9].Click += new System.EventHandler(lbl10Click);
            lbl[10].Click += new System.EventHandler(lbl11Click);
            lbl[11].Click += new System.EventHandler(lbl12Click);
            lbl[12].Click += new System.EventHandler(lbl13Click);
            lbl[13].Click += new System.EventHandler(lbl14Click);
            lbl[14].Click += new System.EventHandler(lbl15Click);
        }
        public void MakeControlls()
        {
            for(int i= 0 ; i < ClipBoardData.id_max; i++)
            {
                LinkLabel label = new LinkLabel();
                label.AutoSize = true;
                label.Location = new System.Drawing.Point(22, i * 25);
                label.Name = "lblLink_" + i;
                label.Size = new System.Drawing.Size(55, 13);
                label.TabStop = true;
                label.Visible = true;
                label.Tag = i;
                label.LinkBehavior = LinkBehavior.HoverUnderline;
                label.Click += new EventHandler(ClipBoardEntery_Click);

                CheckBox chkBox = new CheckBox();
                chkBox.Location = new System.Drawing.Point(5, i * 25);
                chkBox.Size = new System.Drawing.Size(14, 14);
                chkBox.Name = "chkBox_" + i;
                chkBox.TabStop = true;
                chkBox.Tag = i;
                chkBox.CheckedChanged +=new EventHandler(ClipBoardChkBox_CheckedChanged);

                panel1.Controls.Add(label);
                panel1.Controls.Add(chkBox);

            }
        }
Example #11
0
 private void InitializeComponent()
 {
     this.lb_result = new System.Windows.Forms.Label();
     this.lk_close = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // lb_result
     //
     this.lb_result.Font = new System.Drawing.Font("Tahoma", 36F, System.Drawing.FontStyle.Regular);
     this.lb_result.Location = new System.Drawing.Point(3, 0);
     this.lb_result.Name = "lb_result";
     this.lb_result.Size = new System.Drawing.Size(144, 68);
     this.lb_result.Text = "OK";
     this.lb_result.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // lk_close
     //
     this.lk_close.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
     this.lk_close.Location = new System.Drawing.Point(128, 0);
     this.lk_close.Name = "lk_close";
     this.lk_close.Size = new System.Drawing.Size(19, 18);
     this.lk_close.TabIndex = 1;
     this.lk_close.Text = "X";
     this.lk_close.Click += new System.EventHandler(this.lk_close_Click);
     //
     // ResultForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.Controls.Add(this.lk_close);
     this.Controls.Add(this.lb_result);
     this.Name = "ResultForm";
     this.Size = new System.Drawing.Size(150, 66);
     this.ResumeLayout(false);
 }
Example #12
0
        public ZivotyMgr(Postava pos, Label mzL, NumericUpDown zrN, FlowLayoutPanel bars, Panel labels, LinkLabel postihZLink, Label postihZL)
        {
            postava = pos;
            zivotyPanel = bars;
            mezZraneniL = mzL;
            zivotyLabels = labels;
            zraneniN = zrN;
            postihLink = postihZLink;
            postihL = postihZL;

            int mez = postava.getVlastnostO("Mez zranění");
            boxes = new List<CheckBox>();
            for (int i = 0; i < mez * 3; i++)
            {
                CheckBox box = new CheckBox();
                //box.ThreeState = true;
                box.Checked = false;
                box.Margin = new Padding(0);
                box.Parent = zivotyPanel;
                box.Width = box.Height = 15;
                box.Click += new EventHandler(changeCheck);
                box.Tag = i+1;
                boxes.Add(box);
            }
        }
Example #13
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(FrmSplash));
     this.linkHomepage = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // linkHomepage
     //
     this.linkHomepage.BackColor = System.Drawing.Color.Transparent;
     this.linkHomepage.LinkColor = System.Drawing.Color.Transparent;
     this.linkHomepage.Location = new System.Drawing.Point(32, 576);
     this.linkHomepage.Name = "linkHomepage";
     this.linkHomepage.Size = new System.Drawing.Size(352, 23);
     this.linkHomepage.TabIndex = 0;
     this.linkHomepage.TabStop = true;
     this.linkHomepage.Text = "000000000000000000000000000000000000000000000000000000000000000000000000000000000" +
         "000000000000000000000";
     this.linkHomepage.Click += new System.EventHandler(this.linkHomepage_Click);
     this.linkHomepage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkHomepage_LinkClicked);
     //
     // FrmSplash
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize = new System.Drawing.Size(424, 597);
     this.Controls.Add(this.linkHomepage);
     this.Name = "FrmSplash";
     this.Text = "FrmSplash";
     this.ResumeLayout(false);
 }
Example #14
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(About));
            this.lblVersion = new System.Windows.Forms.Label();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.linkWebsite = new System.Windows.Forms.LinkLabel();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // lblVersion
            // 
            this.lblVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblVersion.Location = new System.Drawing.Point(64, 12);
            this.lblVersion.Name = "lblVersion";
            this.lblVersion.Size = new System.Drawing.Size(266, 24);
            this.lblVersion.TabIndex = 0;
            this.lblVersion.Text = "dotNetInstaller Installer Editor";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(12, 12);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(48, 48);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 1;
            this.pictureBox1.TabStop = false;
            // 
            // linkWebsite
            // 
            this.linkWebsite.AutoSize = true;
            this.linkWebsite.Location = new System.Drawing.Point(66, 36);
            this.linkWebsite.Name = "linkWebsite";
            this.linkWebsite.Size = new System.Drawing.Size(177, 13);
            this.linkWebsite.TabIndex = 3;
            this.linkWebsite.TabStop = true;
            this.linkWebsite.Text = "http://dotnetinstaller.codeplex.com/";
            this.linkWebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkWebsite_LinkClicked);
            // 
            // About
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(324, 89);
            this.Controls.Add(this.linkWebsite);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.lblVersion);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "About";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "About";
            this.Load += new System.EventHandler(this.About_Load);
            this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.About_KeyUp);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #15
0
		public PropertiesForm(ProfilerProjectMode mode)
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			//
			// TODO: Add any constructor code after InitializeComponent call
			//
			projectMode = ProfilerProjectMode.CreateProject;

			project = new ProjectInfo( ProjectType.File );
			this.Mode = mode;
			if (mode == ProfilerProjectMode.CreateProject)
			{
				List<string> files=SerializationHandler.GetRecentlyUsed();
				foreach (string file in files.GetRange(0,Math.Min(files.Count,5)))
				{
					LinkLabel label=new LinkLabel();
					label.AutoSize = true;
					label.Text=file;
					label.Click += delegate
					{
						ProfilerForm.form.Project = SerializationHandler.OpenProjectInfo(label.Text);
						Close();
					};
					recentProjects.Controls.Add(label);

				}
			}
		}
Example #16
0
 private LinkLabel CreateLinkLabel(string text)
 {
     LinkLabel ll = new LinkLabel();
     ll.BackColor = Color.Transparent;
     ll.Text = text;
     return ll;
 }
Example #17
0
        private void ShowExam()
        {
            string userid = MainHelper.User.UserID;
            string datatimestr = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
            string sqlwhere = " where StartTime<'" + datatimestr + "' and EndTime>'" + datatimestr + "' and UserIDS like '%," + userid + ",%'  and  id not in( select E_ID from dbo.E_ExamResult where IsExamed=1 and UserID='" + userid + "' ) order by StartTime asc";
            IList<E_Examination> list =  Client.ClientHelper.PlatformSqlMap.GetList<E_Examination>(sqlwhere);
            if (list.Count==0)
            {
                label1.Text = "您最近不需要考试";
                linkLabel1.Show();
            }

            int index = 0;
            foreach (E_Examination item in list)
            {
                index++;
                Point lpoint = new Point();
                lpoint.X = 30;
                lpoint.Y = 10 + index * 25;
                LinkLabel ll = new LinkLabel();
                ll.Text = index+"、  "+ item.E_Name + "     " + item.StartTime.ToShortDateString() + " --" + item.EndTime.ToShortDateString(); ;
                ll.Tag = item;
                ll.Location = lpoint;
                ll.LinkClicked += new LinkLabelLinkClickedEventHandler(ll_LinkClicked);
                ll.AutoSize = true;
                panel1.Controls.Add(ll);
            }
        }
Example #18
0
        private void ReportDependency(string name, string downloadUrl)
        {
            if (InvokeRequired)
            {
                Invoke(new ReportDependencyDelegare(ReportDependency), name, downloadUrl);
            }
            else
            {
                Label label = new Label();
                label.AutoSize = true;
                label.Text = "Missing: " + name;
                label.Location = new Point(10, lastDependencyY);

                LinkLabel linkLabel = new LinkLabel();
                linkLabel.AutoSize = true;
                linkLabel.Text = downloadUrl;
                linkLabel.Location = new Point(label.Location.X + label.Width + 10, lastDependencyY);

                this.Controls.Add(label);
                this.Controls.Add(linkLabel);

                int maxHeight = System.Math.Max(label.Height, linkLabel.Height);

                this.Height += maxHeight;

                lastDependencyY += System.Math.Max(label.Height, linkLabel.Height) + 10;
            }
        }
Example #19
0
        public StartPage()
        {
            InitializeComponent();
            Dock = DockStyle.Fill;

            //Recent projects
            Ogmo.CheckRecentProjects();
            for (int i = 0; i < Properties.Settings.Default.RecentProjects.Count; i++)
            {
                LinkLabel link = new LinkLabel();
                link.Location = new Point(4, 24 + (i * 20));
                link.LinkColor = Color.Red;
                link.Font = new Font(FontFamily.GenericMonospace, 10);
                link.Size = new Size(172, 16);
                link.Text = Properties.Settings.Default.RecentProjectNames[i];
                link.Name = Properties.Settings.Default.RecentProjects[i];
                link.Click += delegate(object sender, EventArgs e) { Ogmo.LoadProject(link.Name); };
                recentPanel.Controls.Add(link);
            }

            //Twitter feed
            WebClient twitter = new WebClient();
            twitter.DownloadStringCompleted += new DownloadStringCompletedEventHandler(twitter_DownloadStringCompleted);
            twitter.DownloadStringAsync(new Uri(@"http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=OgmoEditor"));
        }
Example #20
0
		private void CreateRecentProjectsList()
		{
			bool haveProcessedTopMostProject = false;
			foreach (string path in Settings.Default.MruConfigFilePaths.Paths)
			{
				LinkLabel recentProjectLabel = new LinkLabel();
				recentProjectLabel.Text = Path.GetFileNameWithoutExtension(path);
				recentProjectLabel.AutoSize = true;
				recentProjectLabel.LinkColor = Color.Black;
				recentProjectLabel.LinkBehavior = LinkBehavior.HoverUnderline;
				if (!haveProcessedTopMostProject)
				{
					recentProjectLabel.Font = new Font("Microsoft Sans Serif",
													   12F,
													   FontStyle.Bold,
													   GraphicsUnit.Point,
													   0);
					haveProcessedTopMostProject = true;
				}
				else
				{
					recentProjectLabel.Font = new Font("Microsoft Sans Serif",
													   12F,
													   FontStyle.Regular,
													   GraphicsUnit.Point,
													   0);
				}
				recentProjectLabel.Tag = path;
				recentProjectLabel.LinkClicked += openRecentProject_LinkClicked;
				flowLayoutPanel2.Controls.Add(recentProjectLabel);
			}
		}
        private void FrmCategoryProducts_LinkLabel_Load(object sender, EventArgs e)
        {
            try
            {
                SqlConnection conn = new SqlConnection();
                conn.ConnectionString = Settings.Default.northwindConnectionString;
                SqlDataAdapter dataadapter = new SqlDataAdapter("select * from Products", conn);
                DataSet dataset = new DataSet();
                dataadapter.Fill(dataset);

                this.dataGridView1.DataSource = dataset.Tables[0];
                for (int i = 0; i < dataset.Tables[0].Columns.Count; i++)
                {
                    LinkLabel newlable = new LinkLabel();
                    newlable.Text = dataset.Tables[0].Columns[i].ColumnName;
                    this.flowLayoutPanel1.Controls.Add(newlable);
                    newlable.Click += newlable_Click;
                }
                

            }
            catch (Exception ex)
            {

                MessageBox.Show(ex.Message);
            }
    
        }
Example #22
0
        private void AlterColor(LinkLabel link)
        {
            Produtolink.LinkColor = Color.Black;
            Receitalink.LinkColor = Color.Black;
            Despesalink.LinkColor = Color.Black;
            Funcionariolink.LinkColor = Color.Black;
            Clientelink.LinkColor = Color.Black;
            Fornecedorlink.LinkColor = Color.Black;

            if (link.Name == Produtolink.Name)
            {
                Produtolink.LinkColor = Color.LightSeaGreen;
            }
            if (link.Name == Receitalink.Name)
            {
                Receitalink.LinkColor = Color.LightSeaGreen;
            }
            if (link.Name == Despesalink.Name)
            {
                Despesalink.LinkColor = Color.LightSeaGreen;
            }
            if (link.Name == Funcionariolink.Name)
            {
                Funcionariolink.LinkColor = Color.LightSeaGreen;
            }
            if (link.Name == Clientelink.Name)
            {
                Clientelink.LinkColor = Color.LightSeaGreen;
            }
            if (link.Name == Fornecedorlink.Name)
            {
                Fornecedorlink.LinkColor = Color.LightSeaGreen;
            }
        }
Example #23
0
        private void rebuildItemsList()
        {
            resultsPanel.Controls.Clear();
            int x = 24;
            int y = 8;
            int numItems = 0;
            foreach (object item in items)
            {
                numItems++;
                LinkLabel linkLabel = new LinkLabel();
                linkLabel.Location = new System.Drawing.Point(x, y);
                linkLabel.Name = item.ToString();
                linkLabel.Text = item.ToString();
                linkLabel.Tag = item;
                linkLabel.Size = new Size(224, 23);
                linkLabel.FlatStyle = FlatStyle.System;
                linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.item_LinkClicked);
                this.resultsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top)
                    | System.Windows.Forms.AnchorStyles.Left)
                    | System.Windows.Forms.AnchorStyles.Right)));
                linkLabel.AutoSize = true;
                resultsPanel.Controls.Add(linkLabel);
                y += 24;
            }

            lblMessage.Text = numItems + " results found. Please select one";
        }
Example #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // linkLabel1
     //
     this.linkLabel1.Location = new System.Drawing.Point(92, 87);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(122, 13);
     this.linkLabel1.TabIndex = 0;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "DotNetBar Home Page";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // frmAbout
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(323, 217);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this.linkLabel1});
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmAbout";
     this.ShowInTaskbar = false;
     this.Text = "About DotNetBar Notepad Sample";
     this.ResumeLayout(false);
 }
        internal TreeGridDesignerToolWindowContainer(Control mainControl)
        {
            // Set this control to some arbitrary size.
            // Without a defined size, the anchored child controls don't anchor correctly.
            Left = 0;
            Top = 0;
            Width = 200;
            Height = 200;

            // add main control hosted in the tool window
            _mainControl = mainControl;
            mainControl.Bounds = new Rectangle(1, 1, 198, 198);
            mainControl.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right;
            Controls.Add(mainControl);

            // Label used when the tool window is irrelevant.
            _watermark = new LinkLabel();
            _watermark.Location = new Point(BORDER + 2, BORDER + 1);
            _watermark.Size = new Size(Width - 2 * BORDER - 2, Height - 2 * BORDER - 1);
            _watermark.Text = String.Empty;
            _watermark.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Bottom;
            _watermark.TextAlign = ContentAlignment.MiddleCenter;
            _watermark.ForeColor = SystemColors.GrayText;
            _watermark.BackColor = SystemColors.Window;
            _watermark.Visible = false;
            _watermark.LinkClicked += watermarkLabel_LinkClicked;
            Controls.Add(_watermark);
        }
Example #26
0
        private void initialize()
        {
            content.AutoScroll = false;

            // title
            this.titleBar.Text = poi.getName();

            int moreLinkHeight = 15;

            // description
            this.descr = new TextBox();
            this.descr.AcceptsReturn = true;
            this.descr.AcceptsTab = true;
            this.descr.Multiline = true;
            this.descr.ReadOnly = true;
            this.descr.ScrollBars = ScrollBars.Vertical;
            this.descr.Location = new Point(MARGIN, MARGIN);
            this.descr.Width = this.Width - 2 * MARGIN;
            this.descr.Height = this.Height - this.closeButton.Height - 3 * MARGIN - moreLinkHeight;
            this.descr.Text = poi.getDescr();
            this.content.Controls.Add(this.descr);

            this.moreLink = new LinkLabel();
            this.moreLink.Text = "more";
            this.moreLink.Height = moreLinkHeight;
            this.moreLink.Width = 50;
            this.moreLink.Location = new Point(MARGIN, 2 * MARGIN + this.descr.Height);
            this.moreLink.Click += new EventHandler(gotoPoiBrowser);
            this.content.Controls.Add(this.moreLink);
        }
		public InsertPInvokeSignaturesForm()
		{
			SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("PInvokeAddIn.Resources.InsertPInvokeSignaturesForm.xfrm"));
			
			signatureRichTextBox = ((RichTextBox)ControlDictionary["SignatureRichTextBox"]);
			
			// Hook up events.
			closeButton = ((Button)ControlDictionary["CloseButton"]);
			closeButton.Click += new EventHandler(CloseButtonClick);
			
			insertButton = ((Button)ControlDictionary["InsertButton"]);
			insertButton.Enabled = false;
			insertButton.Click += new EventHandler(InsertButtonClick);
			
			findButton = ((Button)ControlDictionary["FindButton"]);
			findButton.Click += new EventHandler(FindButtonClick);
			
			functionNameComboBox = ((ComboBox)ControlDictionary["FunctionNameComboBox"]);
			functionNameComboBox.AutoCompleteMode = AutoCompleteMode.Suggest;
			functionNameComboBox.AutoCompleteSource = AutoCompleteSource.ListItems;

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

			languageComboBox = ((ComboBox)ControlDictionary["LanguageComboBox"]);
			languageComboBox.SelectedIndexChanged += new EventHandler(LanguageComboBoxSelectedIndexChanged);
			
			SetupLanguages();
			SetupFunctionNames();
			SetupModuleNames();
		}
        private byte[] attach(LinkLabel l1)
        {
            byte[] temp = null;
            try
            {

                openFileDialog1.Multiselect = false;
                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    Invoke(new Action(() => l1.Text = "Attaching..."));
                    var stream = new FileStream(Path.Combine(Path.GetDirectoryName(openFileDialog1.FileName.ToString()), openFileDialog1.FileName.ToString()), FileMode.Open, FileAccess.Read);
                    var reader = new BinaryReader(stream);
                    temp = reader.ReadBytes((int)stream.Length);
                    Thread.Sleep(1000);
                    Invoke(new Action(() => l1.Text = "Copy Attached"));
                    return temp;
                }
                return temp;
            }
            catch (Exception e1)
            {
                MessageBox.Show(e1.ToString());
                return temp;
            }
        }
Example #29
0
        public FormLabels(ref Form1 form, Rectangle rect)
        {
            //FormLabels.form = form;
            Scheme = new Label
            {
                Font = SystemFonts.MenuFont,
                AutoSize = true,
                ForeColor = SystemColors.Desktop,
                Location = new Point(60, 15)
            };

            PowerOptions = new LinkLabel
                {
                    Font = SystemFonts.MenuFont,
                    AutoSize = true,
                    BackColor = Color.WhiteSmoke,
                    ActiveLinkColor = SystemColors.HotTrack,
                    LinkColor = SystemColors.HotTrack,
                    Text = Resources.More_power_options,
                };

            PowerOptions.Location = new Point((rect.Width / 2) - (PowerOptions.Width / 2) - 10,
                                              (rect.Y + (rect.Height / 2) - (PowerOptions.Height / 2) + 4));

            PowerOptions.LinkBehavior = LinkBehavior.HoverUnderline;

            form.Controls.Add(Scheme);
            form.Controls.Add(PowerOptions);

            PowerOptions.MouseMove += PowerOptions_MouseMove;
            PowerOptions.MouseDown += PowerOptions_MouseDown;
        }
Example #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.messagesListView        = new System.Windows.Forms.ListView();
     this.workingPanel            = new System.Windows.Forms.Panel();
     this.cancelLinkLabel         = new System.Windows.Forms.LinkLabel();
     this.retrievingMessagesLabel = new System.Windows.Forms.Label();
     this.workingPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // messagesListView
     //
     this.messagesListView.AllowDrop = true;
     this.messagesListView.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.messagesListView.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.messagesListView.FullRowSelect         = true;
     this.messagesListView.HideSelection         = false;
     this.messagesListView.Location              = new System.Drawing.Point(1, 1);
     this.messagesListView.Name                  = "messagesListView";
     this.messagesListView.Size                  = new System.Drawing.Size(534, 402);
     this.messagesListView.TabIndex              = 1;
     this.messagesListView.View                  = System.Windows.Forms.View.Details;
     this.messagesListView.MouseDown            += new System.Windows.Forms.MouseEventHandler(this.messagesListView_MouseDown);
     this.messagesListView.MouseMove            += new MouseEventHandler(messagesListView_MouseMove);
     this.messagesListView.DragDrop             += new System.Windows.Forms.DragEventHandler(this.messagesListView_DragDrop);
     this.messagesListView.DragOver             += new DragEventHandler(messagesListView_DragOver);
     this.messagesListView.SelectedIndexChanged += new System.EventHandler(this.messagesListView_SelectedIndexChanged);
     //
     // workingPanel
     //
     this.workingPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.workingPanel.BackColor = System.Drawing.SystemColors.Window;
     this.workingPanel.Controls.Add(this.cancelLinkLabel);
     this.workingPanel.Controls.Add(this.retrievingMessagesLabel);
     this.workingPanel.Location = new System.Drawing.Point(4, 20);
     this.workingPanel.Name     = "workingPanel";
     this.workingPanel.Size     = new System.Drawing.Size(528, 40);
     this.workingPanel.TabIndex = 2;
     //
     // cancelLinkLabel
     //
     this.cancelLinkLabel.Location = new System.Drawing.Point(4, 20);
     this.cancelLinkLabel.Name     = "cancelLinkLabel";
     this.cancelLinkLabel.Size     = new System.Drawing.Size(100, 16);
     this.cancelLinkLabel.TabIndex = 1;
     this.cancelLinkLabel.TabStop  = true;
     this.cancelLinkLabel.Text     = "Cancel";
     this.cancelLinkLabel.Click   += new System.EventHandler(this.cancelLinkLabel_Click);
     //
     // retrievingMessagesLabel
     //
     this.retrievingMessagesLabel.Location = new System.Drawing.Point(4, 4);
     this.retrievingMessagesLabel.Name     = "retrievingMessagesLabel";
     this.retrievingMessagesLabel.Size     = new System.Drawing.Size(136, 16);
     this.retrievingMessagesLabel.TabIndex = 0;
     this.retrievingMessagesLabel.Text     = "Retrieving messages...";
     //
     // MessageBrowser
     //
     this.AllowDrop = true;
     this.Controls.Add(this.workingPanel);
     this.Controls.Add(this.messagesListView);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Name = "MessageBrowser";
     this.Size = new System.Drawing.Size(536, 404);
     this.workingPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(BoxMenuEditor));
     this.Tree         = new System.Windows.Forms.TreeView();
     this.GroupSubmenu = new System.Windows.Forms.GroupBox();
     this.bNewSubmenu  = new System.Windows.Forms.Button();
     this.txSubmenu    = new System.Windows.Forms.TextBox();
     this.GroupCommand = new System.Windows.Forms.GroupBox();
     this.bNewCommand  = new System.Windows.Forms.Button();
     this.chkPrefix    = new System.Windows.Forms.CheckBox();
     this.txCommand    = new System.Windows.Forms.TextBox();
     this.label2       = new System.Windows.Forms.Label();
     this.txCaption    = new System.Windows.Forms.TextBox();
     this.label1       = new System.Windows.Forms.Label();
     this.linkLabel1   = new System.Windows.Forms.LinkLabel();
     this.bOk          = new System.Windows.Forms.Button();
     this.bCancel      = new System.Windows.Forms.Button();
     this.label3       = new System.Windows.Forms.Label();
     this.GroupSubmenu.SuspendLayout();
     this.GroupCommand.SuspendLayout();
     this.SuspendLayout();
     //
     // Tree
     //
     this.Tree.HideSelection      = false;
     this.Tree.ImageIndex         = -1;
     this.Tree.Location           = new System.Drawing.Point(8, 8);
     this.Tree.Name               = "Tree";
     this.Tree.SelectedImageIndex = -1;
     this.Tree.Size               = new System.Drawing.Size(320, 408);
     this.Tree.TabIndex           = 0;
     this.Tree.KeyDown           += new System.Windows.Forms.KeyEventHandler(this.Tree_KeyDown);
     this.Tree.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.Tree_AfterSelect);
     this.Tree.AfterLabelEdit    += new System.Windows.Forms.NodeLabelEditEventHandler(this.Tree_AfterLabelEdit);
     //
     // GroupSubmenu
     //
     this.GroupSubmenu.Controls.Add(this.bNewSubmenu);
     this.GroupSubmenu.Controls.Add(this.txSubmenu);
     this.GroupSubmenu.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.GroupSubmenu.Location  = new System.Drawing.Point(336, 8);
     this.GroupSubmenu.Name      = "GroupSubmenu";
     this.GroupSubmenu.Size      = new System.Drawing.Size(304, 56);
     this.GroupSubmenu.TabIndex  = 1;
     this.GroupSubmenu.TabStop   = false;
     this.GroupSubmenu.Text      = "ButtonMenuEditor.NewSubText";
     //
     // bNewSubmenu
     //
     this.bNewSubmenu.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.bNewSubmenu.Location  = new System.Drawing.Point(240, 24);
     this.bNewSubmenu.Name      = "bNewSubmenu";
     this.bNewSubmenu.Size      = new System.Drawing.Size(56, 23);
     this.bNewSubmenu.TabIndex  = 1;
     this.bNewSubmenu.Text      = "Common.Add";
     this.bNewSubmenu.Click    += new System.EventHandler(this.bNewSubmenu_Click);
     //
     // txSubmenu
     //
     this.txSubmenu.Location = new System.Drawing.Point(16, 24);
     this.txSubmenu.Name     = "txSubmenu";
     this.txSubmenu.Size     = new System.Drawing.Size(216, 20);
     this.txSubmenu.TabIndex = 0;
     this.txSubmenu.Text     = "";
     this.txSubmenu.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txSubmenu_KeyDown);
     //
     // GroupCommand
     //
     this.GroupCommand.Controls.Add(this.bNewCommand);
     this.GroupCommand.Controls.Add(this.chkPrefix);
     this.GroupCommand.Controls.Add(this.txCommand);
     this.GroupCommand.Controls.Add(this.label2);
     this.GroupCommand.Controls.Add(this.txCaption);
     this.GroupCommand.Controls.Add(this.label1);
     this.GroupCommand.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.GroupCommand.Location  = new System.Drawing.Point(336, 72);
     this.GroupCommand.Name      = "GroupCommand";
     this.GroupCommand.Size      = new System.Drawing.Size(304, 112);
     this.GroupCommand.TabIndex  = 2;
     this.GroupCommand.TabStop   = false;
     this.GroupCommand.Text      = "ButtonMenuEditor.NewComText";
     //
     // bNewCommand
     //
     this.bNewCommand.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.bNewCommand.Location  = new System.Drawing.Point(240, 80);
     this.bNewCommand.Name      = "bNewCommand";
     this.bNewCommand.Size      = new System.Drawing.Size(56, 23);
     this.bNewCommand.TabIndex  = 5;
     this.bNewCommand.Text      = "Common.Add";
     this.bNewCommand.Click    += new System.EventHandler(this.bNewCommand_Click);
     //
     // chkPrefix
     //
     this.chkPrefix.Checked         = true;
     this.chkPrefix.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkPrefix.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.chkPrefix.Location        = new System.Drawing.Point(8, 80);
     this.chkPrefix.Name            = "chkPrefix";
     this.chkPrefix.Size            = new System.Drawing.Size(200, 24);
     this.chkPrefix.TabIndex        = 4;
     this.chkPrefix.Text            = "ButtonMenuEditor.UsePrefix";
     this.chkPrefix.CheckedChanged += new System.EventHandler(this.chkPrefix_CheckedChanged);
     //
     // txCommand
     //
     this.txCommand.Location     = new System.Drawing.Point(64, 48);
     this.txCommand.Name         = "txCommand";
     this.txCommand.Size         = new System.Drawing.Size(232, 20);
     this.txCommand.TabIndex     = 3;
     this.txCommand.Text         = "";
     this.txCommand.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txCommand_KeyDown);
     this.txCommand.TextChanged += new System.EventHandler(this.txCommand_TextChanged);
     this.txCommand.Enter       += new System.EventHandler(this.txCommand_Enter);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 2;
     this.label2.Text     = "ButtonMenuEditor.Command";
     //
     // txCaption
     //
     this.txCaption.Location     = new System.Drawing.Point(64, 16);
     this.txCaption.Name         = "txCaption";
     this.txCaption.Size         = new System.Drawing.Size(232, 20);
     this.txCaption.TabIndex     = 1;
     this.txCaption.Text         = "";
     this.txCaption.TextChanged += new System.EventHandler(this.txCaption_TextChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(56, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "ButtonMenuEditor.Caption";
     //
     // linkLabel1
     //
     this.linkLabel1.Location   = new System.Drawing.Point(336, 192);
     this.linkLabel1.Name       = "linkLabel1";
     this.linkLabel1.Size       = new System.Drawing.Size(304, 23);
     this.linkLabel1.TabIndex   = 3;
     this.linkLabel1.TabStop    = true;
     this.linkLabel1.Text       = "ButtonMenuEditor.Preview";
     this.linkLabel1.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.linkLabel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.linkLabel1_MouseDown);
     //
     // bOk
     //
     this.bOk.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.bOk.Location  = new System.Drawing.Point(568, 392);
     this.bOk.Name      = "bOk";
     this.bOk.TabIndex  = 4;
     this.bOk.Text      = "Common.Ok";
     this.bOk.Click    += new System.EventHandler(this.bOk_Click);
     //
     // bCancel
     //
     this.bCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.bCancel.Location  = new System.Drawing.Point(480, 392);
     this.bCancel.Name      = "bCancel";
     this.bCancel.TabIndex  = 5;
     this.bCancel.Text      = "Common.Cancel";
     this.bCancel.Click    += new System.EventHandler(this.bCancel_Click);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(336, 232);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(304, 144);
     this.label3.TabIndex = 6;
     this.label3.Text     = "ButtonMenuEditor.Instructions";
     //
     // BoxMenuEditor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(650, 424);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.bOk);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.GroupCommand);
     this.Controls.Add(this.GroupSubmenu);
     this.Controls.Add(this.Tree);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "BoxMenuEditor";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "ButtonMenuEditor.Title";
     this.GroupSubmenu.ResumeLayout(false);
     this.GroupCommand.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Returns an observable sequence wrapping the LinkClicked event on the LinkLabel instance.
 /// </summary>
 /// <param name="instance">The LinkLabel instance to observe.</param>
 /// <returns>An observable sequence wrapping the LinkClicked event on the LinkLabel instance.</returns>
 public static IObservable <EventPattern <LinkLabelLinkClickedEventArgs> > LinkClickedObservable(this LinkLabel instance)
 {
     return(Observable.FromEventPattern <LinkLabelLinkClickedEventHandler, LinkLabelLinkClickedEventArgs>(
                handler => instance.LinkClicked += handler,
                handler => instance.LinkClicked -= handler));
 }
Example #33
0
 public LinkAccessibleObject(Link link, LinkLabel owner) : base()
 {
     _owningLink                = link.OrThrowIfNull();
     _owningLinkLabel           = owner.OrThrowIfNull();
     _linkLabelAccessibleObject = (LinkLabelAccessibleObject)_owningLinkLabel.AccessibilityObject;
 }
 public LinkLabelAccessibleObject(LinkLabel owner) : base(owner)
 {
     _owningLinkLabel = owner;
 }
Example #35
0
 public LinkCollection(LinkLabel owner)
 {
     _owner = owner ?? throw new ArgumentNullException(nameof(owner));
 }
Example #36
0
 internal Link(LinkLabel owner)
 {
     this.owner = owner;
 }
 /// <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(PageActiveMailExpired));
     this.pictureBox1   = new System.Windows.Forms.PictureBox();
     this._bOK          = new System.Windows.Forms.Button();
     this._linkActiveUp = new System.Windows.Forms.LinkLabel();
     this.label1        = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(8, 11);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(40, 40);
     this.pictureBox1.TabIndex = 9;
     this.pictureBox1.TabStop  = false;
     //
     // _bOK
     //
     this._bOK.BackColor = System.Drawing.Color.Transparent;
     this._bOK.Location  = new System.Drawing.Point(244, 70);
     this._bOK.Name      = "_bOK";
     this._bOK.TabIndex  = 7;
     this._bOK.Text      = "OK";
     this._bOK.Click    += new System.EventHandler(this._bOK_Click);
     //
     // _linkActiveUp
     //
     this._linkActiveUp.Location     = new System.Drawing.Point(280, 48);
     this._linkActiveUp.Name         = "_linkActiveUp";
     this._linkActiveUp.Size         = new System.Drawing.Size(135, 16);
     this._linkActiveUp.TabIndex     = 6;
     this._linkActiveUp.TabStop      = true;
     this._linkActiveUp.Text         = "http://www.activeup.com";
     this._linkActiveUp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this._linkActiveUp_LinkClicked);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(56, 11);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(528, 56);
     this.label1.TabIndex = 5;
     this.label1.Text     = @"ActiveQ do not hold the ActiveMail DLL expired to use the mail features. If you own a license of ActiveMail, simply copy the DLL in the directory where you installed ActiveQ. Ensure that the version of the DLL is v1.6+. If you don’t own a license, perhaps you would like to make a try and download a free trial version of the component on our website:";
     //
     // PageActiveMailExpired
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(568, 102);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.pictureBox1,
         this._bOK,
         this._linkActiveUp,
         this.label1
     });
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "PageActiveMailExpired";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "ActiveQ : ActiveMail expired";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Returns an observable sequence wrapping the TabStopChanged event on the LinkLabel instance.
 /// </summary>
 /// <param name="instance">The LinkLabel instance to observe.</param>
 /// <returns>An observable sequence wrapping the TabStopChanged event on the LinkLabel instance.</returns>
 public static IObservable <EventPattern <EventArgs> > TabStopChangedObservable(this LinkLabel instance)
 {
     return(Observable.FromEventPattern <EventHandler, EventArgs>(
                handler => instance.TabStopChanged += handler,
                handler => instance.TabStopChanged -= handler));
 }
 /// <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(MemForm));
     this.B_Exit       = new System.Windows.Forms.Button();
     this.Close_Driver = new System.Windows.Forms.Button();
     this.Open_Driver  = new System.Windows.Forms.Button();
     this.ListAddr     = new System.Windows.Forms.ListBox();
     this.ListHex      = new System.Windows.Forms.ListBox();
     this.ListAscii    = new System.Windows.Forms.ListBox();
     this.E_Base       = new System.Windows.Forms.TextBox();
     this.B_ReadMemory = new System.Windows.Forms.Button();
     this.Label12      = new System.Windows.Forms.Label();
     this.Label13      = new System.Windows.Forms.Label();
     this.Label14      = new System.Windows.Forms.Label();
     this.label6       = new System.Windows.Forms.Label();
     this.label3       = new System.Windows.Forms.Label();
     this.linkLabel2   = new System.Windows.Forms.LinkLabel();
     this.linkLabel1   = new System.Windows.Forms.LinkLabel();
     this.L_Days       = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // B_Exit
     //
     this.B_Exit.BackColor   = System.Drawing.SystemColors.Control;
     this.B_Exit.Cursor      = System.Windows.Forms.Cursors.Default;
     this.B_Exit.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.B_Exit.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.B_Exit.Location    = new System.Drawing.Point(472, 270);
     this.B_Exit.Name        = "B_Exit";
     this.B_Exit.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.B_Exit.Size        = new System.Drawing.Size(161, 33);
     this.B_Exit.TabIndex    = 27;
     this.B_Exit.Text        = "Exit";
     this.B_Exit.Click      += new System.EventHandler(this.B_Exit_Click);
     //
     // Close_Driver
     //
     this.Close_Driver.BackColor   = System.Drawing.SystemColors.Control;
     this.Close_Driver.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Close_Driver.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Close_Driver.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Close_Driver.Location    = new System.Drawing.Point(472, 200);
     this.Close_Driver.Name        = "Close_Driver";
     this.Close_Driver.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Close_Driver.Size        = new System.Drawing.Size(161, 33);
     this.Close_Driver.TabIndex    = 26;
     this.Close_Driver.Text        = "Close Driver";
     this.Close_Driver.Click      += new System.EventHandler(this.Close_Driver_Click);
     //
     // Open_Driver
     //
     this.Open_Driver.BackColor   = System.Drawing.SystemColors.Control;
     this.Open_Driver.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Open_Driver.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Open_Driver.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Open_Driver.Location    = new System.Drawing.Point(472, 152);
     this.Open_Driver.Name        = "Open_Driver";
     this.Open_Driver.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Open_Driver.Size        = new System.Drawing.Size(161, 33);
     this.Open_Driver.TabIndex    = 25;
     this.Open_Driver.Text        = "Open Driver";
     this.Open_Driver.Click      += new System.EventHandler(this.Open_Driver_Click);
     //
     // ListAddr
     //
     this.ListAddr.BackColor   = System.Drawing.SystemColors.Window;
     this.ListAddr.Cursor      = System.Windows.Forms.Cursors.Default;
     this.ListAddr.Font        = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.ListAddr.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.ListAddr.ItemHeight  = 14;
     this.ListAddr.Location    = new System.Drawing.Point(8, 32);
     this.ListAddr.Name        = "ListAddr";
     this.ListAddr.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ListAddr.Size        = new System.Drawing.Size(65, 228);
     this.ListAddr.TabIndex    = 21;
     //
     // ListHex
     //
     this.ListHex.BackColor   = System.Drawing.SystemColors.Window;
     this.ListHex.Cursor      = System.Windows.Forms.Cursors.Default;
     this.ListHex.Font        = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.ListHex.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.ListHex.ItemHeight  = 14;
     this.ListHex.Location    = new System.Drawing.Point(76, 32);
     this.ListHex.Name        = "ListHex";
     this.ListHex.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ListHex.Size        = new System.Drawing.Size(233, 228);
     this.ListHex.TabIndex    = 20;
     //
     // ListAscii
     //
     this.ListAscii.BackColor   = System.Drawing.SystemColors.Window;
     this.ListAscii.Cursor      = System.Windows.Forms.Cursors.Default;
     this.ListAscii.Font        = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.ListAscii.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.ListAscii.ItemHeight  = 14;
     this.ListAscii.Location    = new System.Drawing.Point(312, 32);
     this.ListAscii.Name        = "ListAscii";
     this.ListAscii.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.ListAscii.Size        = new System.Drawing.Size(129, 228);
     this.ListAscii.TabIndex    = 19;
     //
     // E_Base
     //
     this.E_Base.AcceptsReturn = true;
     this.E_Base.AutoSize      = false;
     this.E_Base.BackColor     = System.Drawing.SystemColors.Window;
     this.E_Base.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.E_Base.Font          = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.E_Base.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.E_Base.Location      = new System.Drawing.Point(368, 272);
     this.E_Base.MaxLength     = 0;
     this.E_Base.Name          = "E_Base";
     this.E_Base.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.E_Base.Size          = new System.Drawing.Size(73, 28);
     this.E_Base.TabIndex      = 18;
     this.E_Base.Text          = "000c0044";
     //
     // B_ReadMemory
     //
     this.B_ReadMemory.BackColor   = System.Drawing.SystemColors.Control;
     this.B_ReadMemory.Cursor      = System.Windows.Forms.Cursors.Default;
     this.B_ReadMemory.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.B_ReadMemory.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.B_ReadMemory.Location    = new System.Drawing.Point(8, 272);
     this.B_ReadMemory.Name        = "B_ReadMemory";
     this.B_ReadMemory.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.B_ReadMemory.Size        = new System.Drawing.Size(345, 29);
     this.B_ReadMemory.TabIndex    = 17;
     this.B_ReadMemory.Text        = "Read 256 bytes from this physical memory adrress ==>";
     this.B_ReadMemory.Click      += new System.EventHandler(this.B_ReadMemory_Click);
     //
     // Label12
     //
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label12.Font        = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.Label12.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label12.Location    = new System.Drawing.Point(16, 8);
     this.Label12.Name        = "Label12";
     this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label12.Size        = new System.Drawing.Size(73, 17);
     this.Label12.TabIndex    = 24;
     this.Label12.Text        = "Addr(hex)";
     //
     // Label13
     //
     this.Label13.BackColor   = System.Drawing.SystemColors.Control;
     this.Label13.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label13.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label13.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label13.Location    = new System.Drawing.Point(128, 8);
     this.Label13.Name        = "Label13";
     this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label13.Size        = new System.Drawing.Size(129, 17);
     this.Label13.TabIndex    = 23;
     this.Label13.Text        = "H E X A D E C I M A L";
     //
     // Label14
     //
     this.Label14.BackColor   = System.Drawing.SystemColors.Control;
     this.Label14.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label14.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label14.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label14.Location    = new System.Drawing.Point(344, 8);
     this.Label14.Name        = "Label14";
     this.Label14.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label14.Size        = new System.Drawing.Size(89, 17);
     this.Label14.TabIndex    = 22;
     this.Label14.Text        = "A S C I I";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(487, 32);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(130, 16);
     this.label6.TabIndex = 46;
     this.label6.Text     = "(c) 2005, EnTech Taiwan";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(528, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(48, 16);
     this.label3.TabIndex = 45;
     this.label3.Text     = "TVicPort";
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize     = true;
     this.linkLabel2.Location     = new System.Drawing.Point(487, 80);
     this.linkLabel2.Name         = "linkLabel2";
     this.linkLabel2.Size         = new System.Drawing.Size(131, 16);
     this.linkLabel2.TabIndex     = 51;
     this.linkLabel2.TabStop      = true;
     this.linkLabel2.Text         = "*****@*****.**";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize     = true;
     this.linkLabel1.Location     = new System.Drawing.Point(476, 56);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(152, 16);
     this.linkLabel1.TabIndex     = 50;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "http://www.entechtaiwan.com";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // L_Days
     //
     this.L_Days.Location  = new System.Drawing.Point(472, 112);
     this.L_Days.Name      = "L_Days";
     this.L_Days.Size      = new System.Drawing.Size(160, 16);
     this.L_Days.TabIndex  = 52;
     this.L_Days.Text      = "Evaluation Days Left: ??";
     this.L_Days.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // MemForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(656, 309);
     this.Controls.Add(this.L_Days);
     this.Controls.Add(this.linkLabel2);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.B_Exit);
     this.Controls.Add(this.Close_Driver);
     this.Controls.Add(this.Open_Driver);
     this.Controls.Add(this.ListAddr);
     this.Controls.Add(this.ListHex);
     this.Controls.Add(this.ListAscii);
     this.Controls.Add(this.E_Base);
     this.Controls.Add(this.B_ReadMemory);
     this.Controls.Add(this.Label12);
     this.Controls.Add(this.Label13);
     this.Controls.Add(this.Label14);
     this.Icon    = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name    = "MemForm";
     this.Text    = "Physical Memory Sample Application";
     this.Load   += new System.EventHandler(this.Form1_Load);
     this.Closed += new System.EventHandler(this.Form1_Closed);
     this.ResumeLayout(false);
 }
Example #40
0
        /// <summary>
        /// 设置链接的格式化文本,并附上链接。 &lt;!NAME&gt;LINK TEXT&lt;/!&gt;
        /// </summary>
        /// <param name="link"></param>
        /// <param name="text"></param>
        public static void SetLink(this LinkLabel link, string text)
        {
            if (link == null || text == null)
            {
                return;
            }

            //分析链接
            var matches = Regex.Matches(text, @"<(/?)!([^>]*)>", RegexOptions.IgnoreCase);

            if (matches.Count == 0)
            {
                link.Text     = text;
                link.LinkArea = new LinkArea(0, text.Length);
            }
            else
            {
                //分析
                var            links     = new List <LinkLabel.Link>(matches.Count / 2);
                LinkLabel.Link tlink     = null;
                var            sb        = new StringBuilder(text.Length);
                var            lastIndex = 0;

                for (int i = 0; i < matches.Count; i++)
                {
                    var m   = matches[i];
                    var tag = m.Groups[1].Value;

                    if (m.Index > lastIndex)
                    {
                        sb.Append(text.Substring(lastIndex, m.Index - lastIndex));
                    }

                    if (tag == "/")
                    {
                        if (tlink != null)
                        {
                            tlink.Length = sb.Length - tlink.Start;
                            links.Add(tlink);
                            tlink = null;
                        }
                    }
                    else
                    {
                        if (tlink == null)
                        {
                            tlink = new LinkLabel.Link()
                            {
                                Start = sb.Length,
                                Name  = m.Groups[2].Value ?? ""
                            };
                        }
                    }
                    lastIndex = m.Index + m.Length;
                }
                if (lastIndex < text.Length)
                {
                    sb.Append(text.Substring(lastIndex, text.Length - lastIndex));
                }

                link.Text = sb.ToString();
                link.Links.Clear();
                links.ForEach(_ => link.Links.Add(_));
            }
        }
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.addButton   = new System.Windows.Forms.Button();
     this.catalogGrid = new System.Windows.Forms.DataGrid();
     this.cartLabel   = new System.Windows.Forms.Label();
     this.lnkShowHelp = new System.Windows.Forms.LinkLabel();
     this.buttonPanel = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.catalogGrid)).BeginInit();
     this.buttonPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // addButton
     //
     this.addButton.Location = new System.Drawing.Point(384, 16);
     this.addButton.Name     = "addButton";
     this.addButton.Size     = new System.Drawing.Size(96, 24);
     this.addButton.TabIndex = 1;
     this.addButton.Text     = "Add to cart";
     this.addButton.Click   += new System.EventHandler(this.addButton_Click);
     //
     // catalogGrid
     //
     this.catalogGrid.DataMember      = "";
     this.catalogGrid.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.catalogGrid.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.catalogGrid.Location        = new System.Drawing.Point(0, 64);
     this.catalogGrid.Name            = "catalogGrid";
     this.catalogGrid.Size            = new System.Drawing.Size(488, 205);
     this.catalogGrid.TabIndex        = 2;
     //
     // cartLabel
     //
     this.cartLabel.Location = new System.Drawing.Point(8, 32);
     this.cartLabel.Name     = "cartLabel";
     this.cartLabel.Size     = new System.Drawing.Size(72, 16);
     this.cartLabel.TabIndex = 3;
     this.cartLabel.Text     = "Catalog:";
     //
     // lnkShowHelp
     //
     this.lnkShowHelp.Location     = new System.Drawing.Point(8, 8);
     this.lnkShowHelp.Name         = "lnkShowHelp";
     this.lnkShowHelp.Size         = new System.Drawing.Size(56, 16);
     this.lnkShowHelp.TabIndex     = 7;
     this.lnkShowHelp.TabStop      = true;
     this.lnkShowHelp.Text         = "Help";
     this.lnkShowHelp.TextAlign    = System.Drawing.ContentAlignment.TopCenter;
     this.lnkShowHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkShowHelp_LinkClicked);
     //
     // buttonPanel
     //
     this.buttonPanel.Controls.Add(this.lnkShowHelp);
     this.buttonPanel.Controls.Add(this.cartLabel);
     this.buttonPanel.Controls.Add(this.addButton);
     this.buttonPanel.Dock     = System.Windows.Forms.DockStyle.Top;
     this.buttonPanel.Location = new System.Drawing.Point(0, 0);
     this.buttonPanel.Name     = "buttonPanel";
     this.buttonPanel.Size     = new System.Drawing.Size(488, 64);
     this.buttonPanel.TabIndex = 8;
     //
     // browsecatalog
     //
     this.Controls.Add(this.catalogGrid);
     this.Controls.Add(this.buttonPanel);
     this.Name  = "browsecatalog";
     this.Size  = new System.Drawing.Size(488, 269);
     this.Load += new System.EventHandler(this.browsecatalog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.catalogGrid)).EndInit();
     this.buttonPanel.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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormAbout));
     this.label1     = new System.Windows.Forms.Label();
     this.label2     = new System.Windows.Forms.Label();
     this.label4     = new System.Windows.Forms.Label();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(24, 64);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(272, 24);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Release";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(24, 32);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(272, 23);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Microsoft\u00AE Font Validator";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(24, 136);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(272, 23);
     this.label4.TabIndex  = 4;
     this.label4.Text      = "Provided by Microsoft\'s typography group";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // linkLabel2
     //
     this.linkLabel2.Location     = new System.Drawing.Point(24, 160);
     this.linkLabel2.Name         = "linkLabel2";
     this.linkLabel2.Size         = new System.Drawing.Size(272, 23);
     this.linkLabel2.TabIndex     = 5;
     this.linkLabel2.TabStop      = true;
     this.linkLabel2.Text         = "http://www.microsoft.com/typography/";
     this.linkLabel2.TextAlign    = System.Drawing.ContentAlignment.TopCenter;
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // FormAbout
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(320, 222);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.linkLabel2,
         this.label4,
         this.label2,
         this.label1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     //this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormAbout";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "About";
     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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(About));
     this.textBox2    = new System.Windows.Forms.TextBox();
     this.label1      = new System.Windows.Forms.Label();
     this.button1     = new System.Windows.Forms.Button();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupBox1   = new System.Windows.Forms.GroupBox();
     this.linkLabel1  = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // textBox2
     //
     this.textBox2.AutoSize    = false;
     this.textBox2.BackColor   = System.Drawing.SystemColors.Control;
     this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox2.Location    = new System.Drawing.Point(120, 11);
     this.textBox2.Multiline   = true;
     this.textBox2.Name        = "textBox2";
     this.textBox2.Size        = new System.Drawing.Size(192, 61);
     this.textBox2.TabIndex    = 1;
     this.textBox2.TabStop     = false;
     this.textBox2.Text        = "Query Express\r\nVersion 3.9\r\nWritten by Joseph Albahari\r\nOleDb Browser written by " +
                                 "Klaus Evers";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 120);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(328, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Free for public distribution";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location     = new System.Drawing.Point(240, 152);
     this.button1.Name         = "button1";
     this.button1.Size         = new System.Drawing.Size(87, 25);
     this.button1.TabIndex     = 0;
     this.button1.Text         = "OK";
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(24, 19);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(32, 32);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 3;
     this.pictureBox1.TabStop  = false;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(8, 104);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(320, 4);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize     = true;
     this.linkLabel1.Location     = new System.Drawing.Point(120, 75);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(125, 13);
     this.linkLabel1.TabIndex     = 4;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "http://www.albahari.com";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // About
     //
     this.AcceptButton      = this.button1;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(340, 188);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.groupBox1,
         this.linkLabel1,
         this.label1,
         this.pictureBox1,
         this.textBox2,
         this.button1
     });
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "About";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "About Query Express";
     this.ResumeLayout(false);
 }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox));
     this.pictureBox1           = new System.Windows.Forms.PictureBox();
     this.label1                = new System.Windows.Forms.Label();
     this.linkWwwOpenMIOrg      = new System.Windows.Forms.LinkLabel();
     this.buttonClose           = new System.Windows.Forms.Button();
     this.label5                = new System.Windows.Forms.Label();
     this.label2                = new System.Windows.Forms.Label();
     this.label7                = new System.Windows.Forms.Label();
     this.linkWwwSourceforgeNet = new System.Windows.Forms.LinkLabel();
     this.label9                = new System.Windows.Forms.Label();
     this.label10               = new System.Windows.Forms.Label();
     this.label11               = new System.Windows.Forms.Label();
     this.label12               = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(4, 4);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(136, 436);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(148, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(380, 432);
     this.label1.TabIndex = 1;
     this.label1.Text     = resources.GetString("label1.Text");
     this.label1.Click   += new System.EventHandler(this.label1_Click);
     //
     // linkWwwOpenMIOrg
     //
     this.linkWwwOpenMIOrg.Location     = new System.Drawing.Point(60, 459);
     this.linkWwwOpenMIOrg.Name         = "linkWwwOpenMIOrg";
     this.linkWwwOpenMIOrg.Size         = new System.Drawing.Size(164, 16);
     this.linkWwwOpenMIOrg.TabIndex     = 2;
     this.linkWwwOpenMIOrg.TabStop      = true;
     this.linkWwwOpenMIOrg.Text         = "http://www.openmi.org";
     this.linkWwwOpenMIOrg.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkWwwOpenMIOrg_LinkClicked);
     //
     // buttonClose
     //
     this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonClose.FlatStyle    = System.Windows.Forms.FlatStyle.Popup;
     this.buttonClose.Location     = new System.Drawing.Point(413, 522);
     this.buttonClose.Name         = "buttonClose";
     this.buttonClose.Size         = new System.Drawing.Size(92, 32);
     this.buttonClose.TabIndex     = 10;
     this.buttonClose.Text         = "Close";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12, 443);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(80, 16);
     this.label5.TabIndex = 8;
     this.label5.Text     = "Contact info:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(20, 459);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(36, 16);
     this.label2.TabIndex = 11;
     this.label2.Text     = "URL:";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(20, 491);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(156, 16);
     this.label7.TabIndex = 13;
     this.label7.Text     = "Discussion forum available at:";
     //
     // linkWwwSourceforgeNet
     //
     this.linkWwwSourceforgeNet.Location     = new System.Drawing.Point(180, 491);
     this.linkWwwSourceforgeNet.Name         = "linkWwwSourceforgeNet";
     this.linkWwwSourceforgeNet.Size         = new System.Drawing.Size(207, 16);
     this.linkWwwSourceforgeNet.TabIndex     = 15;
     this.linkWwwSourceforgeNet.TabStop      = true;
     this.linkWwwSourceforgeNet.Text         = "http://sourceforge.net/projects/openmi/";
     this.linkWwwSourceforgeNet.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkWwwSourceforgeNet_LinkClicked);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(12, 512);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(68, 16);
     this.label9.TabIndex = 17;
     this.label9.Text     = "Created on:";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(84, 512);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(92, 16);
     this.label10.TabIndex = 18;
     this.label10.Text     = "January 2010";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(84, 532);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(80, 16);
     this.label11.TabIndex = 20;
     this.label11.Text     = "2.0";
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(12, 532);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(68, 16);
     this.label12.TabIndex = 19;
     this.label12.Text     = "Version:";
     //
     // AboutBox
     //
     this.AcceptButton      = this.buttonClose;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.buttonClose;
     this.ClientSize        = new System.Drawing.Size(534, 563);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.linkWwwSourceforgeNet);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.buttonClose);
     this.Controls.Add(this.linkWwwOpenMIOrg);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "AboutBox";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.Text            = "About \"OpenMI Editor 2\" ...";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     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()
 {
     this.components     = new System.ComponentModel.Container();
     this.m_button_start = new System.Windows.Forms.Button();
     this.m_button_stop  = new System.Windows.Forms.Button();
     this.m_textbox_from = new System.Windows.Forms.TextBox();
     this.m_textbox_to   = new System.Windows.Forms.TextBox();
     this.label6         = new System.Windows.Forms.Label();
     this.label7         = new System.Windows.Forms.Label();
     this.m_checkbox_include_subfolders = new System.Windows.Forms.CheckBox();
     this.m_richtext_log             = new System.Windows.Forms.RichTextBox();
     this.m_label_log                = new System.Windows.Forms.Label();
     this.label1                     = new System.Windows.Forms.Label();
     this.m_label_current_job_number = new System.Windows.Forms.Label();
     this.m_label_time_elapsed       = new System.Windows.Forms.Label();
     this.m_timer1                   = new System.Windows.Forms.Timer(this.components);
     this.label11                    = new System.Windows.Forms.Label();
     this.linkwebsite                = new System.Windows.Forms.LinkLabel();
     this.groupFormat                = new System.Windows.Forms.GroupBox();
     this.radioPSD                   = new System.Windows.Forms.RadioButton();
     this.radioTIF                   = new System.Windows.Forms.RadioButton();
     this.label2                     = new System.Windows.Forms.Label();
     this.buttonBrowseFrom           = new System.Windows.Forms.Button();
     this.buttonBrowseTo             = new System.Windows.Forms.Button();
     this.label3                     = new System.Windows.Forms.Label();
     this.folderBrowserDialog1       = new System.Windows.Forms.FolderBrowserDialog();
     this.label4                     = new System.Windows.Forms.Label();
     this.linkTraceFile              = new System.Windows.Forms.LinkLabel();
     this.groupFormat.SuspendLayout();
     this.SuspendLayout();
     //
     // m_button_start
     //
     this.m_button_start.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_button_start.Font      = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_button_start.Location  = new System.Drawing.Point(40, 336);
     this.m_button_start.Name      = "m_button_start";
     this.m_button_start.Size      = new System.Drawing.Size(128, 40);
     this.m_button_start.TabIndex  = 1;
     this.m_button_start.Text      = "Start";
     this.m_button_start.Click    += new System.EventHandler(this.m_button_start_Click);
     //
     // m_button_stop
     //
     this.m_button_stop.Location = new System.Drawing.Point(184, 336);
     this.m_button_stop.Name     = "m_button_stop";
     this.m_button_stop.Size     = new System.Drawing.Size(120, 40);
     this.m_button_stop.TabIndex = 2;
     this.m_button_stop.Text     = "Stop";
     this.m_button_stop.Click   += new System.EventHandler(this.m_button_stop_Click);
     //
     // m_textbox_from
     //
     this.m_textbox_from.Location = new System.Drawing.Point(8, 32);
     this.m_textbox_from.Name     = "m_textbox_from";
     this.m_textbox_from.ReadOnly = true;
     this.m_textbox_from.Size     = new System.Drawing.Size(248, 21);
     this.m_textbox_from.TabIndex = 13;
     this.m_textbox_from.Text     = "<Unspecified>";
     //
     // m_textbox_to
     //
     this.m_textbox_to.Location = new System.Drawing.Point(8, 128);
     this.m_textbox_to.Name     = "m_textbox_to";
     this.m_textbox_to.ReadOnly = true;
     this.m_textbox_to.Size     = new System.Drawing.Size(248, 21);
     this.m_textbox_to.TabIndex = 14;
     this.m_textbox_to.Text     = "<Unspecified>";
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.DarkGray;
     this.label6.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location  = new System.Drawing.Point(0, 0);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(344, 24);
     this.label6.TabIndex  = 20;
     this.label6.Text      = "Step 1: Where are the RIF files?";
     //
     // label7
     //
     this.label7.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location  = new System.Drawing.Point(0, 416);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(48, 16);
     this.label7.TabIndex  = 21;
     this.label7.Text      = "Status:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // m_checkbox_include_subfolders
     //
     this.m_checkbox_include_subfolders.Location = new System.Drawing.Point(8, 72);
     this.m_checkbox_include_subfolders.Name     = "m_checkbox_include_subfolders";
     this.m_checkbox_include_subfolders.Size     = new System.Drawing.Size(152, 16);
     this.m_checkbox_include_subfolders.TabIndex = 25;
     this.m_checkbox_include_subfolders.Text     = "Include Subfolders";
     //
     // m_richtext_log
     //
     this.m_richtext_log.AcceptsTab       = true;
     this.m_richtext_log.BackColor        = System.Drawing.SystemColors.Control;
     this.m_richtext_log.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_richtext_log.CausesValidation = false;
     this.m_richtext_log.DetectUrls       = false;
     this.m_richtext_log.HideSelection    = false;
     this.m_richtext_log.Location         = new System.Drawing.Point(48, 544);
     this.m_richtext_log.Name             = "m_richtext_log";
     this.m_richtext_log.Size             = new System.Drawing.Size(272, 128);
     this.m_richtext_log.TabIndex         = 33;
     this.m_richtext_log.TabStop          = false;
     this.m_richtext_log.Text             = "";
     //
     // m_label_log
     //
     this.m_label_log.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_label_log.Location  = new System.Drawing.Point(0, 536);
     this.m_label_log.Name      = "m_label_log";
     this.m_label_log.Size      = new System.Drawing.Size(40, 16);
     this.m_label_log.TabIndex  = 34;
     this.m_label_log.Text      = "Log:";
     this.m_label_log.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.DarkGray;
     this.label1.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location  = new System.Drawing.Point(0, 96);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(344, 24);
     this.label1.TabIndex  = 35;
     this.label1.Text      = "Step 2: Where to put the output files?";
     //
     // m_label_current_job_number
     //
     this.m_label_current_job_number.Location = new System.Drawing.Point(48, 416);
     this.m_label_current_job_number.Name     = "m_label_current_job_number";
     this.m_label_current_job_number.Size     = new System.Drawing.Size(280, 72);
     this.m_label_current_job_number.TabIndex = 43;
     this.m_label_current_job_number.Text     = "<Job>";
     //
     // m_label_time_elapsed
     //
     this.m_label_time_elapsed.Location = new System.Drawing.Point(48, 496);
     this.m_label_time_elapsed.Name     = "m_label_time_elapsed";
     this.m_label_time_elapsed.Size     = new System.Drawing.Size(100, 16);
     this.m_label_time_elapsed.TabIndex = 47;
     this.m_label_time_elapsed.Text     = "<time>";
     //
     // m_timer1
     //
     this.m_timer1.Interval = 1000;
     this.m_timer1.Tick    += new System.EventHandler(this.m_timer1_Tick);
     //
     // label11
     //
     this.label11.Location  = new System.Drawing.Point(0, 496);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(48, 16);
     this.label11.TabIndex  = 50;
     this.label11.Text      = "Time:";
     this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // linkwebsite
     //
     this.linkwebsite.Location     = new System.Drawing.Point(208, 496);
     this.linkwebsite.Name         = "linkwebsite";
     this.linkwebsite.Size         = new System.Drawing.Size(120, 23);
     this.linkwebsite.TabIndex     = 51;
     this.linkwebsite.TabStop      = true;
     this.linkwebsite.Text         = "RIFConverter website";
     this.linkwebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkwebsite_LinkClicked);
     //
     // groupFormat
     //
     this.groupFormat.Controls.Add(this.radioPSD);
     this.groupFormat.Controls.Add(this.radioTIF);
     this.groupFormat.Location = new System.Drawing.Point(8, 216);
     this.groupFormat.Name     = "groupFormat";
     this.groupFormat.Size     = new System.Drawing.Size(144, 72);
     this.groupFormat.TabIndex = 52;
     this.groupFormat.TabStop  = false;
     this.groupFormat.Text     = "To Format";
     //
     // radioPSD
     //
     this.radioPSD.Location = new System.Drawing.Point(8, 40);
     this.radioPSD.Name     = "radioPSD";
     this.radioPSD.Size     = new System.Drawing.Size(56, 24);
     this.radioPSD.TabIndex = 1;
     this.radioPSD.Text     = "PSD";
     //
     // radioTIF
     //
     this.radioTIF.Location = new System.Drawing.Point(8, 16);
     this.radioTIF.Name     = "radioTIF";
     this.radioTIF.Size     = new System.Drawing.Size(56, 24);
     this.radioTIF.TabIndex = 0;
     this.radioTIF.Text     = "TIF";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.DarkGray;
     this.label2.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location  = new System.Drawing.Point(0, 184);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(344, 24);
     this.label2.TabIndex  = 53;
     this.label2.Text      = "Step 3: What kind of conversion?";
     //
     // buttonBrowseFrom
     //
     this.buttonBrowseFrom.Location = new System.Drawing.Point(264, 32);
     this.buttonBrowseFrom.Name     = "buttonBrowseFrom";
     this.buttonBrowseFrom.Size     = new System.Drawing.Size(64, 23);
     this.buttonBrowseFrom.TabIndex = 54;
     this.buttonBrowseFrom.Text     = "Browse";
     this.buttonBrowseFrom.Click   += new System.EventHandler(this.buttonBrowseFrom_Click);
     //
     // buttonBrowseTo
     //
     this.buttonBrowseTo.Location = new System.Drawing.Point(264, 128);
     this.buttonBrowseTo.Name     = "buttonBrowseTo";
     this.buttonBrowseTo.Size     = new System.Drawing.Size(64, 23);
     this.buttonBrowseTo.TabIndex = 55;
     this.buttonBrowseTo.Text     = "Browse";
     this.buttonBrowseTo.Click   += new System.EventHandler(this.buttonBrowseTo_Click);
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.DarkGray;
     this.label3.Font      = new System.Drawing.Font("Trebuchet MS", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location  = new System.Drawing.Point(0, 296);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(344, 24);
     this.label3.TabIndex  = 56;
     this.label3.Text      = "Step 4: Do the conversion";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 160);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(312, 16);
     this.label4.TabIndex = 57;
     this.label4.Text     = "RIFCoverter will not overwrite files that already exist.";
     //
     // linkTraceFile
     //
     this.linkTraceFile.Location     = new System.Drawing.Point(208, 520);
     this.linkTraceFile.Name         = "linkTraceFile";
     this.linkTraceFile.TabIndex     = 58;
     this.linkTraceFile.TabStop      = true;
     this.linkTraceFile.Text         = "Show Debug Trace";
     this.linkTraceFile.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkTraceFile_LinkClicked);
     //
     // RCAppForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(342, 728);
     this.Controls.Add(this.linkTraceFile);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.buttonBrowseTo);
     this.Controls.Add(this.buttonBrowseFrom);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.groupFormat);
     this.Controls.Add(this.linkwebsite);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.m_label_time_elapsed);
     this.Controls.Add(this.m_label_current_job_number);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.m_label_log);
     this.Controls.Add(this.m_richtext_log);
     this.Controls.Add(this.m_button_stop);
     this.Controls.Add(this.m_checkbox_include_subfolders);
     this.Controls.Add(this.m_button_start);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.m_textbox_to);
     this.Controls.Add(this.m_textbox_from);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "RCAppForm";
     this.Text            = "APPTITLE";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.OnClosing);
     this.groupFormat.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #46
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.linkLabel1        = new System.Windows.Forms.LinkLabel();
     this.label3            = new System.Windows.Forms.Label();
     this.cbkbxGuiSetting   = new System.Windows.Forms.CheckBox();
     this.label2            = new System.Windows.Forms.Label();
     this.cbxUpdateReminder = new System.Windows.Forms.ComboBox();
     this.label1            = new System.Windows.Forms.Label();
     this.btnSave           = new System.Windows.Forms.Button();
     this.Cancel            = new System.Windows.Forms.Button();
     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.linkLabel1);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.cbkbxGuiSetting);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.cbxUpdateReminder);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(384, 120);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Settings";
     //
     // linkLabel1
     //
     this.linkLabel1.Location     = new System.Drawing.Point(152, 88);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(224, 23);
     this.linkLabel1.TabIndex     = 5;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "Associate OpenDocument files with AODC";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 88);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(144, 23);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Create a Explorer shortcut:";
     //
     // cbkbxGuiSetting
     //
     this.cbkbxGuiSetting.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.cbkbxGuiSetting.Location   = new System.Drawing.Point(16, 56);
     this.cbkbxGuiSetting.Name       = "cbkbxGuiSetting";
     this.cbkbxGuiSetting.Size       = new System.Drawing.Size(152, 24);
     this.cbkbxGuiSetting.TabIndex   = 3;
     this.cbkbxGuiSetting.Text       = "Save Gui size:";
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location  = new System.Drawing.Point(320, 24);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(48, 23);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Days";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cbxUpdateReminder
     //
     this.cbxUpdateReminder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxUpdateReminder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxUpdateReminder.Items.AddRange(new object[] {
         "5",
         "10",
         "20",
         "Never"
     });
     this.cbxUpdateReminder.Location = new System.Drawing.Point(152, 24);
     this.cbxUpdateReminder.Name     = "cbxUpdateReminder";
     this.cbxUpdateReminder.Size     = new System.Drawing.Size(160, 21);
     this.cbxUpdateReminder.TabIndex = 1;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(16, 24);
     this.label1.Name      = "label1";
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Update reminder:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnSave
     //
     this.btnSave.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.Location     = new System.Drawing.Point(232, 136);
     this.btnSave.Name         = "btnSave";
     this.btnSave.TabIndex     = 1;
     this.btnSave.Text         = "Save";
     this.btnSave.Click       += new System.EventHandler(this.btnSave_Click);
     //
     // Cancel
     //
     this.Cancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location     = new System.Drawing.Point(312, 136);
     this.Cancel.Name         = "Cancel";
     this.Cancel.TabIndex     = 2;
     this.Cancel.Text         = "Cancel";
     //
     // Optionsform
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(402, 168);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "Optionsform";
     this.Text            = "Options";
     this.Load           += new System.EventHandler(this.Optionsform_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                      = new System.ComponentModel.Container();
     this.listViewFormats                 = new System.Windows.Forms.ListView();
     this.columnHeaderFormat              = new System.Windows.Forms.ColumnHeader();
     this.columnHeaderDescription         = new System.Windows.Forms.ColumnHeader();
     this.imageListFormats                = new System.Windows.Forms.ImageList(this.components);
     this.labelInstalledPlugins           = new System.Windows.Forms.Label();
     this.groupBoxFormatDetails           = new System.Windows.Forms.GroupBox();
     this.panelFormatDetails              = new System.Windows.Forms.Panel();
     this.labelContentType                = new System.Windows.Forms.Label();
     this.labelHandledByCaption           = new System.Windows.Forms.Label();
     this.labelContentSourceName          = new System.Windows.Forms.Label();
     this.buttonChange                    = new System.Windows.Forms.Button();
     this.buttonOptions                   = new System.Windows.Forms.Button();
     this.labelContentTypeCaption         = new System.Windows.Forms.Label();
     this.pictureBoxContentSource         = new System.Windows.Forms.PictureBox();
     this.labelNoFormatSelected           = new System.Windows.Forms.Label();
     this.linkLabelMoreAboutLiveClipboard = new System.Windows.Forms.LinkLabel();
     this.labelCaption                    = new System.Windows.Forms.Label();
     this.toolTip = new OpenLiveWriter.Controls.ToolTip2(this.components);
     this.pictureBoxLiveClipboardIcon = new System.Windows.Forms.PictureBox();
     this.groupBoxFormatDetails.SuspendLayout();
     this.panelFormatDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxContentSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLiveClipboardIcon)).BeginInit();
     this.SuspendLayout();
     //
     // listViewFormats
     //
     this.listViewFormats.AutoArrange = false;
     this.listViewFormats.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeaderFormat,
         this.columnHeaderDescription
     });
     this.listViewFormats.FullRowSelect  = true;
     this.listViewFormats.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewFormats.HideSelection  = false;
     this.listViewFormats.Location       = new System.Drawing.Point(8, 84);
     this.listViewFormats.MultiSelect    = false;
     this.listViewFormats.Name           = "listViewFormats";
     this.listViewFormats.Size           = new System.Drawing.Size(348, 189);
     this.listViewFormats.SmallImageList = this.imageListFormats;
     this.listViewFormats.TabIndex       = 3;
     this.listViewFormats.UseCompatibleStateImageBehavior = false;
     this.listViewFormats.View         = System.Windows.Forms.View.Details;
     this.listViewFormats.DoubleClick += new System.EventHandler(this.listViewFormats_DoubleClick);
     //
     // columnHeaderFormat
     //
     this.columnHeaderFormat.Text  = "Format";
     this.columnHeaderFormat.Width = 100;
     //
     // columnHeaderDescription
     //
     this.columnHeaderDescription.Text  = "Description";
     this.columnHeaderDescription.Width = 223;
     //
     // imageListFormats
     //
     this.imageListFormats.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageListFormats.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageListFormats.TransparentColor = System.Drawing.Color.Transparent;
     //
     // labelInstalledPlugins
     //
     this.labelInstalledPlugins.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelInstalledPlugins.Location  = new System.Drawing.Point(8, 66);
     this.labelInstalledPlugins.Name      = "labelInstalledPlugins";
     this.labelInstalledPlugins.Size      = new System.Drawing.Size(341, 15);
     this.labelInstalledPlugins.TabIndex  = 2;
     this.labelInstalledPlugins.Text      = "&Supported formats:";
     //
     // groupBoxFormatDetails
     //
     this.groupBoxFormatDetails.Controls.Add(this.panelFormatDetails);
     this.groupBoxFormatDetails.Controls.Add(this.labelNoFormatSelected);
     this.groupBoxFormatDetails.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBoxFormatDetails.Location  = new System.Drawing.Point(8, 282);
     this.groupBoxFormatDetails.Name      = "groupBoxFormatDetails";
     this.groupBoxFormatDetails.Size      = new System.Drawing.Size(349, 109);
     this.groupBoxFormatDetails.TabIndex  = 4;
     this.groupBoxFormatDetails.TabStop   = false;
     this.groupBoxFormatDetails.Text      = "Details for \'vCalendar\' format";
     //
     // panelFormatDetails
     //
     this.panelFormatDetails.Controls.Add(this.labelContentType);
     this.panelFormatDetails.Controls.Add(this.labelHandledByCaption);
     this.panelFormatDetails.Controls.Add(this.labelContentSourceName);
     this.panelFormatDetails.Controls.Add(this.buttonChange);
     this.panelFormatDetails.Controls.Add(this.buttonOptions);
     this.panelFormatDetails.Controls.Add(this.labelContentTypeCaption);
     this.panelFormatDetails.Controls.Add(this.pictureBoxContentSource);
     this.panelFormatDetails.Location = new System.Drawing.Point(7, 16);
     this.panelFormatDetails.Name     = "panelFormatDetails";
     this.panelFormatDetails.Size     = new System.Drawing.Size(339, 89);
     this.panelFormatDetails.TabIndex = 0;
     //
     // labelContentType
     //
     this.labelContentType.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelContentType.Location  = new System.Drawing.Point(2, 67);
     this.labelContentType.Name      = "labelContentType";
     this.labelContentType.Size      = new System.Drawing.Size(224, 16);
     this.labelContentType.TabIndex  = 5;
     this.labelContentType.Text      = "vcalendar (application/xhtml+xml)";
     //
     // labelHandledByCaption
     //
     this.labelHandledByCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelHandledByCaption.Location  = new System.Drawing.Point(2, 7);
     this.labelHandledByCaption.Name      = "labelHandledByCaption";
     this.labelHandledByCaption.Size      = new System.Drawing.Size(186, 15);
     this.labelHandledByCaption.TabIndex  = 0;
     this.labelHandledByCaption.Text      = "Handled by:";
     //
     // labelContentSourceName
     //
     this.labelContentSourceName.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelContentSourceName.Location  = new System.Drawing.Point(26, 23);
     this.labelContentSourceName.Name      = "labelContentSourceName";
     this.labelContentSourceName.Size      = new System.Drawing.Size(136, 15);
     this.labelContentSourceName.TabIndex  = 1;
     this.labelContentSourceName.Text      = "Open Live Writer";
     //
     // buttonChange
     //
     this.buttonChange.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.buttonChange.Location  = new System.Drawing.Point(259, 10);
     this.buttonChange.Name      = "buttonChange";
     this.buttonChange.Size      = new System.Drawing.Size(75, 23);
     this.buttonChange.TabIndex  = 2;
     this.buttonChange.Text      = "Change...";
     this.buttonChange.Click    += new System.EventHandler(this.buttonChange_Click);
     //
     // buttonOptions
     //
     this.buttonOptions.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.buttonOptions.Location  = new System.Drawing.Point(259, 40);
     this.buttonOptions.Name      = "buttonOptions";
     this.buttonOptions.Size      = new System.Drawing.Size(75, 23);
     this.buttonOptions.TabIndex  = 4;
     this.buttonOptions.Text      = "Options...";
     this.buttonOptions.Click    += new System.EventHandler(this.buttonOptions_Click);
     //
     // labelContentTypeCaption
     //
     this.labelContentTypeCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelContentTypeCaption.Location  = new System.Drawing.Point(2, 51);
     this.labelContentTypeCaption.Name      = "labelContentTypeCaption";
     this.labelContentTypeCaption.Size      = new System.Drawing.Size(188, 16);
     this.labelContentTypeCaption.TabIndex  = 3;
     this.labelContentTypeCaption.Text      = "Content type:";
     //
     // pictureBoxContentSource
     //
     this.pictureBoxContentSource.Location = new System.Drawing.Point(2, 21);
     this.pictureBoxContentSource.Name     = "pictureBoxContentSource";
     this.pictureBoxContentSource.Size     = new System.Drawing.Size(16, 16);
     this.pictureBoxContentSource.TabIndex = 0;
     this.pictureBoxContentSource.TabStop  = false;
     //
     // labelNoFormatSelected
     //
     this.labelNoFormatSelected.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelNoFormatSelected.Location  = new System.Drawing.Point(8, 41);
     this.labelNoFormatSelected.Name      = "labelNoFormatSelected";
     this.labelNoFormatSelected.Size      = new System.Drawing.Size(332, 23);
     this.labelNoFormatSelected.TabIndex  = 1;
     this.labelNoFormatSelected.Text      = "(No format selected)";
     this.labelNoFormatSelected.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // linkLabelMoreAboutLiveClipboard
     //
     this.linkLabelMoreAboutLiveClipboard.AutoSize     = true;
     this.linkLabelMoreAboutLiveClipboard.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.linkLabelMoreAboutLiveClipboard.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
     this.linkLabelMoreAboutLiveClipboard.LinkColor    = System.Drawing.SystemColors.HotTrack;
     this.linkLabelMoreAboutLiveClipboard.Location     = new System.Drawing.Point(34, 422);
     this.linkLabelMoreAboutLiveClipboard.Name         = "linkLabelMoreAboutLiveClipboard";
     this.linkLabelMoreAboutLiveClipboard.Size         = new System.Drawing.Size(144, 13);
     this.linkLabelMoreAboutLiveClipboard.TabIndex     = 5;
     this.linkLabelMoreAboutLiveClipboard.TabStop      = true;
     this.linkLabelMoreAboutLiveClipboard.Text         = "More about Live Clipboard...";
     //
     // labelCaption
     //
     this.labelCaption.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.labelCaption.Location  = new System.Drawing.Point(8, 32);
     this.labelCaption.Name      = "labelCaption";
     this.labelCaption.Size      = new System.Drawing.Size(341, 32);
     this.labelCaption.TabIndex  = 1;
     this.labelCaption.Text      = "You can paste web content that supports the Live Clipboard format into {0}.";
     //
     // pictureBoxLiveClipboardIcon
     //
     this.pictureBoxLiveClipboardIcon.Location = new System.Drawing.Point(14, 420);
     this.pictureBoxLiveClipboardIcon.Name     = "pictureBoxLiveClipboardIcon";
     this.pictureBoxLiveClipboardIcon.Size     = new System.Drawing.Size(16, 16);
     this.pictureBoxLiveClipboardIcon.TabIndex = 6;
     this.pictureBoxLiveClipboardIcon.TabStop  = false;
     //
     // LiveClipboardPreferencesPanel
     //
     this.AccessibleName = "Live Clipboard";
     this.Controls.Add(this.pictureBoxLiveClipboardIcon);
     this.Controls.Add(this.labelCaption);
     this.Controls.Add(this.linkLabelMoreAboutLiveClipboard);
     this.Controls.Add(this.groupBoxFormatDetails);
     this.Controls.Add(this.labelInstalledPlugins);
     this.Controls.Add(this.listViewFormats);
     this.Name      = "LiveClipboardPreferencesPanel";
     this.PanelName = "Live Clipboard";
     this.Size      = new System.Drawing.Size(370, 449);
     this.Controls.SetChildIndex(this.listViewFormats, 0);
     this.Controls.SetChildIndex(this.labelInstalledPlugins, 0);
     this.Controls.SetChildIndex(this.groupBoxFormatDetails, 0);
     this.Controls.SetChildIndex(this.linkLabelMoreAboutLiveClipboard, 0);
     this.Controls.SetChildIndex(this.labelCaption, 0);
     this.Controls.SetChildIndex(this.pictureBoxLiveClipboardIcon, 0);
     this.groupBoxFormatDetails.ResumeLayout(false);
     this.panelFormatDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxContentSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLiveClipboardIcon)).EndInit();
     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.Windows.Forms.Label label2;
     System.Windows.Forms.Label label3;
     System.Windows.Forms.Label label4;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
     this._linkLabelAbout    = new System.Windows.Forms.LinkLabel();
     this.button1            = new System.Windows.Forms.Button();
     this._lblFromReflection = new System.Windows.Forms.Label();
     this._txtkey            = new System.Windows.Forms.TextBox();
     this._cbxProduct        = new System.Windows.Forms.ComboBox();
     this.richTextBox1       = new System.Windows.Forms.RichTextBox();
     label2 = new System.Windows.Forms.Label();
     label3 = new System.Windows.Forms.Label();
     label4 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(15, 198);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(119, 13);
     label2.TabIndex = 4;
     label2.Text     = "Microsoft License Keys:";
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(12, 262);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(46, 13);
     label3.TabIndex = 4;
     label3.Text     = "CD Key:";
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Location = new System.Drawing.Point(12, 198);
     label4.Name     = "label4";
     label4.Size     = new System.Drawing.Size(119, 13);
     label4.TabIndex = 4;
     label4.Text     = "Microsoft License Keys:";
     //
     // _linkLabelAbout
     //
     this._linkLabelAbout.LinkArea  = new System.Windows.Forms.LinkArea(36, 0);
     this._linkLabelAbout.Location  = new System.Drawing.Point(15, 327);
     this._linkLabelAbout.Name      = "_linkLabelAbout";
     this._linkLabelAbout.Size      = new System.Drawing.Size(246, 24);
     this._linkLabelAbout.TabIndex  = 0;
     this._linkLabelAbout.Text      = "Copyright ?2008  Decebal Mihailescu";
     this._linkLabelAbout.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this._linkLabelAbout.UseCompatibleTextRendering = true;
     this._linkLabelAbout.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelAbout_LinkClicked);
     //
     // button1
     //
     this.button1.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.button1.Location                = new System.Drawing.Point(212, 354);
     this.button1.Name                    = "button1";
     this.button1.Size                    = new System.Drawing.Size(75, 23);
     this.button1.TabIndex                = 1;
     this.button1.Text                    = "&OK";
     this.button1.UseVisualStyleBackColor = true;
     //
     // _lblFromReflection
     //
     this._lblFromReflection.AutoSize = true;
     this._lblFromReflection.Location = new System.Drawing.Point(12, 9);
     this._lblFromReflection.Name     = "_lblFromReflection";
     this._lblFromReflection.Size     = new System.Drawing.Size(93, 13);
     this._lblFromReflection.TabIndex = 3;
     this._lblFromReflection.Text     = "text from reflection";
     //
     // _txtkey
     //
     this._txtkey.Location = new System.Drawing.Point(15, 288);
     this._txtkey.Name     = "_txtkey";
     this._txtkey.ReadOnly = true;
     this._txtkey.Size     = new System.Drawing.Size(474, 20);
     this._txtkey.TabIndex = 5;
     //
     // _cbxProduct
     //
     this._cbxProduct.DisplayMember     = "Key";
     this._cbxProduct.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this._cbxProduct.FormattingEnabled = true;
     this._cbxProduct.Location          = new System.Drawing.Point(15, 227);
     this._cbxProduct.Name                  = "_cbxProduct";
     this._cbxProduct.Size                  = new System.Drawing.Size(474, 21);
     this._cbxProduct.TabIndex              = 6;
     this._cbxProduct.ValueMember           = "Value";
     this._cbxProduct.SelectedIndexChanged += new System.EventHandler(this._cbxProduct_SelectedIndexChanged);
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(15, 35);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.ReadOnly = true;
     this.richTextBox1.Size     = new System.Drawing.Size(474, 160);
     this.richTextBox1.TabIndex = 7;
     this.richTextBox1.Text     = resources.GetString("richTextBox1.Text");
     //
     // About
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(501, 385);
     this.ControlBox        = false;
     this.Controls.Add(this.richTextBox1);
     this.Controls.Add(this._cbxProduct);
     this.Controls.Add(this._txtkey);
     this.Controls.Add(label3);
     this.Controls.Add(label4);
     this.Controls.Add(label2);
     this.Controls.Add(this._lblFromReflection);
     this.Controls.Add(this.button1);
     this.Controls.Add(this._linkLabelAbout);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "About";
     this.ShowInTaskbar = false;
     this.Text          = "About";
     this.Load         += new System.EventHandler(this.About_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #49
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmUpdate));
     this.pictureBox1  = new System.Windows.Forms.PictureBox();
     this.panel1       = new System.Windows.Forms.Panel();
     this.label1       = new System.Windows.Forms.Label();
     this.groupBox2    = new System.Windows.Forms.GroupBox();
     this.lvUpdateList = new System.Windows.Forms.ListView();
     this.chFileName   = new System.Windows.Forms.ColumnHeader();
     this.chVersion    = new System.Windows.Forms.ColumnHeader();
     this.chProgress   = new System.Windows.Forms.ColumnHeader();
     this.pbDownFile   = new System.Windows.Forms.ProgressBar();
     this.lbState      = new System.Windows.Forms.Label();
     this.groupBox1    = new System.Windows.Forms.GroupBox();
     this.btnNext      = new System.Windows.Forms.Button();
     this.btnCancel    = new System.Windows.Forms.Button();
     this.panel2       = new System.Windows.Forms.Panel();
     this.label4       = new System.Windows.Forms.Label();
     this.linkLabel1   = new System.Windows.Forms.LinkLabel();
     this.label3       = new System.Windows.Forms.Label();
     this.label2       = new System.Windows.Forms.Label();
     this.label5       = new System.Windows.Forms.Label();
     this.groupBox3    = new System.Windows.Forms.GroupBox();
     this.groupBox4    = new System.Windows.Forms.GroupBox();
     this.btnFinish    = new System.Windows.Forms.Button();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(8, 8);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(96, 240);
     this.pictureBox1.TabIndex = 1;
     this.pictureBox1.TabStop  = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.lvUpdateList);
     this.panel1.Controls.Add(this.pbDownFile);
     this.panel1.Controls.Add(this.lbState);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Location = new System.Drawing.Point(120, 8);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(280, 240);
     this.panel1.TabIndex = 2;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(136, 16);
     this.label1.TabIndex = 9;
     this.label1.Text     = "以下为更新文件列表";
     //
     // groupBox2
     //
     this.groupBox2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox2.Location = new System.Drawing.Point(0, 238);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(280, 2);
     this.groupBox2.TabIndex = 7;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "groupBox2";
     //
     // lvUpdateList
     //
     this.lvUpdateList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.chFileName,
         this.chVersion,
         this.chProgress
     });
     this.lvUpdateList.Location = new System.Drawing.Point(3, 48);
     this.lvUpdateList.Name     = "lvUpdateList";
     this.lvUpdateList.Size     = new System.Drawing.Size(272, 120);
     this.lvUpdateList.TabIndex = 6;
     this.lvUpdateList.View     = System.Windows.Forms.View.Details;
     //
     // chFileName
     //
     this.chFileName.Text  = "组件名";
     this.chFileName.Width = 123;
     //
     // chVersion
     //
     this.chVersion.Text  = "版本号";
     this.chVersion.Width = 98;
     //
     // chProgress
     //
     this.chProgress.Text  = "进度";
     this.chProgress.Width = 47;
     //
     // pbDownFile
     //
     this.pbDownFile.Location = new System.Drawing.Point(3, 200);
     this.pbDownFile.Name     = "pbDownFile";
     this.pbDownFile.Size     = new System.Drawing.Size(274, 17);
     this.pbDownFile.TabIndex = 5;
     //
     // lbState
     //
     this.lbState.Location = new System.Drawing.Point(3, 176);
     this.lbState.Name     = "lbState";
     this.lbState.Size     = new System.Drawing.Size(240, 16);
     this.lbState.TabIndex = 4;
     this.lbState.Text     = "点击“下一步”开始更新文件";
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(0, 32);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(280, 8);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     //
     // btnNext
     //
     this.btnNext.Location = new System.Drawing.Point(224, 264);
     this.btnNext.Name     = "btnNext";
     this.btnNext.Size     = new System.Drawing.Size(80, 24);
     this.btnNext.TabIndex = 3;
     this.btnNext.Text     = "下一步(&N)>";
     this.btnNext.Click   += new System.EventHandler(this.btnNext_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(312, 264);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(80, 24);
     this.btnCancel.TabIndex = 4;
     this.btnCancel.Text     = "取消(&C)";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.linkLabel1);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.groupBox3);
     this.panel2.Controls.Add(this.groupBox4);
     this.panel2.Location = new System.Drawing.Point(8, 264);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(112, 24);
     this.panel2.TabIndex = 5;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(144, 184);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 16);
     this.label4.TabIndex = 13;
     this.label4.Text     = "小小战友";        //中国亿万电器网
     //
     // linkLabel1
     //
     this.linkLabel1.Location     = new System.Drawing.Point(136, 208);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(128, 16);
     this.linkLabel1.TabIndex     = 12;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "";//http://www.e10000.cn
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(24, 120);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(184, 16);
     this.label3.TabIndex = 11;
     this.label3.Text     = "欢迎以后继续关注我们的产品。";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(24, 64);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(232, 48);
     this.label2.TabIndex = 10;
     this.label2.Text     = "     程序更新完成,如果程序更新期间被关闭,点击\"完成\"自动更新程序会自动重新启动系统。";
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(16, 8);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(136, 24);
     this.label5.TabIndex = 9;
     this.label5.Text     = "感谢使用在线升级";
     //
     // groupBox3
     //
     this.groupBox3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox3.Location = new System.Drawing.Point(0, 22);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(112, 2);
     this.groupBox3.TabIndex = 7;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "groupBox2";
     //
     // groupBox4
     //
     this.groupBox4.Location = new System.Drawing.Point(0, 32);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(280, 8);
     this.groupBox4.TabIndex = 1;
     this.groupBox4.TabStop  = false;
     //
     // btnFinish
     //
     this.btnFinish.Location = new System.Drawing.Point(136, 264);
     this.btnFinish.Name     = "btnFinish";
     this.btnFinish.Size     = new System.Drawing.Size(80, 24);
     this.btnFinish.TabIndex = 3;
     this.btnFinish.Text     = "完成(&F)";
     this.btnFinish.Click   += new System.EventHandler(this.btnFinish_Click);
     //
     // FrmUpdate
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(424, 301);
     this.ControlBox        = false;
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.btnFinish);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FrmUpdate";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "自动更新";
     this.Load           += new System.EventHandler(this.FrmUpdate_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #50
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox7    = new System.Windows.Forms.GroupBox();
     this.tb_tn_ukn    = new System.Windows.Forms.TextBox();
     this.label19      = new System.Windows.Forms.Label();
     this.tb_tn_ver    = new System.Windows.Forms.TextBox();
     this.label26      = new System.Windows.Forms.Label();
     this.groupBox6    = new System.Windows.Forms.GroupBox();
     this.ll_tn_add    = new System.Windows.Forms.LinkLabel();
     this.tb_tn_2      = new System.Windows.Forms.TextBox();
     this.label16      = new System.Windows.Forms.Label();
     this.tb_tn_1      = new System.Windows.Forms.TextBox();
     this.label17      = new System.Windows.Forms.Label();
     this.lb_tn        = new System.Windows.Forms.ListBox();
     this.ll_tn_delete = new System.Windows.Forms.LinkLabel();
     this.groupBox15   = new System.Windows.Forms.GroupBox();
     this.tb_tn_tz     = new System.Windows.Forms.TextBox();
     this.label51      = new System.Windows.Forms.Label();
     this.tb_tn_ty     = new System.Windows.Forms.TextBox();
     this.label50      = new System.Windows.Forms.Label();
     this.tb_tn_tx     = new System.Windows.Forms.TextBox();
     this.label49      = new System.Windows.Forms.Label();
     this.groupBox16   = new System.Windows.Forms.GroupBox();
     this.tb_tn_rw     = new System.Windows.Forms.TextBox();
     this.label55      = new System.Windows.Forms.Label();
     this.tb_tn_rz     = new System.Windows.Forms.TextBox();
     this.label52      = new System.Windows.Forms.Label();
     this.tb_tn_ry     = new System.Windows.Forms.TextBox();
     this.label53      = new System.Windows.Forms.Label();
     this.tb_tn_rx     = new System.Windows.Forms.TextBox();
     this.label54      = new System.Windows.Forms.Label();
     this.groupBox12   = new System.Windows.Forms.GroupBox();
     this.tb_tn_a      = new System.Windows.Forms.TextBox();
     this.label30      = new System.Windows.Forms.Label();
     this.tb_tn_az     = new System.Windows.Forms.TextBox();
     this.label31      = new System.Windows.Forms.Label();
     this.tb_tn_ay     = new System.Windows.Forms.TextBox();
     this.label56      = new System.Windows.Forms.Label();
     this.tb_tn_ax     = new System.Windows.Forms.TextBox();
     this.label57      = new System.Windows.Forms.Label();
     this.groupBox18   = new System.Windows.Forms.GroupBox();
     this.tb_tn_er     = new System.Windows.Forms.TextBox();
     this.label60      = new System.Windows.Forms.Label();
     this.tb_tn_ep     = new System.Windows.Forms.TextBox();
     this.label61      = new System.Windows.Forms.Label();
     this.tb_tn_ey     = new System.Windows.Forms.TextBox();
     this.label62      = new System.Windows.Forms.Label();
     this.groupBox7.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox15.SuspendLayout();
     this.groupBox16.SuspendLayout();
     this.groupBox12.SuspendLayout();
     this.groupBox18.SuspendLayout();
     this.SuspendLayout();
     //
     // tTransformNode
     //
     this.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.Controls.Add(this.groupBox7);
     this.Controls.Add(this.groupBox6);
     this.Controls.Add(this.groupBox15);
     this.Controls.Add(this.groupBox16);
     this.Controls.Add(this.groupBox12);
     this.Controls.Add(this.groupBox18);
     this.Location = new System.Drawing.Point(4, 22);
     this.Name     = "tTransformNode";
     this.Size     = new System.Drawing.Size(792, 262);
     this.TabIndex = 2;
     this.Text     = "TransformNode";
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.tb_tn_ukn);
     this.groupBox7.Controls.Add(this.label19);
     this.groupBox7.Controls.Add(this.tb_tn_ver);
     this.groupBox7.Controls.Add(this.label26);
     this.groupBox7.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox7.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox7.Location  = new System.Drawing.Point(8, 7);
     this.groupBox7.Name      = "groupBox7";
     this.groupBox7.Size      = new System.Drawing.Size(296, 73);
     this.groupBox7.TabIndex  = 8;
     this.groupBox7.TabStop   = false;
     this.groupBox7.Text      = "Settings";
     //
     // tb_tn_ukn
     //
     this.tb_tn_ukn.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ukn.Location     = new System.Drawing.Point(136, 40);
     this.tb_tn_ukn.Name         = "tb_tn_ukn";
     this.tb_tn_ukn.Size         = new System.Drawing.Size(88, 21);
     this.tb_tn_ukn.TabIndex     = 26;
     this.tb_tn_ukn.Text         = "0x00000000";
     this.tb_tn_ukn.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label19.Location = new System.Drawing.Point(128, 24);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(109, 17);
     this.label19.TabIndex = 25;
     this.label19.Text     = "GMDC joint index:";
     //
     // tb_tn_ver
     //
     this.tb_tn_ver.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ver.Location     = new System.Drawing.Point(16, 40);
     this.tb_tn_ver.Name         = "tb_tn_ver";
     this.tb_tn_ver.Size         = new System.Drawing.Size(88, 21);
     this.tb_tn_ver.TabIndex     = 24;
     this.tb_tn_ver.Text         = "0x00000000";
     this.tb_tn_ver.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label26.Location = new System.Drawing.Point(8, 24);
     this.label26.Name     = "label26";
     this.label26.Size     = new System.Drawing.Size(52, 17);
     this.label26.TabIndex = 23;
     this.label26.Text     = "Version:";
     //
     // groupBox6
     //
     this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox6.Controls.Add(this.ll_tn_add);
     this.groupBox6.Controls.Add(this.tb_tn_2);
     this.groupBox6.Controls.Add(this.label16);
     this.groupBox6.Controls.Add(this.tb_tn_1);
     this.groupBox6.Controls.Add(this.label17);
     this.groupBox6.Controls.Add(this.lb_tn);
     this.groupBox6.Controls.Add(this.ll_tn_delete);
     this.groupBox6.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox6.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox6.Location  = new System.Drawing.Point(504, 8);
     this.groupBox6.Name      = "groupBox6";
     this.groupBox6.Size      = new System.Drawing.Size(256, 248);
     this.groupBox6.TabIndex  = 6;
     this.groupBox6.TabStop   = false;
     this.groupBox6.Text      = "Child Nodes:";
     //
     // ll_tn_add
     //
     this.ll_tn_add.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ll_tn_add.AutoSize     = true;
     this.ll_tn_add.Location     = new System.Drawing.Point(176, 96);
     this.ll_tn_add.Name         = "ll_tn_add";
     this.ll_tn_add.Size         = new System.Drawing.Size(28, 17);
     this.ll_tn_add.TabIndex     = 6;
     this.ll_tn_add.TabStop      = true;
     this.ll_tn_add.Text         = "add";
     this.ll_tn_add.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.TNItemsAdd);
     //
     // tb_tn_2
     //
     this.tb_tn_2.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_2.Location     = new System.Drawing.Point(160, 72);
     this.tb_tn_2.Name         = "tb_tn_2";
     this.tb_tn_2.Size         = new System.Drawing.Size(88, 21);
     this.tb_tn_2.TabIndex     = 4;
     this.tb_tn_2.Text         = "0x00000000";
     this.tb_tn_2.TextChanged += new System.EventHandler(this.TNChangedItems);
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label16.Location = new System.Drawing.Point(152, 56);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(74, 17);
     this.label16.TabIndex = 3;
     this.label16.Text     = "Child Index:";
     //
     // tb_tn_1
     //
     this.tb_tn_1.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_1.Location     = new System.Drawing.Point(160, 32);
     this.tb_tn_1.Name         = "tb_tn_1";
     this.tb_tn_1.Size         = new System.Drawing.Size(88, 21);
     this.tb_tn_1.TabIndex     = 2;
     this.tb_tn_1.Text         = "0x0000";
     this.tb_tn_1.TextChanged += new System.EventHandler(this.TNChangedItems);
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label17.Location = new System.Drawing.Point(152, 16);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(73, 17);
     this.label17.TabIndex = 1;
     this.label17.Text     = "Unknown 1:";
     //
     // lb_tn
     //
     this.lb_tn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                               | System.Windows.Forms.AnchorStyles.Left)));
     this.lb_tn.Font                  = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lb_tn.IntegralHeight        = false;
     this.lb_tn.Location              = new System.Drawing.Point(8, 24);
     this.lb_tn.Name                  = "lb_tn";
     this.lb_tn.Size                  = new System.Drawing.Size(136, 216);
     this.lb_tn.TabIndex              = 0;
     this.lb_tn.SelectedIndexChanged += new System.EventHandler(this.TNSelect);
     //
     // ll_tn_delete
     //
     this.ll_tn_delete.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ll_tn_delete.AutoSize     = true;
     this.ll_tn_delete.Location     = new System.Drawing.Point(204, 96);
     this.ll_tn_delete.Name         = "ll_tn_delete";
     this.ll_tn_delete.Size         = new System.Drawing.Size(44, 17);
     this.ll_tn_delete.TabIndex     = 5;
     this.ll_tn_delete.TabStop      = true;
     this.ll_tn_delete.Text         = "delete";
     this.ll_tn_delete.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.TNItemsDelete);
     //
     // groupBox15
     //
     this.groupBox15.Controls.Add(this.tb_tn_tz);
     this.groupBox15.Controls.Add(this.label51);
     this.groupBox15.Controls.Add(this.tb_tn_ty);
     this.groupBox15.Controls.Add(this.label50);
     this.groupBox15.Controls.Add(this.tb_tn_tx);
     this.groupBox15.Controls.Add(this.label49);
     this.groupBox15.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox15.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox15.Location  = new System.Drawing.Point(8, 128);
     this.groupBox15.Name      = "groupBox15";
     this.groupBox15.Size      = new System.Drawing.Size(120, 104);
     this.groupBox15.TabIndex  = 25;
     this.groupBox15.TabStop   = false;
     this.groupBox15.Text      = "Translation:";
     //
     // tb_tn_tz
     //
     this.tb_tn_tz.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_tz.Location     = new System.Drawing.Point(40, 72);
     this.tb_tn_tz.Name         = "tb_tn_tz";
     this.tb_tn_tz.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_tz.TabIndex     = 32;
     this.tb_tn_tz.Text         = "0x00000000";
     this.tb_tn_tz.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label51.Location = new System.Drawing.Point(16, 80);
     this.label51.Name     = "label51";
     this.label51.Size     = new System.Drawing.Size(17, 17);
     this.label51.TabIndex = 31;
     this.label51.Text     = "Z:";
     //
     // tb_tn_ty
     //
     this.tb_tn_ty.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ty.Location     = new System.Drawing.Point(40, 48);
     this.tb_tn_ty.Name         = "tb_tn_ty";
     this.tb_tn_ty.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_ty.TabIndex     = 30;
     this.tb_tn_ty.Text         = "0x00000000";
     this.tb_tn_ty.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label50.Location = new System.Drawing.Point(16, 56);
     this.label50.Name     = "label50";
     this.label50.Size     = new System.Drawing.Size(16, 17);
     this.label50.TabIndex = 29;
     this.label50.Text     = "Y:";
     //
     // tb_tn_tx
     //
     this.tb_tn_tx.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_tx.Location     = new System.Drawing.Point(40, 24);
     this.tb_tn_tx.Name         = "tb_tn_tx";
     this.tb_tn_tx.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_tx.TabIndex     = 28;
     this.tb_tn_tx.Text         = "0x00000000";
     this.tb_tn_tx.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label49.Location = new System.Drawing.Point(16, 32);
     this.label49.Name     = "label49";
     this.label49.Size     = new System.Drawing.Size(17, 17);
     this.label49.TabIndex = 27;
     this.label49.Text     = "X:";
     //
     // groupBox16
     //
     this.groupBox16.Controls.Add(this.tb_tn_rw);
     this.groupBox16.Controls.Add(this.label55);
     this.groupBox16.Controls.Add(this.tb_tn_rz);
     this.groupBox16.Controls.Add(this.label52);
     this.groupBox16.Controls.Add(this.tb_tn_ry);
     this.groupBox16.Controls.Add(this.label53);
     this.groupBox16.Controls.Add(this.tb_tn_rx);
     this.groupBox16.Controls.Add(this.label54);
     this.groupBox16.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox16.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox16.Location  = new System.Drawing.Point(136, 104);
     this.groupBox16.Name      = "groupBox16";
     this.groupBox16.Size      = new System.Drawing.Size(120, 128);
     this.groupBox16.TabIndex  = 26;
     this.groupBox16.TabStop   = false;
     this.groupBox16.Text      = "Quaternion:";
     //
     // tb_tn_rw
     //
     this.tb_tn_rw.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_rw.Location     = new System.Drawing.Point(40, 96);
     this.tb_tn_rw.Name         = "tb_tn_rw";
     this.tb_tn_rw.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_rw.TabIndex     = 40;
     this.tb_tn_rw.Text         = "0x00000000";
     this.tb_tn_rw.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label55.Location = new System.Drawing.Point(16, 104);
     this.label55.Name     = "label55";
     this.label55.Size     = new System.Drawing.Size(21, 17);
     this.label55.TabIndex = 39;
     this.label55.Text     = "W:";
     //
     // tb_tn_rz
     //
     this.tb_tn_rz.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_rz.Location     = new System.Drawing.Point(40, 72);
     this.tb_tn_rz.Name         = "tb_tn_rz";
     this.tb_tn_rz.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_rz.TabIndex     = 38;
     this.tb_tn_rz.Text         = "0x00000000";
     this.tb_tn_rz.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label52.Location = new System.Drawing.Point(16, 80);
     this.label52.Name     = "label52";
     this.label52.Size     = new System.Drawing.Size(17, 17);
     this.label52.TabIndex = 37;
     this.label52.Text     = "Z:";
     //
     // tb_tn_ry
     //
     this.tb_tn_ry.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ry.Location     = new System.Drawing.Point(40, 48);
     this.tb_tn_ry.Name         = "tb_tn_ry";
     this.tb_tn_ry.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_ry.TabIndex     = 36;
     this.tb_tn_ry.Text         = "0x00000000";
     this.tb_tn_ry.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label53.Location = new System.Drawing.Point(16, 56);
     this.label53.Name     = "label53";
     this.label53.Size     = new System.Drawing.Size(16, 17);
     this.label53.TabIndex = 35;
     this.label53.Text     = "Y:";
     //
     // tb_tn_rx
     //
     this.tb_tn_rx.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_rx.Location     = new System.Drawing.Point(40, 24);
     this.tb_tn_rx.Name         = "tb_tn_rx";
     this.tb_tn_rx.Size         = new System.Drawing.Size(72, 21);
     this.tb_tn_rx.TabIndex     = 34;
     this.tb_tn_rx.Text         = "0x00000000";
     this.tb_tn_rx.TextChanged += new System.EventHandler(this.TNChangeSettings);
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label54.Location = new System.Drawing.Point(16, 32);
     this.label54.Name     = "label54";
     this.label54.Size     = new System.Drawing.Size(17, 17);
     this.label54.TabIndex = 33;
     this.label54.Text     = "X:";
     //
     // groupBox12
     //
     this.groupBox12.Controls.Add(this.tb_tn_a);
     this.groupBox12.Controls.Add(this.label30);
     this.groupBox12.Controls.Add(this.tb_tn_az);
     this.groupBox12.Controls.Add(this.label31);
     this.groupBox12.Controls.Add(this.tb_tn_ay);
     this.groupBox12.Controls.Add(this.label56);
     this.groupBox12.Controls.Add(this.tb_tn_ax);
     this.groupBox12.Controls.Add(this.label57);
     this.groupBox12.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox12.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox12.Location  = new System.Drawing.Point(264, 104);
     this.groupBox12.Name      = "groupBox12";
     this.groupBox12.Size      = new System.Drawing.Size(112, 128);
     this.groupBox12.TabIndex  = 41;
     this.groupBox12.TabStop   = false;
     this.groupBox12.Text      = "Rotation:";
     //
     // tb_tn_a
     //
     this.tb_tn_a.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_a.Location     = new System.Drawing.Point(64, 96);
     this.tb_tn_a.Name         = "tb_tn_a";
     this.tb_tn_a.Size         = new System.Drawing.Size(40, 21);
     this.tb_tn_a.TabIndex     = 40;
     this.tb_tn_a.Text         = "0";
     this.tb_tn_a.TextChanged += new System.EventHandler(this.TNChangedQuaternion);
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label30.Location = new System.Drawing.Point(16, 104);
     this.label30.Name     = "label30";
     this.label30.Size     = new System.Drawing.Size(41, 17);
     this.label30.TabIndex = 39;
     this.label30.Text     = "Angle:";
     //
     // tb_tn_az
     //
     this.tb_tn_az.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_az.Location     = new System.Drawing.Point(40, 72);
     this.tb_tn_az.Name         = "tb_tn_az";
     this.tb_tn_az.Size         = new System.Drawing.Size(64, 21);
     this.tb_tn_az.TabIndex     = 38;
     this.tb_tn_az.Text         = "0";
     this.tb_tn_az.TextChanged += new System.EventHandler(this.TNChangedQuaternion);
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label31.Location = new System.Drawing.Point(16, 80);
     this.label31.Name     = "label31";
     this.label31.Size     = new System.Drawing.Size(17, 17);
     this.label31.TabIndex = 37;
     this.label31.Text     = "Z:";
     //
     // tb_tn_ay
     //
     this.tb_tn_ay.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ay.Location     = new System.Drawing.Point(40, 48);
     this.tb_tn_ay.Name         = "tb_tn_ay";
     this.tb_tn_ay.Size         = new System.Drawing.Size(64, 21);
     this.tb_tn_ay.TabIndex     = 36;
     this.tb_tn_ay.Text         = "0";
     this.tb_tn_ay.TextChanged += new System.EventHandler(this.TNChangedQuaternion);
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label56.Location = new System.Drawing.Point(16, 56);
     this.label56.Name     = "label56";
     this.label56.Size     = new System.Drawing.Size(16, 17);
     this.label56.TabIndex = 35;
     this.label56.Text     = "Y:";
     //
     // tb_tn_ax
     //
     this.tb_tn_ax.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ax.Location     = new System.Drawing.Point(40, 24);
     this.tb_tn_ax.Name         = "tb_tn_ax";
     this.tb_tn_ax.Size         = new System.Drawing.Size(64, 21);
     this.tb_tn_ax.TabIndex     = 34;
     this.tb_tn_ax.Text         = "0";
     this.tb_tn_ax.TextChanged += new System.EventHandler(this.TNChangedQuaternion);
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label57.Location = new System.Drawing.Point(16, 32);
     this.label57.Name     = "label57";
     this.label57.Size     = new System.Drawing.Size(17, 17);
     this.label57.TabIndex = 33;
     this.label57.Text     = "X:";
     //
     // groupBox18
     //
     this.groupBox18.Controls.Add(this.tb_tn_er);
     this.groupBox18.Controls.Add(this.label60);
     this.groupBox18.Controls.Add(this.tb_tn_ep);
     this.groupBox18.Controls.Add(this.label61);
     this.groupBox18.Controls.Add(this.tb_tn_ey);
     this.groupBox18.Controls.Add(this.label62);
     this.groupBox18.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox18.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.groupBox18.Location  = new System.Drawing.Point(384, 128);
     this.groupBox18.Name      = "groupBox18";
     this.groupBox18.Size      = new System.Drawing.Size(112, 104);
     this.groupBox18.TabIndex  = 42;
     this.groupBox18.TabStop   = false;
     this.groupBox18.Text      = "Euler Rotation:";
     //
     // tb_tn_er
     //
     this.tb_tn_er.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_er.Location     = new System.Drawing.Point(40, 72);
     this.tb_tn_er.Name         = "tb_tn_er";
     this.tb_tn_er.Size         = new System.Drawing.Size(64, 21);
     this.tb_tn_er.TabIndex     = 38;
     this.tb_tn_er.Text         = "0";
     this.tb_tn_er.TextChanged += new System.EventHandler(this.TNChangedEulerQuaternion);
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label60.Location = new System.Drawing.Point(16, 80);
     this.label60.Name     = "label60";
     this.label60.Size     = new System.Drawing.Size(17, 17);
     this.label60.TabIndex = 37;
     this.label60.Text     = "R:";
     //
     // tb_tn_ep
     //
     this.tb_tn_ep.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ep.Location     = new System.Drawing.Point(40, 48);
     this.tb_tn_ep.Name         = "tb_tn_ep";
     this.tb_tn_ep.Size         = new System.Drawing.Size(64, 21);
     this.tb_tn_ep.TabIndex     = 36;
     this.tb_tn_ep.Text         = "0";
     this.tb_tn_ep.TextChanged += new System.EventHandler(this.TNChangedEulerQuaternion);
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label61.Location = new System.Drawing.Point(16, 56);
     this.label61.Name     = "label61";
     this.label61.Size     = new System.Drawing.Size(16, 17);
     this.label61.TabIndex = 35;
     this.label61.Text     = "P:";
     //
     // tb_tn_ey
     //
     this.tb_tn_ey.Font         = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.tb_tn_ey.Location     = new System.Drawing.Point(40, 24);
     this.tb_tn_ey.Name         = "tb_tn_ey";
     this.tb_tn_ey.Size         = new System.Drawing.Size(64, 21);
     this.tb_tn_ey.TabIndex     = 34;
     this.tb_tn_ey.Text         = "0";
     this.tb_tn_ey.TextChanged += new System.EventHandler(this.TNChangedEulerQuaternion);
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Font     = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label62.Location = new System.Drawing.Point(16, 32);
     this.label62.Name     = "label62";
     this.label62.Size     = new System.Drawing.Size(16, 17);
     this.label62.TabIndex = 33;
     this.label62.Text     = "Y:";
     //
     // fShapeRefNode
     //
     this.groupBox7.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.groupBox15.ResumeLayout(false);
     this.groupBox16.ResumeLayout(false);
     this.groupBox12.ResumeLayout(false);
     this.groupBox18.ResumeLayout(false);
     this.ResumeLayout(false);
 }
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.label1              = new System.Windows.Forms.Label();
     this.label_copyright     = new System.Windows.Forms.Label();
     this.linkLabel1          = new System.Windows.Forms.LinkLabel();
     this.button_OK           = new System.Windows.Forms.Button();
     this.textBox_environment = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Location  = new System.Drawing.Point(12, 28);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(348, 18);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "dp2资源管理 dp2rms V3";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label_copyright
     //
     this.label_copyright.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.label_copyright.Location = new System.Drawing.Point(14, 56);
     this.label_copyright.Name     = "label_copyright";
     this.label_copyright.Size     = new System.Drawing.Size(346, 37);
     this.label_copyright.TabIndex = 1;
     this.label_copyright.Text     = "(C) 版权所有 2005-2011 数字平台(北京)软件有限责任公司\\r\\nDigital Platform (Beijing) Software Corp. " +
                                     "Ltd.";
     this.label_copyright.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel1.Location     = new System.Drawing.Point(14, 93);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(346, 18);
     this.linkLabel1.TabIndex     = 2;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "http://www.dp2003.com";
     this.linkLabel1.TextAlign    = System.Drawing.ContentAlignment.MiddleCenter;
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // button_OK
     //
     this.button_OK.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.button_OK.AutoSize = true;
     this.button_OK.Location = new System.Drawing.Point(144, 202);
     this.button_OK.Name     = "button_OK";
     this.button_OK.Size     = new System.Drawing.Size(84, 23);
     this.button_OK.TabIndex = 3;
     this.button_OK.Text     = "确定";
     this.button_OK.Click   += new System.EventHandler(this.button_OK_Click);
     //
     // textBox_environment
     //
     this.textBox_environment.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox_environment.Location  = new System.Drawing.Point(12, 118);
     this.textBox_environment.Multiline = true;
     this.textBox_environment.Name      = "textBox_environment";
     this.textBox_environment.ReadOnly  = true;
     this.textBox_environment.Size      = new System.Drawing.Size(348, 78);
     this.textBox_environment.TabIndex  = 6;
     this.textBox_environment.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // CopyrightDlg
     //
     this.AcceptButton      = this.button_OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(372, 237);
     this.Controls.Add(this.textBox_environment);
     this.Controls.Add(this.button_OK);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.label_copyright);
     this.Controls.Add(this.label1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "CopyrightDlg";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.Text          = "Copyright 版权";
     this.Load         += new System.EventHandler(this.CopyrightDlg_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #52
0
        protected override void InitializeComponent( )
        {
            this.downloadSdkLink = new System.Windows.Forms.LinkLabel( );
            this.label2          = new System.Windows.Forms.Label( );
            this.browse          = new System.Windows.Forms.Button( );
            this.path            = new System.Windows.Forms.TextBox( );
            this.label1          = new System.Windows.Forms.Label( );
            this.SuspendLayout( );

            //
            // downloadSdkLink
            //
            this.downloadSdkLink.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.downloadSdkLink.AutoSize = true;
            this.downloadSdkLink.Location = new System.Drawing.Point(10, 225);
            this.downloadSdkLink.Name     = "downloadSdkLink";
            this.downloadSdkLink.Size     = new System.Drawing.Size(134, 13);
            this.downloadSdkLink.TabIndex = 4;
            this.downloadSdkLink.TabStop  = true;
            this.downloadSdkLink.Text     = Resources.DownloadSDKMessage;
            this.downloadSdkLink.Click   += new EventHandler(downloadSdkLink_Click);
            //
            // label2
            //
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(13, 67);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(96, 13);
            this.label2.TabIndex = 3;
            this.label2.Text     = Resources.SDKPathText;
            //
            // browse
            //
            this.browse.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.browse.Location = new System.Drawing.Point(486, 81);
            this.browse.Name     = "browse";
            this.browse.Size     = new System.Drawing.Size(75, 23);
            this.browse.TabIndex = 2;
            this.browse.Text     = Resources.BrowseText;
            this.browse.UseVisualStyleBackColor = true;
            this.browse.Click += new EventHandler(browse_Click);
            //
            // path
            //
            this.path.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
            this.path.Location = new System.Drawing.Point(16, 83);
            this.path.Name     = "path";
            this.path.Size     = new System.Drawing.Size(464, 20);
            this.path.TabIndex = 1;
            this.path.ReadOnly = true;
            //
            // label1
            //
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.label1.Location = new System.Drawing.Point(13, 13);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(548, 37);
            this.label1.TabIndex = 0;
            this.label1.Text     = Resources.SelectSDKInfoMessage;

            this.Controls.AddRange(new Control[] { this.label1, this.label2, this.path, this.browse, this.downloadSdkLink });


            this.ResumeLayout(false);
        }
Example #53
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要使用代码编辑器修改

        /// 此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmBasicItemPurHis));
            this.fax1                   = new System.Windows.Forms.DataGridTextBoxColumn();
            this.email2                 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.address_cn             = new System.Windows.Forms.DataGridTextBoxColumn();
            this.company_name           = new System.Windows.Forms.DataGridTextBoxColumn();
            this.company_name_cn        = new System.Windows.Forms.DataGridTextBoxColumn();
            this.email1                 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.tel1                   = new System.Windows.Forms.DataGridTextBoxColumn();
            this.createby               = new System.Windows.Forms.DataGridTextBoxColumn();
            this.resume                 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.gen_manager            = new System.Windows.Forms.DataGridTextBoxColumn();
            this.panel3                 = new System.Windows.Forms.Panel();
            this.postcode               = new System.Windows.Forms.DataGridTextBoxColumn();
            this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.address                = new System.Windows.Forms.DataGridTextBoxColumn();
            this.corporation            = new System.Windows.Forms.DataGridTextBoxColumn();
            this.company_id             = new System.Windows.Forms.DataGridTextBoxColumn();
            this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.modifyon               = new System.Windows.Forms.DataGridTextBoxColumn();
            this.createon               = new System.Windows.Forms.DataGridTextBoxColumn();
            this.modifyby               = new System.Windows.Forms.DataGridTextBoxColumn();
            this.panel2                 = new System.Windows.Forms.Panel();
            this.dataGrid1              = new System.Windows.Forms.DataGrid();
            this.dataGridTableStyle1    = new System.Windows.Forms.DataGridTableStyle();
            this.po_code                = new System.Windows.Forms.DataGridTextBoxColumn();
            this.seq_no                 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.so_code                = new System.Windows.Forms.DataGridTextBoxColumn();
            this.item_code              = new System.Windows.Forms.DataGridTextBoxColumn();
            this.item_name              = new System.Windows.Forms.DataGridTextBoxColumn();
            this.item_name_cn           = new System.Windows.Forms.DataGridTextBoxColumn();
            this.item_desc              = new System.Windows.Forms.DataGridTextBoxColumn();
            this.item_desc_cn           = new System.Windows.Forms.DataGridTextBoxColumn();
            this.paymentType            = new System.Windows.Forms.DataGridTextBoxColumn();
            this.item_qty               = new System.Windows.Forms.DataGridTextBoxColumn();
            this.unit                   = new System.Windows.Forms.DataGridTextBoxColumn();
            this.unit_price             = new System.Windows.Forms.DataGridTextBoxColumn();
            this.discountPer            = new System.Windows.Forms.DataGridTextBoxColumn();
            this.Amount                 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.taxRate                = new System.Windows.Forms.DataGridTextBoxColumn();
            this.fact_amount            = new System.Windows.Forms.DataGridTextBoxColumn();
            this.pack_type              = new System.Windows.Forms.DataGridTextBoxColumn();
            this.deliveryDate           = new System.Windows.Forms.DataGridTextBoxColumn();
            this.outsiePackType         = new System.Windows.Forms.DataGridTextBoxColumn();
            this.insidePackType         = new System.Windows.Forms.DataGridTextBoxColumn();
            this.client_orderno         = new System.Windows.Forms.DataGridTextBoxColumn();
            this.remark                 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.panel4                 = new System.Windows.Forms.Panel();
            this.lk_detail              = new System.Windows.Forms.LinkLabel();
            this.fax2                   = new System.Windows.Forms.DataGridTextBoxColumn();
            this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn();
            this.panel1                 = new System.Windows.Forms.Panel();
            this.label1                 = new System.Windows.Forms.Label();
            this.website                = new System.Windows.Forms.DataGridTextBoxColumn();
            this.tel2                   = new System.Windows.Forms.DataGridTextBoxColumn();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // fax1
            //
            this.fax1.Format      = "";
            this.fax1.FormatInfo  = null;
            this.fax1.HeaderText  = "传真1";
            this.fax1.MappingName = "fax1";
            this.fax1.NullText    = "";
            this.fax1.Width       = 75;
            //
            // email2
            //
            this.email2.Format      = "";
            this.email2.FormatInfo  = null;
            this.email2.HeaderText  = "电子邮件2";
            this.email2.MappingName = "email2";
            this.email2.NullText    = "";
            this.email2.Width       = 75;
            //
            // address_cn
            //
            this.address_cn.Format      = "";
            this.address_cn.FormatInfo  = null;
            this.address_cn.HeaderText  = "中文地址";
            this.address_cn.MappingName = "address_cn";
            this.address_cn.NullText    = "";
            this.address_cn.Width       = 75;
            //
            // company_name
            //
            this.company_name.Format      = "";
            this.company_name.FormatInfo  = null;
            this.company_name.HeaderText  = "公司名称";
            this.company_name.MappingName = "company_name";
            this.company_name.NullText    = "";
            this.company_name.Width       = 75;
            //
            // company_name_cn
            //
            this.company_name_cn.Format      = "";
            this.company_name_cn.FormatInfo  = null;
            this.company_name_cn.HeaderText  = "中文名称";
            this.company_name_cn.MappingName = "company_name_cn";
            this.company_name_cn.NullText    = "";
            this.company_name_cn.Width       = 75;
            //
            // email1
            //
            this.email1.Format      = "";
            this.email1.FormatInfo  = null;
            this.email1.HeaderText  = "电子邮件1";
            this.email1.MappingName = "email1";
            this.email1.NullText    = "";
            this.email1.Width       = 75;
            //
            // tel1
            //
            this.tel1.Format      = "";
            this.tel1.FormatInfo  = null;
            this.tel1.HeaderText  = "电话1";
            this.tel1.MappingName = "tel1";
            this.tel1.NullText    = "";
            this.tel1.Width       = 75;
            //
            // createby
            //
            this.createby.Format      = "";
            this.createby.FormatInfo  = null;
            this.createby.HeaderText  = "建立者";
            this.createby.MappingName = "createby";
            this.createby.NullText    = "";
            this.createby.Width       = 75;
            //
            // resume
            //
            this.resume.Format      = "";
            this.resume.FormatInfo  = null;
            this.resume.HeaderText  = "公司描述";
            this.resume.MappingName = "resume";
            this.resume.NullText    = "";
            this.resume.Width       = 75;
            //
            // gen_manager
            //
            this.gen_manager.Format      = "";
            this.gen_manager.FormatInfo  = null;
            this.gen_manager.HeaderText  = "总经理";
            this.gen_manager.MappingName = "gen_manager";
            this.gen_manager.NullText    = "";
            this.gen_manager.Width       = 75;
            //
            // panel3
            //
            this.panel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel3.BackgroundImage")));
            this.panel3.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panel3.Dock            = System.Windows.Forms.DockStyle.Bottom;
            this.panel3.Location        = new System.Drawing.Point(0, 558);
            this.panel3.Name            = "panel3";
            this.panel3.Size            = new System.Drawing.Size(784, 8);
            this.panel3.TabIndex        = 18;
            //
            // postcode
            //
            this.postcode.Format      = "";
            this.postcode.FormatInfo  = null;
            this.postcode.HeaderText  = "邮政编码";
            this.postcode.MappingName = "postcode";
            this.postcode.NullText    = "";
            this.postcode.Width       = 75;
            //
            // dataGridTextBoxColumn2
            //
            this.dataGridTextBoxColumn2.Format      = "";
            this.dataGridTextBoxColumn2.FormatInfo  = null;
            this.dataGridTextBoxColumn2.HeaderText  = "员工姓名";
            this.dataGridTextBoxColumn2.MappingName = "";
            this.dataGridTextBoxColumn2.NullText    = "";
            this.dataGridTextBoxColumn2.Width       = 75;
            //
            // address
            //
            this.address.Format      = "";
            this.address.FormatInfo  = null;
            this.address.HeaderText  = "地址";
            this.address.MappingName = "address";
            this.address.NullText    = "";
            this.address.Width       = 75;
            //
            // corporation
            //
            this.corporation.Format      = "";
            this.corporation.FormatInfo  = null;
            this.corporation.HeaderText  = "公司法人";
            this.corporation.MappingName = "corporation";
            this.corporation.NullText    = "";
            this.corporation.Width       = 75;
            //
            // company_id
            //
            this.company_id.Format      = "";
            this.company_id.FormatInfo  = null;
            this.company_id.HeaderText  = "公司编号";
            this.company_id.MappingName = "company_id";
            this.company_id.NullText    = "";
            this.company_id.Width       = 75;
            //
            // dataGridTextBoxColumn1
            //
            this.dataGridTextBoxColumn1.Format      = "";
            this.dataGridTextBoxColumn1.FormatInfo  = null;
            this.dataGridTextBoxColumn1.HeaderText  = "员工编号";
            this.dataGridTextBoxColumn1.MappingName = "employee_id";
            this.dataGridTextBoxColumn1.NullText    = "";
            this.dataGridTextBoxColumn1.Width       = 75;
            //
            // dataGridTextBoxColumn4
            //
            this.dataGridTextBoxColumn4.Format      = "";
            this.dataGridTextBoxColumn4.FormatInfo  = null;
            this.dataGridTextBoxColumn4.HeaderText  = "性别";
            this.dataGridTextBoxColumn4.MappingName = "Gender";
            this.dataGridTextBoxColumn4.NullText    = "";
            this.dataGridTextBoxColumn4.Width       = 75;
            //
            // modifyon
            //
            this.modifyon.Format      = "";
            this.modifyon.FormatInfo  = null;
            this.modifyon.HeaderText  = "最后修改时间";
            this.modifyon.MappingName = "modifyon";
            this.modifyon.NullText    = "";
            this.modifyon.Width       = 75;
            //
            // createon
            //
            this.createon.Format      = "";
            this.createon.FormatInfo  = null;
            this.createon.HeaderText  = "建立时间";
            this.createon.MappingName = "createon";
            this.createon.NullText    = "";
            this.createon.Width       = 75;
            //
            // modifyby
            //
            this.modifyby.Format      = "";
            this.modifyby.FormatInfo  = null;
            this.modifyby.HeaderText  = "最后修改者";
            this.modifyby.MappingName = "modifyby";
            this.modifyby.NullText    = "";
            this.modifyby.Width       = 75;
            //
            // panel2
            //
            this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
            this.panel2.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panel2.Controls.Add(this.dataGrid1);
            this.panel2.Controls.Add(this.panel4);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 48);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(784, 518);
            this.panel2.TabIndex = 17;
            //
            // dataGrid1
            //
            this.dataGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
            this.dataGrid1.BackgroundColor  = System.Drawing.SystemColors.ActiveCaptionText;
            this.dataGrid1.CaptionBackColor = System.Drawing.SystemColors.ActiveBorder;
            this.dataGrid1.CaptionText      = "采购订单明细";
            this.dataGrid1.CaptionVisible   = false;
            this.dataGrid1.DataMember       = "";
            this.dataGrid1.Font             = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.dataGrid1.HeaderForeColor  = System.Drawing.SystemColors.ControlText;
            this.dataGrid1.Location         = new System.Drawing.Point(0, 8);
            this.dataGrid1.Name             = "dataGrid1";
            this.dataGrid1.ReadOnly         = true;
            this.dataGrid1.Size             = new System.Drawing.Size(776, 496);
            this.dataGrid1.TabIndex         = 1;
            this.dataGrid1.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
                this.dataGridTableStyle1
            });
            //
            // dataGridTableStyle1
            //
            this.dataGridTableStyle1.DataGrid = this.dataGrid1;
            this.dataGridTableStyle1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
                this.po_code,
                this.seq_no,
                this.so_code,
                this.item_code,
                this.item_name,
                this.item_name_cn,
                this.item_desc,
                this.item_desc_cn,
                this.paymentType,
                this.item_qty,
                this.unit,
                this.unit_price,
                this.discountPer,
                this.Amount,
                this.taxRate,
                this.fact_amount,
                this.pack_type,
                this.deliveryDate,
                this.outsiePackType,
                this.insidePackType,
                this.client_orderno,
                this.remark
            });
            this.dataGridTableStyle1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
            this.dataGridTableStyle1.MappingName     = "purchase_po_detail";
            //
            // po_code
            //
            this.po_code.Format      = "";
            this.po_code.FormatInfo  = null;
            this.po_code.HeaderText  = "采购订单号";
            this.po_code.MappingName = "po_code";
            this.po_code.NullText    = "";
            this.po_code.Width       = 75;
            //
            // seq_no
            //
            this.seq_no.Format      = "";
            this.seq_no.FormatInfo  = null;
            this.seq_no.HeaderText  = "货品序号";
            this.seq_no.MappingName = "seq_no";
            this.seq_no.NullText    = "";
            this.seq_no.Width       = 75;
            //
            // so_code
            //
            this.so_code.Format      = "";
            this.so_code.FormatInfo  = null;
            this.so_code.HeaderText  = "销售单号";
            this.so_code.MappingName = "so_code";
            this.so_code.NullText    = "";
            this.so_code.Width       = 75;
            //
            // item_code
            //
            this.item_code.Format      = "";
            this.item_code.FormatInfo  = null;
            this.item_code.HeaderText  = "货品编号";
            this.item_code.MappingName = "item_code";
            this.item_code.NullText    = "";
            this.item_code.Width       = 75;
            //
            // item_name
            //
            this.item_name.Format      = "";
            this.item_name.FormatInfo  = null;
            this.item_name.HeaderText  = "货物名称";
            this.item_name.MappingName = "item_name";
            this.item_name.NullText    = "";
            this.item_name.Width       = 75;
            //
            // item_name_cn
            //
            this.item_name_cn.Format      = "";
            this.item_name_cn.FormatInfo  = null;
            this.item_name_cn.HeaderText  = "货物中文名称";
            this.item_name_cn.MappingName = "item_name_cn";
            this.item_name_cn.NullText    = "";
            this.item_name_cn.Width       = 75;
            //
            // item_desc
            //
            this.item_desc.Format      = "";
            this.item_desc.FormatInfo  = null;
            this.item_desc.HeaderText  = "货物规格";
            this.item_desc.MappingName = "item_desc";
            this.item_desc.NullText    = "";
            this.item_desc.Width       = 75;
            //
            // item_desc_cn
            //
            this.item_desc_cn.Format      = "";
            this.item_desc_cn.FormatInfo  = null;
            this.item_desc_cn.HeaderText  = "货物中文规格";
            this.item_desc_cn.MappingName = "item_desc_cn";
            this.item_desc_cn.NullText    = "";
            this.item_desc_cn.Width       = 75;
            //
            // paymentType
            //
            this.paymentType.Format      = "";
            this.paymentType.FormatInfo  = null;
            this.paymentType.HeaderText  = "付款类型";
            this.paymentType.MappingName = "paymentType";
            this.paymentType.NullText    = "";
            this.paymentType.Width       = 75;
            //
            // item_qty
            //
            this.item_qty.Format      = "";
            this.item_qty.FormatInfo  = null;
            this.item_qty.HeaderText  = "订货数量";
            this.item_qty.MappingName = "item_qty";
            this.item_qty.NullText    = "";
            this.item_qty.Width       = 75;
            //
            // unit
            //
            this.unit.Format      = "";
            this.unit.FormatInfo  = null;
            this.unit.HeaderText  = "单位";
            this.unit.MappingName = "unit";
            this.unit.NullText    = "";
            this.unit.Width       = 75;
            //
            // unit_price
            //
            this.unit_price.Format      = "";
            this.unit_price.FormatInfo  = null;
            this.unit_price.HeaderText  = "单位价格";
            this.unit_price.MappingName = "unit_price";
            this.unit_price.NullText    = "";
            this.unit_price.Width       = 75;
            //
            // discountPer
            //
            this.discountPer.Format      = "";
            this.discountPer.FormatInfo  = null;
            this.discountPer.HeaderText  = "单位价格折扣";
            this.discountPer.MappingName = "discountPer";
            this.discountPer.NullText    = "";
            this.discountPer.Width       = 75;
            //
            // Amount
            //
            this.Amount.Format      = "";
            this.Amount.FormatInfo  = null;
            this.Amount.HeaderText  = "总金额";
            this.Amount.MappingName = "Amount";
            this.Amount.Width       = 75;
            //
            // taxRate
            //
            this.taxRate.Format      = "";
            this.taxRate.FormatInfo  = null;
            this.taxRate.HeaderText  = "税率";
            this.taxRate.MappingName = "taxRate";
            this.taxRate.Width       = 75;
            //
            // fact_amount
            //
            this.fact_amount.Format      = "";
            this.fact_amount.FormatInfo  = null;
            this.fact_amount.HeaderText  = "实际缴税金额";
            this.fact_amount.MappingName = "fact_amount";
            this.fact_amount.NullText    = "";
            this.fact_amount.Width       = 75;
            //
            // pack_type
            //
            this.pack_type.Format      = "";
            this.pack_type.FormatInfo  = null;
            this.pack_type.HeaderText  = "包装方式";
            this.pack_type.MappingName = "pack_type";
            this.pack_type.NullText    = "";
            this.pack_type.Width       = 75;
            //
            // deliveryDate
            //
            this.deliveryDate.Format      = "";
            this.deliveryDate.FormatInfo  = null;
            this.deliveryDate.HeaderText  = "送货日期";
            this.deliveryDate.MappingName = "deliveryDate";
            this.deliveryDate.NullText    = "";
            this.deliveryDate.Width       = 75;
            //
            // outsiePackType
            //
            this.outsiePackType.Format      = "";
            this.outsiePackType.FormatInfo  = null;
            this.outsiePackType.HeaderText  = "外包类型";
            this.outsiePackType.MappingName = "outsiePackType";
            this.outsiePackType.NullText    = "";
            this.outsiePackType.Width       = 75;
            //
            // insidePackType
            //
            this.insidePackType.Format      = "";
            this.insidePackType.FormatInfo  = null;
            this.insidePackType.HeaderText  = "内包类型";
            this.insidePackType.MappingName = "insidePackType";
            this.insidePackType.NullText    = "";
            this.insidePackType.Width       = 75;
            //
            // client_orderno
            //
            this.client_orderno.Format      = "";
            this.client_orderno.FormatInfo  = null;
            this.client_orderno.HeaderText  = "客户订单号";
            this.client_orderno.MappingName = "client_orderno";
            this.client_orderno.NullText    = "";
            this.client_orderno.Width       = 75;
            //
            // remark
            //
            this.remark.Format      = "";
            this.remark.FormatInfo  = null;
            this.remark.HeaderText  = "备注";
            this.remark.MappingName = "remark";
            this.remark.NullText    = "";
            this.remark.Width       = 75;
            //
            // panel4
            //
            this.panel4.BackColor       = System.Drawing.SystemColors.ScrollBar;
            this.panel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel4.BackgroundImage")));
            this.panel4.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panel4.Dock            = System.Windows.Forms.DockStyle.Top;
            this.panel4.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.panel4.Location        = new System.Drawing.Point(0, 0);
            this.panel4.Name            = "panel4";
            this.panel4.Size            = new System.Drawing.Size(780, 8);
            this.panel4.TabIndex        = 0;
            //
            // lk_detail
            //
            this.lk_detail.Location = new System.Drawing.Point(0, 0);
            this.lk_detail.Name     = "lk_detail";
            this.lk_detail.TabIndex = 0;
            //
            // fax2
            //
            this.fax2.Format      = "";
            this.fax2.FormatInfo  = null;
            this.fax2.HeaderText  = "传真2";
            this.fax2.MappingName = "fax2";
            this.fax2.NullText    = "";
            this.fax2.Width       = 75;
            //
            // dataGridTextBoxColumn3
            //
            this.dataGridTextBoxColumn3.Format      = "";
            this.dataGridTextBoxColumn3.FormatInfo  = null;
            this.dataGridTextBoxColumn3.HeaderText  = "英文名";
            this.dataGridTextBoxColumn3.MappingName = "";
            this.dataGridTextBoxColumn3.NullText    = "";
            this.dataGridTextBoxColumn3.Width       = 75;
            //
            // panel1
            //
            this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
            this.panel1.BorderStyle     = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panel1.Controls.Add(this.label1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(784, 48);
            this.panel1.TabIndex = 16;
            //
            // label1
            //
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Dock      = System.Windows.Forms.DockStyle.Fill;
            this.label1.Font      = new System.Drawing.Font("宋体", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.label1.Location  = new System.Drawing.Point(0, 0);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(780, 44);
            this.label1.TabIndex  = 0;
            this.label1.Text      = "采购记录";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // website
            //
            this.website.Format      = "";
            this.website.FormatInfo  = null;
            this.website.HeaderText  = "公司网站";
            this.website.MappingName = "website";
            this.website.NullText    = "";
            this.website.Width       = 75;
            //
            // tel2
            //
            this.tel2.Format      = "";
            this.tel2.FormatInfo  = null;
            this.tel2.HeaderText  = "电话2";
            this.tel2.MappingName = "tel2";
            this.tel2.NullText    = "";
            this.tel2.Width       = 75;
            //
            // frmBasicItemPurHis
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(7, 16);
            this.BackColor         = System.Drawing.SystemColors.ScrollBar;
            this.ClientSize        = new System.Drawing.Size(784, 566);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name            = "frmBasicItemPurHis";
            this.ShowInTaskbar   = false;
            this.Text            = "货品资料";
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Example #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.itemListView      = new System.Windows.Forms.ListView();
     this.filterText        = new System.Windows.Forms.TextBox();
     this.itemPropertyGrid  = new FlashDevelop.Controls.FilteredGrid();
     this.columnHeader      = new System.Windows.Forms.ColumnHeader();
     this.closeButton       = new System.Windows.Forms.Button();
     this.nameLabel         = new System.Windows.Forms.Label();
     this.infoPictureBox    = new System.Windows.Forms.PictureBox();
     this.filterLabel       = new System.Windows.Forms.Label();
     this.infoLabel         = new System.Windows.Forms.Label();
     this.descLabel         = new System.Windows.Forms.Label();
     this.disableCheckBox   = new System.Windows.Forms.CheckBox();
     this.helpLabel         = new System.Windows.Forms.LinkLabel();
     this.clearFilterButton = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.infoPictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // columnHeader
     //
     this.columnHeader.Width = 159;
     //
     // itemListView
     //
     this.itemListView.Anchor        = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left)));
     this.itemListView.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.None;
     this.itemListView.HideSelection = false;
     this.itemListView.Location      = new System.Drawing.Point(12, 12);
     this.itemListView.MultiSelect   = false;
     this.itemListView.Name          = "itemListView";
     this.itemListView.Size          = new System.Drawing.Size(159, 428);
     this.itemListView.TabIndex      = 1;
     this.itemListView.UseCompatibleStateImageBehavior = false;
     this.itemListView.View      = System.Windows.Forms.View.Details;
     this.itemListView.Alignment = ListViewAlignment.Left;
     this.itemListView.Columns.Add(this.columnHeader);
     this.itemListView.SelectedIndexChanged += new System.EventHandler(this.ItemListViewSelectedIndexChanged);
     //
     // itemPropertyGrid
     //
     this.itemPropertyGrid.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.itemPropertyGrid.Location              = new System.Drawing.Point(183, 54);
     this.itemPropertyGrid.Name                  = "itemPropertyGrid";
     this.itemPropertyGrid.Size                  = new System.Drawing.Size(502, 386);
     this.itemPropertyGrid.TabIndex              = 3;
     this.itemPropertyGrid.ToolbarVisible        = false;
     this.itemPropertyGrid.PropertyValueChanged += new PropertyValueChangedEventHandler(this.PropertyValueChanged);
     //
     // closeButton
     //
     this.closeButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.closeButton.Location  = new System.Drawing.Point(586, 447);
     this.closeButton.Name      = "closeButton";
     this.closeButton.Size      = new System.Drawing.Size(100, 23);
     this.closeButton.TabIndex  = 4;
     this.closeButton.Text      = "&Close";
     this.closeButton.UseVisualStyleBackColor = true;
     this.closeButton.Click += new System.EventHandler(this.CloseButtonClick);
     //
     // nameLabel
     //
     this.nameLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.nameLabel.AutoSize  = true;
     this.nameLabel.Enabled   = false;
     this.nameLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.nameLabel.Location  = new System.Drawing.Point(185, 11);
     this.nameLabel.Name      = "nameLabel";
     this.nameLabel.Size      = new System.Drawing.Size(111, 13);
     this.nameLabel.TabIndex  = 0;
     this.nameLabel.Text      = "(no item selected)";
     //
     // infoPictureBox
     //
     this.infoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.infoPictureBox.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.infoPictureBox.Location = new System.Drawing.Point(13, 451);
     this.infoPictureBox.Name     = "infoPictureBox";
     this.infoPictureBox.Size     = new System.Drawing.Size(16, 16);
     this.infoPictureBox.TabIndex = 5;
     this.infoPictureBox.TabStop  = false;
     //
     // infoLabel
     //
     this.infoLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.infoLabel.AutoSize  = true;
     this.infoLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.infoLabel.Location  = new System.Drawing.Point(34, 452);
     this.infoLabel.Name      = "infoLabel";
     this.infoLabel.Size      = new System.Drawing.Size(501, 13);
     this.infoLabel.TabIndex  = 0;
     this.infoLabel.Text      = "Settings will take effect as soon as you edit them successfully but some may require a program restart.";
     //
     // descLabel
     //
     this.descLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.descLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.descLabel.Location  = new System.Drawing.Point(185, 31);
     this.descLabel.Name      = "descLabel";
     this.descLabel.Size      = new System.Drawing.Size(350, 13);
     this.descLabel.TabIndex  = 6;
     this.descLabel.Text      = "Adds a plugin panel to FlashDevelop.";
     //
     // disableCheckBox
     //
     this.disableCheckBox.AutoSize  = true;
     this.disableCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.disableCheckBox.Location  = new System.Drawing.Point(305, 10);
     this.disableCheckBox.Name      = "disableCheckBox";
     this.disableCheckBox.Size      = new System.Drawing.Size(69, 18);
     this.disableCheckBox.TabIndex  = 7;
     this.disableCheckBox.Text      = " Disable";
     this.disableCheckBox.UseVisualStyleBackColor = true;
     this.disableCheckBox.Click += new System.EventHandler(this.DisableCheckBoxCheck);
     //
     // helpLabel
     //
     this.helpLabel.AutoSize     = true;
     this.helpLabel.Location     = new System.Drawing.Point(369, 11);
     this.helpLabel.Name         = "helpLabel";
     this.helpLabel.Size         = new System.Drawing.Size(28, 13);
     this.helpLabel.TabIndex     = 9;
     this.helpLabel.TabStop      = true;
     this.helpLabel.Text         = "Help";
     this.helpLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.HelpLabelClick);
     //
     // filterText
     //
     this.filterText.Anchor       = ((System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right));
     this.filterText.Location     = new System.Drawing.Point(537, 26);
     this.filterText.Name         = "FilterText";
     this.filterText.Size         = new System.Drawing.Size(120, 20);
     this.filterText.TabIndex     = 10;
     this.filterText.TextChanged += new System.EventHandler(this.FilterTextTextChanged);
     //
     // clearFilterButton
     //
     this.clearFilterButton.Anchor   = ((System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right));
     this.clearFilterButton.Location = new System.Drawing.Point(661, 24);
     this.clearFilterButton.Name     = "clearFilterButton";
     this.clearFilterButton.Size     = new System.Drawing.Size(26, 23);
     this.clearFilterButton.TabIndex = 11;
     this.clearFilterButton.UseVisualStyleBackColor = true;
     this.clearFilterButton.Click += new System.EventHandler(this.ClearFilterButtonClick);
     //
     // filterLabel
     //
     this.filterLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)(System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right));
     this.filterLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.filterLabel.Location  = new System.Drawing.Point(538, 10);
     this.filterLabel.Name      = "filterLabel";
     this.filterLabel.Size      = new System.Drawing.Size(100, 13);
     this.filterLabel.TabIndex  = 12;
     this.filterLabel.Text      = "Filter settings:";
     //
     // SettingDialog
     //
     this.AcceptButton        = this.closeButton;
     this.CancelButton        = this.closeButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(697, 482);
     this.Controls.Add(this.clearFilterButton);
     this.Controls.Add(this.filterText);
     this.Controls.Add(this.filterLabel);
     this.Controls.Add(this.helpLabel);
     this.Controls.Add(this.disableCheckBox);
     this.Controls.Add(this.descLabel);
     this.Controls.Add(this.infoPictureBox);
     this.Controls.Add(this.nameLabel);
     this.Controls.Add(this.closeButton);
     this.Controls.Add(this.itemPropertyGrid);
     this.Controls.Add(this.itemListView);
     this.Controls.Add(this.infoLabel);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(490, 350);
     this.Name          = "SettingDialog";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = " Settings";
     this.Shown        += new System.EventHandler(this.DialogShown);
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.DialogClosing);
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.DialogClosed);
     ((System.ComponentModel.ISupportInitialize)(this.infoPictureBox)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinMD5Form));
     this.progressBar              = new System.Windows.Forms.ProgressBar();
     this.label1                   = new System.Windows.Forms.Label();
     this.mainMenu                 = new System.Windows.Forms.MainMenu(this.components);
     this.menuItem1                = new System.Windows.Forms.MenuItem();
     this.openFileItem             = new System.Windows.Forms.MenuItem();
     this.openMD5Item              = new System.Windows.Forms.MenuItem();
     this.menuItem5                = new System.Windows.Forms.MenuItem();
     this.saveMD5Item              = new System.Windows.Forms.MenuItem();
     this.menuItem6                = new System.Windows.Forms.MenuItem();
     this.quitItem                 = new System.Windows.Forms.MenuItem();
     this.menuItem2                = new System.Windows.Forms.MenuItem();
     this.copyItem                 = new System.Windows.Forms.MenuItem();
     this.menuItem3                = new System.Windows.Forms.MenuItem();
     this.alwaysOnTopItem          = new System.Windows.Forms.MenuItem();
     this.useCRLF                  = new System.Windows.Forms.MenuItem();
     this.menuItem7                = new System.Windows.Forms.MenuItem();
     this.aboutItem                = new System.Windows.Forms.MenuItem();
     this.webLink                  = new System.Windows.Forms.LinkLabel();
     this.currentlyProcessingLabel = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.listView                 = new System.Windows.Forms.ListView();
     this.pathHeader               = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.hashHeader               = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.sizeHeader               = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.verifiedHeader           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label4                   = new System.Windows.Forms.Label();
     this.knownHashesLabel         = new System.Windows.Forms.Label();
     this.clearButton              = new System.Windows.Forms.Button();
     this.openFileDialog           = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog           = new System.Windows.Forms.SaveFileDialog();
     this.pictureBox               = new System.Windows.Forms.PictureBox();
     this.alertTimer               = new System.Windows.Forms.Timer(this.components);
     this.alertLabel               = new System.Windows.Forms.Label();
     this.enqueuedLabel            = new System.Windows.Forms.Label();
     this.abortButton              = new System.Windows.Forms.Button();
     this.unmatchedHashesLabel     = new System.Windows.Forms.Label();
     this.label5                   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // progressBar
     //
     this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.progressBar.Location = new System.Drawing.Point(8, 50);
     this.progressBar.Name     = "progressBar";
     this.progressBar.Size     = new System.Drawing.Size(662, 8);
     this.progressBar.TabIndex = 1;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 20);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Currently Processing:";
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1,
         this.menuItem2,
         this.menuItem3,
         this.menuItem7
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.openFileItem,
         this.openMD5Item,
         this.menuItem5,
         this.saveMD5Item,
         this.menuItem6,
         this.quitItem
     });
     this.menuItem1.Text = "&File";
     //
     // openFileItem
     //
     this.openFileItem.Index  = 0;
     this.openFileItem.Text   = "&Open File...";
     this.openFileItem.Click += new System.EventHandler(this.openFileItem_Click);
     //
     // openMD5Item
     //
     this.openMD5Item.Index  = 1;
     this.openMD5Item.Text   = "Open &MD5 File...";
     this.openMD5Item.Click += new System.EventHandler(this.openMD5Item_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index = 2;
     this.menuItem5.Text  = "-";
     //
     // saveMD5Item
     //
     this.saveMD5Item.Index  = 3;
     this.saveMD5Item.Text   = "&Save MD5 File...";
     this.saveMD5Item.Click += new System.EventHandler(this.saveMD5Item_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 4;
     this.menuItem6.Text  = "-";
     //
     // quitItem
     //
     this.quitItem.Index    = 5;
     this.quitItem.Shortcut = System.Windows.Forms.Shortcut.CtrlQ;
     this.quitItem.Text     = "&Quit";
     this.quitItem.Click   += new System.EventHandler(this.quitItem_Click);
     //
     // menuItem2
     //
     this.menuItem2.Index = 1;
     this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.copyItem
     });
     this.menuItem2.Text = "&Edit";
     //
     // copyItem
     //
     this.copyItem.Index    = 0;
     this.copyItem.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
     this.copyItem.Text     = "&Copy";
     this.copyItem.Click   += new System.EventHandler(this.copyItem_Click);
     //
     // menuItem3
     //
     this.menuItem3.Index = 2;
     this.menuItem3.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.alwaysOnTopItem,
         this.useCRLF
     });
     this.menuItem3.Text = "&Options";
     //
     // alwaysOnTopItem
     //
     this.alwaysOnTopItem.Index  = 0;
     this.alwaysOnTopItem.Text   = "Always on &top";
     this.alwaysOnTopItem.Click += new System.EventHandler(this.alwaysOnTopItem_Click);
     //
     // useCRLF
     //
     this.useCRLF.Checked = true;
     this.useCRLF.Index   = 1;
     this.useCRLF.Text    = "Use &CRLF when saving";
     this.useCRLF.Click  += new System.EventHandler(this.useCRLF_Click);
     //
     // menuItem7
     //
     this.menuItem7.Index = 3;
     this.menuItem7.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.aboutItem
     });
     this.menuItem7.Text = "&Help";
     //
     // aboutItem
     //
     this.aboutItem.Index  = 0;
     this.aboutItem.Text   = "About WinMD5...";
     this.aboutItem.Click += new System.EventHandler(this.aboutItem_Click);
     //
     // webLink
     //
     this.webLink.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.webLink.Location     = new System.Drawing.Point(500, 299);
     this.webLink.Name         = "webLink";
     this.webLink.Size         = new System.Drawing.Size(185, 23);
     this.webLink.TabIndex     = 3;
     this.webLink.TabStop      = true;
     this.webLink.Text         = "http://www.blisstonia.com/software";
     this.webLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.webLink_LinkClicked);
     //
     // currentlyProcessingLabel
     //
     this.currentlyProcessingLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.currentlyProcessingLabel.Location = new System.Drawing.Point(120, 12);
     this.currentlyProcessingLabel.Name     = "currentlyProcessingLabel";
     this.currentlyProcessingLabel.Size     = new System.Drawing.Size(390, 20);
     this.currentlyProcessingLabel.TabIndex = 5;
     this.currentlyProcessingLabel.Text     = "(idle)";
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.Location = new System.Drawing.Point(8, 299);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(304, 16);
     this.label3.TabIndex = 6;
     this.label3.Text     = "Drag files and MD5SUM files (if available) into this window.";
     //
     // listView
     //
     this.listView.AllowColumnReorder = true;
     this.listView.Anchor             = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.listView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.pathHeader,
         this.hashHeader,
         this.sizeHeader,
         this.verifiedHeader
     });
     this.listView.Font          = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listView.FullRowSelect = true;
     this.listView.GridLines     = true;
     this.listView.ImeMode       = System.Windows.Forms.ImeMode.On;
     this.listView.Location      = new System.Drawing.Point(8, 64);
     this.listView.Name          = "listView";
     this.listView.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.listView.Size          = new System.Drawing.Size(662, 190);
     this.listView.TabIndex      = 7;
     this.listView.UseCompatibleStateImageBehavior = false;
     this.listView.View         = System.Windows.Forms.View.Details;
     this.listView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView_ColumnClick);
     this.listView.Resize      += new System.EventHandler(this.listView_Resize);
     //
     // pathHeader
     //
     this.pathHeader.Text  = "Path";
     this.pathHeader.Width = 108;
     //
     // hashHeader
     //
     this.hashHeader.Text  = "Hash";
     this.hashHeader.Width = 246;
     //
     // sizeHeader
     //
     this.sizeHeader.Text = "Bytes";
     //
     // verifiedHeader
     //
     this.verifiedHeader.Text  = "Status";
     this.verifiedHeader.Width = 71;
     //
     // label4
     //
     this.label4.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.Location = new System.Drawing.Point(356, 264);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(289, 16);
     this.label4.TabIndex = 8;
     this.label4.Text     = "Number of known md5 hashes found in MD5SUM files: ";
     //
     // knownHashesLabel
     //
     this.knownHashesLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.knownHashesLabel.Location  = new System.Drawing.Point(636, 264);
     this.knownHashesLabel.Name      = "knownHashesLabel";
     this.knownHashesLabel.Size      = new System.Drawing.Size(32, 23);
     this.knownHashesLabel.TabIndex  = 9;
     this.knownHashesLabel.Text      = "0";
     this.knownHashesLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // clearButton
     //
     this.clearButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.clearButton.Location = new System.Drawing.Point(8, 262);
     this.clearButton.Name     = "clearButton";
     this.clearButton.Size     = new System.Drawing.Size(75, 23);
     this.clearButton.TabIndex = 10;
     this.clearButton.Text     = "&Clear";
     this.clearButton.Click   += new System.EventHandler(this.clearButton_Click);
     //
     // openFileDialog
     //
     this.openFileDialog.Multiselect = true;
     //
     // pictureBox
     //
     this.pictureBox.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox.Image")));
     this.pictureBox.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox.InitialImage")));
     this.pictureBox.Location     = new System.Drawing.Point(627, 4);
     this.pictureBox.Name         = "pictureBox";
     this.pictureBox.Size         = new System.Drawing.Size(35, 40);
     this.pictureBox.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox.TabIndex     = 11;
     this.pictureBox.TabStop      = false;
     this.pictureBox.Visible      = false;
     this.pictureBox.Click       += new System.EventHandler(this.pictureBox_Click);
     //
     // alertTimer
     //
     this.alertTimer.Interval = 400;
     this.alertTimer.Tick    += new System.EventHandler(this.alertTimer_Tick);
     //
     // alertLabel
     //
     this.alertLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.alertLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.alertLabel.Location  = new System.Drawing.Point(475, 15);
     this.alertLabel.Name      = "alertLabel";
     this.alertLabel.Size      = new System.Drawing.Size(146, 17);
     this.alertLabel.TabIndex  = 12;
     this.alertLabel.Text      = "Errors Found";
     this.alertLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.alertLabel.Visible   = false;
     this.alertLabel.Click    += new System.EventHandler(this.alertLabel_Click);
     //
     // enqueuedLabel
     //
     this.enqueuedLabel.Location = new System.Drawing.Point(7, 30);
     this.enqueuedLabel.Name     = "enqueuedLabel";
     this.enqueuedLabel.Size     = new System.Drawing.Size(265, 16);
     this.enqueuedLabel.TabIndex = 13;
     this.enqueuedLabel.Text     = "(0 files enqueued)";
     //
     // abortButton
     //
     this.abortButton.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.abortButton.Location = new System.Drawing.Point(104, 262);
     this.abortButton.Name     = "abortButton";
     this.abortButton.Size     = new System.Drawing.Size(75, 23);
     this.abortButton.TabIndex = 14;
     this.abortButton.Text     = "&Abort";
     this.abortButton.Click   += new System.EventHandler(this.abortButton_Click);
     //
     // unmatchedHashesLabel
     //
     this.unmatchedHashesLabel.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.unmatchedHashesLabel.Location  = new System.Drawing.Point(636, 283);
     this.unmatchedHashesLabel.Name      = "unmatchedHashesLabel";
     this.unmatchedHashesLabel.Size      = new System.Drawing.Size(32, 23);
     this.unmatchedHashesLabel.TabIndex  = 16;
     this.unmatchedHashesLabel.Text      = "0";
     this.unmatchedHashesLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.Location = new System.Drawing.Point(356, 283);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(289, 16);
     this.label5.TabIndex = 15;
     this.label5.Text     = "Number of unmatched md5 hashes: ";
     //
     // WinMD5Form
     //
     this.AllowDrop         = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.PaleGoldenrod;
     this.ClientSize        = new System.Drawing.Size(680, 319);
     this.Controls.Add(this.unmatchedHashesLabel);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.abortButton);
     this.Controls.Add(this.enqueuedLabel);
     this.Controls.Add(this.alertLabel);
     this.Controls.Add(this.pictureBox);
     this.Controls.Add(this.clearButton);
     this.Controls.Add(this.knownHashesLabel);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.listView);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.currentlyProcessingLabel);
     this.Controls.Add(this.webLink);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.progressBar);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu        = this.mainMenu;
     this.MinimumSize = new System.Drawing.Size(580, 208);
     this.Name        = "WinMD5Form";
     this.Text        = "Title will be set at runtime in WinMD5Form constructor";
     this.Closing    += new System.ComponentModel.CancelEventHandler(this.WinMD5Form_Closing);
     this.Load       += new System.EventHandler(this.WinMD5Form_Load);
     this.DragDrop   += new System.Windows.Forms.DragEventHandler(this.WinMD5Form_DragDrop);
     this.DragEnter  += new System.Windows.Forms.DragEventHandler(this.WinMD5Form_DragEnter);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.ResumeLayout(false);
 }
Example #56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.closeButton              = new System.Windows.Forms.Button();
     this.loadButton               = new System.Windows.Forms.Button();
     this.scaleComboBox            = new System.Windows.Forms.ComboBox();
     this.messageLabel             = new System.Windows.Forms.Label();
     this.label1                   = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     this.switchAltLinkLabel       = new System.Windows.Forms.LinkLabel();
     this.switchAltLabel           = new System.Windows.Forms.Label();
     this.progressLinkLabel        = new System.Windows.Forms.LinkLabel();
     this.previewButton            = new System.Windows.Forms.Button();
     this.helpLabel                = new System.Windows.Forms.Label();
     this.directionPadControlPanel = new System.Windows.Forms.Panel();
     this.doProgressCheckBox       = new System.Windows.Forms.CheckBox();
     this.exportButton             = new System.Windows.Forms.Button();
     this.browseButton             = new System.Windows.Forms.Button();
     this.helpExportLinkLabel      = new System.Windows.Forms.LinkLabel();
     this.scaleUpCheckBox          = new System.Windows.Forms.CheckBox();
     this.label3                   = new System.Windows.Forms.Label();
     this.label4                   = new System.Windows.Forms.Label();
     this.tabControl1              = new System.Windows.Forms.TabControl();
     this.preloadTabPage           = new System.Windows.Forms.TabPage();
     this.optionsTabPage           = new System.Windows.Forms.TabPage();
     this.button1                  = new System.Windows.Forms.Button();
     this.exportOptionsGroupBox    = new System.Windows.Forms.GroupBox();
     this.tabControl1.SuspendLayout();
     this.preloadTabPage.SuspendLayout();
     this.optionsTabPage.SuspendLayout();
     this.SuspendLayout();
     //
     // closeButton
     //
     this.closeButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.closeButton.Location     = new System.Drawing.Point(330, 260);
     this.closeButton.Name         = "closeButton";
     this.closeButton.Size         = new System.Drawing.Size(72, 20);
     this.closeButton.TabIndex     = 4;
     this.closeButton.Text         = "Close";
     this.closeButton.Click       += new System.EventHandler(this.closeButton_Click);
     //
     // loadButton
     //
     this.loadButton.Location = new System.Drawing.Point(330, 90);
     this.loadButton.Name     = "loadButton";
     this.loadButton.Size     = new System.Drawing.Size(72, 20);
     this.loadButton.TabIndex = 5;
     this.loadButton.Text     = "Download";
     this.loadButton.Click   += new System.EventHandler(this.loadButton_Click);
     //
     // scaleComboBox
     //
     this.scaleComboBox.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.scaleComboBox.Location              = new System.Drawing.Point(55, 70);
     this.scaleComboBox.Name                  = "scaleComboBox";
     this.scaleComboBox.Size                  = new System.Drawing.Size(56, 21);
     this.scaleComboBox.TabIndex              = 6;
     this.scaleComboBox.SelectedIndexChanged += new System.EventHandler(this.scaleComboBox_SelectedIndexChanged);
     //
     // messageLabel
     //
     this.messageLabel.Location  = new System.Drawing.Point(10, 140);
     this.messageLabel.Name      = "messageLabel";
     this.messageLabel.Size      = new System.Drawing.Size(385, 92);
     this.messageLabel.TabIndex  = 7;
     this.messageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(10, 70);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(40, 23);
     this.label1.TabIndex  = 8;
     this.label1.Text      = "Scale:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(120, 70);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 23);
     this.label2.TabIndex  = 9;
     this.label2.Text      = "meters/pixel";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // switchAltLinkLabel
     //
     this.switchAltLinkLabel.Location     = new System.Drawing.Point(240, 260);
     this.switchAltLinkLabel.Name         = "switchAltLinkLabel";
     this.switchAltLinkLabel.Size         = new System.Drawing.Size(60, 22);
     this.switchAltLinkLabel.TabIndex     = 12;
     this.switchAltLinkLabel.TabStop      = true;
     this.switchAltLinkLabel.Text         = "50 miles";
     this.switchAltLinkLabel.TextAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.switchAltLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.switchAltLinkLabel_LinkClicked);
     //
     // switchAltLabel
     //
     this.switchAltLabel.Location  = new System.Drawing.Point(95, 260);
     this.switchAltLabel.Name      = "switchAltLabel";
     this.switchAltLabel.Size      = new System.Drawing.Size(136, 23);
     this.switchAltLabel.TabIndex  = 13;
     this.switchAltLabel.Text      = "Move camera to:";
     this.switchAltLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // progressLinkLabel
     //
     this.progressLinkLabel.Location     = new System.Drawing.Point(25, 260);
     this.progressLinkLabel.Name         = "progressLinkLabel";
     this.progressLinkLabel.Size         = new System.Drawing.Size(80, 22);
     this.progressLinkLabel.TabIndex     = 14;
     this.progressLinkLabel.TabStop      = true;
     this.progressLinkLabel.Text         = "progress...";
     this.progressLinkLabel.TextAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     this.progressLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.progressLinkLabel_LinkClicked);
     //
     // previewButton
     //
     this.previewButton.Location = new System.Drawing.Point(330, 70);
     this.previewButton.Name     = "previewButton";
     this.previewButton.Size     = new System.Drawing.Size(72, 20);
     this.previewButton.TabIndex = 15;
     this.previewButton.Text     = "Preview";
     this.previewButton.Click   += new System.EventHandler(this.previewButton_Click);
     //
     // helpLabel
     //
     this.helpLabel.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.helpLabel.Location = new System.Drawing.Point(10, 5);
     this.helpLabel.Name     = "helpLabel";
     this.helpLabel.Size     = new System.Drawing.Size(312, 56);
     this.helpLabel.TabIndex = 16;
     this.helpLabel.Text     = "You can preview tiles already on the hard drive...";
     //
     // directionPadControlPanel
     //
     this.directionPadControlPanel.Location = new System.Drawing.Point(340, 5);
     this.directionPadControlPanel.Name     = "directionPadControlPanel";
     this.directionPadControlPanel.Size     = new System.Drawing.Size(53, 53);
     this.directionPadControlPanel.TabIndex = 17;
     //
     // doProgressCheckBox
     //
     this.doProgressCheckBox.Location        = new System.Drawing.Point(10, 260);
     this.doProgressCheckBox.Name            = "doProgressCheckBox";
     this.doProgressCheckBox.Size            = new System.Drawing.Size(16, 24);
     this.doProgressCheckBox.TabIndex        = 18;
     this.doProgressCheckBox.CheckedChanged += new System.EventHandler(this.doProgressCheckBox_CheckedChanged);
     //
     // exportButton
     //
     this.exportButton.Location    = new System.Drawing.Point(330, 110);
     this.exportButton.Name        = "exportButton";
     this.exportButton.Size        = new System.Drawing.Size(72, 20);
     this.exportButton.TabIndex    = 19;
     this.exportButton.Text        = "Export";
     this.exportButton.Click      += new System.EventHandler(this.exportButton_Click);
     this.exportButton.MouseHover += new System.EventHandler(this.exportButton_MouseHover);
     //
     // browseButton
     //
     this.browseButton.Location = new System.Drawing.Point(300, 110);
     this.browseButton.Name     = "browseButton";
     this.browseButton.Size     = new System.Drawing.Size(24, 20);
     this.browseButton.TabIndex = 20;
     this.browseButton.Text     = "...";
     this.browseButton.Click   += new System.EventHandler(this.browseButton_Click);
     //
     // helpExportLinkLabel
     //
     this.helpExportLinkLabel.Location     = new System.Drawing.Point(280, 70);
     this.helpExportLinkLabel.Name         = "helpExportLinkLabel";
     this.helpExportLinkLabel.Size         = new System.Drawing.Size(48, 16);
     this.helpExportLinkLabel.TabIndex     = 21;
     this.helpExportLinkLabel.TabStop      = true;
     this.helpExportLinkLabel.Text         = "Help";
     this.helpExportLinkLabel.TextAlign    = System.Drawing.ContentAlignment.MiddleCenter;
     this.helpExportLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.helpExportLinkLabel_LinkClicked);
     //
     // scaleUpCheckBox
     //
     this.scaleUpCheckBox.Location        = new System.Drawing.Point(200, 70);
     this.scaleUpCheckBox.Name            = "scaleUpCheckBox";
     this.scaleUpCheckBox.Size            = new System.Drawing.Size(59, 24);
     this.scaleUpCheckBox.TabIndex        = 22;
     this.scaleUpCheckBox.Text            = "and up";
     this.scaleUpCheckBox.CheckedChanged += new System.EventHandler(this.scaleUpCheckBox_CheckedChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(75, 240);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(328, 16);
     this.label3.TabIndex = 23;
     this.label3.Text     = "downloading THOUSANDS of tiles takes _REALLY_ long time.";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(10, 240);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(56, 16);
     this.label4.TabIndex = 24;
     this.label4.Text     = "Warning:";
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.preloadTabPage);
     this.tabControl1.Controls.Add(this.optionsTabPage);
     this.tabControl1.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location              = new System.Drawing.Point(0, 0);
     this.tabControl1.Name                  = "tabControl1";
     this.tabControl1.SelectedIndex         = 0;
     this.tabControl1.Size                  = new System.Drawing.Size(414, 311);
     this.tabControl1.TabIndex              = 25;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // preloadTabPage
     //
     this.preloadTabPage.Controls.Add(this.scaleComboBox);
     this.preloadTabPage.Controls.Add(this.switchAltLabel);
     this.preloadTabPage.Controls.Add(this.browseButton);
     this.preloadTabPage.Controls.Add(this.switchAltLinkLabel);
     this.preloadTabPage.Controls.Add(this.label3);
     this.preloadTabPage.Controls.Add(this.previewButton);
     this.preloadTabPage.Controls.Add(this.messageLabel);
     this.preloadTabPage.Controls.Add(this.label4);
     this.preloadTabPage.Controls.Add(this.label1);
     this.preloadTabPage.Controls.Add(this.helpExportLinkLabel);
     this.preloadTabPage.Controls.Add(this.label2);
     this.preloadTabPage.Controls.Add(this.directionPadControlPanel);
     this.preloadTabPage.Controls.Add(this.loadButton);
     this.preloadTabPage.Controls.Add(this.exportButton);
     this.preloadTabPage.Controls.Add(this.helpLabel);
     this.preloadTabPage.Controls.Add(this.scaleUpCheckBox);
     this.preloadTabPage.Controls.Add(this.closeButton);
     this.preloadTabPage.Controls.Add(this.progressLinkLabel);
     this.preloadTabPage.Controls.Add(this.doProgressCheckBox);
     this.preloadTabPage.Location = new System.Drawing.Point(4, 22);
     this.preloadTabPage.Name     = "preloadTabPage";
     this.preloadTabPage.Size     = new System.Drawing.Size(406, 285);
     this.preloadTabPage.TabIndex = 0;
     this.preloadTabPage.Text     = "Preload";
     //
     // optionsTabPage
     //
     this.optionsTabPage.Controls.Add(this.button1);
     this.optionsTabPage.Controls.Add(this.exportOptionsGroupBox);
     this.optionsTabPage.Location = new System.Drawing.Point(4, 22);
     this.optionsTabPage.Name     = "optionsTabPage";
     this.optionsTabPage.Size     = new System.Drawing.Size(406, 285);
     this.optionsTabPage.TabIndex = 1;
     this.optionsTabPage.Text     = "Options";
     //
     // button1
     //
     this.button1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button1.Location     = new System.Drawing.Point(330, 260);
     this.button1.Name         = "button1";
     this.button1.Size         = new System.Drawing.Size(72, 20);
     this.button1.TabIndex     = 6;
     this.button1.Text         = "Close";
     //
     // exportOptionsGroupBox
     //
     this.exportOptionsGroupBox.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.exportOptionsGroupBox.Location = new System.Drawing.Point(10, 50);
     this.exportOptionsGroupBox.Name     = "exportOptionsGroupBox";
     this.exportOptionsGroupBox.Size     = new System.Drawing.Size(385, 145);
     this.exportOptionsGroupBox.TabIndex = 5;
     this.exportOptionsGroupBox.TabStop  = false;
     this.exportOptionsGroupBox.Text     = "Export Tiles";
     //
     // DlgPreloadTiles
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(414, 311);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "DlgPreloadTiles";
     this.Text            = "Preload Aerial/Topo Tiles";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.DlgPreloadTiles_Closing);
     this.tabControl1.ResumeLayout(false);
     this.preloadTabPage.ResumeLayout(false);
     this.optionsTabPage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TrustManagerPromptUI));
     this.tableLayoutPanelOuter       = new System.Windows.Forms.TableLayoutPanel();
     this.warningTextTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.pictureBoxWarning           = new System.Windows.Forms.PictureBox();
     this.linkLblMoreInformation      = new System.Windows.Forms.LinkLabel();
     this.tableLayoutPanelQuestion    = new System.Windows.Forms.TableLayoutPanel();
     this.lblQuestion             = new System.Windows.Forms.Label();
     this.pictureBoxQuestion      = new System.Windows.Forms.PictureBox();
     this.tableLayoutPanelButtons = new System.Windows.Forms.TableLayoutPanel();
     this.btnInstall           = new System.Windows.Forms.Button();
     this.btnCancel            = new System.Windows.Forms.Button();
     this.tableLayoutPanelInfo = new System.Windows.Forms.TableLayoutPanel();
     this.lblName          = new System.Windows.Forms.Label();
     this.lblFrom          = new System.Windows.Forms.Label();
     this.lblPublisher     = new System.Windows.Forms.Label();
     this.linkLblName      = new System.Windows.Forms.LinkLabel();
     this.linkLblFromUrl   = new System.Windows.Forms.LinkLabel();
     this.linkLblPublisher = new System.Windows.Forms.LinkLabel();
     this.lineLabel        = new System.Windows.Forms.Label();
     this.toolTipFromUrl   = new System.Windows.Forms.ToolTip(this.components);
     this.tableLayoutPanelOuter.SuspendLayout();
     this.warningTextTableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWarning)).BeginInit();
     this.tableLayoutPanelQuestion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxQuestion)).BeginInit();
     this.tableLayoutPanelButtons.SuspendLayout();
     this.tableLayoutPanelInfo.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanelOuter
     //
     resources.ApplyResources(this.tableLayoutPanelOuter, "tableLayoutPanelOuter");
     this.tableLayoutPanelOuter.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanelOuter.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 510F));
     this.tableLayoutPanelOuter.Controls.Add(this.warningTextTableLayoutPanel, 0, 4);
     this.tableLayoutPanelOuter.Controls.Add(this.tableLayoutPanelQuestion, 0, 0);
     this.tableLayoutPanelOuter.Controls.Add(this.tableLayoutPanelButtons, 0, 2);
     this.tableLayoutPanelOuter.Controls.Add(this.tableLayoutPanelInfo, 0, 1);
     this.tableLayoutPanelOuter.Controls.Add(this.lineLabel, 0, 3);
     this.tableLayoutPanelOuter.Margin = new System.Windows.Forms.Padding(0, 0, 0, 12);
     this.tableLayoutPanelOuter.Name   = "tableLayoutPanelOuter";
     this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.RowStyle());
     //
     // warningTextTableLayoutPanel
     //
     resources.ApplyResources(this.warningTextTableLayoutPanel, "warningTextTableLayoutPanel");
     this.warningTextTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.warningTextTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.warningTextTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.warningTextTableLayoutPanel.Controls.Add(this.pictureBoxWarning, 0, 0);
     this.warningTextTableLayoutPanel.Controls.Add(this.linkLblMoreInformation, 1, 0);
     this.warningTextTableLayoutPanel.Margin = new System.Windows.Forms.Padding(12, 6, 0, 0);
     this.warningTextTableLayoutPanel.Name   = "warningTextTableLayoutPanel";
     this.warningTextTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     //
     // pictureBoxWarning
     //
     resources.ApplyResources(this.pictureBoxWarning, "pictureBoxWarning");
     this.pictureBoxWarning.Margin  = new System.Windows.Forms.Padding(0, 0, 3, 0);
     this.pictureBoxWarning.Name    = "pictureBoxWarning";
     this.pictureBoxWarning.TabStop = false;
     //
     // linkLblMoreInformation
     //
     resources.ApplyResources(this.linkLblMoreInformation, "linkLblMoreInformation");
     this.linkLblMoreInformation.Margin       = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.linkLblMoreInformation.Name         = "linkLblMoreInformation";
     this.linkLblMoreInformation.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.TrustManagerPromptUI_ShowMoreInformation);
     //
     // tableLayoutPanelQuestion
     //
     resources.ApplyResources(this.tableLayoutPanelQuestion, "tableLayoutPanelQuestion");
     this.tableLayoutPanelQuestion.BackColor = System.Drawing.SystemColors.Window;
     this.tableLayoutPanelQuestion.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanelQuestion.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 58F));
     this.tableLayoutPanelQuestion.Controls.Add(this.lblQuestion, 0, 0);
     this.tableLayoutPanelQuestion.Controls.Add(this.pictureBoxQuestion, 1, 0);
     this.tableLayoutPanelQuestion.Margin = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanelQuestion.Name   = "tableLayoutPanelQuestion";
     this.tableLayoutPanelQuestion.RowStyles.Add(new System.Windows.Forms.RowStyle());
     //
     // lblQuestion
     //
     resources.ApplyResources(this.lblQuestion, "lblQuestion");
     this.lblQuestion.Margin = new System.Windows.Forms.Padding(12, 12, 12, 0);
     this.lblQuestion.Name   = "lblQuestion";
     //
     // pictureBoxQuestion
     //
     resources.ApplyResources(this.pictureBoxQuestion, "pictureBoxQuestion");
     this.pictureBoxQuestion.Margin  = new System.Windows.Forms.Padding(0);
     this.pictureBoxQuestion.Name    = "pictureBoxQuestion";
     this.pictureBoxQuestion.TabStop = false;
     //
     // tableLayoutPanelButtons
     //
     resources.ApplyResources(this.tableLayoutPanelButtons, "tableLayoutPanelButtons");
     this.tableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanelButtons.Controls.Add(this.btnInstall, 0, 0);
     this.tableLayoutPanelButtons.Controls.Add(this.btnCancel, 1, 0);
     this.tableLayoutPanelButtons.Margin = new System.Windows.Forms.Padding(0, 6, 12, 12);
     this.tableLayoutPanelButtons.Name   = "tableLayoutPanelButtons";
     this.tableLayoutPanelButtons.RowStyles.Add(new System.Windows.Forms.RowStyle());
     //
     // btnInstall
     //
     resources.ApplyResources(this.btnInstall, "btnInstall");
     this.btnInstall.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnInstall.Margin       = new System.Windows.Forms.Padding(0, 0, 3, 0);
     this.btnInstall.MinimumSize  = new System.Drawing.Size(75, 23);
     this.btnInstall.Name         = "btnInstall";
     this.btnInstall.Padding      = new System.Windows.Forms.Padding(10, 0, 10, 0);
     //
     // btnCancel
     //
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Margin       = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.btnCancel.MinimumSize  = new System.Drawing.Size(75, 23);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Padding      = new System.Windows.Forms.Padding(10, 0, 10, 0);
     //
     // tableLayoutPanelInfo
     //
     resources.ApplyResources(this.tableLayoutPanelInfo, "tableLayoutPanelInfo");
     this.tableLayoutPanelInfo.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanelInfo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanelInfo.Controls.Add(this.lblName, 0, 0);
     this.tableLayoutPanelInfo.Controls.Add(this.linkLblName, 0, 1);
     this.tableLayoutPanelInfo.Controls.Add(this.lblFrom, 0, 2);
     this.tableLayoutPanelInfo.Controls.Add(this.linkLblFromUrl, 0, 3);
     this.tableLayoutPanelInfo.Controls.Add(this.lblPublisher, 0, 4);
     this.tableLayoutPanelInfo.Controls.Add(this.linkLblPublisher, 0, 5);
     this.tableLayoutPanelInfo.Margin = new System.Windows.Forms.Padding(30, 22, 12, 3);
     this.tableLayoutPanelInfo.Name   = "tableLayoutPanelInfo";
     this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.RowStyle());
     //
     // lblName
     //
     resources.ApplyResources(this.lblName, "lblName");
     this.lblName.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
     this.lblName.Name   = "lblName";
     //
     // lblFrom
     //
     resources.ApplyResources(this.lblFrom, "lblFrom");
     this.lblFrom.Margin = new System.Windows.Forms.Padding(0, 8, 3, 0);
     this.lblFrom.Name   = "lblFrom";
     //
     // lblPublisher
     //
     resources.ApplyResources(this.lblPublisher, "lblPublisher");
     this.lblPublisher.Margin = new System.Windows.Forms.Padding(0, 8, 3, 0);
     this.lblPublisher.Name   = "lblPublisher";
     //
     // linkLblName
     //
     resources.ApplyResources(this.linkLblName, "linkLblName");
     this.linkLblName.AutoEllipsis = true;
     this.linkLblName.Margin       = new System.Windows.Forms.Padding(3, 0, 3, 8);
     this.linkLblName.Name         = "linkLblName";
     this.linkLblName.TabStop      = true;
     this.linkLblName.UseMnemonic  = false;
     this.linkLblName.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.TrustManagerPromptUI_ShowSupportPage);
     //
     // linkLblFromUrl
     //
     resources.ApplyResources(this.linkLblFromUrl, "linkLblFromUrl");
     this.linkLblFromUrl.AutoEllipsis = true;
     this.linkLblFromUrl.Margin       = new System.Windows.Forms.Padding(3, 0, 3, 8);
     this.linkLblFromUrl.Name         = "linkLblFromUrl";
     this.linkLblFromUrl.TabStop      = true;
     this.linkLblFromUrl.UseMnemonic  = false;
     this.linkLblFromUrl.MouseEnter  += new System.EventHandler(this.linkLblFromUrl_MouseEnter);
     this.linkLblFromUrl.MouseLeave  += new System.EventHandler(this.linkLblFromUrl_MouseLeave);
     //
     // linkLblPublisher
     //
     resources.ApplyResources(this.linkLblPublisher, "linkLblPublisher");
     this.linkLblPublisher.AutoEllipsis = true;
     this.linkLblPublisher.Margin       = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.linkLblPublisher.Name         = "linkLblPublisher";
     this.linkLblPublisher.TabStop      = true;
     this.linkLblPublisher.UseMnemonic  = false;
     this.linkLblPublisher.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.TrustManagerPromptUI_ShowPublisherCertificate);
     //
     // lineLabel
     //
     resources.ApplyResources(this.lineLabel, "lineLabel");
     this.lineLabel.BackColor = System.Drawing.SystemColors.ControlDark;
     this.lineLabel.Margin    = new System.Windows.Forms.Padding(0);
     this.lineLabel.Name      = "lineLabel";
     //
     // TrustManagerPromptUI
     //
     this.AcceptButton = this.btnCancel;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode  = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.CancelButton  = this.btnCancel;
     this.Controls.Add(this.tableLayoutPanelOuter);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TrustManagerPromptUI";
     this.VisibleChanged += new System.EventHandler(this.TrustManagerPromptUI_VisibleChanged);
     this.Load           += new System.EventHandler(this.TrustManagerPromptUI_Load);
     this.tableLayoutPanelOuter.ResumeLayout(false);
     this.tableLayoutPanelOuter.PerformLayout();
     this.warningTextTableLayoutPanel.ResumeLayout(false);
     this.warningTextTableLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWarning)).EndInit();
     this.tableLayoutPanelQuestion.ResumeLayout(false);
     this.tableLayoutPanelQuestion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxQuestion)).EndInit();
     this.tableLayoutPanelButtons.ResumeLayout(false);
     this.tableLayoutPanelButtons.PerformLayout();
     this.tableLayoutPanelInfo.ResumeLayout(false);
     this.tableLayoutPanelInfo.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #58
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1              = new System.Windows.Forms.Label();
     this.edtTemperature      = new System.Windows.Forms.TextBox();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.cboMeterialType     = new System.Windows.Forms.ComboBox();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.cboEstimationOption = new System.Windows.Forms.ComboBox();
     this.lstFileList         = new System.Windows.Forms.ListView();
     this.lnkFileLoad         = new System.Windows.Forms.LinkLabel();
     this.openFileDialog1     = new System.Windows.Forms.OpenFileDialog();
     this.pnlFileLoad         = new System.Windows.Forms.Panel();
     this.pnlDataBaseLoad     = new System.Windows.Forms.Panel();
     this.btnSaveDatabase     = new System.Windows.Forms.Button();
     this.btnEstimation       = new System.Windows.Forms.Button();
     this.lblDataBaseLoad_ID  = new System.Windows.Forms.Label();
     this.lblDataBaseLoadName = new System.Windows.Forms.Label();
     this.lnkDataBaseLoad     = new System.Windows.Forms.LinkLabel();
     this.rdoFileLoad         = new System.Windows.Forms.RadioButton();
     this.rdoDataBaseLoad     = new System.Windows.Forms.RadioButton();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pnlFileLoad.SuspendLayout();
     this.pnlDataBaseLoad.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Temperature";
     //
     // edtTemperature
     //
     this.edtTemperature.Location  = new System.Drawing.Point(120, 11);
     this.edtTemperature.Name      = "edtTemperature";
     this.edtTemperature.TabIndex  = 1;
     this.edtTemperature.Text      = "20";
     this.edtTemperature.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cboMeterialType);
     this.groupBox1.Location = new System.Drawing.Point(8, 56);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(256, 64);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Material  Type";
     //
     // cboMeterialType
     //
     this.cboMeterialType.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboMeterialType.Location              = new System.Drawing.Point(8, 32);
     this.cboMeterialType.Name                  = "cboMeterialType";
     this.cboMeterialType.Size                  = new System.Drawing.Size(240, 20);
     this.cboMeterialType.TabIndex              = 3;
     this.cboMeterialType.SelectedIndexChanged += new System.EventHandler(this.cboMeterialType_SelectedIndexChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cboEstimationOption);
     this.groupBox2.Location = new System.Drawing.Point(8, 136);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(256, 64);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Estimation Option";
     //
     // cboEstimationOption
     //
     this.cboEstimationOption.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboEstimationOption.Location              = new System.Drawing.Point(8, 32);
     this.cboEstimationOption.Name                  = "cboEstimationOption";
     this.cboEstimationOption.Size                  = new System.Drawing.Size(240, 20);
     this.cboEstimationOption.TabIndex              = 3;
     this.cboEstimationOption.SelectedIndexChanged += new System.EventHandler(this.cboEstimationOption_SelectedIndexChanged);
     //
     // lstFileList
     //
     this.lstFileList.GridLines = true;
     this.lstFileList.Location  = new System.Drawing.Point(8, 32);
     this.lstFileList.Name      = "lstFileList";
     this.lstFileList.Size      = new System.Drawing.Size(256, 112);
     this.lstFileList.TabIndex  = 7;
     this.lstFileList.View      = System.Windows.Forms.View.Details;
     //
     // lnkFileLoad
     //
     this.lnkFileLoad.Location     = new System.Drawing.Point(8, 8);
     this.lnkFileLoad.Name         = "lnkFileLoad";
     this.lnkFileLoad.Size         = new System.Drawing.Size(160, 23);
     this.lnkFileLoad.TabIndex     = 8;
     this.lnkFileLoad.TabStop      = true;
     this.lnkFileLoad.Text         = "Measured Data from File";
     this.lnkFileLoad.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // pnlFileLoad
     //
     this.pnlFileLoad.Controls.Add(this.lstFileList);
     this.pnlFileLoad.Controls.Add(this.lnkFileLoad);
     this.pnlFileLoad.Location = new System.Drawing.Point(0, 248);
     this.pnlFileLoad.Name     = "pnlFileLoad";
     this.pnlFileLoad.Size     = new System.Drawing.Size(272, 152);
     this.pnlFileLoad.TabIndex = 11;
     //
     // pnlDataBaseLoad
     //
     this.pnlDataBaseLoad.Controls.Add(this.btnSaveDatabase);
     this.pnlDataBaseLoad.Controls.Add(this.btnEstimation);
     this.pnlDataBaseLoad.Controls.Add(this.lblDataBaseLoad_ID);
     this.pnlDataBaseLoad.Controls.Add(this.lblDataBaseLoadName);
     this.pnlDataBaseLoad.Controls.Add(this.lnkDataBaseLoad);
     this.pnlDataBaseLoad.Location = new System.Drawing.Point(0, 400);
     this.pnlDataBaseLoad.Name     = "pnlDataBaseLoad";
     this.pnlDataBaseLoad.Size     = new System.Drawing.Size(272, 144);
     this.pnlDataBaseLoad.TabIndex = 12;
     //
     // btnSaveDatabase
     //
     this.btnSaveDatabase.BackColor = System.Drawing.SystemColors.Control;
     this.btnSaveDatabase.Enabled   = false;
     this.btnSaveDatabase.Location  = new System.Drawing.Point(136, 112);
     this.btnSaveDatabase.Name      = "btnSaveDatabase";
     this.btnSaveDatabase.Size      = new System.Drawing.Size(128, 23);
     this.btnSaveDatabase.TabIndex  = 25;
     this.btnSaveDatabase.Text      = "Save to database";
     this.btnSaveDatabase.Click    += new System.EventHandler(this.btnSaveDatabase_Click);
     //
     // btnEstimation
     //
     this.btnEstimation.BackColor = System.Drawing.SystemColors.Control;
     this.btnEstimation.Location  = new System.Drawing.Point(16, 112);
     this.btnEstimation.Name      = "btnEstimation";
     this.btnEstimation.TabIndex  = 24;
     this.btnEstimation.Text      = "Estimation";
     this.btnEstimation.Click    += new System.EventHandler(this.btnEstimation_Click);
     //
     // lblDataBaseLoad_ID
     //
     this.lblDataBaseLoad_ID.Location = new System.Drawing.Point(8, 56);
     this.lblDataBaseLoad_ID.Name     = "lblDataBaseLoad_ID";
     this.lblDataBaseLoad_ID.TabIndex = 12;
     this.lblDataBaseLoad_ID.Visible  = false;
     //
     // lblDataBaseLoadName
     //
     this.lblDataBaseLoadName.Location = new System.Drawing.Point(8, 32);
     this.lblDataBaseLoadName.Name     = "lblDataBaseLoadName";
     this.lblDataBaseLoadName.Size     = new System.Drawing.Size(256, 23);
     this.lblDataBaseLoadName.TabIndex = 11;
     //
     // lnkDataBaseLoad
     //
     this.lnkDataBaseLoad.Enabled      = false;
     this.lnkDataBaseLoad.Location     = new System.Drawing.Point(8, 8);
     this.lnkDataBaseLoad.Name         = "lnkDataBaseLoad";
     this.lnkDataBaseLoad.Size         = new System.Drawing.Size(144, 23);
     this.lnkDataBaseLoad.TabIndex     = 10;
     this.lnkDataBaseLoad.TabStop      = true;
     this.lnkDataBaseLoad.Text         = "Measured Data from DB";
     this.lnkDataBaseLoad.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkDataBaseLoad_LinkClicked);
     //
     // rdoFileLoad
     //
     this.rdoFileLoad.Checked  = true;
     this.rdoFileLoad.Location = new System.Drawing.Point(8, 208);
     this.rdoFileLoad.Name     = "rdoFileLoad";
     this.rdoFileLoad.TabIndex = 13;
     this.rdoFileLoad.TabStop  = true;
     this.rdoFileLoad.Text     = "File Load";
     //
     // rdoDataBaseLoad
     //
     this.rdoDataBaseLoad.Location        = new System.Drawing.Point(144, 208);
     this.rdoDataBaseLoad.Name            = "rdoDataBaseLoad";
     this.rdoDataBaseLoad.Size            = new System.Drawing.Size(112, 24);
     this.rdoDataBaseLoad.TabIndex        = 14;
     this.rdoDataBaseLoad.Text            = "DataBase Load";
     this.rdoDataBaseLoad.CheckedChanged += new System.EventHandler(this.rdoDataBaseLoad_CheckedChanged);
     //
     // ucEstimationSetup
     //
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.rdoDataBaseLoad);
     this.Controls.Add(this.rdoFileLoad);
     this.Controls.Add(this.pnlDataBaseLoad);
     this.Controls.Add(this.pnlFileLoad);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.edtTemperature);
     this.Controls.Add(this.label1);
     this.Name  = "ucEstimationSetup";
     this.Size  = new System.Drawing.Size(274, 572);
     this.Load += new System.EventHandler(this.ucEstimationSetup_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.pnlFileLoad.ResumeLayout(false);
     this.pnlDataBaseLoad.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(PluginDialog));
     this.listView         = new WorldWind.PluginEngine.PluginListView();
     this.columnHeader1    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2    = new System.Windows.Forms.ColumnHeader();
     this.buttonLoad       = new System.Windows.Forms.Button();
     this.buttonUnload     = new System.Windows.Forms.Button();
     this.imageList        = new System.Windows.Forms.ImageList(this.components);
     this.description      = new System.Windows.Forms.TextBox();
     this.webSite          = new System.Windows.Forms.LinkLabel();
     this.labelDescription = new System.Windows.Forms.Label();
     this.labelWebSite     = new System.Windows.Forms.Label();
     this.labelDeveloper   = new System.Windows.Forms.Label();
     this.developer        = new System.Windows.Forms.Label();
     this.buttonInstall    = new System.Windows.Forms.Button();
     this.buttonUninstall  = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // listView
     //
     this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2
     });
     this.listView.FullRowSelect         = true;
     this.listView.GridLines             = true;
     this.listView.HeaderStyle           = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listView.Location              = new System.Drawing.Point(8, 8);
     this.listView.Name                  = "listView";
     this.listView.Size                  = new System.Drawing.Size(231, 160);
     this.listView.TabIndex              = 0;
     this.listView.View                  = System.Windows.Forms.View.Details;
     this.listView.DoubleClick          += new System.EventHandler(this.listView_DoubleClick);
     this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Available plugins";
     this.columnHeader1.Width = 163;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Startup";
     this.columnHeader2.Width = 47;
     //
     // buttonLoad
     //
     this.buttonLoad.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLoad.Location = new System.Drawing.Point(248, 8);
     this.buttonLoad.Name     = "buttonLoad";
     this.buttonLoad.TabIndex = 1;
     this.buttonLoad.Text     = "&Load";
     this.buttonLoad.Click   += new System.EventHandler(this.buttonLoad_Click);
     //
     // buttonUnload
     //
     this.buttonUnload.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonUnload.Location = new System.Drawing.Point(248, 40);
     this.buttonUnload.Name     = "buttonUnload";
     this.buttonUnload.TabIndex = 2;
     this.buttonUnload.Text     = "&Unload";
     this.buttonUnload.Click   += new System.EventHandler(this.buttonUnload_Click);
     //
     // imageList
     //
     this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList.ImageSize        = new System.Drawing.Size(16, 11);
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // description
     //
     this.description.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.description.Location   = new System.Drawing.Point(24, 195);
     this.description.Multiline  = true;
     this.description.Name       = "description";
     this.description.ReadOnly   = true;
     this.description.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.description.Size       = new System.Drawing.Size(288, 48);
     this.description.TabIndex   = 6;
     this.description.Text       = "";
     //
     // webSite
     //
     this.webSite.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.webSite.Location     = new System.Drawing.Point(24, 312);
     this.webSite.Name         = "webSite";
     this.webSite.Size         = new System.Drawing.Size(288, 16);
     this.webSite.TabIndex     = 10;
     this.webSite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.webSite_LinkClicked);
     //
     // labelDescription
     //
     this.labelDescription.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelDescription.Location = new System.Drawing.Point(10, 179);
     this.labelDescription.Name     = "labelDescription";
     this.labelDescription.Size     = new System.Drawing.Size(100, 16);
     this.labelDescription.TabIndex = 5;
     this.labelDescription.Text     = "Description:";
     //
     // labelWebSite
     //
     this.labelWebSite.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelWebSite.Location = new System.Drawing.Point(10, 296);
     this.labelWebSite.Name     = "labelWebSite";
     this.labelWebSite.Size     = new System.Drawing.Size(56, 16);
     this.labelWebSite.TabIndex = 9;
     this.labelWebSite.Text     = "Web Site:";
     //
     // labelDeveloper
     //
     this.labelDeveloper.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelDeveloper.Location = new System.Drawing.Point(10, 253);
     this.labelDeveloper.Name     = "labelDeveloper";
     this.labelDeveloper.Size     = new System.Drawing.Size(62, 16);
     this.labelDeveloper.TabIndex = 7;
     this.labelDeveloper.Text     = "Developer:";
     //
     // developer
     //
     this.developer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.developer.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.developer.Location = new System.Drawing.Point(24, 271);
     this.developer.Name     = "developer";
     this.developer.Size     = new System.Drawing.Size(296, 16);
     this.developer.TabIndex = 8;
     //
     // buttonInstall
     //
     this.buttonInstall.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonInstall.Location = new System.Drawing.Point(248, 88);
     this.buttonInstall.Name     = "buttonInstall";
     this.buttonInstall.TabIndex = 3;
     this.buttonInstall.Text     = "&Install";
     this.buttonInstall.Click   += new System.EventHandler(this.buttonInstall_Click);
     //
     // buttonUninstall
     //
     this.buttonUninstall.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonUninstall.Location = new System.Drawing.Point(248, 120);
     this.buttonUninstall.Name     = "buttonUninstall";
     this.buttonUninstall.TabIndex = 4;
     this.buttonUninstall.Text     = "&Uninstall";
     this.buttonUninstall.Click   += new System.EventHandler(this.buttonUninstall_Click);
     //
     // PluginDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(328, 342);
     this.Controls.Add(this.buttonUninstall);
     this.Controls.Add(this.buttonInstall);
     this.Controls.Add(this.developer);
     this.Controls.Add(this.labelDeveloper);
     this.Controls.Add(this.labelWebSite);
     this.Controls.Add(this.labelDescription);
     this.Controls.Add(this.webSite);
     this.Controls.Add(this.description);
     this.Controls.Add(this.buttonUnload);
     this.Controls.Add(this.buttonLoad);
     this.Controls.Add(this.listView);
     this.MinimumSize = new System.Drawing.Size(336, 272);
     this.Name        = "PluginDialog";
     this.Text        = "Plugin Load/Unload";
     this.Load       += new System.EventHandler(this.PluginDialog_Load);
     this.ResumeLayout(false);
 }
Example #60
-1
        public ReadOnlyControl(PropertyInfo prop, IAfterglowPlugin plugin)
            : base(prop, FONT_SIZE)
        {
            ConfigReadOnlyAttribute configAttribute = Attribute.GetCustomAttribute(prop, typeof(ConfigReadOnlyAttribute)) as ConfigReadOnlyAttribute;

            if (configAttribute == null)
            {
                throw new Exception("prop is not a ConfigReadOnlyAttribute");
            }
            //Create value Label
            if (configAttribute.IsHyperlink)
            {
                string link = prop.GetValue(plugin, null).ToString();
                _valueLinkLabel = new LinkLabel();
                _valueLinkLabel.Name = Guid.NewGuid().ToString();
                _valueLinkLabel.Text = link;
                Font font = new Font(_valueLinkLabel.Font.FontFamily, FONT_SIZE);
                _valueLinkLabel.Font = font;
                _valueLinkLabel.Links.Add(0,link.Length,link);
                _valueLinkLabel.LinkClicked += new LinkLabelLinkClickedEventHandler(LinkClicked);
                this.Controls.Add(_valueLinkLabel);
            }
            else
            {
                _valueLabel = new Label();
                _valueLabel.Name = Guid.NewGuid().ToString();
                _valueLabel.Text = prop.GetValue(plugin, null).ToString();
                Font font = new Font(_valueLabel.Font.FontFamily, FONT_SIZE);
                _valueLabel.Font = font;
                this.Controls.Add(_valueLabel);
            }

            InitializeComponent();
        }