Here are the examples of the csharp api System.Windows.Forms.TableLayoutColumnStyleCollection.Add(System.Windows.Forms.ColumnStyle) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
698 Examples
19
View Source File : AboutBox1.Designer.cs
License : MIT License
Project Creator : 1y0n
License : MIT License
Project Creator : 1y0n
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox1));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 8);
this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 246);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
this.logoPictureBox.Location = new System.Drawing.Point(3, 2);
this.logoPictureBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 242);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 16);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 16);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "产品名称";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 24);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 16);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 16);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "版本";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(143, 48);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 16);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(271, 16);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.Text = "版权";
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 72);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 16);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 16);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "公司名称";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 98);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 2, 3, 2);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 119);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "说明";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 222);
this.okButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 22);
this.okButton.TabIndex = 24;
this.okButton.Text = "确定(&O)";
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// AboutBox1
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 262);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutBox1";
this.Padding = new System.Windows.Forms.Padding(9, 8, 9, 8);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "AboutBox1";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : FrmAbout.Designer.cs
License : GNU General Public License v3.0
Project Creator : 9vult
License : GNU General Public License v3.0
Project Creator : 9vult
private void InitializeComponent()
{
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.labelGithubUrl = new System.Windows.Forms.LinkLabel();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelGithubUrl, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(14, 14);
this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(624, 407);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = global::MikuReader.wf.Properties.Resources.miku;
this.logoPictureBox.Location = new System.Drawing.Point(4, 5);
this.logoPictureBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(197, 397);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(214, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 26);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(406, 26);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Product Name";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(214, 40);
this.labelVersion.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 26);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(406, 26);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(214, 80);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 26);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(406, 26);
this.labelCompanyName.TabIndex = 21;
this.labelCompanyName.Text = "Copyright";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelGithubUrl
//
this.labelGithubUrl.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelGithubUrl.Location = new System.Drawing.Point(214, 120);
this.labelGithubUrl.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelGithubUrl.MaximumSize = new System.Drawing.Size(0, 26);
this.labelGithubUrl.Name = "labelGithubUrl";
this.labelGithubUrl.Size = new System.Drawing.Size(406, 26);
this.labelGithubUrl.TabIndex = 22;
this.labelGithubUrl.TabStop = true;
this.labelGithubUrl.Text = "GitHub Repository";
this.labelGithubUrl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.labelGithubUrl.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LabelGithubUrl_LinkClicked);
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(214, 165);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(9, 5, 4, 5);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(406, 193);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "MikuReader is an open-source manga reader, downloader, and tracker for MangaDex a" +
"nd nHentai.";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(508, 368);
this.okButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(112, 34);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
this.okButton.Click += new System.EventHandler(this.OkButton_Click);
//
// FrmAbout
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(652, 435);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmAbout";
this.Padding = new System.Windows.Forms.Padding(14);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FrmAbout";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : FrmAbout.Designer.cs
License : GNU General Public License v3.0
Project Creator : 9vult
License : GNU General Public License v3.0
Project Creator : 9vult
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAbout));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.LinkLabel();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(14, 14);
this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(624, 407);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = global::MikuReader.Properties.Resources.miku;
this.logoPictureBox.Location = new System.Drawing.Point(4, 5);
this.logoPictureBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(197, 397);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(214, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 26);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(406, 26);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "MikuReader";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(214, 40);
this.labelVersion.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 26);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(406, 26);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version 1";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(214, 80);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 26);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(406, 26);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.Text = "Copyright 2019 9volt";
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(214, 120);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 26);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(406, 26);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.TabStop = true;
this.labelCompanyName.Text = "Visit Our Website";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.labelCompanyName.VisitedLinkColor = System.Drawing.Color.Blue;
this.labelCompanyName.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.labelCompanyName_LinkClicked);
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(214, 165);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(9, 5, 4, 5);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(406, 193);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = resources.GetString("textBoxDescription.Text");
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(508, 368);
this.okButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(112, 34);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// FrmAbout
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(652, 435);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmAbout";
this.Padding = new System.Windows.Forms.Padding(14);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "About MikuReader";
this.Load += new System.EventHandler(this.frmAbout_Load);
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : AboutBox.Designer.cs
License : MIT License
Project Creator : a1xd
License : MIT License
Project Creator : a1xd
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelVersion = new System.Windows.Forms.Label();
this.okButton = new System.Windows.Forms.Button();
this.labelDriverVersion = new System.Windows.Forms.Label();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 4);
this.tableLayoutPanel.Controls.Add(this.labelDriverVersion, 1, 2);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 5;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel.Size = new System.Drawing.Size(280, 133);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 5);
this.logoPictureBox.Size = new System.Drawing.Size(134, 127);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(146, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(131, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "GUI Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(202, 107);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
//
// labelDriverVersion
//
this.labelDriverVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelDriverVersion.Location = new System.Drawing.Point(146, 52);
this.labelDriverVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelDriverVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelDriverVersion.Name = "labelDriverVersion";
this.labelDriverVersion.Size = new System.Drawing.Size(131, 17);
this.labelDriverVersion.TabIndex = 25;
this.labelDriverVersion.Text = "Driver Version";
this.labelDriverVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// AboutBox
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(298, 151);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutBox";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "AboutBox";
this.tableLayoutPanel.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : MessageDialog.Designer.cs
License : MIT License
Project Creator : a1xd
License : MIT License
Project Creator : a1xd
private void InitializeComponent()
{
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.okButton = new System.Windows.Forms.Button();
this.messageLabel = new System.Windows.Forms.Label();
this.tableLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.AutoSize = true;
this.tableLayoutPanel.ColumnCount = 1;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.Controls.Add(this.okButton, 0, 1);
this.tableLayoutPanel.Controls.Add(this.messageLabel, 0, 0);
this.tableLayoutPanel.ForeColor = System.Drawing.SystemColors.ControlText;
this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.Padding = new System.Windows.Forms.Padding(5);
this.tableLayoutPanel.RowCount = 2;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
this.tableLayoutPanel.Size = new System.Drawing.Size(224, 61);
this.tableLayoutPanel.TabIndex = 2;
//
// okButton
//
this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(74, 30);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 4;
this.okButton.Text = "&OK";
this.okButton.UseVisualStyleBackColor = true;
//
// messageLabel
//
this.messageLabel.AutoSize = true;
this.messageLabel.Location = new System.Drawing.Point(8, 5);
this.messageLabel.Name = "messageLabel";
this.messageLabel.Size = new System.Drawing.Size(35, 13);
this.messageLabel.TabIndex = 3;
this.messageLabel.Text = "label1";
//
// MessageDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.CancelButton = this.okButton;
this.ClientSize = new System.Drawing.Size(224, 61);
this.Controls.Add(this.tableLayoutPanel);
this.Name = "MessageDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : FormAbout.Designer.cs
License : GNU General Public License v3.0
Project Creator : AHeroicLlama
License : GNU General Public License v3.0
Project Creator : AHeroicLlama
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAbout));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 265);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 259);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 17);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Product Name";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(143, 52);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(271, 17);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.Text = "Copyright";
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 78);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 17);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "Company Name";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 107);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 126);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "Description";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 239);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
this.okButton.Click += new System.EventHandler(this.OkButton_Click);
//
// FormAbout
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 283);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormAbout";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About Mappalachia";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : frmHome.Designer.cs
License : MIT License
Project Creator : ahm3tcelik
License : MIT License
Project Creator : ahm3tcelik
private void InitializeComponent()
{
this.tileCustomers = new MetroFramework.Controls.MetroTile();
this.tileSettings = new MetroFramework.Controls.MetroTile();
this.tileLogout = new MetroFramework.Controls.MetroTile();
this.tileLog = new MetroFramework.Controls.MetroTile();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tileSchedule = new MetroFramework.Controls.MetroTile();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tileCustomers
//
this.tileCustomers.ActiveControl = null;
this.tileCustomers.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.tileCustomers.AutoSize = true;
this.tileCustomers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(26)))), ((int)(((byte)(66)))));
this.tileCustomers.Location = new System.Drawing.Point(3, 3);
this.tileCustomers.Name = "tileCustomers";
this.tileCustomers.Size = new System.Drawing.Size(245, 176);
this.tileCustomers.TabIndex = 5;
this.tileCustomers.Text = "MÜŞTERİ YÖNETİMİ";
this.tileCustomers.TileImage = global::Gymcim.FormUI.Properties.Resources.customers;
this.tileCustomers.TileImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.tileCustomers.TileTextFontSize = MetroFramework.MetroTileTextSize.Tall;
this.tileCustomers.TileTextFontWeight = MetroFramework.MetroTileTextWeight.Bold;
this.tileCustomers.UseMnemonic = false;
this.tileCustomers.UseSelectable = true;
this.tileCustomers.UseTileImage = true;
this.tileCustomers.Click += new System.EventHandler(this.tileCustomers_Click);
//
// tileSettings
//
this.tileSettings.ActiveControl = null;
this.tileSettings.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.tileSettings.AutoSize = true;
this.tileSettings.Location = new System.Drawing.Point(3, 185);
this.tileSettings.Name = "tileSettings";
this.tileSettings.Size = new System.Drawing.Size(245, 176);
this.tileSettings.Style = MetroFramework.MetroColorStyle.Teal;
this.tileSettings.TabIndex = 4;
this.tileSettings.Text = "AYARLAR";
this.tileSettings.TileImage = global::Gymcim.FormUI.Properties.Resources.admin;
this.tileSettings.TileImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.tileSettings.TileTextFontSize = MetroFramework.MetroTileTextSize.Tall;
this.tileSettings.TileTextFontWeight = MetroFramework.MetroTileTextWeight.Bold;
this.tileSettings.UseSelectable = true;
this.tileSettings.UseTileImage = true;
this.tileSettings.Click += new System.EventHandler(this.tileSettings_Click);
//
// tileLogout
//
this.tileLogout.ActiveControl = null;
this.tileLogout.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.tileLogout.AutoSize = true;
this.tileLogout.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(16)))), ((int)(((byte)(47)))));
this.tileLogout.ForeColor = System.Drawing.SystemColors.ControlText;
this.tileLogout.Location = new System.Drawing.Point(505, 185);
this.tileLogout.Name = "tileLogout";
this.tileLogout.Size = new System.Drawing.Size(246, 176);
this.tileLogout.Style = MetroFramework.MetroColorStyle.Red;
this.tileLogout.TabIndex = 6;
this.tileLogout.Text = "ÇIKIŞ YAP";
this.tileLogout.TileImage = global::Gymcim.FormUI.Properties.Resources.power;
this.tileLogout.TileImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.tileLogout.TileTextFontSize = MetroFramework.MetroTileTextSize.Tall;
this.tileLogout.TileTextFontWeight = MetroFramework.MetroTileTextWeight.Bold;
this.tileLogout.UseCustomBackColor = true;
this.tileLogout.UseSelectable = true;
this.tileLogout.UseTileImage = true;
this.tileLogout.Click += new System.EventHandler(this.tileLogout_Click);
//
// tileLog
//
this.tileLog.ActiveControl = null;
this.tileLog.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.tileLog.AutoSize = true;
this.tileLog.Location = new System.Drawing.Point(505, 3);
this.tileLog.Name = "tileLog";
this.tileLog.Size = new System.Drawing.Size(246, 176);
this.tileLog.Style = MetroFramework.MetroColorStyle.Silver;
this.tileLog.TabIndex = 7;
this.tileLog.Text = "LOG KAYITLARI";
this.tileLog.TileImage = global::Gymcim.FormUI.Properties.Resources.log;
this.tileLog.TileImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.tileLog.TileTextFontSize = MetroFramework.MetroTileTextSize.Tall;
this.tileLog.TileTextFontWeight = MetroFramework.MetroTileTextWeight.Bold;
this.tileLog.UseSelectable = true;
this.tileLog.UseTileImage = true;
this.tileLog.Click += new System.EventHandler(this.tileLog_Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.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.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.Controls.Add(this.tileLog, 2, 0);
this.tableLayoutPanel1.Controls.Add(this.tileLogout, 2, 1);
this.tableLayoutPanel1.Controls.Add(this.tileSettings, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.tileCustomers, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tileSchedule, 1, 0);
this.tableLayoutPanel1.Location = new System.Drawing.Point(23, 63);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(754, 364);
this.tableLayoutPanel1.TabIndex = 0;
//
// tileSchedule
//
this.tileSchedule.ActiveControl = null;
this.tileSchedule.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.tileSchedule.AutoSize = true;
this.tileSchedule.Location = new System.Drawing.Point(254, 3);
this.tileSchedule.Name = "tileSchedule";
this.tableLayoutPanel1.SetRowSpan(this.tileSchedule, 2);
this.tileSchedule.Size = new System.Drawing.Size(245, 358);
this.tileSchedule.Style = MetroFramework.MetroColorStyle.Green;
this.tileSchedule.TabIndex = 3;
this.tileSchedule.Text = "ÇALIŞMA PROGRAMI";
this.tileSchedule.TileImage = global::Gymcim.FormUI.Properties.Resources.schedule;
this.tileSchedule.TileImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.tileSchedule.TileTextFontSize = MetroFramework.MetroTileTextSize.Tall;
this.tileSchedule.TileTextFontWeight = MetroFramework.MetroTileTextWeight.Bold;
this.tileSchedule.UseSelectable = true;
this.tileSchedule.UseTileImage = true;
this.tileSchedule.Click += new System.EventHandler(this.tileSchedule_Click);
//
// frmHome
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "frmHome";
this.Text = "Gymcim Yönetim Paneli";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : exerciseUserControl.Designer.cs
License : MIT License
Project Creator : ahm3tcelik
License : MIT License
Project Creator : ahm3tcelik
private void InitializeComponent()
{
this.panelHeader = new MetroFramework.Controls.MetroPanel();
this.lblDay = new MetroFramework.Controls.MetroLabel();
this.tblExercises = new System.Windows.Forms.TableLayoutPanel();
this.panelHeader.SuspendLayout();
this.SuspendLayout();
//
// panelHeader
//
this.panelHeader.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.panelHeader.Controls.Add(this.lblDay);
this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
this.panelHeader.HorizontalScrollbarBarColor = true;
this.panelHeader.HorizontalScrollbarHighlightOnWheel = false;
this.panelHeader.HorizontalScrollbarSize = 10;
this.panelHeader.Location = new System.Drawing.Point(0, 0);
this.panelHeader.Name = "panelHeader";
this.panelHeader.Size = new System.Drawing.Size(360, 45);
this.panelHeader.TabIndex = 0;
this.panelHeader.UseCustomBackColor = true;
this.panelHeader.UseCustomForeColor = true;
this.panelHeader.VerticalScrollbarBarColor = true;
this.panelHeader.VerticalScrollbarHighlightOnWheel = false;
this.panelHeader.VerticalScrollbarSize = 10;
//
// lblDay
//
this.lblDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
this.lblDay.AutoSize = true;
this.lblDay.FontSize = MetroFramework.MetroLabelSize.Tall;
this.lblDay.FontWeight = MetroFramework.MetroLabelWeight.Regular;
this.lblDay.ForeColor = System.Drawing.Color.White;
this.lblDay.Location = new System.Drawing.Point(156, 9);
this.lblDay.Name = "lblDay";
this.lblDay.Size = new System.Drawing.Size(49, 25);
this.lblDay.TabIndex = 2;
this.lblDay.Text = "GÜN";
this.lblDay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblDay.UseCustomBackColor = true;
this.lblDay.UseCustomForeColor = true;
//
// tblExercises
//
this.tblExercises.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.tblExercises.ColumnCount = 4;
this.tblExercises.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tblExercises.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tblExercises.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tblExercises.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tblExercises.Location = new System.Drawing.Point(0, 45);
this.tblExercises.Name = "tblExercises";
this.tblExercises.RowCount = 1;
this.tblExercises.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblExercises.Size = new System.Drawing.Size(360, 215);
this.tblExercises.TabIndex = 1;
//
// exerciseUserControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.tblExercises);
this.Controls.Add(this.panelHeader);
this.Name = "exerciseUserControl";
this.Size = new System.Drawing.Size(360, 260);
this.Load += new System.EventHandler(this.exerciseUserControl_Load);
this.panelHeader.ResumeLayout(false);
this.panelHeader.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : Dialog.Designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.chkUseTabs = new System.Windows.Forms.CheckBox();
this.btnGenerate = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.updIndentSize = new System.Windows.Forms.NumericUpDown();
this.lblIndentSize = new System.Windows.Forms.Label();
this.lstImportList = new System.Windows.Forms.ListBox();
this.importToolStrip = new System.Windows.Forms.ToolStrip();
this.toolDelete = new System.Windows.Forms.ToolStripButton();
this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
this.toolImportList = new System.Windows.Forms.ToolStripLabel();
this.txtNewImport = new System.Windows.Forms.TextBox();
this.btnAddItem = new System.Windows.Forms.Button();
this.grpCodeStyle = new System.Windows.Forms.GroupBox();
this.rbAutomaticProperties = new System.Windows.Forms.RadioButton();
this.rbNotImplemented = new System.Windows.Forms.RadioButton();
this.chkUseUnderscoreAndLowercaseInDB = new System.Windows.Forms.CheckBox();
this.chkDefaultLazyFetching = new System.Windows.Forms.CheckBox();
this.cboDefaultMapping = new System.Windows.Forms.ComboBox();
this.lblDefaultMapping = new System.Windows.Forms.Label();
this.chkGenerateNHibernateMapping = new System.Windows.Forms.CheckBox();
this.lblSolutionType = new System.Windows.Forms.Label();
this.cboSolutionType = new System.Windows.Forms.ComboBox();
this.cboLanguage = new System.Windows.Forms.ComboBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.btnBrowse = new System.Windows.Forms.Button();
this.txtDestination = new System.Windows.Forms.TextBox();
this.lblDestination = new System.Windows.Forms.Label();
this.gpbNHibernate = new System.Windows.Forms.GroupBox();
this.lblDefaultIdGenerator = new System.Windows.Forms.Label();
this.cboDefaultIdGenerator = new System.Windows.Forms.ComboBox();
this.lblUsePrefixTables = new System.Windows.Forms.Label();
this.txtTextPrefix = new System.Windows.Forms.TextBox();
this.chkGenerateCodeFromTemplates = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chkGenerateSqlCode = new System.Windows.Forms.CheckBox();
this.cboSqlToServerType = new System.Windows.Forms.ComboBox();
this.lblTargetFrameworkVersion = new System.Windows.Forms.Label();
this.cboTargetFrameworkVersion = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.updIndentSize)).BeginInit();
this.importToolStrip.SuspendLayout();
this.grpCodeStyle.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.gpbNHibernate.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// chkUseTabs
//
this.chkUseTabs.AutoSize = true;
this.chkUseTabs.Location = new System.Drawing.Point(13, 20);
this.chkUseTabs.Name = "chkUseTabs";
this.chkUseTabs.Size = new System.Drawing.Size(120, 17);
this.chkUseTabs.TabIndex = 0;
this.chkUseTabs.Text = "Use tabs for indents";
this.chkUseTabs.UseVisualStyleBackColor = true;
this.chkUseTabs.CheckedChanged += new System.EventHandler(this.chkUseTabs_CheckedChanged);
//
// btnGenerate
//
this.btnGenerate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnGenerate.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnGenerate.Location = new System.Drawing.Point(426, 413);
this.btnGenerate.Name = "btnGenerate";
this.btnGenerate.Size = new System.Drawing.Size(75, 23);
this.btnGenerate.TabIndex = 10;
this.btnGenerate.Text = "Generate";
this.btnGenerate.UseVisualStyleBackColor = true;
this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(507, 413);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// updIndentSize
//
this.updIndentSize.Location = new System.Drawing.Point(13, 56);
this.updIndentSize.Maximum = new decimal(new int[] {
16,
0,
0,
0});
this.updIndentSize.Name = "updIndentSize";
this.updIndentSize.Size = new System.Drawing.Size(82, 20);
this.updIndentSize.TabIndex = 2;
this.updIndentSize.Value = new decimal(new int[] {
4,
0,
0,
0});
//
// lblIndentSize
//
this.lblIndentSize.AutoSize = true;
this.lblIndentSize.Enabled = false;
this.lblIndentSize.Location = new System.Drawing.Point(10, 40);
this.lblIndentSize.Name = "lblIndentSize";
this.lblIndentSize.Size = new System.Drawing.Size(61, 13);
this.lblIndentSize.TabIndex = 1;
this.lblIndentSize.Text = "Indent size:";
//
// lstImportList
//
this.lstImportList.FormattingEnabled = true;
this.lstImportList.Location = new System.Drawing.Point(12, 90);
this.lstImportList.Name = "lstImportList";
this.lstImportList.Size = new System.Drawing.Size(285, 186);
this.lstImportList.TabIndex = 4;
this.lstImportList.SelectedValueChanged += new System.EventHandler(this.lstImportList_SelectedValueChanged);
this.lstImportList.Leave += new System.EventHandler(this.lstImportList_Leave);
//
// importToolStrip
//
this.importToolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.importToolStrip.AutoSize = false;
this.importToolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.importToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.importToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolDelete,
this.toolMoveDown,
this.toolMoveUp,
this.toolImportList});
this.importToolStrip.Location = new System.Drawing.Point(75, 62);
this.importToolStrip.Name = "importToolStrip";
this.importToolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.importToolStrip.Size = new System.Drawing.Size(222, 25);
this.importToolStrip.TabIndex = 3;
this.importToolStrip.Text = "toolStrip1";
//
// toolDelete
//
this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolDelete.Enabled = false;
this.toolDelete.Image = global::NClreplaced.CodeGenerator.Properties.Resources.Delete;
this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolDelete.Name = "toolDelete";
this.toolDelete.Size = new System.Drawing.Size(23, 22);
this.toolDelete.Text = "Delete";
this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
//
// toolMoveDown
//
this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolMoveDown.Enabled = false;
this.toolMoveDown.Image = global::NClreplaced.CodeGenerator.Properties.Resources.MoveDown;
this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolMoveDown.Name = "toolMoveDown";
this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
this.toolMoveDown.Text = "Move Down";
this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
//
// toolMoveUp
//
this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolMoveUp.Enabled = false;
this.toolMoveUp.Image = global::NClreplaced.CodeGenerator.Properties.Resources.MoveUp;
this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolMoveUp.Name = "toolMoveUp";
this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
this.toolMoveUp.Text = "Move Up";
this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
//
// toolImportList
//
this.toolImportList.Name = "toolImportList";
this.toolImportList.Size = new System.Drawing.Size(61, 22);
this.toolImportList.Text = "Import list";
//
// txtNewImport
//
this.txtNewImport.Location = new System.Drawing.Point(12, 284);
this.txtNewImport.Name = "txtNewImport";
this.txtNewImport.Size = new System.Drawing.Size(204, 20);
this.txtNewImport.TabIndex = 5;
this.txtNewImport.TextChanged += new System.EventHandler(this.txtNewImport_TextChanged);
this.txtNewImport.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNewImport_KeyDown);
//
// btnAddItem
//
this.btnAddItem.Enabled = false;
this.btnAddItem.Location = new System.Drawing.Point(222, 282);
this.btnAddItem.Name = "btnAddItem";
this.btnAddItem.Size = new System.Drawing.Size(75, 23);
this.btnAddItem.TabIndex = 6;
this.btnAddItem.Text = "Add item";
this.btnAddItem.UseVisualStyleBackColor = true;
this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
//
// grpCodeStyle
//
this.grpCodeStyle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.grpCodeStyle.Controls.Add(this.rbAutomaticProperties);
this.grpCodeStyle.Controls.Add(this.rbNotImplemented);
this.grpCodeStyle.Controls.Add(this.lblIndentSize);
this.grpCodeStyle.Controls.Add(this.updIndentSize);
this.grpCodeStyle.Controls.Add(this.chkUseTabs);
this.grpCodeStyle.Location = new System.Drawing.Point(311, 110);
this.grpCodeStyle.Name = "grpCodeStyle";
this.grpCodeStyle.Size = new System.Drawing.Size(271, 127);
this.grpCodeStyle.TabIndex = 9;
this.grpCodeStyle.TabStop = false;
this.grpCodeStyle.Text = "Code style";
//
// rbAutomaticProperties
//
this.rbAutomaticProperties.AutoSize = true;
this.rbAutomaticProperties.Location = new System.Drawing.Point(13, 105);
this.rbAutomaticProperties.Name = "rbAutomaticProperties";
this.rbAutomaticProperties.Size = new System.Drawing.Size(121, 17);
this.rbAutomaticProperties.TabIndex = 5;
this.rbAutomaticProperties.Text = "Automatic properties";
this.rbAutomaticProperties.UseVisualStyleBackColor = true;
//
// rbNotImplemented
//
this.rbNotImplemented.AutoSize = true;
this.rbNotImplemented.Location = new System.Drawing.Point(13, 82);
this.rbNotImplemented.Name = "rbNotImplemented";
this.rbNotImplemented.Size = new System.Drawing.Size(242, 17);
this.rbNotImplemented.TabIndex = 4;
this.rbNotImplemented.Text = "Fill methods with \'Not implemented\' exceptions";
this.rbNotImplemented.UseVisualStyleBackColor = true;
//
// chkUseUnderscoreAndLowercaseInDB
//
this.chkUseUnderscoreAndLowercaseInDB.AutoSize = true;
this.chkUseUnderscoreAndLowercaseInDB.Location = new System.Drawing.Point(13, 105);
this.chkUseUnderscoreAndLowercaseInDB.Name = "chkUseUnderscoreAndLowercaseInDB";
this.chkUseUnderscoreAndLowercaseInDB.Size = new System.Drawing.Size(252, 30);
this.chkUseUnderscoreAndLowercaseInDB.TabIndex = 10;
this.chkUseUnderscoreAndLowercaseInDB.Text = "Use underscore and lowercase in the database \r\n(or unchanged)";
this.chkUseUnderscoreAndLowercaseInDB.UseVisualStyleBackColor = true;
//
// chkDefaultLazyFetching
//
this.chkDefaultLazyFetching.AutoSize = true;
this.chkDefaultLazyFetching.Location = new System.Drawing.Point(13, 82);
this.chkDefaultLazyFetching.Name = "chkDefaultLazyFetching";
this.chkDefaultLazyFetching.Size = new System.Drawing.Size(122, 17);
this.chkDefaultLazyFetching.TabIndex = 9;
this.chkDefaultLazyFetching.Text = "Default lazy fetching";
this.chkDefaultLazyFetching.UseVisualStyleBackColor = true;
//
// cboDefaultMapping
//
this.cboDefaultMapping.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDefaultMapping.FormattingEnabled = true;
this.cboDefaultMapping.Location = new System.Drawing.Point(13, 55);
this.cboDefaultMapping.Name = "cboDefaultMapping";
this.cboDefaultMapping.Size = new System.Drawing.Size(120, 21);
this.cboDefaultMapping.TabIndex = 8;
//
// lblDefaultMapping
//
this.lblDefaultMapping.AutoSize = true;
this.lblDefaultMapping.Location = new System.Drawing.Point(10, 39);
this.lblDefaultMapping.Name = "lblDefaultMapping";
this.lblDefaultMapping.Size = new System.Drawing.Size(87, 13);
this.lblDefaultMapping.TabIndex = 7;
this.lblDefaultMapping.Text = "Default mapping:";
//
// chkGenerateNHibernateMapping
//
this.chkGenerateNHibernateMapping.AutoSize = true;
this.chkGenerateNHibernateMapping.Location = new System.Drawing.Point(13, 19);
this.chkGenerateNHibernateMapping.Name = "chkGenerateNHibernateMapping";
this.chkGenerateNHibernateMapping.Size = new System.Drawing.Size(170, 17);
this.chkGenerateNHibernateMapping.TabIndex = 6;
this.chkGenerateNHibernateMapping.Text = "Generate NHibernate mapping";
this.chkGenerateNHibernateMapping.UseVisualStyleBackColor = true;
//
// lblSolutionType
//
this.lblSolutionType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblSolutionType.AutoSize = true;
this.lblSolutionType.Location = new System.Drawing.Point(308, 67);
this.lblSolutionType.Name = "lblSolutionType";
this.lblSolutionType.Size = new System.Drawing.Size(101, 13);
this.lblSolutionType.TabIndex = 12;
this.lblSolutionType.Text = "Type of solution file:";
//
// cboSolutionType
//
this.cboSolutionType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.cboSolutionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboSolutionType.FormattingEnabled = true;
this.cboSolutionType.Items.AddRange(new object[] {
"Visual Studio 2005",
"Visual Studio 2008"});
this.cboSolutionType.Location = new System.Drawing.Point(311, 83);
this.cboSolutionType.Name = "cboSolutionType";
this.cboSolutionType.Size = new System.Drawing.Size(133, 21);
this.cboSolutionType.TabIndex = 13;
//
// cboLanguage
//
this.cboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboLanguage.FormattingEnabled = true;
this.cboLanguage.Items.AddRange(new object[] {
"C#",
"Java"});
this.cboLanguage.Location = new System.Drawing.Point(12, 64);
this.cboLanguage.Name = "cboLanguage";
this.cboLanguage.Size = new System.Drawing.Size(60, 21);
this.cboLanguage.TabIndex = 14;
this.cboLanguage.SelectedIndexChanged += new System.EventHandler(this.cboLanguage_SelectedIndexChanged);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.btnBrowse, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.txtDestination, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.lblDestination, 0, 0);
this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 37F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(570, 37);
this.tableLayoutPanel1.TabIndex = 15;
//
// btnBrowse
//
this.btnBrowse.Anchor = System.Windows.Forms.AnchorStyles.None;
this.btnBrowse.Location = new System.Drawing.Point(495, 7);
this.btnBrowse.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
this.btnBrowse.TabIndex = 6;
this.btnBrowse.Text = "Browse...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// txtDestination
//
this.txtDestination.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.txtDestination.Location = new System.Drawing.Point(66, 8);
this.txtDestination.Name = "txtDestination";
this.txtDestination.Size = new System.Drawing.Size(423, 20);
this.txtDestination.TabIndex = 5;
//
// lblDestination
//
this.lblDestination.Anchor = System.Windows.Forms.AnchorStyles.None;
this.lblDestination.AutoSize = true;
this.lblDestination.Location = new System.Drawing.Point(0, 11);
this.lblDestination.Margin = new System.Windows.Forms.Padding(0, 0, 0, 1);
this.lblDestination.Name = "lblDestination";
this.lblDestination.Size = new System.Drawing.Size(63, 13);
this.lblDestination.TabIndex = 4;
this.lblDestination.Text = "Destination:";
//
// gpbNHibernate
//
this.gpbNHibernate.Controls.Add(this.txtTextPrefix);
this.gpbNHibernate.Controls.Add(this.lblDefaultIdGenerator);
this.gpbNHibernate.Controls.Add(this.cboDefaultIdGenerator);
this.gpbNHibernate.Controls.Add(this.chkGenerateNHibernateMapping);
this.gpbNHibernate.Controls.Add(this.lblDefaultMapping);
this.gpbNHibernate.Controls.Add(this.cboDefaultMapping);
this.gpbNHibernate.Controls.Add(this.chkDefaultLazyFetching);
this.gpbNHibernate.Controls.Add(this.chkUseUnderscoreAndLowercaseInDB);
this.gpbNHibernate.Controls.Add(this.lblUsePrefixTables);
this.gpbNHibernate.Location = new System.Drawing.Point(311, 242);
this.gpbNHibernate.Name = "gpbNHibernate";
this.gpbNHibernate.Size = new System.Drawing.Size(271, 164);
this.gpbNHibernate.TabIndex = 11;
this.gpbNHibernate.TabStop = false;
this.gpbNHibernate.Text = "NHibernate";
//
// lblDefaultIdGenerator
//
this.lblDefaultIdGenerator.AutoSize = true;
this.lblDefaultIdGenerator.Location = new System.Drawing.Point(136, 39);
this.lblDefaultIdGenerator.Name = "lblDefaultIdGenerator";
this.lblDefaultIdGenerator.Size = new System.Drawing.Size(103, 13);
this.lblDefaultIdGenerator.TabIndex = 16;
this.lblDefaultIdGenerator.Text = "Default id generator:";
//
// cboDefaultIdGenerator
//
this.cboDefaultIdGenerator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDefaultIdGenerator.FormattingEnabled = true;
this.cboDefaultIdGenerator.Location = new System.Drawing.Point(139, 55);
this.cboDefaultIdGenerator.Name = "cboDefaultIdGenerator";
this.cboDefaultIdGenerator.Size = new System.Drawing.Size(121, 21);
this.cboDefaultIdGenerator.TabIndex = 15;
//
// lblUsePrefixTables
//
this.lblUsePrefixTables.AutoSize = true;
this.lblUsePrefixTables.Location = new System.Drawing.Point(10, 142);
this.lblUsePrefixTables.Name = "lblUsePrefixTables";
this.lblUsePrefixTables.Size = new System.Drawing.Size(193, 13);
this.lblUsePrefixTables.TabIndex = 14;
this.lblUsePrefixTables.Text = "Use prefix in the tables (empty to none):";
//
// txtTextPrefix
//
this.txtTextPrefix.Location = new System.Drawing.Point(200, 139);
this.txtTextPrefix.Name = "txtTextPrefix";
this.txtTextPrefix.Size = new System.Drawing.Size(65, 20);
this.txtTextPrefix.TabIndex = 13;
this.txtTextPrefix.Text = "pfx_";
//
// chkGenerateCodeFromTemplates
//
this.chkGenerateCodeFromTemplates.AutoSize = true;
this.chkGenerateCodeFromTemplates.Location = new System.Drawing.Point(13, 19);
this.chkGenerateCodeFromTemplates.Name = "chkGenerateCodeFromTemplates";
this.chkGenerateCodeFromTemplates.Size = new System.Drawing.Size(168, 17);
this.chkGenerateCodeFromTemplates.TabIndex = 16;
this.chkGenerateCodeFromTemplates.Text = "Generate code from templates";
this.chkGenerateCodeFromTemplates.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.chkGenerateCodeFromTemplates);
this.groupBox1.Location = new System.Drawing.Point(12, 361);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(285, 45);
this.groupBox1.TabIndex = 18;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Templates";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.chkGenerateSqlCode);
this.groupBox2.Controls.Add(this.cboSqlToServerType);
this.groupBox2.Location = new System.Drawing.Point(12, 310);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(285, 45);
this.groupBox2.TabIndex = 19;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "SQL";
//
// chkGenerateSqlCode
//
this.chkGenerateSqlCode.AutoSize = true;
this.chkGenerateSqlCode.Location = new System.Drawing.Point(13, 19);
this.chkGenerateSqlCode.Name = "chkGenerateSqlCode";
this.chkGenerateSqlCode.Size = new System.Drawing.Size(136, 17);
this.chkGenerateSqlCode.TabIndex = 2;
this.chkGenerateSqlCode.Text = "Generate SQL code to:";
this.chkGenerateSqlCode.UseVisualStyleBackColor = true;
//
// cboSqlToServerType
//
this.cboSqlToServerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboSqlToServerType.FormattingEnabled = true;
this.cboSqlToServerType.Location = new System.Drawing.Point(158, 17);
this.cboSqlToServerType.Name = "cboSqlToServerType";
this.cboSqlToServerType.Size = new System.Drawing.Size(121, 21);
this.cboSqlToServerType.TabIndex = 1;
//
// lblTargetFrameworkVersion
//
this.lblTargetFrameworkVersion.AutoSize = true;
this.lblTargetFrameworkVersion.Location = new System.Drawing.Point(447, 67);
this.lblTargetFrameworkVersion.Name = "lblTargetFrameworkVersion";
this.lblTargetFrameworkVersion.Size = new System.Drawing.Size(130, 13);
this.lblTargetFrameworkVersion.TabIndex = 20;
this.lblTargetFrameworkVersion.Text = "Target framework version:";
//
// cboTargetFrameworkVersion
//
this.cboTargetFrameworkVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboTargetFrameworkVersion.FormattingEnabled = true;
this.cboTargetFrameworkVersion.Location = new System.Drawing.Point(450, 83);
this.cboTargetFrameworkVersion.Name = "cboTargetFrameworkVersion";
this.cboTargetFrameworkVersion.Size = new System.Drawing.Size(132, 21);
this.cboTargetFrameworkVersion.TabIndex = 21;
//
// Dialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(594, 451);
this.Controls.Add(this.cboTargetFrameworkVersion);
this.Controls.Add(this.lblTargetFrameworkVersion);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.cboLanguage);
this.Controls.Add(this.cboSolutionType);
this.Controls.Add(this.lblSolutionType);
this.Controls.Add(this.gpbNHibernate);
this.Controls.Add(this.grpCodeStyle);
this.Controls.Add(this.btnAddItem);
this.Controls.Add(this.txtNewImport);
this.Controls.Add(this.importToolStrip);
this.Controls.Add(this.lstImportList);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnGenerate);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(600, 309);
this.Name = "Dialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Code Generation";
((System.ComponentModel.ISupportInitialize)(this.updIndentSize)).EndInit();
this.importToolStrip.ResumeLayout(false);
this.importToolStrip.PerformLayout();
this.grpCodeStyle.ResumeLayout(false);
this.grpCodeStyle.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.gpbNHibernate.ResumeLayout(false);
this.gpbNHibernate.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : OptionsDialog.Designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.tabOptions = new System.Windows.Forms.TabControl();
this.tabGeneral = new System.Windows.Forms.TabPage();
this.grpGeneral = new System.Windows.Forms.GroupBox();
this.chkRememberOpenProjects = new System.Windows.Forms.CheckBox();
this.lblRequiresRestart = new System.Windows.Forms.Label();
this.lblLanguage = new System.Windows.Forms.Label();
this.btnClearRecents = new System.Windows.Forms.Button();
this.cboLanguage = new System.Windows.Forms.ComboBox();
this.grpDiagram = new System.Windows.Forms.GroupBox();
this.panelClearType = new System.Windows.Forms.Panel();
this.chkClearTypeForImages = new System.Windows.Forms.CheckBox();
this.radClearTypeNever = new System.Windows.Forms.RadioButton();
this.radClearTypeAlways = new System.Windows.Forms.RadioButton();
this.radClearTypeWhenZoomed = new System.Windows.Forms.RadioButton();
this.lblUseClearType = new System.Windows.Forms.Label();
this.panelChevron = new System.Windows.Forms.Panel();
this.lblShowChevron = new System.Windows.Forms.Label();
this.radChevronAsNeeded = new System.Windows.Forms.RadioButton();
this.radChevronNever = new System.Windows.Forms.RadioButton();
this.radChevronAlways = new System.Windows.Forms.RadioButton();
this.chkUsePrecisionSnapping = new System.Windows.Forms.CheckBox();
this.tabStyle = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.btnClear = new System.Windows.Forms.Button();
this.stylePropertyGrid = new System.Windows.Forms.PropertyGrid();
this.cboStyles = new System.Windows.Forms.ComboBox();
this.btnLoad = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.tabOptions.SuspendLayout();
this.tabGeneral.SuspendLayout();
this.grpGeneral.SuspendLayout();
this.grpDiagram.SuspendLayout();
this.panelClearType.SuspendLayout();
this.panelChevron.SuspendLayout();
this.tabStyle.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.AutoSize = true;
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(84, 3);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.AutoSize = true;
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(3, 3);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// tabOptions
//
this.tabOptions.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.tabOptions.Controls.Add(this.tabGeneral);
this.tabOptions.Controls.Add(this.tabStyle);
this.tabOptions.Location = new System.Drawing.Point(12, 12);
this.tabOptions.Multiline = true;
this.tabOptions.Name = "tabOptions";
this.tabOptions.SelectedIndex = 0;
this.tabOptions.Size = new System.Drawing.Size(328, 442);
this.tabOptions.TabIndex = 4;
//
// tabGeneral
//
this.tabGeneral.Controls.Add(this.grpGeneral);
this.tabGeneral.Controls.Add(this.grpDiagram);
this.tabGeneral.Location = new System.Drawing.Point(4, 22);
this.tabGeneral.Name = "tabGeneral";
this.tabGeneral.Padding = new System.Windows.Forms.Padding(3);
this.tabGeneral.Size = new System.Drawing.Size(320, 416);
this.tabGeneral.TabIndex = 0;
this.tabGeneral.Text = "General";
this.tabGeneral.UseVisualStyleBackColor = true;
//
// grpGeneral
//
this.grpGeneral.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.grpGeneral.Controls.Add(this.chkRememberOpenProjects);
this.grpGeneral.Controls.Add(this.lblRequiresRestart);
this.grpGeneral.Controls.Add(this.lblLanguage);
this.grpGeneral.Controls.Add(this.btnClearRecents);
this.grpGeneral.Controls.Add(this.cboLanguage);
this.grpGeneral.Location = new System.Drawing.Point(6, 6);
this.grpGeneral.Name = "grpGeneral";
this.grpGeneral.Size = new System.Drawing.Size(308, 131);
this.grpGeneral.TabIndex = 0;
this.grpGeneral.TabStop = false;
this.grpGeneral.Text = "General";
//
// chkRememberOpenProjects
//
this.chkRememberOpenProjects.AutoSize = true;
this.chkRememberOpenProjects.Location = new System.Drawing.Point(9, 74);
this.chkRememberOpenProjects.Name = "chkRememberOpenProjects";
this.chkRememberOpenProjects.Size = new System.Drawing.Size(175, 17);
this.chkRememberOpenProjects.TabIndex = 5;
this.chkRememberOpenProjects.Text = "Remember last opened projects";
this.chkRememberOpenProjects.UseVisualStyleBackColor = true;
//
// lblRequiresRestart
//
this.lblRequiresRestart.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblRequiresRestart.Enabled = false;
this.lblRequiresRestart.Location = new System.Drawing.Point(6, 41);
this.lblRequiresRestart.Name = "lblRequiresRestart";
this.lblRequiresRestart.Size = new System.Drawing.Size(296, 43);
this.lblRequiresRestart.TabIndex = 4;
this.lblRequiresRestart.Text = "Changing the language requires application restart.";
//
// lblLanguage
//
this.lblLanguage.AutoSize = true;
this.lblLanguage.Location = new System.Drawing.Point(6, 20);
this.lblLanguage.Name = "lblLanguage";
this.lblLanguage.Size = new System.Drawing.Size(58, 13);
this.lblLanguage.TabIndex = 0;
this.lblLanguage.Text = "Language:";
//
// btnClearRecents
//
this.btnClearRecents.AutoSize = true;
this.btnClearRecents.Location = new System.Drawing.Point(9, 97);
this.btnClearRecents.Name = "btnClearRecents";
this.btnClearRecents.Size = new System.Drawing.Size(110, 23);
this.btnClearRecents.TabIndex = 3;
this.btnClearRecents.Text = "Clear recent files list";
this.btnClearRecents.UseVisualStyleBackColor = true;
this.btnClearRecents.Click += new System.EventHandler(this.btnClearRecents_Click);
//
// cboLanguage
//
this.cboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboLanguage.FormattingEnabled = true;
this.cboLanguage.Location = new System.Drawing.Point(67, 17);
this.cboLanguage.Name = "cboLanguage";
this.cboLanguage.Size = new System.Drawing.Size(210, 21);
this.cboLanguage.TabIndex = 1;
//
// grpDiagram
//
this.grpDiagram.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.grpDiagram.Controls.Add(this.panelClearType);
this.grpDiagram.Controls.Add(this.panelChevron);
this.grpDiagram.Controls.Add(this.chkUsePrecisionSnapping);
this.grpDiagram.Location = new System.Drawing.Point(6, 143);
this.grpDiagram.Name = "grpDiagram";
this.grpDiagram.Size = new System.Drawing.Size(308, 267);
this.grpDiagram.TabIndex = 1;
this.grpDiagram.TabStop = false;
this.grpDiagram.Text = "Diagram";
//
// panelClearType
//
this.panelClearType.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.panelClearType.Controls.Add(this.chkClearTypeForImages);
this.panelClearType.Controls.Add(this.radClearTypeNever);
this.panelClearType.Controls.Add(this.radClearTypeAlways);
this.panelClearType.Controls.Add(this.radClearTypeWhenZoomed);
this.panelClearType.Controls.Add(this.lblUseClearType);
this.panelClearType.Location = new System.Drawing.Point(9, 150);
this.panelClearType.Name = "panelClearType";
this.panelClearType.Size = new System.Drawing.Size(293, 111);
this.panelClearType.TabIndex = 10;
//
// chkClearTypeForImages
//
this.chkClearTypeForImages.AutoSize = true;
this.chkClearTypeForImages.Location = new System.Drawing.Point(12, 90);
this.chkClearTypeForImages.Name = "chkClearTypeForImages";
this.chkClearTypeForImages.Size = new System.Drawing.Size(226, 17);
this.chkClearTypeForImages.TabIndex = 13;
this.chkClearTypeForImages.Text = "In exported images (disables transparency)";
this.chkClearTypeForImages.UseVisualStyleBackColor = true;
//
// radClearTypeNever
//
this.radClearTypeNever.AutoSize = true;
this.radClearTypeNever.Location = new System.Drawing.Point(12, 67);
this.radClearTypeNever.Name = "radClearTypeNever";
this.radClearTypeNever.Size = new System.Drawing.Size(54, 17);
this.radClearTypeNever.TabIndex = 12;
this.radClearTypeNever.TabStop = true;
this.radClearTypeNever.Text = "Never";
this.radClearTypeNever.UseVisualStyleBackColor = true;
//
// radClearTypeAlways
//
this.radClearTypeAlways.AutoSize = true;
this.radClearTypeAlways.Location = new System.Drawing.Point(12, 21);
this.radClearTypeAlways.Name = "radClearTypeAlways";
this.radClearTypeAlways.Size = new System.Drawing.Size(58, 17);
this.radClearTypeAlways.TabIndex = 11;
this.radClearTypeAlways.TabStop = true;
this.radClearTypeAlways.Text = "Always";
this.radClearTypeAlways.UseVisualStyleBackColor = true;
//
// radClearTypeWhenZoomed
//
this.radClearTypeWhenZoomed.AutoSize = true;
this.radClearTypeWhenZoomed.Location = new System.Drawing.Point(12, 44);
this.radClearTypeWhenZoomed.Name = "radClearTypeWhenZoomed";
this.radClearTypeWhenZoomed.Size = new System.Drawing.Size(125, 17);
this.radClearTypeWhenZoomed.TabIndex = 10;
this.radClearTypeWhenZoomed.TabStop = true;
this.radClearTypeWhenZoomed.Text = "When zoomed in/out";
this.radClearTypeWhenZoomed.UseVisualStyleBackColor = true;
//
// lblUseClearType
//
this.lblUseClearType.AutoSize = true;
this.lblUseClearType.Location = new System.Drawing.Point(-3, 0);
this.lblUseClearType.Name = "lblUseClearType";
this.lblUseClearType.Size = new System.Drawing.Size(77, 13);
this.lblUseClearType.TabIndex = 9;
this.lblUseClearType.Text = "Use ClearType";
//
// panelChevron
//
this.panelChevron.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panelChevron.Controls.Add(this.lblShowChevron);
this.panelChevron.Controls.Add(this.radChevronAsNeeded);
this.panelChevron.Controls.Add(this.radChevronNever);
this.panelChevron.Controls.Add(this.radChevronAlways);
this.panelChevron.Location = new System.Drawing.Point(9, 49);
this.panelChevron.Name = "panelChevron";
this.panelChevron.Size = new System.Drawing.Size(293, 89);
this.panelChevron.TabIndex = 9;
//
// lblShowChevron
//
this.lblShowChevron.AutoSize = true;
this.lblShowChevron.Location = new System.Drawing.Point(-3, 0);
this.lblShowChevron.Name = "lblShowChevron";
this.lblShowChevron.Size = new System.Drawing.Size(112, 13);
this.lblShowChevron.TabIndex = 1;
this.lblShowChevron.Text = "Show chevron button:";
//
// radChevronAsNeeded
//
this.radChevronAsNeeded.AutoSize = true;
this.radChevronAsNeeded.Location = new System.Drawing.Point(12, 44);
this.radChevronAsNeeded.Name = "radChevronAsNeeded";
this.radChevronAsNeeded.Size = new System.Drawing.Size(123, 17);
this.radChevronAsNeeded.TabIndex = 2;
this.radChevronAsNeeded.TabStop = true;
this.radChevronAsNeeded.Text = "When mouse hovers";
this.radChevronAsNeeded.UseVisualStyleBackColor = true;
//
// radChevronNever
//
this.radChevronNever.AutoSize = true;
this.radChevronNever.Location = new System.Drawing.Point(12, 67);
this.radChevronNever.Name = "radChevronNever";
this.radChevronNever.Size = new System.Drawing.Size(54, 17);
this.radChevronNever.TabIndex = 4;
this.radChevronNever.TabStop = true;
this.radChevronNever.Text = "Never";
this.radChevronNever.UseVisualStyleBackColor = true;
//
// radChevronAlways
//
this.radChevronAlways.AutoSize = true;
this.radChevronAlways.Location = new System.Drawing.Point(12, 21);
this.radChevronAlways.Name = "radChevronAlways";
this.radChevronAlways.Size = new System.Drawing.Size(58, 17);
this.radChevronAlways.TabIndex = 3;
this.radChevronAlways.TabStop = true;
this.radChevronAlways.Text = "Always";
this.radChevronAlways.UseVisualStyleBackColor = true;
//
// chkUsePrecisionSnapping
//
this.chkUsePrecisionSnapping.AutoSize = true;
this.chkUsePrecisionSnapping.Location = new System.Drawing.Point(9, 22);
this.chkUsePrecisionSnapping.Name = "chkUsePrecisionSnapping";
this.chkUsePrecisionSnapping.Size = new System.Drawing.Size(136, 17);
this.chkUsePrecisionSnapping.TabIndex = 0;
this.chkUsePrecisionSnapping.Text = "Use precision snapping";
this.chkUsePrecisionSnapping.UseVisualStyleBackColor = true;
//
// tabStyle
//
this.tabStyle.Controls.Add(this.tableLayoutPanel1);
this.tabStyle.Location = new System.Drawing.Point(4, 22);
this.tabStyle.Name = "tabStyle";
this.tabStyle.Padding = new System.Windows.Forms.Padding(3);
this.tabStyle.Size = new System.Drawing.Size(320, 416);
this.tabStyle.TabIndex = 1;
this.tabStyle.Text = "Style";
this.tabStyle.UseVisualStyleBackColor = true;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.btnClear, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.stylePropertyGrid, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.cboStyles, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.btnLoad, 1, 2);
this.tableLayoutPanel1.Controls.Add(this.btnSave, 2, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(314, 410);
this.tableLayoutPanel1.TabIndex = 6;
//
// btnClear
//
this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClear.AutoSize = true;
this.btnClear.Location = new System.Drawing.Point(74, 384);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(75, 23);
this.btnClear.TabIndex = 4;
this.btnClear.Text = "Clear";
this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// stylePropertyGrid
//
this.stylePropertyGrid.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.tableLayoutPanel1.SetColumnSpan(this.stylePropertyGrid, 3);
this.stylePropertyGrid.Location = new System.Drawing.Point(3, 3);
this.stylePropertyGrid.Name = "stylePropertyGrid";
this.stylePropertyGrid.Size = new System.Drawing.Size(308, 348);
this.stylePropertyGrid.TabIndex = 0;
this.stylePropertyGrid.ToolbarVisible = false;
this.stylePropertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.stylePropertyGrid_PropertyValueChanged);
//
// cboStyles
//
this.cboStyles.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel1.SetColumnSpan(this.cboStyles, 3);
this.cboStyles.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboStyles.FormattingEnabled = true;
this.cboStyles.Location = new System.Drawing.Point(3, 357);
this.cboStyles.Name = "cboStyles";
this.cboStyles.Size = new System.Drawing.Size(308, 21);
this.cboStyles.TabIndex = 1;
this.cboStyles.SelectedIndexChanged += new System.EventHandler(this.cboStyles_SelectedIndexChanged);
//
// btnLoad
//
this.btnLoad.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnLoad.AutoSize = true;
this.btnLoad.Location = new System.Drawing.Point(155, 384);
this.btnLoad.Name = "btnLoad";
this.btnLoad.Size = new System.Drawing.Size(75, 23);
this.btnLoad.TabIndex = 2;
this.btnLoad.Text = "Load";
this.btnLoad.UseVisualStyleBackColor = true;
this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
//
// btnSave
//
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSave.AutoSize = true;
this.btnSave.Location = new System.Drawing.Point(236, 384);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 3;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.flowLayoutPanel1.AutoSize = true;
this.flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.flowLayoutPanel1.Controls.Add(this.btnCancel);
this.flowLayoutPanel1.Controls.Add(this.btnOK);
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.flowLayoutPanel1.Location = new System.Drawing.Point(178, 457);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(162, 29);
this.flowLayoutPanel1.TabIndex = 5;
//
// OptionsDialog
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(352, 498);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.tabOptions);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(360, 532);
this.Name = "OptionsDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Options";
this.tabOptions.ResumeLayout(false);
this.tabGeneral.ResumeLayout(false);
this.grpGeneral.ResumeLayout(false);
this.grpGeneral.PerformLayout();
this.grpDiagram.ResumeLayout(false);
this.grpDiagram.PerformLayout();
this.panelClearType.ResumeLayout(false);
this.panelClearType.PerformLayout();
this.panelChevron.ResumeLayout(false);
this.panelChevron.PerformLayout();
this.tabStyle.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Form1.Designer.cs
License : MIT License
Project Creator : ALEXGREENALEX
License : MIT License
Project Creator : ALEXGREENALEX
private void InitializeComponent()
{
this.listBox1 = new System.Windows.Forms.ListBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.buttonSaveSelected = new System.Windows.Forms.Button();
this.buttonTryConvert = new System.Windows.Forms.Button();
this.buttonSaveAll = new System.Windows.Forms.Button();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.pictureBox2 = new PictureBox_Ext.PictureBoxExt();
this.pictureBox1 = new PictureBox_Ext.PictureBoxExt();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// listBox1
//
this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listBox1.FormattingEnabled = true;
this.listBox1.Location = new System.Drawing.Point(3, 3);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(202, 505);
this.listBox1.TabIndex = 1;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 23.80952F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 38.09524F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 38.09524F));
this.tableLayoutPanel1.Controls.Add(this.buttonSaveSelected, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.buttonTryConvert, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.listBox1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.buttonSaveAll, 2, 1);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 2, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(874, 539);
this.tableLayoutPanel1.TabIndex = 3;
//
// buttonSaveSelected
//
this.buttonSaveSelected.Anchor = System.Windows.Forms.AnchorStyles.None;
this.buttonSaveSelected.Location = new System.Drawing.Point(318, 514);
this.buttonSaveSelected.Name = "buttonSaveSelected";
this.buttonSaveSelected.Size = new System.Drawing.Size(112, 22);
this.buttonSaveSelected.TabIndex = 7;
this.buttonSaveSelected.Text = "Save Selected";
this.buttonSaveSelected.UseVisualStyleBackColor = true;
this.buttonSaveSelected.Click += new System.EventHandler(this.buttonSaveSelected_Click);
//
// buttonTryConvert
//
this.buttonTryConvert.Anchor = System.Windows.Forms.AnchorStyles.None;
this.buttonTryConvert.Location = new System.Drawing.Point(48, 514);
this.buttonTryConvert.Name = "buttonTryConvert";
this.buttonTryConvert.Size = new System.Drawing.Size(112, 22);
this.buttonTryConvert.TabIndex = 6;
this.buttonTryConvert.Text = "BMP->TGA->BMP";
this.buttonTryConvert.UseVisualStyleBackColor = true;
this.buttonTryConvert.Click += new System.EventHandler(this.buttonTryConvert_Click);
//
// buttonSaveAll
//
this.buttonSaveAll.Anchor = System.Windows.Forms.AnchorStyles.None;
this.buttonSaveAll.Location = new System.Drawing.Point(651, 514);
this.buttonSaveAll.Name = "buttonSaveAll";
this.buttonSaveAll.Size = new System.Drawing.Size(112, 22);
this.buttonSaveAll.TabIndex = 5;
this.buttonSaveAll.Text = "Save All";
this.buttonSaveAll.UseVisualStyleBackColor = true;
this.buttonSaveAll.Click += new System.EventHandler(this.buttonSaveAll_Click);
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 1;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Controls.Add(this.richTextBox1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.pictureBox2, 0, 1);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(208, 0);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 2;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(332, 511);
this.tableLayoutPanel2.TabIndex = 9;
//
// richTextBox1
//
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox1.Location = new System.Drawing.Point(3, 3);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.richTextBox1.Size = new System.Drawing.Size(326, 435);
this.richTextBox1.TabIndex = 3;
this.richTextBox1.Text = "";
//
// pictureBox2
//
this.pictureBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBox2.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear;
this.pictureBox2.Location = new System.Drawing.Point(134, 444);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality;
this.pictureBox2.Size = new System.Drawing.Size(64, 64);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox2.TabIndex = 4;
this.pictureBox2.TabStop = false;
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.Gray;
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor;
this.pictureBox1.Location = new System.Drawing.Point(543, 3);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality;
this.pictureBox1.Size = new System.Drawing.Size(328, 505);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 10;
this.pictureBox1.TabStop = false;
//
// Form1
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(874, 539);
this.Controls.Add(this.tableLayoutPanel1);
this.DoubleBuffered = true;
this.KeyPreview = true;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "TGA Sharp Lib Test";
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.Form1_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.Form1_DragEnter);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : PDFExportFinished.Designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.lblFinished = new System.Windows.Forms.Label();
this.cmdOpen = new System.Windows.Forms.Button();
this.pictureBoxPDF = new System.Windows.Forms.PictureBox();
this.cmdClose = new System.Windows.Forms.Button();
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxPDF)).BeginInit();
this.tableLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// lblFinished
//
this.lblFinished.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblFinished.Location = new System.Drawing.Point(66, 12);
this.lblFinished.Name = "lblFinished";
this.lblFinished.Size = new System.Drawing.Size(314, 48);
this.lblFinished.TabIndex = 0;
this.lblFinished.Text = "PDF Export is finished. Do you want to open the exported PDF?";
this.lblFinished.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cmdOpen
//
this.cmdOpen.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOpen.Location = new System.Drawing.Point(112, 3);
this.cmdOpen.Name = "cmdOpen";
this.cmdOpen.Size = new System.Drawing.Size(69, 23);
this.cmdOpen.TabIndex = 1;
this.cmdOpen.Text = "Open";
this.cmdOpen.UseVisualStyleBackColor = true;
//
// pictureBoxPDF
//
this.pictureBoxPDF.Image = global::PDFExport.Properties.Resources.Doreplacedent_pdf_48;
this.pictureBoxPDF.Location = new System.Drawing.Point(12, 12);
this.pictureBoxPDF.Name = "pictureBoxPDF";
this.pictureBoxPDF.Size = new System.Drawing.Size(48, 48);
this.pictureBoxPDF.TabIndex = 2;
this.pictureBoxPDF.TabStop = false;
//
// cmdClose
//
this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdClose.Location = new System.Drawing.Point(187, 3);
this.cmdClose.Name = "cmdClose";
this.cmdClose.Size = new System.Drawing.Size(69, 23);
this.cmdClose.TabIndex = 1;
this.cmdClose.Text = "Close";
this.cmdClose.UseVisualStyleBackColor = true;
//
// tableLayoutPanel
//
this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel.ColumnCount = 4;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.Controls.Add(this.cmdOpen, 1, 0);
this.tableLayoutPanel.Controls.Add(this.cmdClose, 2, 0);
this.tableLayoutPanel.Location = new System.Drawing.Point(12, 66);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 1;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel.Size = new System.Drawing.Size(368, 30);
this.tableLayoutPanel.TabIndex = 3;
//
// PDFExportFinished
//
this.AcceptButton = this.cmdOpen;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cmdClose;
this.ClientSize = new System.Drawing.Size(392, 100);
this.ControlBox = false;
this.Controls.Add(this.tableLayoutPanel);
this.Controls.Add(this.pictureBoxPDF);
this.Controls.Add(this.lblFinished);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PDFExportFinished";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "PDF Exporter";
((System.ComponentModel.ISupportInitialize)(this.pictureBoxPDF)).EndInit();
this.tableLayoutPanel.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : DownloadControl.Designer.cs
License : MIT License
Project Creator : AlturosDestinations
License : MIT License
Project Creator : AlturosDestinations
private void InitializeComponent()
{
this.buttonDownload = new System.Windows.Forms.Button();
this.labelNotification = new System.Windows.Forms.Label();
this.progressBarDownload = new System.Windows.Forms.ProgressBar();
this.groupBoxDownload = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.labelPercentage = new System.Windows.Forms.Label();
this.labelDownload = new System.Windows.Forms.Label();
this.groupBoxDownload.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// buttonDownload
//
this.buttonDownload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonDownload.Location = new System.Drawing.Point(3, 96);
this.buttonDownload.Name = "buttonDownload";
this.buttonDownload.Size = new System.Drawing.Size(426, 51);
this.buttonDownload.TabIndex = 3;
this.buttonDownload.Text = "&Download";
this.buttonDownload.UseVisualStyleBackColor = true;
this.buttonDownload.Click += new System.EventHandler(this.ButtonDownload_Click);
//
// labelNotification
//
this.labelNotification.AutoSize = true;
this.tableLayoutPanel1.SetColumnSpan(this.labelNotification, 2);
this.labelNotification.Location = new System.Drawing.Point(3, 0);
this.labelNotification.Name = "labelNotification";
this.labelNotification.Size = new System.Drawing.Size(294, 13);
this.labelNotification.TabIndex = 2;
this.labelNotification.Text = "Package isn\'t available locally, please start the download first";
//
// progressBarDownload
//
this.progressBarDownload.Dock = System.Windows.Forms.DockStyle.Fill;
this.progressBarDownload.Location = new System.Drawing.Point(3, 33);
this.progressBarDownload.Name = "progressBarDownload";
this.progressBarDownload.Size = new System.Drawing.Size(360, 25);
this.progressBarDownload.TabIndex = 4;
this.progressBarDownload.Visible = false;
//
// groupBoxDownload
//
this.groupBoxDownload.Controls.Add(this.tableLayoutPanel1);
this.groupBoxDownload.Controls.Add(this.buttonDownload);
this.groupBoxDownload.Controls.Add(this.labelDownload);
this.groupBoxDownload.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBoxDownload.Location = new System.Drawing.Point(0, 0);
this.groupBoxDownload.Name = "groupBoxDownload";
this.groupBoxDownload.Size = new System.Drawing.Size(432, 223);
this.groupBoxDownload.TabIndex = 5;
this.groupBoxDownload.TabStop = false;
this.groupBoxDownload.Text = "Download";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
this.tableLayoutPanel1.Controls.Add(this.labelNotification, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.progressBarDownload, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.labelPercentage, 1, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 18F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(426, 61);
this.tableLayoutPanel1.TabIndex = 6;
//
// labelPercentage
//
this.labelPercentage.AutoSize = true;
this.labelPercentage.BackColor = System.Drawing.SystemColors.Control;
this.labelPercentage.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelPercentage.Location = new System.Drawing.Point(369, 30);
this.labelPercentage.Name = "labelPercentage";
this.labelPercentage.Size = new System.Drawing.Size(54, 31);
this.labelPercentage.TabIndex = 5;
this.labelPercentage.Text = "0%";
this.labelPercentage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.labelPercentage.Visible = false;
//
// labelDownload
//
this.labelDownload.AutoSize = true;
this.labelDownload.Location = new System.Drawing.Point(6, 80);
this.labelDownload.Name = "labelDownload";
this.labelDownload.Size = new System.Drawing.Size(103, 13);
this.labelDownload.TabIndex = 6;
this.labelDownload.Text = "labelDownloadBytes";
//
// DownloadControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.groupBoxDownload);
this.Name = "DownloadControl";
this.Size = new System.Drawing.Size(432, 223);
this.groupBoxDownload.ResumeLayout(false);
this.groupBoxDownload.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : Main.designer.cs
License : MIT License
Project Creator : AlturosDestinations
License : MIT License
Project Creator : AlturosDestinations
private void InitializeComponent()
{
this.menuStripMain = new System.Windows.Forms.MenuStrip();
this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.syncToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.configurationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.autoplaceAnnotationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showLabelsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.addPackageStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.panelImageList = new System.Windows.Forms.Panel();
this.tabControl = new System.Windows.Forms.TabControl();
this.tabPageImages = new System.Windows.Forms.TabPage();
this.downloadControl = new Alturos.ImageAnnotation.CustomControls.DownloadControl();
this.annotationImageListControl = new Alturos.ImageAnnotation.CustomControls.AnnotationImageListControl();
this.tabPageData = new System.Windows.Forms.TabPage();
this.groupBoxInfo = new System.Windows.Forms.GroupBox();
this.labelUserName = new System.Windows.Forms.Label();
this.labelUser = new System.Windows.Forms.Label();
this.tagEditControl = new Alturos.ImageAnnotation.CustomControls.TagEditControl();
this.annotationDrawControl = new Alturos.ImageAnnotation.CustomControls.AnnotationDrawControl();
this.annotationPackageListControl = new Alturos.ImageAnnotation.CustomControls.AnnotationPackageListControl();
this.menuStripMain.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.panelImageList.SuspendLayout();
this.tabControl.SuspendLayout();
this.tabPageImages.SuspendLayout();
this.tabPageData.SuspendLayout();
this.groupBoxInfo.SuspendLayout();
this.SuspendLayout();
//
// menuStripMain
//
this.menuStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.loadToolStripMenuItem,
this.syncToolStripMenuItem,
this.configurationToolStripMenuItem,
this.addPackageStripMenuItem,
this.exportToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStripMain.Location = new System.Drawing.Point(0, 0);
this.menuStripMain.Name = "menuStripMain";
this.menuStripMain.Size = new System.Drawing.Size(1334, 24);
this.menuStripMain.TabIndex = 2;
this.menuStripMain.Text = "menuStrip1";
//
// loadToolStripMenuItem
//
this.loadToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.arrow_refresh_small;
this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
this.loadToolStripMenuItem.Size = new System.Drawing.Size(74, 20);
this.loadToolStripMenuItem.Text = "&Refresh";
this.loadToolStripMenuItem.Click += new System.EventHandler(this.RefreshToolStripMenuItem_Click);
//
// syncToolStripMenuItem
//
this.syncToolStripMenuItem.Enabled = false;
this.syncToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.disk;
this.syncToolStripMenuItem.Name = "syncToolStripMenuItem";
this.syncToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
this.syncToolStripMenuItem.Text = "&Save";
this.syncToolStripMenuItem.Click += new System.EventHandler(this.SyncToolStripMenuItem_Click);
//
// configurationToolStripMenuItem
//
this.configurationToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.autoplaceAnnotationsToolStripMenuItem,
this.showLabelsToolStripMenuItem,
this.toolStripSeparator1,
this.settingsToolStripMenuItem});
this.configurationToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.wrench;
this.configurationToolStripMenuItem.Name = "configurationToolStripMenuItem";
this.configurationToolStripMenuItem.Size = new System.Drawing.Size(109, 20);
this.configurationToolStripMenuItem.Text = "&Configuration";
//
// autoplaceAnnotationsToolStripMenuItem
//
this.autoplaceAnnotationsToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.shape_handles;
this.autoplaceAnnotationsToolStripMenuItem.Name = "autoplaceAnnotationsToolStripMenuItem";
this.autoplaceAnnotationsToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
this.autoplaceAnnotationsToolStripMenuItem.Text = "Autoplace Annotations";
this.autoplaceAnnotationsToolStripMenuItem.Click += new System.EventHandler(this.AutoplaceAnnotationsToolStripMenuItem_Click);
//
// showLabelsToolStripMenuItem
//
this.showLabelsToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.font;
this.showLabelsToolStripMenuItem.Name = "showLabelsToolStripMenuItem";
this.showLabelsToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
this.showLabelsToolStripMenuItem.Text = "Show Object Labels in Image";
this.showLabelsToolStripMenuItem.Click += new System.EventHandler(this.ShowLabelsToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(223, 6);
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.cog;
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
this.settingsToolStripMenuItem.Text = "Settings";
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.SettingsToolStripMenuItem_Click);
//
// addPackageStripMenuItem
//
this.addPackageStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.add;
this.addPackageStripMenuItem.Name = "addPackageStripMenuItem";
this.addPackageStripMenuItem.Size = new System.Drawing.Size(104, 20);
this.addPackageStripMenuItem.Text = "&Add Package";
this.addPackageStripMenuItem.Click += new System.EventHandler(this.AddPackageStripMenuItem_Click);
//
// exportToolStripMenuItem
//
this.exportToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.folder_go;
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
this.exportToolStripMenuItem.Size = new System.Drawing.Size(141, 20);
this.exportToolStripMenuItem.Text = "&Export Training Data";
this.exportToolStripMenuItem.Click += new System.EventHandler(this.ExportToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.helpToolStripMenuItem.Image = global::Alturos.ImageAnnotation.Properties.Resources.help;
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
this.helpToolStripMenuItem.Text = "&Help";
this.helpToolStripMenuItem.Click += new System.EventHandler(this.HelpToolStripMenuItem_Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 307F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 191F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.panelImageList, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.annotationDrawControl, 2, 0);
this.tableLayoutPanel1.Controls.Add(this.annotationPackageListControl, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1334, 530);
this.tableLayoutPanel1.TabIndex = 3;
//
// panelImageList
//
this.panelImageList.Controls.Add(this.tabControl);
this.panelImageList.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelImageList.Location = new System.Drawing.Point(310, 3);
this.panelImageList.Name = "panelImageList";
this.panelImageList.Size = new System.Drawing.Size(185, 524);
this.panelImageList.TabIndex = 4;
//
// tabControl
//
this.tabControl.Controls.Add(this.tabPageImages);
this.tabControl.Controls.Add(this.tabPageData);
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl.Location = new System.Drawing.Point(0, 0);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(185, 524);
this.tabControl.TabIndex = 2;
//
// tabPageImages
//
this.tabPageImages.Controls.Add(this.downloadControl);
this.tabPageImages.Controls.Add(this.annotationImageListControl);
this.tabPageImages.Location = new System.Drawing.Point(4, 22);
this.tabPageImages.Name = "tabPageImages";
this.tabPageImages.Padding = new System.Windows.Forms.Padding(3);
this.tabPageImages.Size = new System.Drawing.Size(177, 498);
this.tabPageImages.TabIndex = 0;
this.tabPageImages.Text = "Images";
this.tabPageImages.UseVisualStyleBackColor = true;
//
// downloadControl
//
this.downloadControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.downloadControl.BackColor = System.Drawing.SystemColors.Control;
this.downloadControl.Location = new System.Drawing.Point(-4, 0);
this.downloadControl.Name = "downloadControl";
this.downloadControl.Size = new System.Drawing.Size(181, 69);
this.downloadControl.TabIndex = 1;
//
// annotationImageListControl
//
this.annotationImageListControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.annotationImageListControl.Location = new System.Drawing.Point(3, 3);
this.annotationImageListControl.Name = "annotationImageListControl";
this.annotationImageListControl.Size = new System.Drawing.Size(171, 492);
this.annotationImageListControl.TabIndex = 0;
//
// tabPageData
//
this.tabPageData.Controls.Add(this.groupBoxInfo);
this.tabPageData.Controls.Add(this.tagEditControl);
this.tabPageData.Location = new System.Drawing.Point(4, 22);
this.tabPageData.Name = "tabPageData";
this.tabPageData.Padding = new System.Windows.Forms.Padding(3);
this.tabPageData.Size = new System.Drawing.Size(177, 498);
this.tabPageData.TabIndex = 1;
this.tabPageData.Text = "Data";
this.tabPageData.UseVisualStyleBackColor = true;
//
// groupBoxInfo
//
this.groupBoxInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxInfo.Controls.Add(this.labelUserName);
this.groupBoxInfo.Controls.Add(this.labelUser);
this.groupBoxInfo.Location = new System.Drawing.Point(6, 114);
this.groupBoxInfo.Name = "groupBoxInfo";
this.groupBoxInfo.Size = new System.Drawing.Size(165, 46);
this.groupBoxInfo.TabIndex = 1;
this.groupBoxInfo.TabStop = false;
this.groupBoxInfo.Text = "Info";
//
// labelUserName
//
this.labelUserName.AutoSize = true;
this.labelUserName.Location = new System.Drawing.Point(46, 20);
this.labelUserName.Name = "labelUserName";
this.labelUserName.Size = new System.Drawing.Size(0, 13);
this.labelUserName.TabIndex = 1;
//
// labelUser
//
this.labelUser.AutoSize = true;
this.labelUser.Location = new System.Drawing.Point(7, 20);
this.labelUser.Name = "labelUser";
this.labelUser.Size = new System.Drawing.Size(32, 13);
this.labelUser.TabIndex = 0;
this.labelUser.Text = "User:";
//
// tagEditControl
//
this.tagEditControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tagEditControl.Location = new System.Drawing.Point(6, 6);
this.tagEditControl.Name = "tagEditControl";
this.tagEditControl.Size = new System.Drawing.Size(165, 102);
this.tagEditControl.TabIndex = 0;
//
// annotationDrawControl
//
this.annotationDrawControl.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.annotationDrawControl.AutoplaceAnnotations = false;
this.annotationDrawControl.Location = new System.Drawing.Point(501, 3);
this.annotationDrawControl.Name = "annotationDrawControl";
this.annotationDrawControl.Size = new System.Drawing.Size(830, 524);
this.annotationDrawControl.TabIndex = 2;
//
// annotationPackageListControl
//
this.annotationPackageListControl.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.annotationPackageListControl.Location = new System.Drawing.Point(3, 3);
this.annotationPackageListControl.Name = "annotationPackageListControl";
this.annotationPackageListControl.Size = new System.Drawing.Size(301, 524);
this.annotationPackageListControl.TabIndex = 1;
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1334, 554);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.menuStripMain);
this.KeyPreview = true;
this.MainMenuStrip = this.menuStripMain;
this.Name = "Main";
this.Text = "change by code";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Main_FormClosed);
this.Load += new System.EventHandler(this.Main_Load);
this.menuStripMain.ResumeLayout(false);
this.menuStripMain.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.panelImageList.ResumeLayout(false);
this.tabControl.ResumeLayout(false);
this.tabPageImages.ResumeLayout(false);
this.tabPageData.ResumeLayout(false);
this.groupBoxInfo.ResumeLayout(false);
this.groupBoxInfo.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Main.Designer.cs
License : MIT License
Project Creator : AlturosDestinations
License : MIT License
Project Creator : AlturosDestinations
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
this.buttonProcessImage = new System.Windows.Forms.Button();
this.dataGridViewResult = new System.Windows.Forms.DataGridView();
this.ColumnType = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnConfidence = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnX = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnY = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnResultWidth = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnResultHeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.dataGridViewFiles = new System.Windows.Forms.DataGridView();
this.ColumnFileName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnWidth = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnHeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.openFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.groupBoxResult = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.panel1 = new System.Windows.Forms.Panel();
this.buttonStartTracking = new System.Windows.Forms.Button();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabelYoloInfo = new System.Windows.Forms.ToolStripStatusLabel();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.configurationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cpuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.downloadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewResult)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewFiles)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.groupBoxResult.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panel1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// buttonProcessImage
//
this.buttonProcessImage.Location = new System.Drawing.Point(9, 9);
this.buttonProcessImage.Name = "buttonProcessImage";
this.buttonProcessImage.Size = new System.Drawing.Size(120, 25);
this.buttonProcessImage.TabIndex = 0;
this.buttonProcessImage.Text = "Process Image";
this.buttonProcessImage.UseVisualStyleBackColor = true;
this.buttonProcessImage.Click += new System.EventHandler(this.buttonProcessImage_Click);
//
// dataGridViewResult
//
this.dataGridViewResult.AllowUserToAddRows = false;
this.dataGridViewResult.AllowUserToDeleteRows = false;
this.dataGridViewResult.AllowUserToResizeColumns = false;
this.dataGridViewResult.AllowUserToResizeRows = false;
this.dataGridViewResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewResult.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnType,
this.ColumnConfidence,
this.ColumnX,
this.ColumnY,
this.ColumnResultWidth,
this.ColumnResultHeight});
this.dataGridViewResult.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewResult.Location = new System.Drawing.Point(3, 16);
this.dataGridViewResult.MultiSelect = false;
this.dataGridViewResult.Name = "dataGridViewResult";
this.dataGridViewResult.ReadOnly = true;
this.dataGridViewResult.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewResult.Size = new System.Drawing.Size(697, 175);
this.dataGridViewResult.TabIndex = 1;
this.dataGridViewResult.SelectionChanged += new System.EventHandler(this.dataGridViewResult_SelectionChanged);
//
// ColumnType
//
this.ColumnType.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.ColumnType.DataPropertyName = "Type";
this.ColumnType.HeaderText = "Type";
this.ColumnType.Name = "ColumnType";
this.ColumnType.ReadOnly = true;
//
// ColumnConfidence
//
this.ColumnConfidence.DataPropertyName = "Confidence";
dataGridViewCellStyle1.Format = "N3";
dataGridViewCellStyle1.NullValue = null;
this.ColumnConfidence.DefaultCellStyle = dataGridViewCellStyle1;
this.ColumnConfidence.HeaderText = "Confidence";
this.ColumnConfidence.Name = "ColumnConfidence";
this.ColumnConfidence.ReadOnly = true;
//
// ColumnX
//
this.ColumnX.DataPropertyName = "X";
this.ColumnX.HeaderText = "X";
this.ColumnX.Name = "ColumnX";
this.ColumnX.ReadOnly = true;
this.ColumnX.Width = 50;
//
// ColumnY
//
this.ColumnY.DataPropertyName = "Y";
this.ColumnY.HeaderText = "Y";
this.ColumnY.Name = "ColumnY";
this.ColumnY.ReadOnly = true;
this.ColumnY.Width = 50;
//
// ColumnResultWidth
//
this.ColumnResultWidth.DataPropertyName = "Width";
this.ColumnResultWidth.HeaderText = "Width";
this.ColumnResultWidth.Name = "ColumnResultWidth";
this.ColumnResultWidth.ReadOnly = true;
this.ColumnResultWidth.Width = 50;
//
// ColumnResultHeight
//
this.ColumnResultHeight.DataPropertyName = "Height";
this.ColumnResultHeight.HeaderText = "Height";
this.ColumnResultHeight.Name = "ColumnResultHeight";
this.ColumnResultHeight.ReadOnly = true;
this.ColumnResultHeight.Width = 50;
//
// pictureBox1
//
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.Location = new System.Drawing.Point(3, 16);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(397, 229);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
//
// dataGridViewFiles
//
this.dataGridViewFiles.AllowUserToAddRows = false;
this.dataGridViewFiles.AllowUserToDeleteRows = false;
this.dataGridViewFiles.AllowUserToResizeColumns = false;
this.dataGridViewFiles.AllowUserToResizeRows = false;
this.dataGridViewFiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewFiles.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnFileName,
this.ColumnWidth,
this.ColumnHeight});
this.dataGridViewFiles.ContextMenuStrip = this.contextMenuStrip1;
this.dataGridViewFiles.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridViewFiles.Location = new System.Drawing.Point(3, 3);
this.dataGridViewFiles.MultiSelect = false;
this.dataGridViewFiles.Name = "dataGridViewFiles";
this.dataGridViewFiles.ReadOnly = true;
this.dataGridViewFiles.RowHeadersVisible = false;
this.dataGridViewFiles.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridViewFiles.Size = new System.Drawing.Size(294, 248);
this.dataGridViewFiles.TabIndex = 3;
this.dataGridViewFiles.SelectionChanged += new System.EventHandler(this.dataGridViewFiles_SelectionChanged);
this.dataGridViewFiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridViewFiles_KeyDown);
//
// ColumnFileName
//
this.ColumnFileName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.ColumnFileName.DataPropertyName = "Name";
this.ColumnFileName.HeaderText = "FileName";
this.ColumnFileName.Name = "ColumnFileName";
this.ColumnFileName.ReadOnly = true;
//
// ColumnWidth
//
this.ColumnWidth.DataPropertyName = "Width";
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
this.ColumnWidth.DefaultCellStyle = dataGridViewCellStyle2;
this.ColumnWidth.HeaderText = "Width";
this.ColumnWidth.Name = "ColumnWidth";
this.ColumnWidth.ReadOnly = true;
this.ColumnWidth.Width = 70;
//
// ColumnHeight
//
this.ColumnHeight.DataPropertyName = "Height";
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
this.ColumnHeight.DefaultCellStyle = dataGridViewCellStyle3;
this.ColumnHeight.HeaderText = "Height";
this.ColumnHeight.Name = "ColumnHeight";
this.ColumnHeight.ReadOnly = true;
this.ColumnHeight.Width = 70;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openFolderToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(138, 26);
//
// openFolderToolStripMenuItem
//
this.openFolderToolStripMenuItem.Name = "openFolderToolStripMenuItem";
this.openFolderToolStripMenuItem.Size = new System.Drawing.Size(137, 22);
this.openFolderToolStripMenuItem.Text = "&Open folder";
this.openFolderToolStripMenuItem.Click += new System.EventHandler(this.openFolderToolStripMenuItem_Click);
//
// groupBoxResult
//
this.tableLayoutPanel1.SetColumnSpan(this.groupBoxResult, 2);
this.groupBoxResult.Controls.Add(this.dataGridViewResult);
this.groupBoxResult.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBoxResult.Location = new System.Drawing.Point(3, 307);
this.groupBoxResult.Name = "groupBoxResult";
this.groupBoxResult.Size = new System.Drawing.Size(703, 194);
this.groupBoxResult.TabIndex = 4;
this.groupBoxResult.TabStop = false;
this.groupBoxResult.Text = "Result";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 300F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.groupBox2, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.dataGridViewFiles, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.groupBoxResult, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 200F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(709, 504);
this.tableLayoutPanel1.TabIndex = 5;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.pictureBox1);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox2.Location = new System.Drawing.Point(303, 3);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(403, 248);
this.groupBox2.TabIndex = 2;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Preview";
//
// panel1
//
this.tableLayoutPanel1.SetColumnSpan(this.panel1, 2);
this.panel1.Controls.Add(this.buttonStartTracking);
this.panel1.Controls.Add(this.buttonProcessImage);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(3, 257);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(703, 44);
this.panel1.TabIndex = 4;
//
// buttonStartTracking
//
this.buttonStartTracking.Location = new System.Drawing.Point(135, 10);
this.buttonStartTracking.Name = "buttonStartTracking";
this.buttonStartTracking.Size = new System.Drawing.Size(120, 23);
this.buttonStartTracking.TabIndex = 1;
this.buttonStartTracking.Text = "Start Tracking";
this.buttonStartTracking.UseVisualStyleBackColor = true;
this.buttonStartTracking.Click += new System.EventHandler(this.buttonStartTracking_Click);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabelYoloInfo});
this.statusStrip1.Location = new System.Drawing.Point(0, 528);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(709, 22);
this.statusStrip1.TabIndex = 6;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabelYoloInfo
//
this.toolStripStatusLabelYoloInfo.Name = "toolStripStatusLabelYoloInfo";
this.toolStripStatusLabelYoloInfo.Size = new System.Drawing.Size(91, 17);
this.toolStripStatusLabelYoloInfo.Text = "change by code";
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.configurationToolStripMenuItem,
this.downloadToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(709, 24);
this.menuStrip1.TabIndex = 7;
this.menuStrip1.Text = "menuStrip1";
//
// configurationToolStripMenuItem
//
this.configurationToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cpuToolStripMenuItem});
this.configurationToolStripMenuItem.Name = "configurationToolStripMenuItem";
this.configurationToolStripMenuItem.Size = new System.Drawing.Size(93, 20);
this.configurationToolStripMenuItem.Text = "Configuration";
//
// cpuToolStripMenuItem
//
this.cpuToolStripMenuItem.Checked = true;
this.cpuToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.cpuToolStripMenuItem.Name = "cpuToolStripMenuItem";
this.cpuToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.cpuToolStripMenuItem.Text = "Use only cpu";
this.cpuToolStripMenuItem.Click += new System.EventHandler(this.gpuToolStripMenuItem_Click);
//
// downloadToolStripMenuItem
//
this.downloadToolStripMenuItem.Name = "downloadToolStripMenuItem";
this.downloadToolStripMenuItem.Size = new System.Drawing.Size(120, 20);
this.downloadToolStripMenuItem.Text = "&Download Datasets";
this.downloadToolStripMenuItem.ToolTipText = "Download all Pre-Trained Datasets";
this.downloadToolStripMenuItem.Click += new System.EventHandler(this.downloadToolStripMenuItem_Click);
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(709, 550);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Main";
this.Text = "change by code";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewResult)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewFiles)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.groupBoxResult.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : frmAbout.Designer.cs
License : GNU General Public License v3.0
Project Creator : amakvana
License : GNU General Public License v3.0
Project Creator : amakvana
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 265);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 259);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 17);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Product Name";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(143, 52);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(271, 17);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 78);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 17);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "Company Name";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 107);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 126);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "Description";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 239);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// frmAbout
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 283);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmAbout";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "frmAbout";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : frmAbout.Designer.cs
License : GNU General Public License v3.0
Project Creator : amakvana
License : GNU General Public License v3.0
Project Creator : amakvana
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 265);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 259);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 17);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Product Name";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 78);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 17);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "Company Name";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 107);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 126);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "Description";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 239);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
this.okButton.Click += new System.EventHandler(this.OkButton_Click);
//
// frmAbout
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 283);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmAbout";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmAbout";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : AboutBox.Designer.cs
License : GNU General Public License v3.0
Project Creator : anderson-joyle
License : GNU General Public License v3.0
Project Creator : anderson-joyle
private void InitializeComponent()
{
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 265);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = global::Addin.AddinResources.D365O_Addin_logo;
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 259);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 17);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Product Name";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(143, 52);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(271, 17);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.Text = "Copyright";
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 78);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 17);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "Company Name";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 107);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 126);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "Description";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 239);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
//
// AboutBox
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 283);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutBox";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "AboutBox";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : AboutBox.Designer.cs
License : GNU General Public License v3.0
Project Creator : anderson-joyle
License : GNU General Public License v3.0
Project Creator : anderson-joyle
private void InitializeComponent()
{
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 265);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = global::Addin.AddinResources.D365O_Addin_logo;
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 259);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 17);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Product Name";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(143, 52);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(271, 17);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.Text = "Copyright";
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 78);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 17);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "Company Name";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 107);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 126);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = "Description";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 239);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
//
// AboutBox
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 283);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutBox";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : About.Designer.cs
License : GNU General Public License v3.0
Project Creator : AndreiFedarets
License : GNU General Public License v3.0
Project Creator : AndreiFedarets
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.logoPictureBox = new System.Windows.Forms.PictureBox();
this.labelProductName = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.labelCopyright = new System.Windows.Forms.Label();
this.labelCompanyName = new System.Windows.Forms.Label();
this.textBoxDescription = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.tableLayoutPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel
//
this.tableLayoutPanel.ColumnCount = 2;
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
this.tableLayoutPanel.Name = "tableLayoutPanel";
this.tableLayoutPanel.RowCount = 6;
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
this.tableLayoutPanel.Size = new System.Drawing.Size(417, 265);
this.tableLayoutPanel.TabIndex = 0;
//
// logoPictureBox
//
this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.logoPictureBox.Image = global::Logger.Gui.Properties.Resources.FroggerFrogMakesItHome;
this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
this.logoPictureBox.Name = "logoPictureBox";
this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
this.logoPictureBox.Size = new System.Drawing.Size(131, 259);
this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.logoPictureBox.TabIndex = 12;
this.logoPictureBox.TabStop = false;
//
// labelProductName
//
this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelProductName.Location = new System.Drawing.Point(143, 0);
this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(271, 17);
this.labelProductName.TabIndex = 19;
this.labelProductName.Text = "Logger";
this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelVersion
//
this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelVersion.Location = new System.Drawing.Point(143, 26);
this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(271, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "1.0.0.0";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCopyright
//
this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCopyright.Location = new System.Drawing.Point(143, 52);
this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(271, 17);
this.labelCopyright.TabIndex = 21;
this.labelCopyright.Text = "Copyright 2007";
this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// labelCompanyName
//
this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
this.labelCompanyName.Location = new System.Drawing.Point(143, 78);
this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
this.labelCompanyName.Name = "labelCompanyName";
this.labelCompanyName.Size = new System.Drawing.Size(271, 17);
this.labelCompanyName.TabIndex = 22;
this.labelCompanyName.Text = "Herb";
this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// textBoxDescription
//
this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxDescription.Location = new System.Drawing.Point(143, 107);
this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
this.textBoxDescription.Multiline = true;
this.textBoxDescription.Name = "textBoxDescription";
this.textBoxDescription.ReadOnly = true;
this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxDescription.Size = new System.Drawing.Size(271, 126);
this.textBoxDescription.TabIndex = 23;
this.textBoxDescription.TabStop = false;
this.textBoxDescription.Text = resources.GetString("textBoxDescription.Text");
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(339, 239);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 24;
this.okButton.Text = "&OK";
//
// About
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(435, 283);
this.Controls.Add(this.tableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "About";
this.Padding = new System.Windows.Forms.Padding(9);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About";
this.tableLayoutPanel.ResumeLayout(false);
this.tableLayoutPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : CheckerPrompt.Designer.cs
License : MIT License
Project Creator : andrew-schofield
License : MIT License
Project Creator : andrew-schofield
private void InitializeComponent()
{
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.checkOldEntries = new System.Windows.Forms.CheckBox();
this.ignoreDeletedEntries = new System.Windows.Forms.CheckBox();
this.checkAllBreaches = new System.Windows.Forms.CheckBox();
this.supportedBreachList = new System.Windows.Forms.ComboBox();
this.checkAllBreachLabel = new System.Windows.Forms.Label();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.breachDescription = new System.Windows.Forms.Label();
this.expireEntries = new System.Windows.Forms.CheckBox();
this.ignoreExpiredEntries = new System.Windows.Forms.CheckBox();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(181, 222);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 0;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(262, 222);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 1;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
//
// checkOldEntries
//
this.checkOldEntries.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.checkOldEntries.AutoSize = true;
this.checkOldEntries.Checked = true;
this.checkOldEntries.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkOldEntries.Location = new System.Drawing.Point(3, 28);
this.checkOldEntries.Name = "checkOldEntries";
this.checkOldEntries.Size = new System.Drawing.Size(316, 17);
this.checkOldEntries.TabIndex = 2;
this.checkOldEntries.Text = "Only check entries that have not changed since the breach date";
this.checkOldEntries.UseVisualStyleBackColor = true;
//
// ignoreDeletedEntries
//
this.ignoreDeletedEntries.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.ignoreDeletedEntries.AutoSize = true;
this.ignoreDeletedEntries.Checked = true;
this.ignoreDeletedEntries.CheckState = System.Windows.Forms.CheckState.Checked;
this.ignoreDeletedEntries.Location = new System.Drawing.Point(3, 52);
this.ignoreDeletedEntries.Name = "ignoreDeletedEntries";
this.ignoreDeletedEntries.Size = new System.Drawing.Size(242, 17);
this.ignoreDeletedEntries.TabIndex = 5;
this.ignoreDeletedEntries.Text = "Ignore any deleted entries (i.e. in Recycle Bin)";
this.ignoreDeletedEntries.UseVisualStyleBackColor = true;
//
// checkAllBreaches
//
this.checkAllBreaches.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.checkAllBreaches.AutoSize = true;
this.checkAllBreaches.Location = new System.Drawing.Point(3, 4);
this.checkAllBreaches.Name = "checkAllBreaches";
this.checkAllBreaches.Size = new System.Drawing.Size(167, 17);
this.checkAllBreaches.TabIndex = 6;
this.checkAllBreaches.Text = "Check all supported breaches";
this.checkAllBreaches.UseVisualStyleBackColor = true;
//
// supportedBreachList
//
this.supportedBreachList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.supportedBreachList.DisplayMember = "Text";
this.supportedBreachList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.supportedBreachList.FormattingEnabled = true;
this.supportedBreachList.Location = new System.Drawing.Point(134, 9);
this.supportedBreachList.Name = "supportedBreachList";
this.supportedBreachList.Size = new System.Drawing.Size(203, 21);
this.supportedBreachList.TabIndex = 7;
//
// checkAllBreachLabel
//
this.checkAllBreachLabel.AutoSize = true;
this.checkAllBreachLabel.Location = new System.Drawing.Point(12, 12);
this.checkAllBreachLabel.Name = "checkAllBreachLabel";
this.checkAllBreachLabel.Size = new System.Drawing.Size(116, 13);
this.checkAllBreachLabel.TabIndex = 8;
this.checkAllBreachLabel.Text = "Check breaches using:";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.ignoreExpiredEntries, 0, 3);
this.tableLayoutPanel1.Controls.Add(this.expireEntries, 0, 4);
this.tableLayoutPanel1.Controls.Add(this.checkAllBreaches, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.checkOldEntries, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.ignoreDeletedEntries, 0, 2);
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 29);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 5;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(322, 120);
this.tableLayoutPanel1.TabIndex = 9;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.breachDescription);
this.flowLayoutPanel1.Controls.Add(this.tableLayoutPanel1);
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
this.flowLayoutPanel1.Location = new System.Drawing.Point(12, 36);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(325, 180);
this.flowLayoutPanel1.TabIndex = 10;
//
// breachDescription
//
this.breachDescription.AutoSize = true;
this.breachDescription.BackColor = System.Drawing.Color.LightGoldenrodYellow;
this.breachDescription.ForeColor = System.Drawing.Color.Red;
this.breachDescription.Location = new System.Drawing.Point(3, 0);
this.breachDescription.MaximumSize = new System.Drawing.Size(319, 0);
this.breachDescription.MinimumSize = new System.Drawing.Size(319, 0);
this.breachDescription.Name = "breachDescription";
this.breachDescription.Size = new System.Drawing.Size(319, 26);
this.breachDescription.TabIndex = 10;
this.breachDescription.Text = "A description that provides pertinent information about the breach checker";
//
// expireEntries
//
this.expireEntries.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.expireEntries.AutoSize = true;
this.expireEntries.Location = new System.Drawing.Point(3, 100);
this.expireEntries.Name = "expireEntries";
this.expireEntries.Size = new System.Drawing.Size(253, 17);
this.expireEntries.TabIndex = 7;
this.expireEntries.Text = "Expire any entries that are found to be breached";
this.expireEntries.UseVisualStyleBackColor = true;
//
// ignoreExpiredEntries
//
this.ignoreExpiredEntries.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.ignoreExpiredEntries.AutoSize = true;
this.ignoreExpiredEntries.Checked = true;
this.ignoreExpiredEntries.CheckState = System.Windows.Forms.CheckState.Checked;
this.ignoreExpiredEntries.Location = new System.Drawing.Point(3, 76);
this.ignoreExpiredEntries.Name = "ignoreExpiredEntries";
this.ignoreExpiredEntries.Size = new System.Drawing.Size(127, 17);
this.ignoreExpiredEntries.TabIndex = 10;
this.ignoreExpiredEntries.Text = "Ignore expired entries";
this.ignoreExpiredEntries.UseVisualStyleBackColor = true;
//
// CheckerPrompt
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(349, 257);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.checkAllBreachLabel);
this.Controls.Add(this.supportedBreachList);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CheckerPrompt";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Have I Been Pwned?";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : LinedefInfoPanel.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
System.Windows.Forms.Label label1;
System.Windows.Forms.Label label4;
System.Windows.Forms.Label label3;
System.Windows.Forms.Label label2;
this.infopanel = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.action = new System.Windows.Forms.Label();
this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
this.backoffset = new System.Windows.Forms.Label();
this.unpegged = new System.Windows.Forms.Label();
this.backoffsetlabel = new System.Windows.Forms.Label();
this.length = new System.Windows.Forms.Label();
this.frontoffset = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.frontoffsetlabel = new System.Windows.Forms.Label();
this.angle = new System.Windows.Forms.Label();
this.tag = new System.Windows.Forms.Label();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.arglbl1 = new System.Windows.Forms.Label();
this.arg1 = new System.Windows.Forms.Label();
this.arglbl2 = new System.Windows.Forms.Label();
this.arg5 = new System.Windows.Forms.Label();
this.arglbl3 = new System.Windows.Forms.Label();
this.arg4 = new System.Windows.Forms.Label();
this.arglbl5 = new System.Windows.Forms.Label();
this.arg3 = new System.Windows.Forms.Label();
this.arglbl4 = new System.Windows.Forms.Label();
this.arg2 = new System.Windows.Forms.Label();
this.frontpanel = new System.Windows.Forms.GroupBox();
this.frontlowtex = new System.Windows.Forms.Panel();
this.frontsector = new System.Windows.Forms.Label();
this.frontlowname = new System.Windows.Forms.Label();
this.frontmidtex = new System.Windows.Forms.Panel();
this.fronthighname = new System.Windows.Forms.Label();
this.fronthightex = new System.Windows.Forms.Panel();
this.frontmidname = new System.Windows.Forms.Label();
this.backpanel = new System.Windows.Forms.GroupBox();
this.backlowtex = new System.Windows.Forms.Panel();
this.backsector = new System.Windows.Forms.Label();
this.backlowname = new System.Windows.Forms.Label();
this.backmidname = new System.Windows.Forms.Label();
this.backmidtex = new System.Windows.Forms.Panel();
this.backhighname = new System.Windows.Forms.Label();
this.backhightex = new System.Windows.Forms.Panel();
label1 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
label3 = new System.Windows.Forms.Label();
label2 = new System.Windows.Forms.Label();
this.infopanel.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.tableLayoutPanel5.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.frontpanel.SuspendLayout();
this.backpanel.SuspendLayout();
this.SuspendLayout();
//
// label1
//
label1.Dock = System.Windows.Forms.DockStyle.Fill;
label1.Location = new System.Drawing.Point(4, 0);
label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(51, 22);
label1.TabIndex = 0;
label1.Text = "Action:";
//
// label4
//
label4.Dock = System.Windows.Forms.DockStyle.Fill;
label4.Location = new System.Drawing.Point(4, 46);
label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label4.Name = "label4";
label4.Size = new System.Drawing.Size(56, 23);
label4.TabIndex = 4;
label4.Text = "Tag:";
//
// label3
//
label3.Dock = System.Windows.Forms.DockStyle.Fill;
label3.Location = new System.Drawing.Point(4, 23);
label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(56, 23);
label3.TabIndex = 3;
label3.Text = "Angle:";
//
// label2
//
label2.Dock = System.Windows.Forms.DockStyle.Fill;
label2.Location = new System.Drawing.Point(4, 0);
label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(56, 23);
label2.TabIndex = 2;
label2.Text = "Length:";
//
// infopanel
//
this.infopanel.Controls.Add(this.tableLayoutPanel1);
this.infopanel.Location = new System.Drawing.Point(0, -2);
this.infopanel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.infopanel.Name = "infopanel";
this.infopanel.Padding = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.infopanel.Size = new System.Drawing.Size(576, 107);
this.infopanel.TabIndex = 1;
this.infopanel.TabStop = false;
this.infopanel.Text = " Linedef ";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.5F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.5F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 1, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(4, 16);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 92F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(568, 91);
this.tableLayoutPanel1.TabIndex = 30;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 1;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel5, 0, 1);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 2;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 75F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(355, 91);
this.tableLayoutPanel2.TabIndex = 0;
//
// tableLayoutPanel4
//
this.tableLayoutPanel4.ColumnCount = 2;
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.61972F));
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 83.38028F));
this.tableLayoutPanel4.Controls.Add(label1, 0, 0);
this.tableLayoutPanel4.Controls.Add(this.action, 1, 0);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 1;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(355, 22);
this.tableLayoutPanel4.TabIndex = 0;
//
// action
//
this.action.AutoEllipsis = true;
this.action.Dock = System.Windows.Forms.DockStyle.Fill;
this.action.Location = new System.Drawing.Point(63, 0);
this.action.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.action.Name = "action";
this.action.Size = new System.Drawing.Size(288, 22);
this.action.TabIndex = 1;
this.action.Text = "0 - Big Door that goes Wobbly Wobbly";
this.action.UseMnemonic = false;
//
// tableLayoutPanel5
//
this.tableLayoutPanel5.ColumnCount = 4;
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 18.33811F));
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.94556F));
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 24.22535F));
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 27.04225F));
this.tableLayoutPanel5.Controls.Add(label2, 0, 0);
this.tableLayoutPanel5.Controls.Add(this.backoffset, 3, 2);
this.tableLayoutPanel5.Controls.Add(this.unpegged, 3, 0);
this.tableLayoutPanel5.Controls.Add(this.backoffsetlabel, 2, 2);
this.tableLayoutPanel5.Controls.Add(this.length, 1, 0);
this.tableLayoutPanel5.Controls.Add(this.frontoffset, 3, 1);
this.tableLayoutPanel5.Controls.Add(this.label6, 2, 0);
this.tableLayoutPanel5.Controls.Add(this.frontoffsetlabel, 2, 1);
this.tableLayoutPanel5.Controls.Add(this.angle, 1, 1);
this.tableLayoutPanel5.Controls.Add(label3, 0, 1);
this.tableLayoutPanel5.Controls.Add(label4, 0, 2);
this.tableLayoutPanel5.Controls.Add(this.tag, 1, 2);
this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 22);
this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel5.Name = "tableLayoutPanel5";
this.tableLayoutPanel5.RowCount = 3;
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel5.Size = new System.Drawing.Size(355, 69);
this.tableLayoutPanel5.TabIndex = 1;
//
// backoffset
//
this.backoffset.Dock = System.Windows.Forms.DockStyle.Fill;
this.backoffset.Location = new System.Drawing.Point(262, 46);
this.backoffset.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.backoffset.Name = "backoffset";
this.backoffset.Size = new System.Drawing.Size(89, 23);
this.backoffset.TabIndex = 17;
this.backoffset.Text = "100, 100";
//
// unpegged
//
this.unpegged.Dock = System.Windows.Forms.DockStyle.Fill;
this.unpegged.Location = new System.Drawing.Point(262, 0);
this.unpegged.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.unpegged.Name = "unpegged";
this.unpegged.Size = new System.Drawing.Size(89, 23);
this.unpegged.TabIndex = 29;
this.unpegged.Text = "None";
this.unpegged.UseMnemonic = false;
//
// backoffsetlabel
//
this.backoffsetlabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.backoffsetlabel.Location = new System.Drawing.Point(173, 46);
this.backoffsetlabel.Margin = new System.Windows.Forms.Padding(0);
this.backoffsetlabel.Name = "backoffsetlabel";
this.backoffsetlabel.Size = new System.Drawing.Size(85, 23);
this.backoffsetlabel.TabIndex = 14;
this.backoffsetlabel.Text = "Back offset:";
//
// length
//
this.length.Dock = System.Windows.Forms.DockStyle.Fill;
this.length.Location = new System.Drawing.Point(68, 0);
this.length.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.length.Name = "length";
this.length.Size = new System.Drawing.Size(101, 23);
this.length.TabIndex = 5;
this.length.Text = "1024";
//
// frontoffset
//
this.frontoffset.Dock = System.Windows.Forms.DockStyle.Fill;
this.frontoffset.Location = new System.Drawing.Point(262, 23);
this.frontoffset.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.frontoffset.Name = "frontoffset";
this.frontoffset.Size = new System.Drawing.Size(89, 23);
this.frontoffset.TabIndex = 11;
this.frontoffset.Text = "100, 100";
//
// label6
//
this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
this.label6.Location = new System.Drawing.Point(173, 0);
this.label6.Margin = new System.Windows.Forms.Padding(0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(85, 23);
this.label6.TabIndex = 28;
this.label6.Text = "Unpegged:";
//
// frontoffsetlabel
//
this.frontoffsetlabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.frontoffsetlabel.Location = new System.Drawing.Point(173, 23);
this.frontoffsetlabel.Margin = new System.Windows.Forms.Padding(0);
this.frontoffsetlabel.Name = "frontoffsetlabel";
this.frontoffsetlabel.Size = new System.Drawing.Size(85, 23);
this.frontoffsetlabel.TabIndex = 8;
this.frontoffsetlabel.Text = "Front offset:";
//
// angle
//
this.angle.Dock = System.Windows.Forms.DockStyle.Fill;
this.angle.Location = new System.Drawing.Point(68, 23);
this.angle.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.angle.Name = "angle";
this.angle.Size = new System.Drawing.Size(101, 23);
this.angle.TabIndex = 6;
this.angle.Text = "360";
//
// tag
//
this.tag.Dock = System.Windows.Forms.DockStyle.Fill;
this.tag.Location = new System.Drawing.Point(68, 46);
this.tag.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.tag.Name = "tag";
this.tag.Size = new System.Drawing.Size(101, 23);
this.tag.TabIndex = 7;
this.tag.Text = "0";
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 2;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutPanel3.Controls.Add(this.arglbl1, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.arg1, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.arglbl2, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.arg5, 1, 4);
this.tableLayoutPanel3.Controls.Add(this.arglbl3, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.arg4, 1, 3);
this.tableLayoutPanel3.Controls.Add(this.arglbl5, 0, 4);
this.tableLayoutPanel3.Controls.Add(this.arg3, 1, 2);
this.tableLayoutPanel3.Controls.Add(this.arglbl4, 0, 3);
this.tableLayoutPanel3.Controls.Add(this.arg2, 1, 1);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(355, 0);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 5;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
this.tableLayoutPanel3.Size = new System.Drawing.Size(213, 91);
this.tableLayoutPanel3.TabIndex = 1;
//
// arglbl1
//
this.arglbl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.arglbl1.Location = new System.Drawing.Point(0, 0);
this.arglbl1.Margin = new System.Windows.Forms.Padding(0);
this.arglbl1.Name = "arglbl1";
this.arglbl1.Size = new System.Drawing.Size(149, 18);
this.arglbl1.TabIndex = 18;
this.arglbl1.Text = "Arg 1:";
this.arglbl1.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arglbl1.UseMnemonic = false;
//
// arg1
//
this.arg1.Dock = System.Windows.Forms.DockStyle.Fill;
this.arg1.Location = new System.Drawing.Point(149, 0);
this.arg1.Margin = new System.Windows.Forms.Padding(0);
this.arg1.Name = "arg1";
this.arg1.Size = new System.Drawing.Size(64, 18);
this.arg1.TabIndex = 23;
this.arg1.Text = "Arg 1:";
this.arg1.UseMnemonic = false;
//
// arglbl2
//
this.arglbl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.arglbl2.Location = new System.Drawing.Point(0, 18);
this.arglbl2.Margin = new System.Windows.Forms.Padding(0);
this.arglbl2.Name = "arglbl2";
this.arglbl2.Size = new System.Drawing.Size(149, 18);
this.arglbl2.TabIndex = 19;
this.arglbl2.Text = "Arg 1:";
this.arglbl2.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arglbl2.UseMnemonic = false;
//
// arg5
//
this.arg5.Dock = System.Windows.Forms.DockStyle.Fill;
this.arg5.Location = new System.Drawing.Point(149, 72);
this.arg5.Margin = new System.Windows.Forms.Padding(0);
this.arg5.Name = "arg5";
this.arg5.Size = new System.Drawing.Size(64, 19);
this.arg5.TabIndex = 27;
this.arg5.Text = "Arg 1:";
this.arg5.UseMnemonic = false;
//
// arglbl3
//
this.arglbl3.Dock = System.Windows.Forms.DockStyle.Fill;
this.arglbl3.Location = new System.Drawing.Point(0, 36);
this.arglbl3.Margin = new System.Windows.Forms.Padding(0);
this.arglbl3.Name = "arglbl3";
this.arglbl3.Size = new System.Drawing.Size(149, 18);
this.arglbl3.TabIndex = 20;
this.arglbl3.Text = "Arg 1:";
this.arglbl3.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arglbl3.UseMnemonic = false;
//
// arg4
//
this.arg4.Dock = System.Windows.Forms.DockStyle.Fill;
this.arg4.Location = new System.Drawing.Point(149, 54);
this.arg4.Margin = new System.Windows.Forms.Padding(0);
this.arg4.Name = "arg4";
this.arg4.Size = new System.Drawing.Size(64, 18);
this.arg4.TabIndex = 26;
this.arg4.Text = "Arg 1:";
this.arg4.UseMnemonic = false;
//
// arglbl5
//
this.arglbl5.Dock = System.Windows.Forms.DockStyle.Fill;
this.arglbl5.Location = new System.Drawing.Point(0, 72);
this.arglbl5.Margin = new System.Windows.Forms.Padding(0);
this.arglbl5.Name = "arglbl5";
this.arglbl5.Size = new System.Drawing.Size(149, 19);
this.arglbl5.TabIndex = 22;
this.arglbl5.Text = "Arg 1:";
this.arglbl5.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arglbl5.UseMnemonic = false;
//
// arg3
//
this.arg3.Dock = System.Windows.Forms.DockStyle.Fill;
this.arg3.Location = new System.Drawing.Point(149, 36);
this.arg3.Margin = new System.Windows.Forms.Padding(0);
this.arg3.Name = "arg3";
this.arg3.Size = new System.Drawing.Size(64, 18);
this.arg3.TabIndex = 25;
this.arg3.Text = "Arg 1:";
this.arg3.UseMnemonic = false;
//
// arglbl4
//
this.arglbl4.Dock = System.Windows.Forms.DockStyle.Fill;
this.arglbl4.Location = new System.Drawing.Point(0, 54);
this.arglbl4.Margin = new System.Windows.Forms.Padding(0);
this.arglbl4.Name = "arglbl4";
this.arglbl4.Size = new System.Drawing.Size(149, 18);
this.arglbl4.TabIndex = 21;
this.arglbl4.Text = "Arg 1:";
this.arglbl4.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arglbl4.UseMnemonic = false;
//
// arg2
//
this.arg2.Dock = System.Windows.Forms.DockStyle.Fill;
this.arg2.Location = new System.Drawing.Point(149, 18);
this.arg2.Margin = new System.Windows.Forms.Padding(0);
this.arg2.Name = "arg2";
this.arg2.Size = new System.Drawing.Size(64, 18);
this.arg2.TabIndex = 24;
this.arg2.Text = "Arg 1:";
this.arg2.UseMnemonic = false;
//
// frontpanel
//
this.frontpanel.Controls.Add(this.frontsector);
this.frontpanel.Controls.Add(this.frontlowtex);
this.frontpanel.Controls.Add(this.frontlowname);
this.frontpanel.Controls.Add(this.frontmidtex);
this.frontpanel.Controls.Add(this.fronthighname);
this.frontpanel.Controls.Add(this.fronthightex);
this.frontpanel.Controls.Add(this.frontmidname);
this.frontpanel.Location = new System.Drawing.Point(584, 0);
this.frontpanel.Margin = new System.Windows.Forms.Padding(4);
this.frontpanel.Name = "frontpanel";
this.frontpanel.Padding = new System.Windows.Forms.Padding(4);
this.frontpanel.Size = new System.Drawing.Size(321, 105);
this.frontpanel.TabIndex = 2;
this.frontpanel.TabStop = false;
this.frontpanel.Text = " Front ";
//
// frontlowtex
//
this.frontlowtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.frontlowtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.frontlowtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.frontlowtex.Location = new System.Drawing.Point(221, 14);
this.frontlowtex.Margin = new System.Windows.Forms.Padding(0);
this.frontlowtex.Name = "frontlowtex";
this.frontlowtex.Size = new System.Drawing.Size(84, 74);
this.frontlowtex.TabIndex = 4;
//
// frontsector
//
this.frontsector.BackColor = System.Drawing.SystemColors.Control;
this.frontsector.Location = new System.Drawing.Point(192, -4);
this.frontsector.Margin = new System.Windows.Forms.Padding(0);
this.frontsector.Name = "frontsector";
this.frontsector.Size = new System.Drawing.Size(97, 20);
this.frontsector.TabIndex = 6;
this.frontsector.Text = "Sector 666";
//
// frontlowname
//
this.frontlowname.AutoSize = true;
this.frontlowname.BackColor = System.Drawing.SystemColors.Control;
this.frontlowname.Location = new System.Drawing.Point(212, 90);
this.frontlowname.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.frontlowname.MinimumSize = new System.Drawing.Size(102, 26);
this.frontlowname.Name = "frontlowname";
this.frontlowname.Size = new System.Drawing.Size(102, 26);
this.frontlowname.TabIndex = 5;
this.frontlowname.Text = "BROWNHUG";
this.frontlowname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.frontlowname.UseMnemonic = false;
//
// frontmidtex
//
this.frontmidtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.frontmidtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.frontmidtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.frontmidtex.Location = new System.Drawing.Point(119, 14);
this.frontmidtex.Margin = new System.Windows.Forms.Padding(0);
this.frontmidtex.Name = "frontmidtex";
this.frontmidtex.Size = new System.Drawing.Size(84, 74);
this.frontmidtex.TabIndex = 2;
//
// fronthighname
//
this.fronthighname.AutoSize = true;
this.fronthighname.BackColor = System.Drawing.SystemColors.Control;
this.fronthighname.Location = new System.Drawing.Point(8, 90);
this.fronthighname.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.fronthighname.MinimumSize = new System.Drawing.Size(102, 26);
this.fronthighname.Name = "fronthighname";
this.fronthighname.Size = new System.Drawing.Size(102, 26);
this.fronthighname.TabIndex = 1;
this.fronthighname.Text = "BROWNHUG";
this.fronthighname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.fronthighname.UseMnemonic = false;
//
// fronthightex
//
this.fronthightex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.fronthightex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.fronthightex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.fronthightex.Location = new System.Drawing.Point(16, 14);
this.fronthightex.Margin = new System.Windows.Forms.Padding(0);
this.fronthightex.Name = "fronthightex";
this.fronthightex.Size = new System.Drawing.Size(84, 74);
this.fronthightex.TabIndex = 0;
//
// frontmidname
//
this.frontmidname.AutoSize = true;
this.frontmidname.BackColor = System.Drawing.SystemColors.Control;
this.frontmidname.Location = new System.Drawing.Point(110, 90);
this.frontmidname.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.frontmidname.MinimumSize = new System.Drawing.Size(102, 26);
this.frontmidname.Name = "frontmidname";
this.frontmidname.Size = new System.Drawing.Size(102, 26);
this.frontmidname.TabIndex = 3;
this.frontmidname.Text = "BROWNHUG";
this.frontmidname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.frontmidname.UseMnemonic = false;
//
// backpanel
//
this.backpanel.Controls.Add(this.backlowtex);
this.backpanel.Controls.Add(this.backsector);
this.backpanel.Controls.Add(this.backlowname);
this.backpanel.Controls.Add(this.backmidname);
this.backpanel.Controls.Add(this.backmidtex);
this.backpanel.Controls.Add(this.backhighname);
this.backpanel.Controls.Add(this.backhightex);
this.backpanel.Location = new System.Drawing.Point(912, 0);
this.backpanel.Margin = new System.Windows.Forms.Padding(4);
this.backpanel.Name = "backpanel";
this.backpanel.Padding = new System.Windows.Forms.Padding(4);
this.backpanel.Size = new System.Drawing.Size(321, 105);
this.backpanel.TabIndex = 3;
this.backpanel.TabStop = false;
this.backpanel.Text = " Back ";
//
// backlowtex
//
this.backlowtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.backlowtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.backlowtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.backlowtex.Location = new System.Drawing.Point(221, 14);
this.backlowtex.Margin = new System.Windows.Forms.Padding(0);
this.backlowtex.Name = "backlowtex";
this.backlowtex.Size = new System.Drawing.Size(84, 74);
this.backlowtex.TabIndex = 4;
//
// backsector
//
this.backsector.BackColor = System.Drawing.SystemColors.Control;
this.backsector.Location = new System.Drawing.Point(192, -4);
this.backsector.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.backsector.Name = "backsector";
this.backsector.Size = new System.Drawing.Size(97, 20);
this.backsector.TabIndex = 7;
this.backsector.Text = "Sector 666";
//
// backlowname
//
this.backlowname.AutoSize = true;
this.backlowname.BackColor = System.Drawing.SystemColors.Control;
this.backlowname.Location = new System.Drawing.Point(212, 90);
this.backlowname.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.backlowname.MinimumSize = new System.Drawing.Size(102, 26);
this.backlowname.Name = "backlowname";
this.backlowname.Size = new System.Drawing.Size(102, 26);
this.backlowname.TabIndex = 5;
this.backlowname.Text = "BROWNHUG";
this.backlowname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.backlowname.UseMnemonic = false;
//
// backmidname
//
this.backmidname.AutoSize = true;
this.backmidname.BackColor = System.Drawing.SystemColors.Control;
this.backmidname.Location = new System.Drawing.Point(110, 90);
this.backmidname.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.backmidname.MinimumSize = new System.Drawing.Size(102, 26);
this.backmidname.Name = "backmidname";
this.backmidname.Size = new System.Drawing.Size(102, 26);
this.backmidname.TabIndex = 3;
this.backmidname.Text = "BROWNHUG";
this.backmidname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.backmidname.UseMnemonic = false;
//
// backmidtex
//
this.backmidtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.backmidtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.backmidtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.backmidtex.Location = new System.Drawing.Point(119, 14);
this.backmidtex.Margin = new System.Windows.Forms.Padding(0);
this.backmidtex.Name = "backmidtex";
this.backmidtex.Size = new System.Drawing.Size(84, 74);
this.backmidtex.TabIndex = 2;
//
// backhighname
//
this.backhighname.AutoSize = true;
this.backhighname.BackColor = System.Drawing.SystemColors.Control;
this.backhighname.Location = new System.Drawing.Point(8, 90);
this.backhighname.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.backhighname.MinimumSize = new System.Drawing.Size(102, 26);
this.backhighname.Name = "backhighname";
this.backhighname.Size = new System.Drawing.Size(102, 26);
this.backhighname.TabIndex = 1;
this.backhighname.Text = "BROWNHUG";
this.backhighname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.backhighname.UseMnemonic = false;
//
// backhightex
//
this.backhightex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.backhightex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.backhightex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.backhightex.Location = new System.Drawing.Point(16, 14);
this.backhightex.Margin = new System.Windows.Forms.Padding(0);
this.backhightex.Name = "backhightex";
this.backhightex.Size = new System.Drawing.Size(84, 74);
this.backhightex.TabIndex = 0;
//
// LinedefInfoPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.backpanel);
this.Controls.Add(this.frontpanel);
this.Controls.Add(this.infopanel);
this.DoubleBuffered = true;
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximumSize = new System.Drawing.Size(12500, 105);
this.MinimumSize = new System.Drawing.Size(125, 105);
this.Name = "LinedefInfoPanel";
this.Size = new System.Drawing.Size(1309, 105);
this.infopanel.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel4.ResumeLayout(false);
this.tableLayoutPanel5.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
this.frontpanel.ResumeLayout(false);
this.frontpanel.PerformLayout();
this.backpanel.ResumeLayout(false);
this.backpanel.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : UDMFMapFieldForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.fieldslist = new CodeImp.DoomBuilder.Controls.FieldsEditorControl();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.fieldslist, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(610, 375);
this.tableLayoutPanel1.TabIndex = 0;
//
// fieldslist
//
this.fieldslist.AllowInsert = true;
this.fieldslist.AutoInsertUserPrefix = true;
this.fieldslist.Dock = System.Windows.Forms.DockStyle.Fill;
this.fieldslist.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.fieldslist.Location = new System.Drawing.Point(4, 4);
this.fieldslist.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.fieldslist.Name = "fieldslist";
this.fieldslist.PropertyColumnVisible = true;
this.fieldslist.PropertyColumnWidth = 150;
this.fieldslist.Size = new System.Drawing.Size(602, 322);
this.fieldslist.TabIndex = 0;
this.fieldslist.TypeColumnVisible = true;
this.fieldslist.TypeColumnWidth = 100;
this.fieldslist.ValueColumnVisible = true;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.cancel);
this.flowLayoutPanel1.Controls.Add(this.apply);
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 333);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(604, 39);
this.flowLayoutPanel1.TabIndex = 1;
//
// 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(460, 4);
this.cancel.Margin = new System.Windows.Forms.Padding(4);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(140, 31);
this.cancel.TabIndex = 3;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(312, 4);
this.apply.Margin = new System.Windows.Forms.Padding(4);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(140, 31);
this.apply.TabIndex = 2;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// UDMFMapFieldForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(610, 375);
this.Controls.Add(this.tableLayoutPanel1);
this.Font = new System.Drawing.Font("Arial", 8.25F);
this.Name = "UDMFMapFieldForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit UDMF Map Fields";
this.tableLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : ThingEditForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
System.Windows.Forms.GroupBox groupBox1;
System.Windows.Forms.GroupBox groupBox2;
System.Windows.Forms.Label label5;
System.Windows.Forms.Label taglabel;
System.Windows.Forms.Label label7;
this.thingtype = new CodeImp.DoomBuilder.Controls.ThingBrowserControl();
this.height = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.angle = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.heightlabel = new System.Windows.Forms.Label();
this.anglecontrol = new CodeImp.DoomBuilder.Controls.AngleControl();
this.tabs = new System.Windows.Forms.TabControl();
this.tabproperties = new System.Windows.Forms.TabPage();
this.spritetex = new CodeImp.DoomBuilder.Controls.ImagePanel();
this.settingsgroup = new System.Windows.Forms.GroupBox();
this.flags = new CodeImp.DoomBuilder.Controls.CheckboxArrayControl();
this.tabeffects = new System.Windows.Forms.TabPage();
this.actiongroup = new System.Windows.Forms.GroupBox();
this.hexenpanel = new System.Windows.Forms.Panel();
this.arg2 = new CodeImp.DoomBuilder.Controls.ArgumentBox();
this.arg1 = new CodeImp.DoomBuilder.Controls.ArgumentBox();
this.arg0 = new CodeImp.DoomBuilder.Controls.ArgumentBox();
this.arg3 = new CodeImp.DoomBuilder.Controls.ArgumentBox();
this.arg4 = new CodeImp.DoomBuilder.Controls.ArgumentBox();
this.arg1label = new System.Windows.Forms.Label();
this.arg0label = new System.Windows.Forms.Label();
this.arg3label = new System.Windows.Forms.Label();
this.arg2label = new System.Windows.Forms.Label();
this.arg4label = new System.Windows.Forms.Label();
this.action = new CodeImp.DoomBuilder.Controls.ActionSelectorControl();
this.browseaction = new System.Windows.Forms.Button();
this.doompanel = new System.Windows.Forms.Panel();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.tag = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.newtag = new System.Windows.Forms.Button();
this.tabcustom = new System.Windows.Forms.TabPage();
this.fieldslist = new CodeImp.DoomBuilder.Controls.FieldsEditorControl();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
groupBox1 = new System.Windows.Forms.GroupBox();
groupBox2 = new System.Windows.Forms.GroupBox();
label5 = new System.Windows.Forms.Label();
taglabel = new System.Windows.Forms.Label();
label7 = new System.Windows.Forms.Label();
groupBox1.SuspendLayout();
groupBox2.SuspendLayout();
this.tabs.SuspendLayout();
this.tabproperties.SuspendLayout();
this.settingsgroup.SuspendLayout();
this.tabeffects.SuspendLayout();
this.actiongroup.SuspendLayout();
this.hexenpanel.SuspendLayout();
this.groupBox3.SuspendLayout();
this.tabcustom.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
groupBox1.Controls.Add(this.thingtype);
groupBox1.Location = new System.Drawing.Point(8, 8);
groupBox1.Margin = new System.Windows.Forms.Padding(4);
groupBox1.Name = "groupBox1";
groupBox1.Padding = new System.Windows.Forms.Padding(4);
groupBox1.Size = new System.Drawing.Size(336, 669);
groupBox1.TabIndex = 0;
groupBox1.TabStop = false;
groupBox1.Text = " Thing ";
//
// thingtype
//
this.thingtype.AutoSize = true;
this.thingtype.Dock = System.Windows.Forms.DockStyle.Fill;
this.thingtype.Location = new System.Drawing.Point(4, 20);
this.thingtype.Margin = new System.Windows.Forms.Padding(8);
this.thingtype.Name = "thingtype";
this.thingtype.Size = new System.Drawing.Size(328, 645);
this.thingtype.TabIndex = 0;
this.thingtype.OnTypeChanged += new CodeImp.DoomBuilder.Controls.ThingBrowserControl.TypeChangedDeletegate(this.thingtype_OnTypeChanged);
//
// groupBox2
//
groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
groupBox2.Controls.Add(this.height);
groupBox2.Controls.Add(this.angle);
groupBox2.Controls.Add(this.heightlabel);
groupBox2.Controls.Add(label5);
groupBox2.Controls.Add(this.anglecontrol);
groupBox2.Location = new System.Drawing.Point(496, 546);
groupBox2.Margin = new System.Windows.Forms.Padding(4);
groupBox2.Name = "groupBox2";
groupBox2.Padding = new System.Windows.Forms.Padding(4);
groupBox2.Size = new System.Drawing.Size(311, 131);
groupBox2.TabIndex = 2;
groupBox2.TabStop = false;
groupBox2.Text = " Coordination ";
//
// height
//
this.height.AllowDecimal = false;
this.height.AllowNegative = true;
this.height.AllowRelative = true;
this.height.ButtonStep = 8;
this.height.Location = new System.Drawing.Point(85, 76);
this.height.Margin = new System.Windows.Forms.Padding(5);
this.height.Name = "height";
this.height.Size = new System.Drawing.Size(90, 27);
this.height.StepValues = null;
this.height.TabIndex = 11;
//
// angle
//
this.angle.AllowDecimal = false;
this.angle.AllowNegative = true;
this.angle.AllowRelative = true;
this.angle.ButtonStep = 45;
this.angle.Location = new System.Drawing.Point(85, 32);
this.angle.Margin = new System.Windows.Forms.Padding(5);
this.angle.Name = "angle";
this.angle.Size = new System.Drawing.Size(90, 27);
this.angle.StepValues = null;
this.angle.TabIndex = 10;
this.angle.WhenTextChanged += new System.EventHandler(this.angle_TextChanged);
//
// heightlabel
//
this.heightlabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.heightlabel.AutoSize = true;
this.heightlabel.Location = new System.Drawing.Point(15, 82);
this.heightlabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.heightlabel.Name = "heightlabel";
this.heightlabel.Size = new System.Drawing.Size(64, 16);
this.heightlabel.TabIndex = 9;
this.heightlabel.Text = "Z Height:";
//
// label5
//
label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
label5.AutoSize = true;
label5.Location = new System.Drawing.Point(30, 39);
label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label5.Name = "label5";
label5.Size = new System.Drawing.Size(48, 16);
label5.TabIndex = 8;
label5.Text = "Angle:";
//
// anglecontrol
//
this.anglecontrol.BackColor = System.Drawing.SystemColors.Control;
this.anglecontrol.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.anglecontrol.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.anglecontrol.Location = new System.Drawing.Point(195, 16);
this.anglecontrol.Margin = new System.Windows.Forms.Padding(5);
this.anglecontrol.Name = "anglecontrol";
this.anglecontrol.Size = new System.Drawing.Size(104, 104);
this.anglecontrol.TabIndex = 2;
this.anglecontrol.Value = 0;
this.anglecontrol.ButtonClicked += new System.EventHandler(this.anglecontrol_ButtonClicked);
//
// taglabel
//
taglabel.AutoSize = true;
taglabel.Location = new System.Drawing.Point(35, 39);
taglabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
taglabel.Name = "taglabel";
taglabel.Size = new System.Drawing.Size(35, 16);
taglabel.TabIndex = 6;
taglabel.Text = "Tag:";
//
// label7
//
label7.AutoSize = true;
label7.Location = new System.Drawing.Point(19, 38);
label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
label7.Name = "label7";
label7.Size = new System.Drawing.Size(51, 16);
label7.TabIndex = 9;
label7.Text = "Action:";
//
// tabs
//
this.tabs.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.tabs.Controls.Add(this.tabproperties);
this.tabs.Controls.Add(this.tabeffects);
this.tabs.Controls.Add(this.tabcustom);
this.tabs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabs.Location = new System.Drawing.Point(1, 1);
this.tabs.Margin = new System.Windows.Forms.Padding(1);
this.tabs.Name = "tabs";
this.tabs.SelectedIndex = 0;
this.tabs.Size = new System.Drawing.Size(848, 732);
this.tabs.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
this.tabs.TabIndex = 0;
//
// tabproperties
//
this.tabproperties.Controls.Add(this.spritetex);
this.tabproperties.Controls.Add(groupBox2);
this.tabproperties.Controls.Add(this.settingsgroup);
this.tabproperties.Controls.Add(groupBox1);
this.tabproperties.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabproperties.Location = new System.Drawing.Point(4, 25);
this.tabproperties.Margin = new System.Windows.Forms.Padding(4);
this.tabproperties.Name = "tabproperties";
this.tabproperties.Padding = new System.Windows.Forms.Padding(4);
this.tabproperties.Size = new System.Drawing.Size(840, 703);
this.tabproperties.TabIndex = 0;
this.tabproperties.Text = "Properties";
this.tabproperties.UseVisualStyleBackColor = true;
//
// spritetex
//
this.spritetex.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.spritetex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.spritetex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.spritetex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.spritetex.Location = new System.Drawing.Point(355, 552);
this.spritetex.Margin = new System.Windows.Forms.Padding(4);
this.spritetex.Name = "spritetex";
this.spritetex.Size = new System.Drawing.Size(129, 124);
this.spritetex.TabIndex = 22;
//
// settingsgroup
//
this.settingsgroup.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.settingsgroup.Controls.Add(this.flags);
this.settingsgroup.Location = new System.Drawing.Point(355, 8);
this.settingsgroup.Margin = new System.Windows.Forms.Padding(4);
this.settingsgroup.Name = "settingsgroup";
this.settingsgroup.Padding = new System.Windows.Forms.Padding(4);
this.settingsgroup.Size = new System.Drawing.Size(452, 531);
this.settingsgroup.TabIndex = 1;
this.settingsgroup.TabStop = false;
this.settingsgroup.Text = " Settings ";
//
// flags
//
this.flags.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.flags.AutoScroll = true;
this.flags.Columns = 2;
this.flags.Location = new System.Drawing.Point(22, 32);
this.flags.Margin = new System.Windows.Forms.Padding(5);
this.flags.Name = "flags";
this.flags.Size = new System.Drawing.Size(422, 489);
this.flags.TabIndex = 0;
//
// tabeffects
//
this.tabeffects.Controls.Add(this.actiongroup);
this.tabeffects.Controls.Add(this.groupBox3);
this.tabeffects.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabeffects.Location = new System.Drawing.Point(4, 25);
this.tabeffects.Margin = new System.Windows.Forms.Padding(4);
this.tabeffects.Name = "tabeffects";
this.tabeffects.Padding = new System.Windows.Forms.Padding(4);
this.tabeffects.Size = new System.Drawing.Size(817, 692);
this.tabeffects.TabIndex = 1;
this.tabeffects.Text = "Action";
this.tabeffects.UseVisualStyleBackColor = true;
//
// actiongroup
//
this.actiongroup.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.actiongroup.Controls.Add(this.hexenpanel);
this.actiongroup.Controls.Add(label7);
this.actiongroup.Controls.Add(this.action);
this.actiongroup.Controls.Add(this.browseaction);
this.actiongroup.Controls.Add(this.doompanel);
this.actiongroup.Location = new System.Drawing.Point(8, 98);
this.actiongroup.Margin = new System.Windows.Forms.Padding(4);
this.actiongroup.Name = "actiongroup";
this.actiongroup.Padding = new System.Windows.Forms.Padding(4);
this.actiongroup.Size = new System.Drawing.Size(800, 579);
this.actiongroup.TabIndex = 22;
this.actiongroup.TabStop = false;
this.actiongroup.Text = " Action ";
//
// hexenpanel
//
this.hexenpanel.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.hexenpanel.Controls.Add(this.arg2);
this.hexenpanel.Controls.Add(this.arg1);
this.hexenpanel.Controls.Add(this.arg0);
this.hexenpanel.Controls.Add(this.arg3);
this.hexenpanel.Controls.Add(this.arg4);
this.hexenpanel.Controls.Add(this.arg1label);
this.hexenpanel.Controls.Add(this.arg0label);
this.hexenpanel.Controls.Add(this.arg3label);
this.hexenpanel.Controls.Add(this.arg2label);
this.hexenpanel.Controls.Add(this.arg4label);
this.hexenpanel.Location = new System.Drawing.Point(8, 66);
this.hexenpanel.Margin = new System.Windows.Forms.Padding(4);
this.hexenpanel.Name = "hexenpanel";
this.hexenpanel.Size = new System.Drawing.Size(785, 505);
this.hexenpanel.TabIndex = 13;
//
// arg2
//
this.arg2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.arg2.Location = new System.Drawing.Point(224, 79);
this.arg2.Margin = new System.Windows.Forms.Padding(5);
this.arg2.Name = "arg2";
this.arg2.Size = new System.Drawing.Size(116, 30);
this.arg2.TabIndex = 2;
//
// arg1
//
this.arg1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.arg1.Location = new System.Drawing.Point(224, 46);
this.arg1.Margin = new System.Windows.Forms.Padding(5);
this.arg1.Name = "arg1";
this.arg1.Size = new System.Drawing.Size(116, 30);
this.arg1.TabIndex = 1;
//
// arg0
//
this.arg0.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.arg0.Location = new System.Drawing.Point(224, 14);
this.arg0.Margin = new System.Windows.Forms.Padding(5);
this.arg0.Name = "arg0";
this.arg0.Size = new System.Drawing.Size(116, 30);
this.arg0.TabIndex = 0;
//
// arg3
//
this.arg3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.arg3.Location = new System.Drawing.Point(531, 14);
this.arg3.Margin = new System.Windows.Forms.Padding(5);
this.arg3.Name = "arg3";
this.arg3.Size = new System.Drawing.Size(116, 30);
this.arg3.TabIndex = 3;
//
// arg4
//
this.arg4.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.arg4.Location = new System.Drawing.Point(531, 46);
this.arg4.Margin = new System.Windows.Forms.Padding(5);
this.arg4.Name = "arg4";
this.arg4.Size = new System.Drawing.Size(116, 30);
this.arg4.TabIndex = 4;
//
// arg1label
//
this.arg1label.Location = new System.Drawing.Point(-8, 52);
this.arg1label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.arg1label.Name = "arg1label";
this.arg1label.Size = new System.Drawing.Size(224, 18);
this.arg1label.TabIndex = 14;
this.arg1label.Text = "Argument 2:";
this.arg1label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg1label.UseMnemonic = false;
//
// arg0label
//
this.arg0label.Location = new System.Drawing.Point(-8, 20);
this.arg0label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.arg0label.Name = "arg0label";
this.arg0label.Size = new System.Drawing.Size(224, 18);
this.arg0label.TabIndex = 12;
this.arg0label.Text = "Argument 1:";
this.arg0label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg0label.UseMnemonic = false;
//
// arg3label
//
this.arg3label.Location = new System.Drawing.Point(300, 20);
this.arg3label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.arg3label.Name = "arg3label";
this.arg3label.Size = new System.Drawing.Size(224, 18);
this.arg3label.TabIndex = 20;
this.arg3label.Text = "Argument 4:";
this.arg3label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg3label.UseMnemonic = false;
//
// arg2label
//
this.arg2label.Location = new System.Drawing.Point(-8, 85);
this.arg2label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.arg2label.Name = "arg2label";
this.arg2label.Size = new System.Drawing.Size(224, 18);
this.arg2label.TabIndex = 18;
this.arg2label.Text = "Argument 3:";
this.arg2label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg2label.UseMnemonic = false;
//
// arg4label
//
this.arg4label.Location = new System.Drawing.Point(300, 52);
this.arg4label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.arg4label.Name = "arg4label";
this.arg4label.Size = new System.Drawing.Size(224, 18);
this.arg4label.TabIndex = 16;
this.arg4label.Text = "Argument 5:";
this.arg4label.TextAlign = System.Drawing.ContentAlignment.TopRight;
this.arg4label.UseMnemonic = false;
//
// action
//
this.action.BackColor = System.Drawing.SystemColors.Control;
this.action.Cursor = System.Windows.Forms.Cursors.Default;
this.action.Empty = false;
this.action.GeneralizedCategories = null;
this.action.Location = new System.Drawing.Point(78, 34);
this.action.Margin = new System.Windows.Forms.Padding(5);
this.action.Name = "action";
this.action.Size = new System.Drawing.Size(578, 24);
this.action.TabIndex = 0;
this.action.Value = 402;
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
//
// browseaction
//
this.browseaction.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.browseaction.Image = global::CodeImp.DoomBuilder.Properties.Resources.List;
this.browseaction.Location = new System.Drawing.Point(662, 31);
this.browseaction.Margin = new System.Windows.Forms.Padding(4);
this.browseaction.Name = "browseaction";
this.browseaction.Padding = new System.Windows.Forms.Padding(0, 0, 1, 4);
this.browseaction.Size = new System.Drawing.Size(35, 31);
this.browseaction.TabIndex = 1;
this.browseaction.Text = " ";
this.browseaction.UseVisualStyleBackColor = true;
this.browseaction.Click += new System.EventHandler(this.browseaction_Click);
//
// doompanel
//
this.doompanel.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.doompanel.Location = new System.Drawing.Point(8, 68);
this.doompanel.Margin = new System.Windows.Forms.Padding(4);
this.doompanel.Name = "doompanel";
this.doompanel.Size = new System.Drawing.Size(785, 505);
this.doompanel.TabIndex = 12;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.tag);
this.groupBox3.Controls.Add(taglabel);
this.groupBox3.Controls.Add(this.newtag);
this.groupBox3.Location = new System.Drawing.Point(8, 8);
this.groupBox3.Margin = new System.Windows.Forms.Padding(4);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Padding = new System.Windows.Forms.Padding(4);
this.groupBox3.Size = new System.Drawing.Size(800, 82);
this.groupBox3.TabIndex = 0;
this.groupBox3.TabStop = false;
this.groupBox3.Text = " Identification ";
//
// tag
//
this.tag.AllowDecimal = false;
this.tag.AllowNegative = false;
this.tag.AllowRelative = true;
this.tag.ButtonStep = 1;
this.tag.Location = new System.Drawing.Point(78, 32);
this.tag.Margin = new System.Windows.Forms.Padding(5);
this.tag.Name = "tag";
this.tag.Size = new System.Drawing.Size(100, 27);
this.tag.StepValues = null;
this.tag.TabIndex = 7;
//
// newtag
//
this.newtag.Location = new System.Drawing.Point(192, 34);
this.newtag.Margin = new System.Windows.Forms.Padding(4);
this.newtag.Name = "newtag";
this.newtag.Size = new System.Drawing.Size(95, 29);
this.newtag.TabIndex = 1;
this.newtag.Text = "New Tag";
this.newtag.UseVisualStyleBackColor = true;
this.newtag.Click += new System.EventHandler(this.newtag_Click);
//
// tabcustom
//
this.tabcustom.Controls.Add(this.fieldslist);
this.tabcustom.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabcustom.Location = new System.Drawing.Point(4, 25);
this.tabcustom.Margin = new System.Windows.Forms.Padding(4);
this.tabcustom.Name = "tabcustom";
this.tabcustom.Size = new System.Drawing.Size(817, 692);
this.tabcustom.TabIndex = 2;
this.tabcustom.Text = "Custom";
this.tabcustom.UseVisualStyleBackColor = true;
//
// fieldslist
//
this.fieldslist.AllowInsert = true;
this.fieldslist.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.fieldslist.AutoInsertUserPrefix = true;
this.fieldslist.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.fieldslist.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.fieldslist.Location = new System.Drawing.Point(10, 11);
this.fieldslist.Margin = new System.Windows.Forms.Padding(10, 11, 10, 11);
this.fieldslist.Name = "fieldslist";
this.fieldslist.PropertyColumnVisible = true;
this.fieldslist.PropertyColumnWidth = 150;
this.fieldslist.Size = new System.Drawing.Size(794, 661);
this.fieldslist.TabIndex = 1;
this.fieldslist.TypeColumnVisible = true;
this.fieldslist.TypeColumnWidth = 100;
this.fieldslist.ValueColumnVisible = true;
//
// 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(700, 4);
this.cancel.Margin = new System.Windows.Forms.Padding(4);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(140, 31);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(552, 4);
this.apply.Margin = new System.Windows.Forms.Padding(4);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(140, 31);
this.apply.TabIndex = 1;
this.apply.Text = "OK";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.tabs, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(850, 784);
this.tableLayoutPanel1.TabIndex = 3;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.cancel);
this.flowLayoutPanel1.Controls.Add(this.apply);
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 737);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(844, 44);
this.flowLayoutPanel1.TabIndex = 1;
//
// ThingEditForm
//
this.AcceptButton = this.apply;
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(850, 784);
this.Controls.Add(this.tableLayoutPanel1);
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ThingEditForm";
this.Opacity = 0D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Thing";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.ThingEditForm_HelpRequested);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
this.tabs.ResumeLayout(false);
this.tabproperties.ResumeLayout(false);
this.settingsgroup.ResumeLayout(false);
this.tabeffects.ResumeLayout(false);
this.actiongroup.ResumeLayout(false);
this.actiongroup.PerformLayout();
this.hexenpanel.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.tabcustom.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : ScriptErrorForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.messageTextBox = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.acceptButton = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// messageTextBox
//
this.messageTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.messageTextBox.Location = new System.Drawing.Point(3, 54);
this.messageTextBox.Multiline = true;
this.messageTextBox.Name = "messageTextBox";
this.messageTextBox.ReadOnly = true;
this.messageTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.messageTextBox.Size = new System.Drawing.Size(569, 215);
this.messageTextBox.TabIndex = 0;
this.messageTextBox.Text = "some error message";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.messageTextBox, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.acceptButton, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(575, 312);
this.tableLayoutPanel1.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(569, 51);
this.label1.TabIndex = 1;
this.label1.Text = "SCRIPT ERROR:\r\nThis script has encountered an unexpected problem. Any changes the" +
" script was trying to make will be automatically undone.\r\n";
//
// acceptButton
//
this.acceptButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.acceptButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.acceptButton.Location = new System.Drawing.Point(3, 275);
this.acceptButton.Name = "acceptButton";
this.acceptButton.Size = new System.Drawing.Size(569, 34);
this.acceptButton.TabIndex = 1;
this.acceptButton.Text = "&OK :(";
this.acceptButton.UseVisualStyleBackColor = true;
this.acceptButton.Click += new System.EventHandler(this.acceptButton_Click);
//
// ScriptErrorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.acceptButton;
this.ClientSize = new System.Drawing.Size(575, 312);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ScriptErrorForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Error!";
this.TopMost = true;
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ScriptMessageForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.messageTextBox = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.acceptButton = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// messageTextBox
//
this.messageTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.messageTextBox.Location = new System.Drawing.Point(3, 20);
this.messageTextBox.Multiline = true;
this.messageTextBox.Name = "messageTextBox";
this.messageTextBox.ReadOnly = true;
this.messageTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.messageTextBox.Size = new System.Drawing.Size(569, 249);
this.messageTextBox.TabIndex = 0;
this.messageTextBox.Text = "some message";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.messageTextBox, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.acceptButton, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(575, 312);
this.tableLayoutPanel1.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(569, 17);
this.label1.TabIndex = 1;
this.label1.Text = "Script message:\r\n";
//
// acceptButton
//
this.acceptButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.acceptButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.acceptButton.Location = new System.Drawing.Point(3, 275);
this.acceptButton.Name = "acceptButton";
this.acceptButton.Size = new System.Drawing.Size(569, 34);
this.acceptButton.TabIndex = 1;
this.acceptButton.Text = "&OK";
this.acceptButton.UseVisualStyleBackColor = true;
this.acceptButton.Click += new System.EventHandler(this.acceptButton_Click);
//
// ScriptMessageForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.acceptButton;
this.ClientSize = new System.Drawing.Size(575, 312);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ScriptMessageForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Message Log";
this.TopMost = true;
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ScriptParamForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.okbutton = new System.Windows.Forms.Button();
this.cancelbutton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.paramsview = new System.Windows.Forms.DataGridView();
this.Key = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.paramsview)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.paramsview, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(622, 433);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Controls.Add(this.okbutton, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.cancelbutton, 1, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 396);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(616, 34);
this.tableLayoutPanel2.TabIndex = 0;
//
// okbutton
//
this.okbutton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okbutton.Dock = System.Windows.Forms.DockStyle.Fill;
this.okbutton.Location = new System.Drawing.Point(3, 3);
this.okbutton.Name = "okbutton";
this.okbutton.Size = new System.Drawing.Size(302, 28);
this.okbutton.TabIndex = 1;
this.okbutton.Text = "&OK";
this.okbutton.UseVisualStyleBackColor = true;
this.okbutton.Click += new System.EventHandler(this.okbutton_Click);
//
// cancelbutton
//
this.cancelbutton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelbutton.Dock = System.Windows.Forms.DockStyle.Fill;
this.cancelbutton.Location = new System.Drawing.Point(311, 3);
this.cancelbutton.Name = "cancelbutton";
this.cancelbutton.Size = new System.Drawing.Size(302, 28);
this.cancelbutton.TabIndex = 2;
this.cancelbutton.Text = "&Cancel and Undo";
this.cancelbutton.UseVisualStyleBackColor = true;
this.cancelbutton.Click += new System.EventHandler(this.cancelbutton_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(616, 17);
this.label1.TabIndex = 1;
this.label1.Text = "The script is asking for input:";
//
// paramsview
//
this.paramsview.AllowUserToAddRows = false;
this.paramsview.AllowUserToDeleteRows = false;
this.paramsview.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.paramsview.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders;
this.paramsview.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.paramsview.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Key,
this.Value});
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.paramsview.DefaultCellStyle = dataGridViewCellStyle1;
this.paramsview.Dock = System.Windows.Forms.DockStyle.Fill;
this.paramsview.Location = new System.Drawing.Point(3, 20);
this.paramsview.Name = "paramsview";
this.paramsview.RowHeadersVisible = false;
this.paramsview.RowTemplate.Height = 24;
this.paramsview.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.paramsview.Size = new System.Drawing.Size(616, 370);
this.paramsview.TabIndex = 0;
//
// Key
//
this.Key.HeaderText = "Key";
this.Key.Name = "Key";
this.Key.ReadOnly = true;
this.Key.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// Value
//
this.Value.HeaderText = "Value";
this.Value.Name = "Value";
this.Value.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// ScriptParamForm
//
this.AcceptButton = this.okbutton;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelbutton;
this.ClientSize = new System.Drawing.Size(622, 433);
this.Controls.Add(this.tableLayoutPanel1);
this.MinimizeBox = false;
this.Name = "ScriptParamForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Script Input?";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.paramsview)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : ScriptTimeoutForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScriptTimeoutForm));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.timeoutButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.timeoutButton, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(502, 210);
this.tableLayoutPanel1.TabIndex = 0;
//
// timeoutButton
//
this.timeoutButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.timeoutButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.timeoutButton.Location = new System.Drawing.Point(3, 108);
this.timeoutButton.Name = "timeoutButton";
this.timeoutButton.Size = new System.Drawing.Size(496, 99);
this.timeoutButton.TabIndex = 0;
this.timeoutButton.Text = "Cancel script early and &Undo";
this.timeoutButton.UseVisualStyleBackColor = true;
this.timeoutButton.Click += new System.EventHandler(this.timeoutButton_click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(496, 105);
this.label1.TabIndex = 1;
this.label1.Text = resources.GetString("label1.Text");
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// ScriptTimeoutForm
//
this.AcceptButton = this.timeoutButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.timeoutButton;
this.ClientSize = new System.Drawing.Size(502, 210);
this.ControlBox = false;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ScriptTimeoutForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Script taking a long time...";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ScriptWarningForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.warningTextBox = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.undoButton = new System.Windows.Forms.Button();
this.acceptButton = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// warningTextBox
//
this.warningTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.warningTextBox.Location = new System.Drawing.Point(3, 54);
this.warningTextBox.Multiline = true;
this.warningTextBox.Name = "warningTextBox";
this.warningTextBox.ReadOnly = true;
this.warningTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.warningTextBox.Size = new System.Drawing.Size(569, 215);
this.warningTextBox.TabIndex = 0;
this.warningTextBox.Text = "some warning message";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.warningTextBox, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(575, 312);
this.tableLayoutPanel1.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(569, 51);
this.label1.TabIndex = 1;
this.label1.Text = "SCRIPT WARNING:\r\nThis script encountered unexpected behavior, and may have not wo" +
"rked correctly. If you don\'t know what this message is, you may want to undo.";
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.AllowDrop = true;
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Controls.Add(this.undoButton, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.acceptButton, 0, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 275);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(569, 34);
this.tableLayoutPanel2.TabIndex = 2;
//
// undoButton
//
this.undoButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.undoButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.undoButton.Location = new System.Drawing.Point(287, 3);
this.undoButton.Name = "undoButton";
this.undoButton.Size = new System.Drawing.Size(279, 28);
this.undoButton.TabIndex = 0;
this.undoButton.Text = "&Undo any changes";
this.undoButton.UseVisualStyleBackColor = true;
this.undoButton.Click += new System.EventHandler(this.undoButton_Click);
//
// acceptButton
//
this.acceptButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.acceptButton.Location = new System.Drawing.Point(3, 3);
this.acceptButton.Name = "acceptButton";
this.acceptButton.Size = new System.Drawing.Size(278, 28);
this.acceptButton.TabIndex = 1;
this.acceptButton.Text = "Pr&oceed anyway";
this.acceptButton.UseVisualStyleBackColor = true;
this.acceptButton.Click += new System.EventHandler(this.acceptButton_Click);
//
// ScriptWarningForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.undoButton;
this.ClientSize = new System.Drawing.Size(575, 312);
this.ControlBox = false;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ScriptWarningForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Warning!";
this.TopMost = true;
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : Form1.Designer.cs
License : MIT License
Project Creator : ap0405140
License : MIT License
Project Creator : ap0405140
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
this.txtConnectionstring = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtTablename = new System.Windows.Forms.TextBox();
this.dtEndtime = new System.Windows.Forms.DateTimePicker();
this.label1 = new System.Windows.Forms.Label();
this.dtStarttime = new System.Windows.Forms.DateTimePicker();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnReadlog = new System.Windows.Forms.Button();
this.dgLogs = new System.Windows.Forms.DataGridView();
this.transactionIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.beginTimeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.objectNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.operationDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.redoSQLDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.undoSQLDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.panel3 = new System.Windows.Forms.Panel();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.tsProg = new System.Windows.Forms.ToolStripProgressBar();
this.tsTime = new System.Windows.Forms.ToolStripStatusLabel();
this.tsRows = new System.Windows.Forms.ToolStripStatusLabel();
this.panel2 = new System.Windows.Forms.Panel();
this.panel1 = new System.Windows.Forms.Panel();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
((System.ComponentModel.ISupportInitialize)(this.dgLogs)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.panel3.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.panel2.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// txtConnectionstring
//
this.txtConnectionstring.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtConnectionstring.Location = new System.Drawing.Point(140, 2);
this.txtConnectionstring.Name = "txtConnectionstring";
this.txtConnectionstring.Size = new System.Drawing.Size(1000, 26);
this.txtConnectionstring.TabIndex = 45;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.Location = new System.Drawing.Point(2, 5);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(132, 20);
this.label4.TabIndex = 44;
this.label4.Text = "ConnectionString";
//
// txtTablename
//
this.txtTablename.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtTablename.Location = new System.Drawing.Point(699, 31);
this.txtTablename.Name = "txtTablename";
this.txtTablename.Size = new System.Drawing.Size(170, 26);
this.txtTablename.TabIndex = 43;
//
// dtEndtime
//
this.dtEndtime.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dtEndtime.CustomFormat = "yyyy/MM/dd HH:mm:ss";
this.dtEndtime.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dtEndtime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtEndtime.Location = new System.Drawing.Point(376, 31);
this.dtEndtime.MaxDate = new System.DateTime(2099, 12, 31, 0, 0, 0, 0);
this.dtEndtime.MinDate = new System.DateTime(2012, 1, 1, 0, 0, 0, 0);
this.dtEndtime.Name = "dtEndtime";
this.dtEndtime.Size = new System.Drawing.Size(190, 26);
this.dtEndtime.TabIndex = 42;
this.dtEndtime.TabStop = false;
this.dtEndtime.Value = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(2, 35);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(78, 20);
this.label1.TabIndex = 37;
this.label1.Text = "StartTime";
//
// dtStarttime
//
this.dtStarttime.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dtStarttime.CustomFormat = "yyyy/MM/dd HH:mm:ss";
this.dtStarttime.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dtStarttime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtStarttime.Location = new System.Drawing.Point(83, 31);
this.dtStarttime.MaxDate = new System.DateTime(2099, 12, 31, 0, 0, 0, 0);
this.dtStarttime.MinDate = new System.DateTime(2012, 1, 1, 0, 0, 0, 0);
this.dtStarttime.Name = "dtStarttime";
this.dtStarttime.Size = new System.Drawing.Size(190, 26);
this.dtStarttime.TabIndex = 41;
this.dtStarttime.TabStop = false;
this.dtStarttime.Value = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(605, 35);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(90, 20);
this.label3.TabIndex = 39;
this.label3.Text = "TableName";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(301, 35);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(72, 20);
this.label2.TabIndex = 38;
this.label2.Text = "EndTime";
//
// btnReadlog
//
this.btnReadlog.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnReadlog.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnReadlog.Location = new System.Drawing.Point(1162, 3);
this.btnReadlog.Name = "btnReadlog";
this.btnReadlog.Size = new System.Drawing.Size(107, 51);
this.btnReadlog.TabIndex = 40;
this.btnReadlog.Text = "ReadLog";
this.btnReadlog.UseVisualStyleBackColor = true;
this.btnReadlog.Click += new System.EventHandler(this.btnReadlog_Click);
//
// dgLogs
//
this.dgLogs.AllowUserToAddRows = false;
this.dgLogs.AllowUserToDeleteRows = false;
this.dgLogs.AllowUserToResizeRows = false;
this.dgLogs.AutoGenerateColumns = false;
this.dgLogs.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.dgLogs.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle4.BackColor = System.Drawing.Color.Silver;
dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgLogs.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
this.dgLogs.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgLogs.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.transactionIDDataGridViewTextBoxColumn,
this.beginTimeDataGridViewTextBoxColumn,
this.objectNameDataGridViewTextBoxColumn,
this.operationDataGridViewTextBoxColumn,
this.redoSQLDataGridViewTextBoxColumn,
this.undoSQLDataGridViewTextBoxColumn});
this.dgLogs.DataSource = this.bindingSource1;
this.dgLogs.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgLogs.EnableHeadersVisualStyles = false;
this.dgLogs.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.dgLogs.Location = new System.Drawing.Point(0, 0);
this.dgLogs.Name = "dgLogs";
this.dgLogs.ReadOnly = true;
this.dgLogs.RowHeadersVisible = false;
this.dgLogs.RowTemplate.Height = 23;
this.dgLogs.ShowCellToolTips = false;
this.dgLogs.ShowEditingIcon = false;
this.dgLogs.ShowRowErrors = false;
this.dgLogs.Size = new System.Drawing.Size(1278, 572);
this.dgLogs.TabIndex = 46;
this.dgLogs.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgLogs_CellDoubleClick);
//
// transactionIDDataGridViewTextBoxColumn
//
this.transactionIDDataGridViewTextBoxColumn.DataPropertyName = "TransactionID";
this.transactionIDDataGridViewTextBoxColumn.HeaderText = "TransactionID";
this.transactionIDDataGridViewTextBoxColumn.Name = "transactionIDDataGridViewTextBoxColumn";
this.transactionIDDataGridViewTextBoxColumn.ReadOnly = true;
this.transactionIDDataGridViewTextBoxColumn.Width = 110;
//
// beginTimeDataGridViewTextBoxColumn
//
this.beginTimeDataGridViewTextBoxColumn.DataPropertyName = "BeginTime";
this.beginTimeDataGridViewTextBoxColumn.HeaderText = "BeginTime";
this.beginTimeDataGridViewTextBoxColumn.Name = "beginTimeDataGridViewTextBoxColumn";
this.beginTimeDataGridViewTextBoxColumn.ReadOnly = true;
this.beginTimeDataGridViewTextBoxColumn.Width = 145;
//
// objectNameDataGridViewTextBoxColumn
//
this.objectNameDataGridViewTextBoxColumn.DataPropertyName = "ObjectName";
this.objectNameDataGridViewTextBoxColumn.HeaderText = "ObjectName";
this.objectNameDataGridViewTextBoxColumn.Name = "objectNameDataGridViewTextBoxColumn";
this.objectNameDataGridViewTextBoxColumn.ReadOnly = true;
//
// operationDataGridViewTextBoxColumn
//
this.operationDataGridViewTextBoxColumn.DataPropertyName = "Operation";
this.operationDataGridViewTextBoxColumn.HeaderText = "Operation";
this.operationDataGridViewTextBoxColumn.Name = "operationDataGridViewTextBoxColumn";
this.operationDataGridViewTextBoxColumn.ReadOnly = true;
//
// redoSQLDataGridViewTextBoxColumn
//
this.redoSQLDataGridViewTextBoxColumn.DataPropertyName = "RedoSQL";
this.redoSQLDataGridViewTextBoxColumn.HeaderText = "RedoSQL (DoubleClick cell to View full SQL)";
this.redoSQLDataGridViewTextBoxColumn.Name = "redoSQLDataGridViewTextBoxColumn";
this.redoSQLDataGridViewTextBoxColumn.ReadOnly = true;
this.redoSQLDataGridViewTextBoxColumn.Width = 320;
//
// undoSQLDataGridViewTextBoxColumn
//
this.undoSQLDataGridViewTextBoxColumn.DataPropertyName = "UndoSQL";
this.undoSQLDataGridViewTextBoxColumn.HeaderText = "UndoSQL (DoubleClick cell to View full SQL)";
this.undoSQLDataGridViewTextBoxColumn.Name = "undoSQLDataGridViewTextBoxColumn";
this.undoSQLDataGridViewTextBoxColumn.ReadOnly = true;
this.undoSQLDataGridViewTextBoxColumn.Width = 320;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(DBLOG.DatabaseLog);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.panel3, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 65F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1284, 673);
this.tableLayoutPanel1.TabIndex = 47;
//
// panel3
//
this.panel3.Controls.Add(this.statusStrip1);
this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel3.Location = new System.Drawing.Point(3, 646);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(1278, 24);
this.panel3.TabIndex = 2;
//
// statusStrip1
//
this.statusStrip1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsProg,
this.toolStripStatusLabel1,
this.tsTime,
this.tsRows});
this.statusStrip1.Location = new System.Drawing.Point(0, -5);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1278, 29);
this.statusStrip1.TabIndex = 0;
//
// tsProg
//
this.tsProg.AutoSize = false;
this.tsProg.Name = "tsProg";
this.tsProg.Size = new System.Drawing.Size(100, 23);
this.tsProg.Step = 1;
this.tsProg.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
//
// tsTime
//
this.tsTime.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
this.tsTime.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsTime.Name = "tsTime";
this.tsTime.Size = new System.Drawing.Size(75, 24);
this.tsTime.Text = "00:00:00";
//
// tsRows
//
this.tsRows.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
this.tsRows.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.tsRows.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsRows.Name = "tsRows";
this.tsRows.Size = new System.Drawing.Size(59, 24);
this.tsRows.Text = "0 rows";
this.tsRows.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// panel2
//
this.panel2.Controls.Add(this.dgLogs);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(3, 68);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(1278, 572);
this.panel2.TabIndex = 1;
//
// panel1
//
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.btnReadlog);
this.panel1.Controls.Add(this.txtConnectionstring);
this.panel1.Controls.Add(this.txtTablename);
this.panel1.Controls.Add(this.dtStarttime);
this.panel1.Controls.Add(this.dtEndtime);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.label3);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(3, 3);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1278, 59);
this.panel1.TabIndex = 0;
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(996, 24);
this.toolStripStatusLabel1.Spring = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1284, 673);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "Form1";
this.Text = "Form1";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
this.Load += new System.EventHandler(this.Form1_Load);
this.Shown += new System.EventHandler(this.Form1_Shown);
this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged);
((System.ComponentModel.ISupportInitialize)(this.dgLogs)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ChillerProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtEfficiency = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(2008, 951);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(1034, 3);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(971, 945);
this.tableLayoutPanel3.TabIndex = 1;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 10);
this.label7.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(278, 32);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(830, 10);
this.label8.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(73, 32);
this.label8.TabIndex = 1;
this.label8.Text = "(kW)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(287, 10);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.Size = new System.Drawing.Size(537, 38);
this.txtCapacity.TabIndex = 2;
this.txtCapacity.Tag = "Capacity";
this.txtCapacity.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 68);
this.label9.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(278, 32);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(830, 68);
this.label10.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(138, 32);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/kW)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(3, 126);
this.label11.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(278, 32);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(830, 126);
this.label12.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(90, 32);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(287, 68);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(537, 38);
this.txtSpecificCapitalCost.TabIndex = 7;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(287, 126);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.Size = new System.Drawing.Size(537, 38);
this.txtCapitalCost.TabIndex = 8;
this.txtCapitalCost.Tag = "CapitalCost";
this.txtCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 0);
this.tableLayoutPanel2.Controls.Add(this.txtEfficiency, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 3;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(971, 945);
this.tableLayoutPanel2.TabIndex = 0;
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 10);
this.label1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(389, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Efficiency (Reference)";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(806, 10);
this.label2.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 32);
this.label2.TabIndex = 1;
this.label2.Text = "(-)";
//
// txtEfficiency
//
this.txtEfficiency.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEfficiency.Location = new System.Drawing.Point(398, 10);
this.txtEfficiency.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEfficiency.Name = "txtEfficiency";
this.txtEfficiency.Size = new System.Drawing.Size(402, 38);
this.txtEfficiency.TabIndex = 2;
this.txtEfficiency.Tag = "Efficiency";
this.txtEfficiency.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 68);
this.label3.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(389, 32);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(806, 68);
this.label4.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(162, 32);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/kW)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 126);
this.label5.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(389, 32);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(806, 126);
this.label6.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(114, 32);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(398, 68);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(402, 38);
this.txtSpecificEmbodiedEmissions.TabIndex = 7;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(398, 126);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(402, 38);
this.txtEmbodiedEmissions.TabIndex = 8;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
this.txtEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// ChillerProperties
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ChillerProperties";
this.Size = new System.Drawing.Size(2008, 951);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ChpProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtEfficiency = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.txtHeatToPowerRatio = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1527, 608);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.label14, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.txtHeatToPowerRatio, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.label13, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 0);
this.tableLayoutPanel2.Controls.Add(this.txtEfficiency, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 3);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 3);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 3);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 4;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(730, 602);
this.tableLayoutPanel2.TabIndex = 2;
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 10);
this.label1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(389, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Electric Efficiency";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(565, 10);
this.label2.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 32);
this.label2.TabIndex = 1;
this.label2.Text = "(-)";
//
// txtEfficiency
//
this.txtEfficiency.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEfficiency.Location = new System.Drawing.Point(398, 10);
this.txtEfficiency.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEfficiency.Name = "txtEfficiency";
this.txtEfficiency.Size = new System.Drawing.Size(161, 38);
this.txtEfficiency.TabIndex = 2;
this.txtEfficiency.Tag = "Efficiency";
this.txtEfficiency.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 126);
this.label3.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(389, 32);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(565, 126);
this.label4.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(162, 32);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/kW)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 184);
this.label5.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(389, 32);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(565, 184);
this.label6.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(114, 32);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(398, 126);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(161, 38);
this.txtSpecificEmbodiedEmissions.TabIndex = 7;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(398, 184);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(161, 38);
this.txtEmbodiedEmissions.TabIndex = 8;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
this.txtEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(793, 3);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(731, 602);
this.tableLayoutPanel3.TabIndex = 3;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 10);
this.label7.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(278, 32);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(590, 10);
this.label8.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(73, 32);
this.label8.TabIndex = 1;
this.label8.Text = "(kW)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(287, 10);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.Size = new System.Drawing.Size(297, 38);
this.txtCapacity.TabIndex = 2;
this.txtCapacity.Tag = "Capacity";
this.txtCapacity.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 68);
this.label9.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(278, 32);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(590, 68);
this.label10.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(138, 32);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/kW)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(3, 126);
this.label11.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(278, 32);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(590, 126);
this.label12.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(90, 32);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(287, 68);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(297, 38);
this.txtSpecificCapitalCost.TabIndex = 7;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(287, 126);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.Size = new System.Drawing.Size(297, 38);
this.txtCapitalCost.TabIndex = 8;
this.txtCapitalCost.Tag = "CapitalCost";
this.txtCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label13
//
this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(3, 68);
this.label13.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(389, 32);
this.label13.TabIndex = 9;
this.label13.Text = "Heat to Power Ratio";
//
// txtHeatToPowerRatio
//
this.txtHeatToPowerRatio.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtHeatToPowerRatio.Location = new System.Drawing.Point(398, 68);
this.txtHeatToPowerRatio.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtHeatToPowerRatio.Name = "txtHeatToPowerRatio";
this.txtHeatToPowerRatio.Size = new System.Drawing.Size(161, 38);
this.txtHeatToPowerRatio.TabIndex = 10;
this.txtHeatToPowerRatio.Tag = "HeatToPowerRatio";
this.txtHeatToPowerRatio.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(565, 68);
this.label14.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(42, 32);
this.label14.TabIndex = 11;
this.label14.Text = "(-)";
//
// CHP
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ChpProperties";
this.Size = new System.Drawing.Size(1527, 608);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : EmitterProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.txtReturnTemperature = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtSupplyTemperature = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(2008, 951);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(1034, 3);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(971, 945);
this.tableLayoutPanel3.TabIndex = 2;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 10);
this.label7.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(278, 32);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(830, 10);
this.label8.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(73, 32);
this.label8.TabIndex = 1;
this.label8.Text = "(kW)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(287, 10);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.Size = new System.Drawing.Size(537, 38);
this.txtCapacity.TabIndex = 5;
this.txtCapacity.Tag = "Capacity";
this.txtCapacity.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 68);
this.label9.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(278, 32);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(830, 68);
this.label10.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(138, 32);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/kW)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(3, 126);
this.label11.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(278, 32);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(830, 126);
this.label12.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(90, 32);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(287, 68);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(537, 38);
this.txtSpecificCapitalCost.TabIndex = 6;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(287, 126);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.Size = new System.Drawing.Size(537, 38);
this.txtCapitalCost.TabIndex = 7;
this.txtCapitalCost.Tag = "CapitalCost";
this.txtCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.txtReturnTemperature, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.label14, 2, 0);
this.tableLayoutPanel2.Controls.Add(this.label13, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.txtSupplyTemperature, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 3);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 3);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 3);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 4;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(971, 945);
this.tableLayoutPanel2.TabIndex = 1;
//
// txtReturnTemperature
//
this.txtReturnTemperature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtReturnTemperature.Location = new System.Drawing.Point(398, 68);
this.txtReturnTemperature.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtReturnTemperature.Name = "txtReturnTemperature";
this.txtReturnTemperature.Size = new System.Drawing.Size(402, 38);
this.txtReturnTemperature.TabIndex = 2;
this.txtReturnTemperature.Tag = "ReturnTemperature";
this.txtReturnTemperature.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(806, 10);
this.label14.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(64, 32);
this.label14.TabIndex = 10;
this.label14.Text = "(°C)";
//
// label13
//
this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(3, 10);
this.label13.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(389, 32);
this.label13.TabIndex = 9;
this.label13.Text = "Supply Temperature";
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 68);
this.label1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(389, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Return Temperature";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(806, 68);
this.label2.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 32);
this.label2.TabIndex = 1;
this.label2.Text = "(°C)";
//
// txtSupplyTemperature
//
this.txtSupplyTemperature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSupplyTemperature.Location = new System.Drawing.Point(398, 10);
this.txtSupplyTemperature.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSupplyTemperature.Name = "txtSupplyTemperature";
this.txtSupplyTemperature.Size = new System.Drawing.Size(402, 38);
this.txtSupplyTemperature.TabIndex = 1;
this.txtSupplyTemperature.Tag = "SupplyTemperature";
this.txtSupplyTemperature.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 126);
this.label3.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(389, 32);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(806, 126);
this.label4.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(162, 32);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/kW)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 184);
this.label5.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(389, 32);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(806, 184);
this.label6.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(114, 32);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(398, 126);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(402, 38);
this.txtSpecificEmbodiedEmissions.TabIndex = 3;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(398, 184);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(402, 38);
this.txtEmbodiedEmissions.TabIndex = 4;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
this.txtEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox_Validating);
//
// EmitterProperties
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "EmitterProperties";
this.Size = new System.Drawing.Size(2008, 951);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : GasBoilerProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtEfficiency = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(2008, 951);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 0);
this.tableLayoutPanel2.Controls.Add(this.txtEfficiency, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 3;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(971, 945);
this.tableLayoutPanel2.TabIndex = 1;
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 10);
this.label1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(389, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Efficiency";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(806, 10);
this.label2.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 32);
this.label2.TabIndex = 1;
this.label2.Text = "(-)";
//
// txtEfficiency
//
this.txtEfficiency.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEfficiency.Location = new System.Drawing.Point(398, 10);
this.txtEfficiency.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEfficiency.Name = "txtEfficiency";
this.txtEfficiency.Size = new System.Drawing.Size(402, 38);
this.txtEfficiency.TabIndex = 2;
this.txtEfficiency.Tag = "Efficiency";
this.txtEfficiency.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 68);
this.label3.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(389, 32);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(806, 68);
this.label4.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(162, 32);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/kW)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 126);
this.label5.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(389, 32);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(806, 126);
this.label6.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(114, 32);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(398, 68);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(402, 38);
this.txtSpecificEmbodiedEmissions.TabIndex = 7;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(398, 126);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(402, 38);
this.txtEmbodiedEmissions.TabIndex = 8;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
this.txtEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(1034, 3);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(971, 945);
this.tableLayoutPanel3.TabIndex = 2;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 10);
this.label7.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(278, 32);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(830, 10);
this.label8.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(73, 32);
this.label8.TabIndex = 1;
this.label8.Text = "(kW)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(287, 10);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.Size = new System.Drawing.Size(537, 38);
this.txtCapacity.TabIndex = 2;
this.txtCapacity.Tag = "Capacity";
this.txtCapacity.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 68);
this.label9.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(278, 32);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(830, 68);
this.label10.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(138, 32);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/kW)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(3, 126);
this.label11.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(278, 32);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(830, 126);
this.label12.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(90, 32);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(287, 68);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(537, 38);
this.txtSpecificCapitalCost.TabIndex = 7;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(287, 126);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.Size = new System.Drawing.Size(537, 38);
this.txtCapitalCost.TabIndex = 8;
this.txtCapitalCost.Tag = "CapitalCost";
this.txtCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// GasBoilerProperties
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "GasBoilerProperties";
this.Size = new System.Drawing.Size(2008, 951);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : HeatExchanger.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtDistributionLosses = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1527, 608);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(793, 3);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(731, 602);
this.tableLayoutPanel3.TabIndex = 2;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 10);
this.label7.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(278, 32);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(590, 10);
this.label8.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(73, 32);
this.label8.TabIndex = 1;
this.label8.Text = "(kW)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(287, 10);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.Size = new System.Drawing.Size(297, 38);
this.txtCapacity.TabIndex = 2;
this.txtCapacity.Tag = "Capacity";
this.txtCapacity.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 68);
this.label9.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(278, 32);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(590, 68);
this.label10.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(138, 32);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/kW)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(3, 126);
this.label11.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(278, 32);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(590, 126);
this.label12.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(90, 32);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(287, 68);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(297, 38);
this.txtSpecificCapitalCost.TabIndex = 7;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(287, 126);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.Size = new System.Drawing.Size(297, 38);
this.txtCapitalCost.TabIndex = 8;
this.txtCapitalCost.Tag = "CapitalCost";
this.txtCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 0);
this.tableLayoutPanel2.Controls.Add(this.txtDistributionLosses, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 3;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(730, 602);
this.tableLayoutPanel2.TabIndex = 1;
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 10);
this.label1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(389, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Distribution Losses";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(565, 10);
this.label2.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 32);
this.label2.TabIndex = 1;
this.label2.Text = "(-)";
//
// txtDistributionLosses
//
this.txtDistributionLosses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtDistributionLosses.Location = new System.Drawing.Point(398, 10);
this.txtDistributionLosses.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtDistributionLosses.Name = "txtDistributionLosses";
this.txtDistributionLosses.Size = new System.Drawing.Size(161, 38);
this.txtDistributionLosses.TabIndex = 2;
this.txtDistributionLosses.Tag = "DistributionLosses";
this.txtDistributionLosses.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 68);
this.label3.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(389, 32);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(565, 68);
this.label4.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(162, 32);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/kW)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 126);
this.label5.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(389, 32);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(565, 126);
this.label6.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(114, 32);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(398, 68);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(161, 38);
this.txtSpecificEmbodiedEmissions.TabIndex = 7;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(398, 126);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(161, 38);
this.txtEmbodiedEmissions.TabIndex = 8;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
this.txtEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// HeatExchanger
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "HeatExchangerProperties";
this.Size = new System.Drawing.Size(1527, 608);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : HeatExchangerProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtDistributionLosses = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1527, 608);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(793, 3);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(30, 3, 3, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(731, 602);
this.tableLayoutPanel3.TabIndex = 2;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 10);
this.label7.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(278, 32);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(590, 10);
this.label8.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(73, 32);
this.label8.TabIndex = 1;
this.label8.Text = "(kW)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(287, 10);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.Size = new System.Drawing.Size(297, 38);
this.txtCapacity.TabIndex = 2;
this.txtCapacity.Tag = "Capacity";
this.txtCapacity.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(3, 68);
this.label9.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(278, 32);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(590, 68);
this.label10.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(138, 32);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/kW)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(3, 126);
this.label11.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(278, 32);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(590, 126);
this.label12.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(90, 32);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(287, 68);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(297, 38);
this.txtSpecificCapitalCost.TabIndex = 7;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(287, 126);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.Size = new System.Drawing.Size(297, 38);
this.txtCapitalCost.TabIndex = 8;
this.txtCapitalCost.Tag = "CapitalCost";
this.txtCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 0);
this.tableLayoutPanel2.Controls.Add(this.txtDistributionLosses, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 3, 30, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 3;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(730, 602);
this.tableLayoutPanel2.TabIndex = 1;
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 10);
this.label1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(389, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Distribution Losses";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(565, 10);
this.label2.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 32);
this.label2.TabIndex = 1;
this.label2.Text = "(-)";
//
// txtDistributionLosses
//
this.txtDistributionLosses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtDistributionLosses.Location = new System.Drawing.Point(398, 10);
this.txtDistributionLosses.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtDistributionLosses.Name = "txtDistributionLosses";
this.txtDistributionLosses.Size = new System.Drawing.Size(161, 38);
this.txtDistributionLosses.TabIndex = 2;
this.txtDistributionLosses.Tag = "DistributionLosses";
this.txtDistributionLosses.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 68);
this.label3.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(389, 32);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(565, 68);
this.label4.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(162, 32);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/kW)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(3, 126);
this.label5.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(389, 32);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(565, 126);
this.label6.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(114, 32);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(398, 68);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(161, 38);
this.txtSpecificEmbodiedEmissions.TabIndex = 7;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(398, 126);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(161, 38);
this.txtEmbodiedEmissions.TabIndex = 8;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
this.txtEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// HeatExchanger
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "HeatExchanger";
this.Size = new System.Drawing.Size(1527, 608);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : SurfaceTechnologyProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtEfficiency = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txtSpecificEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.txtEmbodiedEmissions = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.cboModuleType = new System.Windows.Forms.ComboBox();
this.technologyImage = new System.Windows.Forms.PictureBox();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtSpecificCapitalCost = new System.Windows.Forms.TextBox();
this.txtCapitalCost = new System.Windows.Forms.TextBox();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.lstAvailableSurfaces = new System.Windows.Forms.ListBox();
this.label13 = new System.Windows.Forms.Label();
this.txtArea = new System.Windows.Forms.TextBox();
this.lblDescription = new System.Windows.Forms.Label();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.technologyImage)).BeginInit();
this.tableLayoutPanel3.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 2, 0);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(2);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 10F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1004, 491);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label2, 2, 1);
this.tableLayoutPanel2.Controls.Add(this.txtEfficiency, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label4, 2, 2);
this.tableLayoutPanel2.Controls.Add(this.label5, 0, 3);
this.tableLayoutPanel2.Controls.Add(this.label6, 2, 3);
this.tableLayoutPanel2.Controls.Add(this.txtSpecificEmbodiedEmissions, 1, 2);
this.tableLayoutPanel2.Controls.Add(this.txtEmbodiedEmissions, 1, 3);
this.tableLayoutPanel2.Controls.Add(this.label14, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.cboModuleType, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.technologyImage, 0, 4);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(336, 2);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 15, 2);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 5;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(317, 487);
this.tableLayoutPanel2.TabIndex = 4;
//
// 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.AutoSize = true;
this.label1.Location = new System.Drawing.Point(2, 33);
this.label1.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(192, 17);
this.label1.TabIndex = 0;
this.label1.Text = "Module Efficiency";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(233, 33);
this.label2.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(30, 17);
this.label2.TabIndex = 1;
this.label2.Text = "(%)";
//
// txtEfficiency
//
this.txtEfficiency.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEfficiency.Enabled = true;
this.txtEfficiency.Location = new System.Drawing.Point(198, 33);
this.txtEfficiency.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.txtEfficiency.Name = "txtEfficiency";
this.txtEfficiency.ReadOnly = false;
this.txtEfficiency.Size = new System.Drawing.Size(31, 22);
this.txtEfficiency.TabIndex = 2;
this.txtEfficiency.Tag = "Efficiency";
this.txtEfficiency.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(2, 65);
this.label3.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(192, 17);
this.label3.TabIndex = 3;
this.label3.Text = "Specific Embodied Emissions";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(233, 65);
this.label4.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(82, 17);
this.label4.TabIndex = 4;
this.label4.Text = "(kgCO₂/m^2)";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(2, 97);
this.label5.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(192, 17);
this.label5.TabIndex = 5;
this.label5.Text = "Embodied Emissions";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(233, 97);
this.label6.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(58, 17);
this.label6.TabIndex = 6;
this.label6.Text = "(kgCO₂)";
//
// txtSpecificEmbodiedEmissions
//
this.txtSpecificEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificEmbodiedEmissions.Enabled = true;
this.txtSpecificEmbodiedEmissions.Location = new System.Drawing.Point(198, 65);
this.txtSpecificEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.txtSpecificEmbodiedEmissions.Name = "txtSpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.ReadOnly = false;
this.txtSpecificEmbodiedEmissions.Size = new System.Drawing.Size(31, 22);
this.txtSpecificEmbodiedEmissions.TabIndex = 7;
this.txtSpecificEmbodiedEmissions.Tag = "SpecificEmbodiedEmissions";
this.txtSpecificEmbodiedEmissions.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtEmbodiedEmissions
//
this.txtEmbodiedEmissions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtEmbodiedEmissions.Location = new System.Drawing.Point(198, 97);
this.txtEmbodiedEmissions.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.txtEmbodiedEmissions.Name = "txtEmbodiedEmissions";
this.txtEmbodiedEmissions.ReadOnly = true;
this.txtEmbodiedEmissions.Size = new System.Drawing.Size(31, 22);
this.txtEmbodiedEmissions.TabIndex = 8;
this.txtEmbodiedEmissions.Tag = "EmbodiedEmissions";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(2, 0);
this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(90, 17);
this.label14.TabIndex = 9;
this.label14.Text = "Module Type";
//
// cboModuleType
//
this.cboModuleType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel2.SetColumnSpan(this.cboModuleType, 2);
this.cboModuleType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboModuleType.FormattingEnabled = true;
this.cboModuleType.Location = new System.Drawing.Point(198, 2);
this.cboModuleType.Margin = new System.Windows.Forms.Padding(2);
this.cboModuleType.Name = "cboModuleType";
this.cboModuleType.Size = new System.Drawing.Size(117, 24);
this.cboModuleType.TabIndex = 10;
this.cboModuleType.SelectedIndexChanged += new System.EventHandler(this.cboModuleType_SelectedIndexChanged);
//
// technologyImage
//
this.technologyImage.ImageLocation = "";
this.technologyImage.Location = new System.Drawing.Point(3, 127);
this.technologyImage.Name = "technologyImage";
this.technologyImage.Size = new System.Drawing.Size(190, 153);
this.technologyImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.technologyImage.TabIndex = 11;
this.technologyImage.TabStop = false;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 3;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.label7, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 2, 0);
this.tableLayoutPanel3.Controls.Add(this.txtCapacity, 1, 0);
this.tableLayoutPanel3.Controls.Add(this.label9, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label10, 2, 1);
this.tableLayoutPanel3.Controls.Add(this.label11, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label12, 2, 2);
this.tableLayoutPanel3.Controls.Add(this.txtSpecificCapitalCost, 1, 1);
this.tableLayoutPanel3.Controls.Add(this.txtCapitalCost, 1, 2);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(683, 2);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(15, 2, 2, 2);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 3;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.Size = new System.Drawing.Size(319, 487);
this.tableLayoutPanel3.TabIndex = 3;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(2, 5);
this.label7.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(142, 17);
this.label7.TabIndex = 0;
this.label7.Text = "Capacity";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(248, 5);
this.label8.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(38, 17);
this.label8.TabIndex = 1;
this.label8.Text = "(kWp)";
//
// txtCapacity
//
this.txtCapacity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapacity.Location = new System.Drawing.Point(148, 5);
this.txtCapacity.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.txtCapacity.Name = "txtCapacity";
this.txtCapacity.ReadOnly = true;
this.txtCapacity.Size = new System.Drawing.Size(96, 22);
this.txtCapacity.TabIndex = 2;
this.txtCapacity.Tag = "SurfaceTechCapacity";
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(2, 37);
this.label9.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(142, 17);
this.label9.TabIndex = 3;
this.label9.Text = "Specific Capital Cost";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(248, 37);
this.label10.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(69, 17);
this.label10.TabIndex = 4;
this.label10.Text = "(CHF/m^2)";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(2, 69);
this.label11.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(142, 17);
this.label11.TabIndex = 5;
this.label11.Text = "Capital Cost (CAPEX)";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(248, 69);
this.label12.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(45, 17);
this.label12.TabIndex = 6;
this.label12.Text = "(CHF)";
//
// txtSpecificCapitalCost
//
this.txtSpecificCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSpecificCapitalCost.Enabled = true;
this.txtSpecificCapitalCost.Location = new System.Drawing.Point(148, 37);
this.txtSpecificCapitalCost.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.txtSpecificCapitalCost.Name = "txtSpecificCapitalCost";
this.txtSpecificCapitalCost.ReadOnly = false;
this.txtSpecificCapitalCost.Size = new System.Drawing.Size(96, 22);
this.txtSpecificCapitalCost.TabIndex = 7;
this.txtSpecificCapitalCost.Tag = "SpecificCapitalCost";
this.txtSpecificCapitalCost.Validating += new System.ComponentModel.CancelEventHandler(this.Validating);
//
// txtCapitalCost
//
this.txtCapitalCost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCapitalCost.Location = new System.Drawing.Point(148, 69);
this.txtCapitalCost.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.txtCapitalCost.Name = "txtCapitalCost";
this.txtCapitalCost.ReadOnly = true;
this.txtCapitalCost.Size = new System.Drawing.Size(96, 22);
this.txtCapitalCost.TabIndex = 8;
this.txtCapitalCost.Tag = "CapitalCost";
//
// tableLayoutPanel4
//
this.tableLayoutPanel4.ColumnCount = 2;
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel4.Controls.Add(this.lstAvailableSurfaces, 0, 0);
this.tableLayoutPanel4.Controls.Add(this.label13, 0, 1);
this.tableLayoutPanel4.Controls.Add(this.txtArea, 1, 1);
this.tableLayoutPanel4.Controls.Add(this.lblDescription, 0, 2);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(2, 2);
this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(2, 2, 15, 2);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 3;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(317, 487);
this.tableLayoutPanel4.TabIndex = 5;
//
// lstAvailableSurfaces
//
this.tableLayoutPanel4.SetColumnSpan(this.lstAvailableSurfaces, 2);
this.lstAvailableSurfaces.DisplayMember = "Name";
this.lstAvailableSurfaces.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstAvailableSurfaces.FormattingEnabled = true;
this.lstAvailableSurfaces.ItemHeight = 16;
this.lstAvailableSurfaces.Location = new System.Drawing.Point(2, 2);
this.lstAvailableSurfaces.Margin = new System.Windows.Forms.Padding(2);
this.lstAvailableSurfaces.Name = "lstAvailableSurfaces";
this.lstAvailableSurfaces.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.lstAvailableSurfaces.Size = new System.Drawing.Size(350, 134);
this.lstAvailableSurfaces.TabIndex = 0;
this.lstAvailableSurfaces.Tag = "AvailableSurfaces";
this.lstAvailableSurfaces.ValueMember = "Name";
this.lstAvailableSurfaces.SelectedIndexChanged += new System.EventHandler(this.lstAvailableSurfaces_SelectedIndexChanged);
this.lstAvailableSurfaces.KeyDown += lstAvailableSurfaces_SelectAll;
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(2, 138);
this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(38, 17);
this.label13.TabIndex = 1;
this.label13.Text = "Area";
//
// txtArea
//
this.txtArea.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtArea.Location = new System.Drawing.Point(44, 140);
this.txtArea.Margin = new System.Windows.Forms.Padding(2);
this.txtArea.Name = "txtArea";
this.txtArea.Size = new System.Drawing.Size(308, 22);
this.txtArea.TabIndex = 2;
this.txtArea.Tag = "Area";
//
// lblDescription
//
this.lblDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tableLayoutPanel4.SetColumnSpan(this.lblDescription, 2);
this.lblDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblDescription.Location = new System.Drawing.Point(2, 169);
this.lblDescription.Margin = new System.Windows.Forms.Padding(2, 5, 2, 5);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(350, 313);
this.lblDescription.TabIndex = 3;
this.lblDescription.Text = "lblDescription";
//
// SurfaceTechnologyProperties
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Margin = new System.Windows.Forms.Padding(1);
this.Name = "SurfaceTechnologyProperties";
this.Size = new System.Drawing.Size(1004, 491);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.technologyImage)).EndInit();
this.tableLayoutPanel3.ResumeLayout(false);
this.tableLayoutPanel3.PerformLayout();
this.tableLayoutPanel4.ResumeLayout(false);
this.tableLayoutPanel4.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : EnergySystemsInputForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tabControl = new System.Windows.Forms.TabControl();
this.tabConversion = new System.Windows.Forms.TabPage();
this.tableLayoutPanelMain = new System.Windows.Forms.TableLayoutPanel();
this.gridConversion = new System.Windows.Forms.DataGridView();
this.Source = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Conversion = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.EndUse = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ConversionProperties = new Hive.IO.Forms.Controls.ConversionTechPropertiesBase();
this.tabEmission = new System.Windows.Forms.TabPage();
this.tableLayoutEmission = new System.Windows.Forms.TableLayoutPanel();
this.gridEmission = new System.Windows.Forms.DataGridView();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewComboBoxColumn1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.emitterProperties = new Hive.IO.Forms.Controls.EmitterProperties();
this.tabControl.SuspendLayout();
this.tabConversion.SuspendLayout();
this.tableLayoutPanelMain.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridConversion)).BeginInit();
this.tabEmission.SuspendLayout();
this.tableLayoutEmission.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridEmission)).BeginInit();
this.SuspendLayout();
//
// tabControl
//
this.tabControl.Controls.Add(this.tabConversion);
this.tabControl.Controls.Add(this.tabEmission);
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl.Location = new System.Drawing.Point(0, 0);
this.tabControl.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(1122, 532);
this.tabControl.TabIndex = 0;
//
// tabConversion
//
this.tabConversion.Controls.Add(this.tableLayoutPanelMain);
this.tabConversion.Location = new System.Drawing.Point(4, 25);
this.tabConversion.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabConversion.Name = "tabConversion";
this.tabConversion.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabConversion.Size = new System.Drawing.Size(1114, 503);
this.tabConversion.TabIndex = 0;
this.tabConversion.Text = "Conversion";
this.tabConversion.UseVisualStyleBackColor = true;
//
// tableLayoutPanelMain
//
this.tableLayoutPanelMain.ColumnCount = 1;
this.tableLayoutPanelMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanelMain.Controls.Add(this.gridConversion, 0, 0);
this.tableLayoutPanelMain.Controls.Add(this.ConversionProperties, 0, 1);
this.tableLayoutPanelMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanelMain.Location = new System.Drawing.Point(4, 4);
this.tableLayoutPanelMain.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tableLayoutPanelMain.Name = "tableLayoutPanelMain";
this.tableLayoutPanelMain.RowCount = 2;
this.tableLayoutPanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutPanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutPanelMain.Size = new System.Drawing.Size(1106, 495);
this.tableLayoutPanelMain.TabIndex = 0;
//
// gridConversion
//
this.gridConversion.AllowUserToResizeColumns = false;
this.gridConversion.AllowUserToResizeRows = false;
this.gridConversion.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridConversion.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Source,
this.Conversion,
this.EndUse});
this.gridConversion.Dock = System.Windows.Forms.DockStyle.Fill;
this.gridConversion.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
this.gridConversion.Location = new System.Drawing.Point(4, 4);
this.gridConversion.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.gridConversion.MultiSelect = false;
this.gridConversion.Name = "gridConversion";
this.gridConversion.RowHeadersVisible = false;
this.gridConversion.RowHeadersWidth = 102;
this.gridConversion.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.gridConversion.Size = new System.Drawing.Size(1098, 140);
this.gridConversion.TabIndex = 0;
this.gridConversion.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridConversion_CellContentClick);
this.gridConversion.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridConversion_CellValueChanged);
this.gridConversion.CurrentCellDirtyStateChanged += new System.EventHandler(this.gridConversion_CurrentCellDirtyStateChanged);
this.gridConversion.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.gridConversion_DataBindingComplete);
this.gridConversion.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridView_DataError);
this.gridConversion.SelectionChanged += new System.EventHandler(this.gridConversion_SelectionChanged);
//
// Source
//
this.Source.HeaderText = "Source";
this.Source.MinimumWidth = 12;
this.Source.Name = "Source";
this.Source.ReadOnly = true;
this.Source.Width = 250;
//
// Conversion
//
this.Conversion.HeaderText = "Conversion";
this.Conversion.MinimumWidth = 12;
this.Conversion.Name = "Conversion";
this.Conversion.Width = 250;
//
// EndUse
//
this.EndUse.HeaderText = "EndUse";
this.EndUse.MinimumWidth = 12;
this.EndUse.Name = "EndUse";
this.EndUse.ReadOnly = true;
this.EndUse.Width = 250;
//
// ConversionProperties
//
this.ConversionProperties.BackColor = System.Drawing.SystemColors.Window;
this.ConversionProperties.Conversion = null;
this.ConversionProperties.Dock = System.Windows.Forms.DockStyle.Fill;
this.ConversionProperties.Location = new System.Drawing.Point(1, 149);
this.ConversionProperties.Margin = new System.Windows.Forms.Padding(1, 1, 1, 1);
this.ConversionProperties.Name = "ConversionProperties";
this.ConversionProperties.Size = new System.Drawing.Size(1104, 345);
this.ConversionProperties.TabIndex = 1;
//
// tabEmission
//
this.tabEmission.Controls.Add(this.tableLayoutEmission);
this.tabEmission.Location = new System.Drawing.Point(4, 25);
this.tabEmission.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabEmission.Name = "tabEmission";
this.tabEmission.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabEmission.Size = new System.Drawing.Size(1114, 503);
this.tabEmission.TabIndex = 1;
this.tabEmission.Text = "Emission";
this.tabEmission.UseVisualStyleBackColor = true;
//
// tableLayoutEmission
//
this.tableLayoutEmission.ColumnCount = 1;
this.tableLayoutEmission.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutEmission.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 10F));
this.tableLayoutEmission.Controls.Add(this.gridEmission, 0, 0);
this.tableLayoutEmission.Controls.Add(this.emitterProperties, 0, 1);
this.tableLayoutEmission.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutEmission.Location = new System.Drawing.Point(4, 4);
this.tableLayoutEmission.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.tableLayoutEmission.Name = "tableLayoutEmission";
this.tableLayoutEmission.RowCount = 2;
this.tableLayoutEmission.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutEmission.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutEmission.Size = new System.Drawing.Size(1106, 495);
this.tableLayoutEmission.TabIndex = 0;
//
// gridEmission
//
this.gridEmission.AllowUserToResizeColumns = false;
this.gridEmission.AllowUserToResizeRows = false;
this.gridEmission.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridEmission.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dataGridViewTextBoxColumn1,
this.dataGridViewComboBoxColumn1,
this.dataGridViewTextBoxColumn2});
this.gridEmission.Dock = System.Windows.Forms.DockStyle.Fill;
this.gridEmission.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
this.gridEmission.Location = new System.Drawing.Point(4, 4);
this.gridEmission.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.gridEmission.MultiSelect = false;
this.gridEmission.Name = "gridEmission";
this.gridEmission.RowHeadersVisible = false;
this.gridEmission.RowHeadersWidth = 102;
this.gridEmission.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.gridEmission.Size = new System.Drawing.Size(1098, 140);
this.gridEmission.TabIndex = 1;
this.gridEmission.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridEmission_CellValueChanged);
this.gridEmission.CurrentCellDirtyStateChanged += new System.EventHandler(this.gridEmission_CurrentCellDirtyStateChanged);
this.gridEmission.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.gridEmission_DataBindingComplete);
this.gridEmission.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridView_DataError);
this.gridEmission.SelectionChanged += new System.EventHandler(this.gridEmission_SelectionChanged);
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "Source";
this.dataGridViewTextBoxColumn1.MinimumWidth = 12;
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.ReadOnly = true;
this.dataGridViewTextBoxColumn1.Width = 250;
//
// dataGridViewComboBoxColumn1
//
this.dataGridViewComboBoxColumn1.HeaderText = "Conversion";
this.dataGridViewComboBoxColumn1.MinimumWidth = 12;
this.dataGridViewComboBoxColumn1.Name = "dataGridViewComboBoxColumn1";
this.dataGridViewComboBoxColumn1.Width = 250;
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.HeaderText = "EndUse";
this.dataGridViewTextBoxColumn2.MinimumWidth = 12;
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
this.dataGridViewTextBoxColumn2.ReadOnly = true;
this.dataGridViewTextBoxColumn2.Width = 250;
//
// emitterProperties
//
this.emitterProperties.BackColor = System.Drawing.SystemColors.Window;
this.emitterProperties.Dock = System.Windows.Forms.DockStyle.Fill;
this.emitterProperties.Emitter = null;
this.emitterProperties.Location = new System.Drawing.Point(1, 149);
this.emitterProperties.Margin = new System.Windows.Forms.Padding(1, 1, 1, 1);
this.emitterProperties.Name = "emitterProperties";
this.emitterProperties.Size = new System.Drawing.Size(1104, 345);
this.emitterProperties.TabIndex = 2;
//
// EnergySystemsInputForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1122, 532);
this.Controls.Add(this.tabControl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "EnergySystemsInputForm";
this.Text = "EnergySystemsInputForm";
this.Load += new System.EventHandler(this.EnergySystemsInputForm_Load);
this.tabControl.ResumeLayout(false);
this.tabConversion.ResumeLayout(false);
this.tableLayoutPanelMain.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.gridConversion)).EndInit();
this.tabEmission.ResumeLayout(false);
this.tableLayoutEmission.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.gridEmission)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : VisualizerPlotProperties.Designer.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void InitializeComponent()
{
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.txtEnergyDemandMinimum = new System.Windows.Forms.TextBox();
this.txtEnergyDemandMaximum = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.txtSolarGainsMinimum = new System.Windows.Forms.TextBox();
this.txtSolarGainsMaximum = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.btnCancel = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
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(874, 448);
this.tabControl1.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.tableLayoutPanel1);
this.tabPage1.Location = new System.Drawing.Point(10, 48);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(854, 390);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Energy demand (Total Monthly)";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.txtEnergyDemandMinimum, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.txtEnergyDemandMaximum, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(848, 100);
this.tableLayoutPanel1.TabIndex = 0;
//
// txtEnergyDemandMinimum
//
this.txtEnergyDemandMinimum.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtEnergyDemandMinimum.Location = new System.Drawing.Point(427, 3);
this.txtEnergyDemandMinimum.Name = "txtEnergyDemandMinimum";
this.txtEnergyDemandMinimum.Size = new System.Drawing.Size(418, 38);
this.txtEnergyDemandMinimum.TabIndex = 0;
//
// txtEnergyDemandMaximum
//
this.txtEnergyDemandMaximum.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtEnergyDemandMaximum.Location = new System.Drawing.Point(427, 53);
this.txtEnergyDemandMaximum.Name = "txtEnergyDemandMaximum";
this.txtEnergyDemandMaximum.Size = new System.Drawing.Size(418, 38);
this.txtEnergyDemandMaximum.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(191, 32);
this.label1.TabIndex = 2;
this.label1.Text = "Axis Minimum";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 50);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(198, 32);
this.label2.TabIndex = 3;
this.label2.Text = "Axis Maximum";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.tableLayoutPanel2);
this.tabPage2.Location = new System.Drawing.Point(10, 48);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(854, 390);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Solar Gains per Window";
this.tabPage2.UseVisualStyleBackColor = true;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Controls.Add(this.txtSolarGainsMinimum, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.txtSolarGainsMaximum, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.label3, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.label4, 0, 1);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 2;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(848, 100);
this.tableLayoutPanel2.TabIndex = 0;
//
// txtSolarGainsMinimum
//
this.txtSolarGainsMinimum.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtSolarGainsMinimum.Location = new System.Drawing.Point(427, 3);
this.txtSolarGainsMinimum.Name = "txtSolarGainsMinimum";
this.txtSolarGainsMinimum.Size = new System.Drawing.Size(418, 38);
this.txtSolarGainsMinimum.TabIndex = 0;
//
// txtSolarGainsMaximum
//
this.txtSolarGainsMaximum.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtSolarGainsMaximum.Location = new System.Drawing.Point(427, 53);
this.txtSolarGainsMaximum.Name = "txtSolarGainsMaximum";
this.txtSolarGainsMaximum.Size = new System.Drawing.Size(418, 38);
this.txtSolarGainsMaximum.TabIndex = 1;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(191, 32);
this.label3.TabIndex = 2;
this.label3.Text = "Axis Minimum";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(3, 50);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(198, 32);
this.label4.TabIndex = 3;
this.label4.Text = "Axis Maximum";
//
// panel1
//
this.panel1.Controls.Add(this.btnCancel);
this.panel1.Controls.Add(this.btnSave);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 348);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(874, 100);
this.panel1.TabIndex = 1;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(12, 25);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(210, 63);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnSave
//
this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnSave.Location = new System.Drawing.Point(652, 25);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(210, 63);
this.btnSave.TabIndex = 0;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// VisualizerPlotProperties
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(874, 448);
this.Controls.Add(this.panel1);
this.Controls.Add(this.tabControl1);
this.Name = "VisualizerPlotProperties";
this.Text = "Plot properties";
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tableLayoutPanel2.PerformLayout();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : SPLConsole.Designer.cs
License : GNU General Public License v3.0
Project Creator : ArduinoIoTDev
License : GNU General Public License v3.0
Project Creator : ArduinoIoTDev
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SPLConsole));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.panelControl1 = new System.Windows.Forms.Panel();
this.button2 = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.textEdit1 = new System.Windows.Forms.TextBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.listBox1 = new System.Windows.Forms.ListBox();
this.panel2 = new System.Windows.Forms.Panel();
this.panelControl2 = new System.Windows.Forms.Panel();
this.button1 = new System.Windows.Forms.Button();
this.panelControl3 = new System.Windows.Forms.Panel();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.textBox_sketch = new System.Windows.Forms.TextBox();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.textBox_raw = new System.Windows.Forms.TextBox();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.panel1 = new System.Windows.Forms.Panel();
this.button6 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.timer_exec = new System.Windows.Forms.Timer(this.components);
this.timer_monitering = new System.Windows.Forms.Timer(this.components);
this.timer_serial_receive = new System.Windows.Forms.Timer(this.components);
this.timer_check_running = new System.Windows.Forms.Timer(this.components);
this.timer_loginfo = new System.Windows.Forms.Timer(this.components);
this.tableLayoutPanel1.SuspendLayout();
this.panelControl1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.panelControl2.SuspendLayout();
this.panelControl3.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabPage3.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage4.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 5;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 11F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 11F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 343F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 11F));
this.tableLayoutPanel1.Controls.Add(this.panelControl1, 1, 2);
this.tableLayoutPanel1.Controls.Add(this.tabControl1, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.panelControl2, 3, 2);
this.tableLayoutPanel1.Controls.Add(this.panelControl3, 3, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 4;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 11F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 42F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 11F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1152, 605);
this.tableLayoutPanel1.TabIndex = 0;
//
// panelControl1
//
this.panelControl1.Controls.Add(this.button2);
this.panelControl1.Controls.Add(this.label2);
this.panelControl1.Controls.Add(this.comboBox1);
this.panelControl1.Controls.Add(this.textEdit1);
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelControl1.Location = new System.Drawing.Point(14, 556);
this.panelControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panelControl1.Name = "panelControl1";
this.panelControl1.Size = new System.Drawing.Size(770, 34);
this.panelControl1.TabIndex = 1;
//
// button2
//
this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button2.Location = new System.Drawing.Point(632, 7);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(131, 23);
this.button2.TabIndex = 11;
this.button2.Text = "Send Message";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(16, 11);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(67, 15);
this.label2.TabIndex = 10;
this.label2.Text = "Message";
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(471, 8);
this.comboBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(138, 23);
this.comboBox1.TabIndex = 9;
//
// textEdit1
//
this.textEdit1.Location = new System.Drawing.Point(103, 8);
this.textEdit1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.textEdit1.Name = "textEdit1";
this.textEdit1.Size = new System.Drawing.Size(351, 24);
this.textEdit1.TabIndex = 0;
this.textEdit1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit1_KeyDown);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(14, 15);
this.tabControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(770, 533);
this.tabControl1.TabIndex = 2;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.listBox1);
this.tabPage1.Controls.Add(this.panel2);
this.tabPage1.Location = new System.Drawing.Point(4, 25);
this.tabPage1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabPage1.Size = new System.Drawing.Size(762, 504);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Console";
this.tabPage1.UseVisualStyleBackColor = true;
//
// listBox1
//
this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 15;
this.listBox1.Location = new System.Drawing.Point(3, 4);
this.listBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(756, 462);
this.listBox1.TabIndex = 0;
this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
//
// panel2
//
this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel2.Location = new System.Drawing.Point(3, 466);
this.panel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(756, 34);
this.panel2.TabIndex = 2;
//
// panelControl2
//
this.panelControl2.Controls.Add(this.button1);
this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelControl2.Location = new System.Drawing.Point(801, 556);
this.panelControl2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panelControl2.Name = "panelControl2";
this.panelControl2.Size = new System.Drawing.Size(337, 34);
this.panelControl2.TabIndex = 3;
//
// button1
//
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button1.Location = new System.Drawing.Point(203, 7);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(125, 23);
this.button1.TabIndex = 1;
this.button1.Text = "Close";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// panelControl3
//
this.panelControl3.Controls.Add(this.tabControl2);
this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelControl3.Location = new System.Drawing.Point(801, 15);
this.panelControl3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panelControl3.Name = "panelControl3";
this.panelControl3.Size = new System.Drawing.Size(337, 533);
this.panelControl3.TabIndex = 4;
//
// tabControl2
//
this.tabControl2.Controls.Add(this.tabPage3);
this.tabControl2.Controls.Add(this.tabPage2);
this.tabControl2.Controls.Add(this.tabPage4);
this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl2.Location = new System.Drawing.Point(0, 0);
this.tabControl2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
this.tabControl2.Size = new System.Drawing.Size(337, 533);
this.tabControl2.TabIndex = 0;
//
// tabPage3
//
this.tabPage3.Controls.Add(this.textBox_sketch);
this.tabPage3.Location = new System.Drawing.Point(4, 25);
this.tabPage3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.tabPage3.Size = new System.Drawing.Size(329, 504);
this.tabPage3.TabIndex = 0;
this.tabPage3.Text = "Generated C Code";
this.tabPage3.UseVisualStyleBackColor = true;
//
// textBox_sketch
//
this.textBox_sketch.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBox_sketch.Location = new System.Drawing.Point(3, 4);
this.textBox_sketch.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.textBox_sketch.Multiline = true;
this.textBox_sketch.Name = "textBox_sketch";
this.textBox_sketch.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox_sketch.Size = new System.Drawing.Size(323, 496);
this.textBox_sketch.TabIndex = 1;
this.textBox_sketch.WordWrap = false;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.textBox_raw);
this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(329, 504);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Sketch Code";
this.tabPage2.UseVisualStyleBackColor = true;
//
// textBox_raw
//
this.textBox_raw.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBox_raw.Location = new System.Drawing.Point(3, 3);
this.textBox_raw.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.textBox_raw.Multiline = true;
this.textBox_raw.Name = "textBox_raw";
this.textBox_raw.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox_raw.Size = new System.Drawing.Size(323, 498);
this.textBox_raw.TabIndex = 2;
this.textBox_raw.WordWrap = false;
//
// tabPage4
//
this.tabPage4.Controls.Add(this.panel1);
this.tabPage4.Location = new System.Drawing.Point(4, 25);
this.tabPage4.Name = "tabPage4";
this.tabPage4.Size = new System.Drawing.Size(329, 504);
this.tabPage4.TabIndex = 2;
this.tabPage4.Text = "Testing";
this.tabPage4.UseVisualStyleBackColor = true;
//
// panel1
//
this.panel1.Controls.Add(this.button6);
this.panel1.Controls.Add(this.button5);
this.panel1.Controls.Add(this.button4);
this.panel1.Controls.Add(this.button3);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(329, 504);
this.panel1.TabIndex = 0;
//
// button6
//
this.button6.Location = new System.Drawing.Point(36, 249);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(222, 36);
this.button6.TabIndex = 3;
this.button6.Text = "P00000=0";
this.button6.UseVisualStyleBackColor = true;
this.button6.Click += new System.EventHandler(this.button6_Click);
//
// button5
//
this.button5.Location = new System.Drawing.Point(36, 186);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(222, 36);
this.button5.TabIndex = 2;
this.button5.Text = "P00000=1";
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// button4
//
this.button4.Location = new System.Drawing.Point(36, 94);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(222, 36);
this.button4.TabIndex = 1;
this.button4.Text = "TESTING OFF";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(36, 34);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(222, 36);
this.button3.TabIndex = 0;
this.button3.Text = "TESTING ON";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// timer_exec
//
this.timer_exec.Tick += new System.EventHandler(this.timer_exec_Tick);
//
// timer_monitering
//
this.timer_monitering.Tick += new System.EventHandler(this.timer_monitering_Tick);
//
// timer_serial_receive
//
this.timer_serial_receive.Enabled = true;
this.timer_serial_receive.Interval = 10;
this.timer_serial_receive.Tick += new System.EventHandler(this.timer_serial_receive_Tick);
//
// timer_check_running
//
this.timer_check_running.Enabled = true;
this.timer_check_running.Interval = 5000;
this.timer_check_running.Tick += new System.EventHandler(this.timer_check_running_Tick);
//
// timer_loginfo
//
this.timer_loginfo.Enabled = true;
this.timer_loginfo.Interval = 5;
this.timer_loginfo.Tick += new System.EventHandler(this.timer_loginfo_Tick);
//
// SPLConsole
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1152, 605);
this.Controls.Add(this.tableLayoutPanel1);
this.Font = new System.Drawing.Font("Gulim", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "SPLConsole";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Arduino Console";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SPLConsole_FormClosing);
this.Load += new System.EventHandler(this.SPLConsole_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SPLConsole_KeyDown);
this.tableLayoutPanel1.ResumeLayout(false);
this.panelControl1.ResumeLayout(false);
this.panelControl1.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.panelControl2.ResumeLayout(false);
this.panelControl3.ResumeLayout(false);
this.tabControl2.ResumeLayout(false);
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.tabPage4.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : ComponentWizardPage.Designer.cs
License : MIT License
Project Creator : aspose-pdf
License : MIT License
Project Creator : aspose-pdf
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ComponentWizardPage));
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.groupBoxCommonUses = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.linkLabelAspose = new System.Windows.Forms.LinkLabel();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.toolStripStatusMessage = new System.Windows.Forms.Label();
this.AbortButton = new System.Windows.Forms.Button();
this.ContinueButton = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.tableLayoutPanel2.SuspendLayout();
this.groupBoxCommonUses.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanel2.BackgroundImage")));
this.tableLayoutPanel2.ColumnCount = 1;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 584F));
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(584, 76);
this.tableLayoutPanel2.TabIndex = 4;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(578, 74);
this.label1.TabIndex = 1;
this.label1.Text = "Explore Aspose.Pdf .NET API Examples";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// groupBoxCommonUses
//
this.groupBoxCommonUses.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxCommonUses.Controls.Add(this.tableLayoutPanel1);
this.groupBoxCommonUses.Controls.Add(this.linkLabelAspose);
this.groupBoxCommonUses.Location = new System.Drawing.Point(12, 136);
this.groupBoxCommonUses.Name = "groupBoxCommonUses";
this.groupBoxCommonUses.Size = new System.Drawing.Size(560, 275);
this.groupBoxCommonUses.TabIndex = 1;
this.groupBoxCommonUses.TabStop = false;
this.groupBoxCommonUses.Text = "Common Uses:";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.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.tableLayoutPanel1.BackgroundImage = global::AsposeVisualStudioPluginPdf.Properties.Resources.aspose_pdf;
this.tableLayoutPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 584F));
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0, 0, 0, 1);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 228F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 228F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 228F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 228F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(554, 197);
this.tableLayoutPanel1.TabIndex = 5;
//
// linkLabelAspose
//
this.linkLabelAspose.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.linkLabelAspose.AutoSize = true;
this.linkLabelAspose.LinkArea = new System.Windows.Forms.LinkArea(6, 6);
this.linkLabelAspose.Location = new System.Drawing.Point(12, 255);
this.linkLabelAspose.Name = "linkLabelAspose";
this.linkLabelAspose.Size = new System.Drawing.Size(151, 17);
this.linkLabelAspose.TabIndex = 1;
this.linkLabelAspose.TabStop = true;
this.linkLabelAspose.Text = "Visit Aspose for more details.";
this.linkLabelAspose.UseCompatibleTextRendering = true;
this.linkLabelAspose.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelAspose_LinkClicked);
//
// 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(12, 102);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(560, 28);
this.progressBar.TabIndex = 3;
//
// toolStripStatusMessage
//
this.toolStripStatusMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.toolStripStatusMessage.AutoSize = true;
this.toolStripStatusMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripStatusMessage.Location = new System.Drawing.Point(10, 85);
this.toolStripStatusMessage.Name = "toolStripStatusMessage";
this.toolStripStatusMessage.Size = new System.Drawing.Size(102, 13);
this.toolStripStatusMessage.TabIndex = 4;
this.toolStripStatusMessage.Text = "fetching API info";
//
// AbortButton
//
this.AbortButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.AbortButton.Location = new System.Drawing.Point(485, 434);
this.AbortButton.Name = "AbortButton";
this.AbortButton.Size = new System.Drawing.Size(75, 23);
this.AbortButton.TabIndex = 7;
this.AbortButton.Text = "Abort";
this.AbortButton.UseVisualStyleBackColor = true;
this.AbortButton.Click += new System.EventHandler(this.AbortButton_Click);
//
// ContinueButton
//
this.ContinueButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ContinueButton.Location = new System.Drawing.Point(372, 434);
this.ContinueButton.Name = "ContinueButton";
this.ContinueButton.Size = new System.Drawing.Size(75, 23);
this.ContinueButton.TabIndex = 6;
this.ContinueButton.Text = "Continue";
this.ContinueButton.UseVisualStyleBackColor = true;
this.ContinueButton.Click += new System.EventHandler(this.ContinueButton_Click);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Location = new System.Drawing.Point(0, 418);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(585, 1);
this.panel1.TabIndex = 5;
//
// timer1
//
this.timer1.Interval = 200;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// ComponentWizardPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(584, 472);
this.ControlBox = false;
this.Controls.Add(this.AbortButton);
this.Controls.Add(this.ContinueButton);
this.Controls.Add(this.panel1);
this.Controls.Add(this.tableLayoutPanel2);
this.Controls.Add(this.toolStripStatusMessage);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.groupBoxCommonUses);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(590, 500);
this.MinimizeBox = false;
this.Name = "ComponentWizardPage";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Aspose Visual Studio Plugin";
this.tableLayoutPanel2.ResumeLayout(false);
this.groupBoxCommonUses.ResumeLayout(false);
this.groupBoxCommonUses.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : SampleWizardPage.Designer.cs
License : MIT License
Project Creator : aspose-pdf
License : MIT License
Project Creator : aspose-pdf
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SampleWizardPage));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.treeView1 = new System.Windows.Forms.TreeView();
this.labelCommonUses = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.rdbVisualBasic = new System.Windows.Forms.RadioButton();
this.rdbCSharp = new System.Windows.Forms.RadioButton();
this.textBoxLocation = new System.Windows.Forms.TextBox();
this.labelLocation = new System.Windows.Forms.Label();
this.AbortButton = new System.Windows.Forms.Button();
this.ContinueButton = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.toolStripStatusMessage = new System.Windows.Forms.Label();
this.BrowseButton = new System.Windows.Forms.Button();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.label1 = new System.Windows.Forms.Label();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.groupBox1.SuspendLayout();
this.panel2.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "folder-icon.png");
this.imageList1.Images.SetKeyName(1, "page_white_csharp.ico");
this.imageList1.Images.SetKeyName(2, "vbs-file.ico");
//
// timer1
//
this.timer1.Interval = 200;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// groupBox1
//
this.groupBox1.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.groupBox1.Controls.Add(this.treeView1);
this.groupBox1.Controls.Add(this.labelCommonUses);
this.groupBox1.Controls.Add(this.panel2);
this.groupBox1.Location = new System.Drawing.Point(12, 155);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(560, 243);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Examples:";
//
// treeView1
//
this.treeView1.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.treeView1.ImageIndex = 0;
this.treeView1.ImageList = this.imageList1;
this.treeView1.Location = new System.Drawing.Point(6, 48);
this.treeView1.Name = "treeView1";
this.treeView1.SelectedImageIndex = 0;
this.treeView1.Size = new System.Drawing.Size(548, 189);
this.treeView1.TabIndex = 5;
//
// labelCommonUses
//
this.labelCommonUses.AutoSize = true;
this.labelCommonUses.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.labelCommonUses.Location = new System.Drawing.Point(6, 71);
this.labelCommonUses.Name = "labelCommonUses";
this.labelCommonUses.Size = new System.Drawing.Size(0, 13);
this.labelCommonUses.TabIndex = 4;
//
// panel2
//
this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel2.Controls.Add(this.rdbVisualBasic);
this.panel2.Controls.Add(this.rdbCSharp);
this.panel2.Location = new System.Drawing.Point(6, 15);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(538, 31);
this.panel2.TabIndex = 3;
//
// rdbVisualBasic
//
this.rdbVisualBasic.AutoSize = true;
this.rdbVisualBasic.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rdbVisualBasic.Location = new System.Drawing.Point(252, 6);
this.rdbVisualBasic.Name = "rdbVisualBasic";
this.rdbVisualBasic.Size = new System.Drawing.Size(161, 17);
this.rdbVisualBasic.TabIndex = 2;
this.rdbVisualBasic.Text = "Open VB.NET Examples";
this.rdbVisualBasic.UseVisualStyleBackColor = true;
this.rdbVisualBasic.CheckedChanged += new System.EventHandler(this.rdbVisualBasic_CheckedChanged);
//
// rdbCSharp
//
this.rdbCSharp.AutoSize = true;
this.rdbCSharp.Checked = true;
this.rdbCSharp.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rdbCSharp.Location = new System.Drawing.Point(16, 6);
this.rdbCSharp.Name = "rdbCSharp";
this.rdbCSharp.Size = new System.Drawing.Size(132, 17);
this.rdbCSharp.TabIndex = 1;
this.rdbCSharp.TabStop = true;
this.rdbCSharp.Text = "Open C# Examples";
this.rdbCSharp.UseVisualStyleBackColor = true;
this.rdbCSharp.CheckedChanged += new System.EventHandler(this.rdbCSharp_CheckedChanged);
//
// textBoxLocation
//
this.textBoxLocation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxLocation.Location = new System.Drawing.Point(18, 128);
this.textBoxLocation.Name = "textBoxLocation";
this.textBoxLocation.ReadOnly = true;
this.textBoxLocation.Size = new System.Drawing.Size(461, 20);
this.textBoxLocation.TabIndex = 11;
//
// labelLocation
//
this.labelLocation.AutoSize = true;
this.labelLocation.Location = new System.Drawing.Point(15, 114);
this.labelLocation.Name = "labelLocation";
this.labelLocation.Size = new System.Drawing.Size(54, 13);
this.labelLocation.TabIndex = 10;
this.labelLocation.Text = "Location: ";
//
// AbortButton
//
this.AbortButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.AbortButton.Location = new System.Drawing.Point(485, 417);
this.AbortButton.Name = "AbortButton";
this.AbortButton.Size = new System.Drawing.Size(75, 23);
this.AbortButton.TabIndex = 18;
this.AbortButton.Text = "Abort";
this.AbortButton.UseVisualStyleBackColor = true;
this.AbortButton.Click += new System.EventHandler(this.AbortButton_Click);
//
// ContinueButton
//
this.ContinueButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ContinueButton.Location = new System.Drawing.Point(372, 417);
this.ContinueButton.Name = "ContinueButton";
this.ContinueButton.Size = new System.Drawing.Size(75, 23);
this.ContinueButton.TabIndex = 17;
this.ContinueButton.Text = "Continue";
this.ContinueButton.UseVisualStyleBackColor = true;
this.ContinueButton.Click += new System.EventHandler(this.ContinueButton_Click);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Location = new System.Drawing.Point(0, 404);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(585, 1);
this.panel1.TabIndex = 16;
//
// toolStripStatusMessage
//
this.toolStripStatusMessage.AutoSize = true;
this.toolStripStatusMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.toolStripStatusMessage.Location = new System.Drawing.Point(15, 79);
this.toolStripStatusMessage.Name = "toolStripStatusMessage";
this.toolStripStatusMessage.Size = new System.Drawing.Size(399, 13);
this.toolStripStatusMessage.TabIndex = 19;
this.toolStripStatusMessage.Text = "Fetching Examples: - Please wait while we configure you preferences";
//
// BrowseButton
//
this.BrowseButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.BrowseButton.Location = new System.Drawing.Point(485, 126);
this.BrowseButton.Name = "BrowseButton";
this.BrowseButton.Size = new System.Drawing.Size(71, 23);
this.BrowseButton.TabIndex = 21;
this.BrowseButton.Text = "&Browse";
this.BrowseButton.UseVisualStyleBackColor = true;
this.BrowseButton.Click += new System.EventHandler(this.BrowseButton_Click);
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(18, 93);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(538, 20);
this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
this.progressBar1.TabIndex = 22;
this.progressBar1.Visible = false;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(578, 74);
this.label1.TabIndex = 1;
this.label1.Text = "Explore Aspose.Pdf .NET API Examples";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanel2.BackgroundImage")));
this.tableLayoutPanel2.ColumnCount = 1;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 584F));
this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(584, 76);
this.tableLayoutPanel2.TabIndex = 20;
//
// SampleWizardPage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(584, 446);
this.ControlBox = false;
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.BrowseButton);
this.Controls.Add(this.tableLayoutPanel2);
this.Controls.Add(this.textBoxLocation);
this.Controls.Add(this.toolStripStatusMessage);
this.Controls.Add(this.labelLocation);
this.Controls.Add(this.AbortButton);
this.Controls.Add(this.ContinueButton);
this.Controls.Add(this.panel1);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(590, 490);
this.MinimizeBox = false;
this.Name = "SampleWizardPage";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Aspose Visual Studio Plugin";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : QuickStartForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : aurelitec
License : GNU General Public License v3.0
Project Creator : aurelitec
private void InitializeComponent()
{
this.topAdvicePanel = new System.Windows.Forms.TableLayoutPanel();
this.pauseLabel = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.closeButton = new System.Windows.Forms.Button();
this.ShowAtStartupCheckBox = new System.Windows.Forms.CheckBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.topAdvicePanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// topAdvicePanel
//
this.topAdvicePanel.ColumnCount = 7;
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.Controls.Add(this.pauseLabel, 5, 0);
this.topAdvicePanel.Controls.Add(this.label5, 4, 0);
this.topAdvicePanel.Controls.Add(this.label4, 3, 0);
this.topAdvicePanel.Controls.Add(this.label3, 2, 0);
this.topAdvicePanel.Controls.Add(this.label1, 0, 0);
this.topAdvicePanel.Controls.Add(this.label7, 6, 0);
this.topAdvicePanel.Controls.Add(this.closeButton, 6, 1);
this.topAdvicePanel.Controls.Add(this.ShowAtStartupCheckBox, 0, 1);
this.topAdvicePanel.Controls.Add(this.pictureBox1, 1, 0);
this.topAdvicePanel.Location = new System.Drawing.Point(16, 16);
this.topAdvicePanel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.topAdvicePanel.Name = "topAdvicePanel";
this.topAdvicePanel.RowCount = 2;
this.topAdvicePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.topAdvicePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
this.topAdvicePanel.Size = new System.Drawing.Size(840, 155);
this.topAdvicePanel.TabIndex = 3;
//
// pauseLabel
//
this.pauseLabel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.pauseLabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.pauseLabel.Font = new System.Drawing.Font("Segoe UI", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.pauseLabel.ForeColor = System.Drawing.Color.WhiteSmoke;
this.pauseLabel.Location = new System.Drawing.Point(602, 0);
this.pauseLabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.pauseLabel.Name = "pauseLabel";
this.pauseLabel.Padding = new System.Windows.Forms.Padding(8, 0, 8, 0);
this.pauseLabel.Size = new System.Drawing.Size(116, 120);
this.pauseLabel.TabIndex = 8;
this.pauseLabel.Text = "To pause and hide the drape to the taskbar notification area, double-click or pre" +
"ss Ctrl+F11.";
this.pauseLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label5
//
this.label5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(17)))), ((int)(((byte)(28)))));
this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
this.label5.Font = new System.Drawing.Font("Segoe UI", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.Color.WhiteSmoke;
this.label5.Location = new System.Drawing.Point(482, 0);
this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label5.Name = "label5";
this.label5.Padding = new System.Windows.Forms.Padding(8, 0, 8, 0);
this.label5.Size = new System.Drawing.Size(116, 120);
this.label5.TabIndex = 7;
this.label5.Text = "To view what\'s behind the opaque drape, click the left mouse button or press the " +
"Shift key.";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label4
//
this.label4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
this.label4.Font = new System.Drawing.Font("Segoe UI", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.WhiteSmoke;
this.label4.Location = new System.Drawing.Point(362, 0);
this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label4.Name = "label4";
this.label4.Padding = new System.Windows.Forms.Padding(8, 0, 8, 0);
this.label4.Size = new System.Drawing.Size(116, 120);
this.label4.TabIndex = 6;
this.label4.Text = "To delete a focus area, press the Delete key while its border is visible.";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label3
//
this.label3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(17)))), ((int)(((byte)(28)))));
this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
this.label3.Font = new System.Drawing.Font("Segoe UI", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
this.label3.Location = new System.Drawing.Point(242, 0);
this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label3.Name = "label3";
this.label3.Padding = new System.Windows.Forms.Padding(8, 0, 8, 0);
this.label3.Size = new System.Drawing.Size(116, 120);
this.label3.TabIndex = 5;
this.label3.Text = "To move or resize a focus area, bring the mouse near its edges and use the appear" +
"ing border.";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label1
//
this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(17)))), ((int)(((byte)(28)))));
this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
this.label1.Font = new System.Drawing.Font("Segoe UI", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
this.label1.Location = new System.Drawing.Point(2, 0);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Padding = new System.Windows.Forms.Padding(8, 0, 8, 0);
this.label1.Size = new System.Drawing.Size(116, 120);
this.label1.TabIndex = 3;
this.label1.Text = "To add a new transparent focus area, draw a rectangle with the mouse or a finger." +
"";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label7
//
this.label7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(17)))), ((int)(((byte)(28)))));
this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
this.label7.Font = new System.Drawing.Font("Segoe UI", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.ForeColor = System.Drawing.Color.WhiteSmoke;
this.label7.Location = new System.Drawing.Point(722, 0);
this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label7.Name = "label7";
this.label7.Padding = new System.Windows.Forms.Padding(8, 0, 8, 0);
this.label7.Size = new System.Drawing.Size(116, 120);
this.label7.TabIndex = 9;
this.label7.Text = "For more options, right click or press Escape to get the menu.";
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// closeButton
//
this.closeButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.closeButton.FlatAppearance.BorderColor = System.Drawing.Color.DimGray;
this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.closeButton.ForeColor = System.Drawing.Color.White;
this.closeButton.Location = new System.Drawing.Point(778, 127);
this.closeButton.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(60, 27);
this.closeButton.TabIndex = 10;
this.closeButton.Text = "Close";
this.closeButton.UseVisualStyleBackColor = true;
this.closeButton.Click += new System.EventHandler(this.EventOkButtonClick);
//
// ShowAtStartupCheckBox
//
this.ShowAtStartupCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.ShowAtStartupCheckBox.AutoSize = true;
this.ShowAtStartupCheckBox.Checked = true;
this.ShowAtStartupCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.ShowAtStartupCheckBox.ForeColor = System.Drawing.Color.White;
this.ShowAtStartupCheckBox.Location = new System.Drawing.Point(2, 132);
this.ShowAtStartupCheckBox.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.ShowAtStartupCheckBox.Name = "ShowAtStartupCheckBox";
this.ShowAtStartupCheckBox.Size = new System.Drawing.Size(103, 17);
this.ShowAtStartupCheckBox.TabIndex = 11;
this.ShowAtStartupCheckBox.Text = "Show at start-up";
this.ShowAtStartupCheckBox.UseVisualStyleBackColor = true;
//
// pictureBox1
//
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Default;
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.Image = global::CinemaDrape.Properties.Resources.CinemaDrapeQuickStartFocusAreaV3;
this.pictureBox1.Location = new System.Drawing.Point(122, 0);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(116, 120);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 12;
this.pictureBox1.TabStop = false;
//
// QuickStartForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(874, 187);
this.Controls.Add(this.topAdvicePanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Location = new System.Drawing.Point(0, 10);
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "QuickStartForm";
this.Padding = new System.Windows.Forms.Padding(8, 8, 8, 8);
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "CinemaDrape Quick Start";
this.TopMost = true;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.EventQuickStartFormFormClosing);
this.Load += new System.EventHandler(this.EventQuickStartFormLoad);
this.topAdvicePanel.ResumeLayout(false);
this.topAdvicePanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : SettingsForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : aurelitec
License : GNU General Public License v3.0
Project Creator : aurelitec
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.hotKeyTextBox = new System.Windows.Forms.TextBox();
this.AutoRestoreAreasCheckBox = new System.Windows.Forms.CheckBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.peekOpacityTrackBar = new System.Windows.Forms.TrackBar();
this.peekOpacityLabel = new System.Windows.Forms.Label();
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.peekOpacityTrackBar)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(223, 50);
this.label1.TabIndex = 0;
this.label1.Text = "Keyboard shortcut for pausing and resuming:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// hotKeyTextBox
//
this.hotKeyTextBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.hotKeyTextBox.BackColor = System.Drawing.Color.Black;
this.hotKeyTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.hotKeyTextBox.ForeColor = System.Drawing.Color.White;
this.hotKeyTextBox.Location = new System.Drawing.Point(232, 14);
this.hotKeyTextBox.Name = "hotKeyTextBox";
this.hotKeyTextBox.Size = new System.Drawing.Size(216, 22);
this.hotKeyTextBox.TabIndex = 1;
this.hotKeyTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.hotKeyTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.EventHotKeyTextBoxKeyDown);
//
// AutoRestoreAreasCheckBox
//
this.AutoRestoreAreasCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.AutoRestoreAreasCheckBox.AutoSize = true;
this.AutoRestoreAreasCheckBox.Checked = true;
this.AutoRestoreAreasCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.tableLayoutPanel1.SetColumnSpan(this.AutoRestoreAreasCheckBox, 2);
this.AutoRestoreAreasCheckBox.ForeColor = System.Drawing.Color.White;
this.AutoRestoreAreasCheckBox.Location = new System.Drawing.Point(3, 121);
this.AutoRestoreAreasCheckBox.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
this.AutoRestoreAreasCheckBox.Name = "AutoRestoreAreasCheckBox";
this.AutoRestoreAreasCheckBox.Size = new System.Drawing.Size(430, 21);
this.AutoRestoreAreasCheckBox.TabIndex = 4;
this.AutoRestoreAreasCheckBox.Text = "Automatically restore the focus areas when CinemaDrape starts";
this.AutoRestoreAreasCheckBox.UseVisualStyleBackColor = true;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.okButton, 0, 3);
this.tableLayoutPanel1.Controls.Add(this.cancelButton, 1, 3);
this.tableLayoutPanel1.Controls.Add(this.AutoRestoreAreasCheckBox, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.peekOpacityTrackBar, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.hotKeyTextBox, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.peekOpacityLabel, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(30, 15);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 4;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(458, 218);
this.tableLayoutPanel1.TabIndex = 1;
//
// okButton
//
this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.FlatAppearance.BorderColor = System.Drawing.Color.DimGray;
this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.okButton.ForeColor = System.Drawing.Color.White;
this.okButton.Location = new System.Drawing.Point(144, 164);
this.okButton.Margin = new System.Windows.Forms.Padding(3, 3, 10, 3);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 34);
this.okButton.TabIndex = 5;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
//
// cancelButton
//
this.cancelButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.FlatAppearance.BorderColor = System.Drawing.Color.DimGray;
this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.cancelButton.ForeColor = System.Drawing.Color.White;
this.cancelButton.Location = new System.Drawing.Point(239, 164);
this.cancelButton.Margin = new System.Windows.Forms.Padding(10, 3, 3, 3);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 34);
this.cancelButton.TabIndex = 6;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
//
// peekOpacityTrackBar
//
this.peekOpacityTrackBar.Location = new System.Drawing.Point(229, 55);
this.peekOpacityTrackBar.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
this.peekOpacityTrackBar.Maximum = 100;
this.peekOpacityTrackBar.Minimum = 1;
this.peekOpacityTrackBar.Name = "peekOpacityTrackBar";
this.peekOpacityTrackBar.Size = new System.Drawing.Size(223, 56);
this.peekOpacityTrackBar.TabIndex = 3;
this.peekOpacityTrackBar.TickFrequency = 5;
this.peekOpacityTrackBar.Value = 80;
this.peekOpacityTrackBar.ValueChanged += new System.EventHandler(this.EventPeekOpacityTrackBarValueChanged);
this.peekOpacityTrackBar.Enter += new System.EventHandler(this.EventPeekOpacityTrackBarEnter);
this.peekOpacityTrackBar.Leave += new System.EventHandler(this.EventPeekOpacityTrackBarLeave);
//
// peekOpacityLabel
//
this.peekOpacityLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.peekOpacityLabel.AutoSize = true;
this.peekOpacityLabel.ForeColor = System.Drawing.Color.White;
this.peekOpacityLabel.Location = new System.Drawing.Point(3, 72);
this.peekOpacityLabel.Name = "peekOpacityLabel";
this.peekOpacityLabel.Size = new System.Drawing.Size(0, 17);
this.peekOpacityLabel.TabIndex = 2;
//
// SettingsForm
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(518, 233);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingsForm";
this.Opacity = 0.8D;
this.Padding = new System.Windows.Forms.Padding(30, 15, 30, 0);
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Settings";
this.TopMost = true;
this.Shown += new System.EventHandler(this.EventSettingsFormShown);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.peekOpacityTrackBar)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : DPadForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DPadForm));
this.DPadItemsGroupBox = new System.Windows.Forms.GroupBox();
this.DPadItemTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.DPadItemDownComboBox = new System.Windows.Forms.ComboBox();
this.DPadItemRightComboBox = new System.Windows.Forms.ComboBox();
this.DPadItemLeftComboBox = new System.Windows.Forms.ComboBox();
this.DPadItemLeftLabel = new System.Windows.Forms.Label();
this.DPadItemUpLabel = new System.Windows.Forms.Label();
this.DPadItemRightLabel = new System.Windows.Forms.Label();
this.DPadItemDownLabel = new System.Windows.Forms.Label();
this.DPadItemUpComboBox = new System.Windows.Forms.ComboBox();
this.DPadTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.PresetComboBox = new System.Windows.Forms.ComboBox();
this.EnabledCheckBox = new System.Windows.Forms.CheckBox();
this.BottomPanel = new System.Windows.Forms.Panel();
this.UpdateButton = new System.Windows.Forms.Button();
this.DPadDisplayGroupBox = new System.Windows.Forms.GroupBox();
this.DPadDisplayTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.DPadHideCheckBox = new System.Windows.Forms.CheckBox();
this.DPadDisplayLeftRadioButton = new System.Windows.Forms.RadioButton();
this.DPadDisplayRightRadioButton = new System.Windows.Forms.RadioButton();
this.DPadItemsGroupBox.SuspendLayout();
this.DPadItemTableLayoutPanel.SuspendLayout();
this.DPadTableLayoutPanel.SuspendLayout();
this.BottomPanel.SuspendLayout();
this.DPadDisplayGroupBox.SuspendLayout();
this.DPadDisplayTableLayoutPanel.SuspendLayout();
this.SuspendLayout();
//
// DPadItemsGroupBox
//
this.DPadItemsGroupBox.Controls.Add(this.DPadItemTableLayoutPanel);
this.DPadItemsGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
this.DPadItemsGroupBox.Location = new System.Drawing.Point(6, 76);
this.DPadItemsGroupBox.Name = "DPadItemsGroupBox";
this.DPadItemsGroupBox.Size = new System.Drawing.Size(246, 143);
this.DPadItemsGroupBox.TabIndex = 0;
this.DPadItemsGroupBox.TabStop = false;
this.DPadItemsGroupBox.Text = "Items";
//
// DPadItemTableLayoutPanel
//
this.DPadItemTableLayoutPanel.ColumnCount = 2;
this.DPadItemTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 43F));
this.DPadItemTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemDownComboBox, 1, 3);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemRightComboBox, 1, 2);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemLeftComboBox, 1, 1);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemLeftLabel, 0, 1);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemUpLabel, 0, 0);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemRightLabel, 0, 2);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemDownLabel, 0, 3);
this.DPadItemTableLayoutPanel.Controls.Add(this.DPadItemUpComboBox, 1, 0);
this.DPadItemTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadItemTableLayoutPanel.Location = new System.Drawing.Point(3, 16);
this.DPadItemTableLayoutPanel.Name = "DPadItemTableLayoutPanel";
this.DPadItemTableLayoutPanel.RowCount = 4;
this.DPadItemTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.DPadItemTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.DPadItemTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.DPadItemTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
this.DPadItemTableLayoutPanel.Size = new System.Drawing.Size(240, 124);
this.DPadItemTableLayoutPanel.TabIndex = 0;
//
// DPadItemDownComboBox
//
this.DPadItemDownComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadItemDownComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.DPadItemDownComboBox.FormattingEnabled = true;
this.DPadItemDownComboBox.Location = new System.Drawing.Point(48, 95);
this.DPadItemDownComboBox.Margin = new System.Windows.Forms.Padding(5);
this.DPadItemDownComboBox.Name = "DPadItemDownComboBox";
this.DPadItemDownComboBox.Size = new System.Drawing.Size(187, 21);
this.DPadItemDownComboBox.TabIndex = 7;
this.DPadItemDownComboBox.SelectedIndexChanged += new System.EventHandler(this.DPadItemDownComboBox_SelectedIndexChanged);
//
// DPadItemRightComboBox
//
this.DPadItemRightComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadItemRightComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.DPadItemRightComboBox.FormattingEnabled = true;
this.DPadItemRightComboBox.Location = new System.Drawing.Point(48, 65);
this.DPadItemRightComboBox.Margin = new System.Windows.Forms.Padding(5);
this.DPadItemRightComboBox.Name = "DPadItemRightComboBox";
this.DPadItemRightComboBox.Size = new System.Drawing.Size(187, 21);
this.DPadItemRightComboBox.TabIndex = 6;
this.DPadItemRightComboBox.SelectedIndexChanged += new System.EventHandler(this.DPadItemRightComboBox_SelectedIndexChanged);
//
// DPadItemLeftComboBox
//
this.DPadItemLeftComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadItemLeftComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.DPadItemLeftComboBox.FormattingEnabled = true;
this.DPadItemLeftComboBox.Location = new System.Drawing.Point(48, 35);
this.DPadItemLeftComboBox.Margin = new System.Windows.Forms.Padding(5);
this.DPadItemLeftComboBox.Name = "DPadItemLeftComboBox";
this.DPadItemLeftComboBox.Size = new System.Drawing.Size(187, 21);
this.DPadItemLeftComboBox.TabIndex = 5;
this.DPadItemLeftComboBox.SelectedIndexChanged += new System.EventHandler(this.DPadItemLeftComboBox_SelectedIndexChanged);
//
// DPadItemLeftLabel
//
this.DPadItemLeftLabel.Dock = System.Windows.Forms.DockStyle.Left;
this.DPadItemLeftLabel.Location = new System.Drawing.Point(4, 34);
this.DPadItemLeftLabel.Margin = new System.Windows.Forms.Padding(4);
this.DPadItemLeftLabel.Name = "DPadItemLeftLabel";
this.DPadItemLeftLabel.Size = new System.Drawing.Size(35, 22);
this.DPadItemLeftLabel.TabIndex = 2;
this.DPadItemLeftLabel.Text = "Left";
this.DPadItemLeftLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// DPadItemUpLabel
//
this.DPadItemUpLabel.Dock = System.Windows.Forms.DockStyle.Left;
this.DPadItemUpLabel.Location = new System.Drawing.Point(4, 4);
this.DPadItemUpLabel.Margin = new System.Windows.Forms.Padding(4);
this.DPadItemUpLabel.Name = "DPadItemUpLabel";
this.DPadItemUpLabel.Size = new System.Drawing.Size(35, 22);
this.DPadItemUpLabel.TabIndex = 0;
this.DPadItemUpLabel.Text = "Up";
this.DPadItemUpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// DPadItemRightLabel
//
this.DPadItemRightLabel.Dock = System.Windows.Forms.DockStyle.Left;
this.DPadItemRightLabel.Location = new System.Drawing.Point(4, 64);
this.DPadItemRightLabel.Margin = new System.Windows.Forms.Padding(4);
this.DPadItemRightLabel.Name = "DPadItemRightLabel";
this.DPadItemRightLabel.Size = new System.Drawing.Size(35, 22);
this.DPadItemRightLabel.TabIndex = 1;
this.DPadItemRightLabel.Text = "Right";
this.DPadItemRightLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// DPadItemDownLabel
//
this.DPadItemDownLabel.Dock = System.Windows.Forms.DockStyle.Left;
this.DPadItemDownLabel.Location = new System.Drawing.Point(4, 94);
this.DPadItemDownLabel.Margin = new System.Windows.Forms.Padding(4);
this.DPadItemDownLabel.Name = "DPadItemDownLabel";
this.DPadItemDownLabel.Size = new System.Drawing.Size(35, 26);
this.DPadItemDownLabel.TabIndex = 3;
this.DPadItemDownLabel.Text = "Down";
this.DPadItemDownLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// DPadItemUpComboBox
//
this.DPadItemUpComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadItemUpComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.DPadItemUpComboBox.FormattingEnabled = true;
this.DPadItemUpComboBox.Location = new System.Drawing.Point(48, 5);
this.DPadItemUpComboBox.Margin = new System.Windows.Forms.Padding(5);
this.DPadItemUpComboBox.Name = "DPadItemUpComboBox";
this.DPadItemUpComboBox.Size = new System.Drawing.Size(187, 21);
this.DPadItemUpComboBox.TabIndex = 4;
this.DPadItemUpComboBox.SelectedIndexChanged += new System.EventHandler(this.DPadItemUpComboBox_SelectedIndexChanged);
//
// DPadTableLayoutPanel
//
this.DPadTableLayoutPanel.ColumnCount = 2;
this.DPadTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.5F));
this.DPadTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.5F));
this.DPadTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.DPadTableLayoutPanel.Controls.Add(this.PresetComboBox, 1, 0);
this.DPadTableLayoutPanel.Controls.Add(this.EnabledCheckBox, 0, 0);
this.DPadTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Top;
this.DPadTableLayoutPanel.Location = new System.Drawing.Point(6, 6);
this.DPadTableLayoutPanel.Name = "DPadTableLayoutPanel";
this.DPadTableLayoutPanel.Padding = new System.Windows.Forms.Padding(3);
this.DPadTableLayoutPanel.RowCount = 1;
this.DPadTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.DPadTableLayoutPanel.Size = new System.Drawing.Size(246, 28);
this.DPadTableLayoutPanel.TabIndex = 1;
//
// PresetComboBox
//
this.PresetComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.PresetComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.PresetComboBox.FormattingEnabled = true;
this.PresetComboBox.Location = new System.Drawing.Point(93, 3);
this.PresetComboBox.Margin = new System.Windows.Forms.Padding(0);
this.PresetComboBox.Name = "PresetComboBox";
this.PresetComboBox.Size = new System.Drawing.Size(150, 21);
this.PresetComboBox.TabIndex = 1;
this.PresetComboBox.SelectedIndexChanged += new System.EventHandler(this.PresetComboBox_SelectedIndexChanged);
//
// EnabledCheckBox
//
this.EnabledCheckBox.AutoSize = true;
this.EnabledCheckBox.Checked = true;
this.EnabledCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.EnabledCheckBox.Dock = System.Windows.Forms.DockStyle.Left;
this.EnabledCheckBox.Location = new System.Drawing.Point(6, 6);
this.EnabledCheckBox.Name = "EnabledCheckBox";
this.EnabledCheckBox.Size = new System.Drawing.Size(65, 16);
this.EnabledCheckBox.TabIndex = 2;
this.EnabledCheckBox.Text = "Enabled";
this.EnabledCheckBox.UseVisualStyleBackColor = true;
this.EnabledCheckBox.CheckedChanged += new System.EventHandler(this.EnabledCheckBox_CheckedChanged);
//
// BottomPanel
//
this.BottomPanel.Controls.Add(this.UpdateButton);
this.BottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.BottomPanel.Location = new System.Drawing.Point(6, 223);
this.BottomPanel.Name = "BottomPanel";
this.BottomPanel.Padding = new System.Windows.Forms.Padding(3);
this.BottomPanel.Size = new System.Drawing.Size(246, 30);
this.BottomPanel.TabIndex = 2;
//
// UpdateButton
//
this.UpdateButton.Dock = System.Windows.Forms.DockStyle.Right;
this.UpdateButton.Location = new System.Drawing.Point(168, 3);
this.UpdateButton.Name = "UpdateButton";
this.UpdateButton.Size = new System.Drawing.Size(75, 24);
this.UpdateButton.TabIndex = 0;
this.UpdateButton.Text = "Update";
this.UpdateButton.UseVisualStyleBackColor = true;
this.UpdateButton.Click += new System.EventHandler(this.UpdateButton_Click);
//
// DPadDisplayGroupBox
//
this.DPadDisplayGroupBox.Controls.Add(this.DPadDisplayTableLayoutPanel);
this.DPadDisplayGroupBox.Dock = System.Windows.Forms.DockStyle.Top;
this.DPadDisplayGroupBox.Location = new System.Drawing.Point(6, 34);
this.DPadDisplayGroupBox.Name = "DPadDisplayGroupBox";
this.DPadDisplayGroupBox.Size = new System.Drawing.Size(246, 42);
this.DPadDisplayGroupBox.TabIndex = 3;
this.DPadDisplayGroupBox.TabStop = false;
this.DPadDisplayGroupBox.Text = "Display";
//
// DPadDisplayTableLayoutPanel
//
this.DPadDisplayTableLayoutPanel.ColumnCount = 3;
this.DPadDisplayTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.DPadDisplayTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.DPadDisplayTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
this.DPadDisplayTableLayoutPanel.Controls.Add(this.DPadHideCheckBox, 0, 0);
this.DPadDisplayTableLayoutPanel.Controls.Add(this.DPadDisplayLeftRadioButton, 1, 0);
this.DPadDisplayTableLayoutPanel.Controls.Add(this.DPadDisplayRightRadioButton, 2, 0);
this.DPadDisplayTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadDisplayTableLayoutPanel.Location = new System.Drawing.Point(3, 16);
this.DPadDisplayTableLayoutPanel.Name = "DPadDisplayTableLayoutPanel";
this.DPadDisplayTableLayoutPanel.RowCount = 1;
this.DPadDisplayTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.DPadDisplayTableLayoutPanel.Size = new System.Drawing.Size(240, 23);
this.DPadDisplayTableLayoutPanel.TabIndex = 0;
//
// DPadHideCheckBox
//
this.DPadHideCheckBox.AutoSize = true;
this.DPadHideCheckBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadHideCheckBox.Location = new System.Drawing.Point(3, 3);
this.DPadHideCheckBox.Name = "DPadHideCheckBox";
this.DPadHideCheckBox.Size = new System.Drawing.Size(114, 17);
this.DPadHideCheckBox.TabIndex = 0;
this.DPadHideCheckBox.Text = "Hide";
this.DPadHideCheckBox.UseVisualStyleBackColor = true;
this.DPadHideCheckBox.CheckedChanged += new System.EventHandler(this.DPadHideCheckBox_CheckedChanged);
//
// DPadDisplayLeftRadioButton
//
this.DPadDisplayLeftRadioButton.AutoSize = true;
this.DPadDisplayLeftRadioButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadDisplayLeftRadioButton.Location = new System.Drawing.Point(123, 3);
this.DPadDisplayLeftRadioButton.Name = "DPadDisplayLeftRadioButton";
this.DPadDisplayLeftRadioButton.Size = new System.Drawing.Size(54, 17);
this.DPadDisplayLeftRadioButton.TabIndex = 1;
this.DPadDisplayLeftRadioButton.TabStop = true;
this.DPadDisplayLeftRadioButton.Text = "Left";
this.DPadDisplayLeftRadioButton.UseVisualStyleBackColor = true;
//
// DPadDisplayRightRadioButton
//
this.DPadDisplayRightRadioButton.AutoSize = true;
this.DPadDisplayRightRadioButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.DPadDisplayRightRadioButton.Location = new System.Drawing.Point(183, 3);
this.DPadDisplayRightRadioButton.Name = "DPadDisplayRightRadioButton";
this.DPadDisplayRightRadioButton.Size = new System.Drawing.Size(54, 17);
this.DPadDisplayRightRadioButton.TabIndex = 2;
this.DPadDisplayRightRadioButton.TabStop = true;
this.DPadDisplayRightRadioButton.Text = "Right";
this.DPadDisplayRightRadioButton.UseVisualStyleBackColor = true;
//
// DPadForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(258, 259);
this.Controls.Add(this.BottomPanel);
this.Controls.Add(this.DPadItemsGroupBox);
this.Controls.Add(this.DPadDisplayGroupBox);
this.Controls.Add(this.DPadTableLayoutPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "DPadForm";
this.Padding = new System.Windows.Forms.Padding(6);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "D-Pad Configuration";
this.DPadItemsGroupBox.ResumeLayout(false);
this.DPadItemTableLayoutPanel.ResumeLayout(false);
this.DPadTableLayoutPanel.ResumeLayout(false);
this.DPadTableLayoutPanel.PerformLayout();
this.BottomPanel.ResumeLayout(false);
this.DPadDisplayGroupBox.ResumeLayout(false);
this.DPadDisplayTableLayoutPanel.ResumeLayout(false);
this.DPadDisplayTableLayoutPanel.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : LogicEditorForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogicEditorForm));
this.nItem = new System.Windows.Forms.NumericUpDown();
this.lINo = new System.Windows.Forms.Label();
this.lIName = new System.Windows.Forms.Label();
this.tMain = new System.Windows.Forms.TableLayoutPanel();
this.lTime = new System.Windows.Forms.Label();
this.lCond = new System.Windows.Forms.Label();
this.lReq = new System.Windows.Forms.Label();
this.tTimes = new System.Windows.Forms.TableLayoutPanel();
this.cANight3 = new System.Windows.Forms.CheckBox();
this.cADay3 = new System.Windows.Forms.CheckBox();
this.cANight2 = new System.Windows.Forms.CheckBox();
this.cADay2 = new System.Windows.Forms.CheckBox();
this.cANight1 = new System.Windows.Forms.CheckBox();
this.cADay1 = new System.Windows.Forms.CheckBox();
this.cNNight3 = new System.Windows.Forms.CheckBox();
this.cNDay3 = new System.Windows.Forms.CheckBox();
this.cNNight2 = new System.Windows.Forms.CheckBox();
this.cNDay2 = new System.Windows.Forms.CheckBox();
this.cNNight1 = new System.Windows.Forms.CheckBox();
this.lTNeed = new System.Windows.Forms.Label();
this.lTAvail = new System.Windows.Forms.Label();
this.cNDay1 = new System.Windows.Forms.CheckBox();
this.lNote = new System.Windows.Forms.Label();
this.tReq = new System.Windows.Forms.TableLayoutPanel();
this.bReqAdd = new System.Windows.Forms.Button();
this.bReqClear = new System.Windows.Forms.Button();
this.lRequired = new System.Windows.Forms.ListBox();
this.tCond = new System.Windows.Forms.TableLayoutPanel();
this.bConAdd = new System.Windows.Forms.Button();
this.bConClear = new System.Windows.Forms.Button();
this.lConditional = new System.Windows.Forms.ListBox();
this.bConEdit = new System.Windows.Forms.Button();
this.openLogic = new System.Windows.Forms.OpenFileDialog();
this.saveLogic = new System.Windows.Forms.SaveFileDialog();
this.mMenu = new System.Windows.Forms.MenuStrip();
this.mFile = new System.Windows.Forms.ToolStripMenuItem();
this.mNew = new System.Windows.Forms.ToolStripMenuItem();
this.mImport = new System.Windows.Forms.ToolStripMenuItem();
this.mSave = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.importTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.casualToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.glitchedToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.btn_new_item = new System.Windows.Forms.Button();
this.button_goto = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.nItem)).BeginInit();
this.tMain.SuspendLayout();
this.tTimes.SuspendLayout();
this.tReq.SuspendLayout();
this.tCond.SuspendLayout();
this.mMenu.SuspendLayout();
this.SuspendLayout();
//
// nItem
//
this.nItem.Location = new System.Drawing.Point(113, 54);
this.nItem.Name = "nItem";
this.nItem.Size = new System.Drawing.Size(120, 20);
this.nItem.TabIndex = 0;
this.nItem.Value = new decimal(new int[] {
1,
0,
0,
0});
this.nItem.ValueChanged += new System.EventHandler(this.nItem_ValueChanged);
//
// lINo
//
this.lINo.AutoSize = true;
this.lINo.Location = new System.Drawing.Point(39, 56);
this.lINo.Name = "lINo";
this.lINo.Size = new System.Drawing.Size(68, 13);
this.lINo.TabIndex = 1;
this.lINo.Text = "Item number:";
//
// lIName
//
this.lIName.AutoSize = true;
this.lIName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lIName.Location = new System.Drawing.Point(258, 56);
this.lIName.Name = "lIName";
this.lIName.Size = new System.Drawing.Size(70, 13);
this.lIName.TabIndex = 2;
this.lIName.Text = "Item_Name";
//
// tMain
//
this.tMain.BackColor = System.Drawing.SystemColors.Control;
this.tMain.ColumnCount = 3;
this.tMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
this.tMain.Controls.Add(this.lTime, 2, 0);
this.tMain.Controls.Add(this.lCond, 1, 0);
this.tMain.Controls.Add(this.lReq, 0, 0);
this.tMain.Controls.Add(this.tTimes, 2, 1);
this.tMain.Controls.Add(this.tReq, 0, 1);
this.tMain.Controls.Add(this.tCond, 1, 1);
this.tMain.Location = new System.Drawing.Point(12, 109);
this.tMain.Name = "tMain";
this.tMain.RowCount = 2;
this.tMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tMain.Size = new System.Drawing.Size(682, 418);
this.tMain.TabIndex = 3;
//
// lTime
//
this.lTime.AutoSize = true;
this.lTime.Dock = System.Windows.Forms.DockStyle.Fill;
this.lTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lTime.Location = new System.Drawing.Point(457, 0);
this.lTime.Name = "lTime";
this.lTime.Size = new System.Drawing.Size(222, 28);
this.lTime.TabIndex = 2;
this.lTime.Text = "Time dependence";
this.lTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lCond
//
this.lCond.AutoSize = true;
this.lCond.Dock = System.Windows.Forms.DockStyle.Fill;
this.lCond.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lCond.Location = new System.Drawing.Point(230, 0);
this.lCond.Name = "lCond";
this.lCond.Size = new System.Drawing.Size(221, 28);
this.lCond.TabIndex = 1;
this.lCond.Text = "Conditional items";
this.lCond.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lReq
//
this.lReq.AutoSize = true;
this.lReq.Dock = System.Windows.Forms.DockStyle.Fill;
this.lReq.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lReq.Location = new System.Drawing.Point(3, 0);
this.lReq.Name = "lReq";
this.lReq.Size = new System.Drawing.Size(221, 28);
this.lReq.TabIndex = 0;
this.lReq.Text = "Required items";
this.lReq.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// tTimes
//
this.tTimes.ColumnCount = 2;
this.tTimes.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tTimes.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tTimes.Controls.Add(this.cANight3, 1, 7);
this.tTimes.Controls.Add(this.cADay3, 0, 7);
this.tTimes.Controls.Add(this.cANight2, 1, 6);
this.tTimes.Controls.Add(this.cADay2, 0, 6);
this.tTimes.Controls.Add(this.cANight1, 1, 5);
this.tTimes.Controls.Add(this.cADay1, 0, 5);
this.tTimes.Controls.Add(this.cNNight3, 1, 3);
this.tTimes.Controls.Add(this.cNDay3, 0, 3);
this.tTimes.Controls.Add(this.cNNight2, 1, 2);
this.tTimes.Controls.Add(this.cNDay2, 0, 2);
this.tTimes.Controls.Add(this.cNNight1, 1, 1);
this.tTimes.Controls.Add(this.lTNeed, 0, 0);
this.tTimes.Controls.Add(this.lTAvail, 0, 4);
this.tTimes.Controls.Add(this.cNDay1, 0, 1);
this.tTimes.Controls.Add(this.lNote, 0, 8);
this.tTimes.Dock = System.Windows.Forms.DockStyle.Fill;
this.tTimes.Location = new System.Drawing.Point(457, 31);
this.tTimes.Name = "tTimes";
this.tTimes.RowCount = 9;
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.5F));
this.tTimes.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tTimes.Size = new System.Drawing.Size(222, 384);
this.tTimes.TabIndex = 3;
//
// cANight3
//
this.cANight3.AutoSize = true;
this.cANight3.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cANight3.Dock = System.Windows.Forms.DockStyle.Fill;
this.cANight3.Location = new System.Drawing.Point(114, 318);
this.cANight3.Name = "cANight3";
this.cANight3.Size = new System.Drawing.Size(105, 39);
this.cANight3.TabIndex = 13;
this.cANight3.Text = "Night 3";
this.cANight3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cANight3.UseVisualStyleBackColor = true;
this.cANight3.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cADay3
//
this.cADay3.AutoSize = true;
this.cADay3.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cADay3.Dock = System.Windows.Forms.DockStyle.Fill;
this.cADay3.Location = new System.Drawing.Point(3, 318);
this.cADay3.Name = "cADay3";
this.cADay3.Size = new System.Drawing.Size(105, 39);
this.cADay3.TabIndex = 12;
this.cADay3.Text = "Day 3";
this.cADay3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cADay3.UseVisualStyleBackColor = true;
this.cADay3.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cANight2
//
this.cANight2.AutoSize = true;
this.cANight2.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cANight2.Dock = System.Windows.Forms.DockStyle.Fill;
this.cANight2.Location = new System.Drawing.Point(114, 273);
this.cANight2.Name = "cANight2";
this.cANight2.Size = new System.Drawing.Size(105, 39);
this.cANight2.TabIndex = 11;
this.cANight2.Text = "Night 2";
this.cANight2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cANight2.UseVisualStyleBackColor = true;
this.cANight2.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cADay2
//
this.cADay2.AutoSize = true;
this.cADay2.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cADay2.Dock = System.Windows.Forms.DockStyle.Fill;
this.cADay2.Location = new System.Drawing.Point(3, 273);
this.cADay2.Name = "cADay2";
this.cADay2.Size = new System.Drawing.Size(105, 39);
this.cADay2.TabIndex = 10;
this.cADay2.Text = "Day 2";
this.cADay2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cADay2.UseVisualStyleBackColor = true;
this.cADay2.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cANight1
//
this.cANight1.AutoSize = true;
this.cANight1.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cANight1.Dock = System.Windows.Forms.DockStyle.Fill;
this.cANight1.Location = new System.Drawing.Point(114, 228);
this.cANight1.Name = "cANight1";
this.cANight1.Size = new System.Drawing.Size(105, 39);
this.cANight1.TabIndex = 9;
this.cANight1.Text = "Night 1";
this.cANight1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cANight1.UseVisualStyleBackColor = true;
this.cANight1.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cADay1
//
this.cADay1.AutoSize = true;
this.cADay1.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cADay1.Dock = System.Windows.Forms.DockStyle.Fill;
this.cADay1.Location = new System.Drawing.Point(3, 228);
this.cADay1.Name = "cADay1";
this.cADay1.Size = new System.Drawing.Size(105, 39);
this.cADay1.TabIndex = 8;
this.cADay1.Text = "Day 1";
this.cADay1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cADay1.UseVisualStyleBackColor = true;
this.cADay1.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cNNight3
//
this.cNNight3.AutoSize = true;
this.cNNight3.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNNight3.Dock = System.Windows.Forms.DockStyle.Fill;
this.cNNight3.Location = new System.Drawing.Point(114, 138);
this.cNNight3.Name = "cNNight3";
this.cNNight3.Size = new System.Drawing.Size(105, 39);
this.cNNight3.TabIndex = 7;
this.cNNight3.Text = "Night 3";
this.cNNight3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNNight3.UseVisualStyleBackColor = true;
this.cNNight3.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cNDay3
//
this.cNDay3.AutoSize = true;
this.cNDay3.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNDay3.Dock = System.Windows.Forms.DockStyle.Fill;
this.cNDay3.Location = new System.Drawing.Point(3, 138);
this.cNDay3.Name = "cNDay3";
this.cNDay3.Size = new System.Drawing.Size(105, 39);
this.cNDay3.TabIndex = 6;
this.cNDay3.Text = "Day 3";
this.cNDay3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNDay3.UseVisualStyleBackColor = true;
this.cNDay3.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cNNight2
//
this.cNNight2.AutoSize = true;
this.cNNight2.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNNight2.Dock = System.Windows.Forms.DockStyle.Fill;
this.cNNight2.Location = new System.Drawing.Point(114, 93);
this.cNNight2.Name = "cNNight2";
this.cNNight2.Size = new System.Drawing.Size(105, 39);
this.cNNight2.TabIndex = 5;
this.cNNight2.Text = "Night 2";
this.cNNight2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNNight2.UseVisualStyleBackColor = true;
this.cNNight2.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cNDay2
//
this.cNDay2.AutoSize = true;
this.cNDay2.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNDay2.Dock = System.Windows.Forms.DockStyle.Fill;
this.cNDay2.Location = new System.Drawing.Point(3, 93);
this.cNDay2.Name = "cNDay2";
this.cNDay2.Size = new System.Drawing.Size(105, 39);
this.cNDay2.TabIndex = 4;
this.cNDay2.Text = "Day 2";
this.cNDay2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNDay2.UseVisualStyleBackColor = true;
this.cNDay2.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// cNNight1
//
this.cNNight1.AutoSize = true;
this.cNNight1.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNNight1.Dock = System.Windows.Forms.DockStyle.Fill;
this.cNNight1.Location = new System.Drawing.Point(114, 48);
this.cNNight1.Name = "cNNight1";
this.cNNight1.Size = new System.Drawing.Size(105, 39);
this.cNNight1.TabIndex = 3;
this.cNNight1.Text = "Night 1";
this.cNNight1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNNight1.UseVisualStyleBackColor = true;
this.cNNight1.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// lTNeed
//
this.lTNeed.AutoSize = true;
this.tTimes.SetColumnSpan(this.lTNeed, 2);
this.lTNeed.Dock = System.Windows.Forms.DockStyle.Fill;
this.lTNeed.Location = new System.Drawing.Point(3, 0);
this.lTNeed.Name = "lTNeed";
this.lTNeed.Size = new System.Drawing.Size(216, 45);
this.lTNeed.TabIndex = 0;
this.lTNeed.Text = "Needed on";
this.lTNeed.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lTAvail
//
this.lTAvail.AutoSize = true;
this.tTimes.SetColumnSpan(this.lTAvail, 2);
this.lTAvail.Dock = System.Windows.Forms.DockStyle.Fill;
this.lTAvail.Location = new System.Drawing.Point(3, 180);
this.lTAvail.Name = "lTAvail";
this.lTAvail.Size = new System.Drawing.Size(216, 45);
this.lTAvail.TabIndex = 1;
this.lTAvail.Text = "Available on";
this.lTAvail.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// cNDay1
//
this.cNDay1.AutoSize = true;
this.cNDay1.CheckAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNDay1.Dock = System.Windows.Forms.DockStyle.Fill;
this.cNDay1.Location = new System.Drawing.Point(3, 48);
this.cNDay1.Name = "cNDay1";
this.cNDay1.Size = new System.Drawing.Size(105, 39);
this.cNDay1.TabIndex = 2;
this.cNDay1.Text = "Day 1";
this.cNDay1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.cNDay1.UseVisualStyleBackColor = true;
this.cNDay1.CheckedChanged += new System.EventHandler(this.cNDay1_CheckedChanged);
//
// lNote
//
this.lNote.AutoSize = true;
this.tTimes.SetColumnSpan(this.lNote, 2);
this.lNote.Dock = System.Windows.Forms.DockStyle.Fill;
this.lNote.Location = new System.Drawing.Point(3, 360);
this.lNote.Name = "lNote";
this.lNote.Size = new System.Drawing.Size(216, 24);
this.lNote.TabIndex = 14;
this.lNote.Text = "If there is no time restriction, leave blank.";
this.lNote.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// tReq
//
this.tReq.ColumnCount = 2;
this.tReq.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tReq.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tReq.Controls.Add(this.bReqAdd, 0, 1);
this.tReq.Controls.Add(this.bReqClear, 1, 1);
this.tReq.Controls.Add(this.lRequired, 0, 0);
this.tReq.Dock = System.Windows.Forms.DockStyle.Fill;
this.tReq.Location = new System.Drawing.Point(3, 31);
this.tReq.Name = "tReq";
this.tReq.RowCount = 2;
this.tReq.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tReq.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
this.tReq.Size = new System.Drawing.Size(221, 384);
this.tReq.TabIndex = 4;
//
// bReqAdd
//
this.bReqAdd.Dock = System.Windows.Forms.DockStyle.Fill;
this.bReqAdd.Location = new System.Drawing.Point(3, 351);
this.bReqAdd.Name = "bReqAdd";
this.bReqAdd.Size = new System.Drawing.Size(104, 30);
this.bReqAdd.TabIndex = 0;
this.bReqAdd.Text = "Add";
this.bReqAdd.UseVisualStyleBackColor = true;
this.bReqAdd.Click += new System.EventHandler(this.bReqAdd_Click);
//
// bReqClear
//
this.bReqClear.Dock = System.Windows.Forms.DockStyle.Fill;
this.bReqClear.Location = new System.Drawing.Point(113, 351);
this.bReqClear.Name = "bReqClear";
this.bReqClear.Size = new System.Drawing.Size(105, 30);
this.bReqClear.TabIndex = 1;
this.bReqClear.Text = "Clear selected";
this.bReqClear.UseVisualStyleBackColor = true;
this.bReqClear.Click += new System.EventHandler(this.bReqClear_Click);
//
// lRequired
//
this.tReq.SetColumnSpan(this.lRequired, 2);
this.lRequired.Dock = System.Windows.Forms.DockStyle.Fill;
this.lRequired.FormattingEnabled = true;
this.lRequired.Location = new System.Drawing.Point(3, 3);
this.lRequired.Name = "lRequired";
this.lRequired.Size = new System.Drawing.Size(215, 342);
this.lRequired.TabIndex = 2;
this.lRequired.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lRequired_MouseDoubleClick);
//
// tCond
//
this.tCond.ColumnCount = 3;
this.tCond.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33F));
this.tCond.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.34F));
this.tCond.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33F));
this.tCond.Controls.Add(this.bConAdd, 0, 1);
this.tCond.Controls.Add(this.bConClear, 2, 1);
this.tCond.Controls.Add(this.lConditional, 0, 0);
this.tCond.Controls.Add(this.bConEdit, 1, 1);
this.tCond.Dock = System.Windows.Forms.DockStyle.Fill;
this.tCond.Location = new System.Drawing.Point(230, 31);
this.tCond.Name = "tCond";
this.tCond.RowCount = 2;
this.tCond.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tCond.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
this.tCond.Size = new System.Drawing.Size(221, 384);
this.tCond.TabIndex = 5;
//
// bConAdd
//
this.bConAdd.Dock = System.Windows.Forms.DockStyle.Fill;
this.bConAdd.Location = new System.Drawing.Point(3, 351);
this.bConAdd.Name = "bConAdd";
this.bConAdd.Size = new System.Drawing.Size(67, 30);
this.bConAdd.TabIndex = 0;
this.bConAdd.Text = "Add";
this.bConAdd.UseVisualStyleBackColor = true;
this.bConAdd.Click += new System.EventHandler(this.bConAdd_Click);
//
// bConClear
//
this.bConClear.Dock = System.Windows.Forms.DockStyle.Fill;
this.bConClear.Location = new System.Drawing.Point(149, 351);
this.bConClear.Name = "bConClear";
this.bConClear.Size = new System.Drawing.Size(69, 30);
this.bConClear.TabIndex = 1;
this.bConClear.Text = "Remove";
this.bConClear.UseVisualStyleBackColor = true;
this.bConClear.Click += new System.EventHandler(this.bConClear_Click);
//
// lConditional
//
this.tCond.SetColumnSpan(this.lConditional, 3);
this.lConditional.Dock = System.Windows.Forms.DockStyle.Fill;
this.lConditional.FormattingEnabled = true;
this.lConditional.HorizontalScrollbar = true;
this.lConditional.Location = new System.Drawing.Point(3, 3);
this.lConditional.Name = "lConditional";
this.lConditional.Size = new System.Drawing.Size(215, 342);
this.lConditional.TabIndex = 2;
this.lConditional.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lConditional_MouseDoubleClick);
//
// bConEdit
//
this.bConEdit.Dock = System.Windows.Forms.DockStyle.Fill;
this.bConEdit.Location = new System.Drawing.Point(76, 351);
this.bConEdit.Name = "bConEdit";
this.bConEdit.Size = new System.Drawing.Size(67, 30);
this.bConEdit.TabIndex = 3;
this.bConEdit.Text = "Edit";
this.bConEdit.UseVisualStyleBackColor = true;
this.bConEdit.MouseClick += new System.Windows.Forms.MouseEventHandler(this.bConEdit_MouseClick);
//
// mMenu
//
this.mMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mFile});
this.mMenu.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
this.mMenu.Location = new System.Drawing.Point(0, 0);
this.mMenu.Name = "mMenu";
this.mMenu.Size = new System.Drawing.Size(706, 24);
this.mMenu.TabIndex = 4;
this.mMenu.Text = "menuStrip1";
//
// mFile
//
this.mFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mNew,
this.mImport,
this.mSave,
this.toolStripSeparator1,
this.importTemplateToolStripMenuItem});
this.mFile.Name = "mFile";
this.mFile.Size = new System.Drawing.Size(37, 20);
this.mFile.Text = "File";
//
// mNew
//
this.mNew.Name = "mNew";
this.mNew.Size = new System.Drawing.Size(182, 22);
this.mNew.Text = "New";
this.mNew.Click += new System.EventHandler(this.mNew_Click);
//
// mImport
//
this.mImport.Name = "mImport";
this.mImport.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.mImport.Size = new System.Drawing.Size(182, 22);
this.mImport.Text = "Import logic";
this.mImport.Click += new System.EventHandler(this.mImport_Click);
//
// mSave
//
this.mSave.Name = "mSave";
this.mSave.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.mSave.Size = new System.Drawing.Size(182, 22);
this.mSave.Text = "Save logic";
this.mSave.Click += new System.EventHandler(this.mSave_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(179, 6);
//
// importTemplateToolStripMenuItem
//
this.importTemplateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.casualToolStripMenuItem1,
this.glitchedToolStripMenuItem1});
this.importTemplateToolStripMenuItem.Name = "importTemplateToolStripMenuItem";
this.importTemplateToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
this.importTemplateToolStripMenuItem.Text = "Import template";
//
// casualToolStripMenuItem1
//
this.casualToolStripMenuItem1.Name = "casualToolStripMenuItem1";
this.casualToolStripMenuItem1.Size = new System.Drawing.Size(180, 22);
this.casualToolStripMenuItem1.Text = "Casual";
this.casualToolStripMenuItem1.Click += new System.EventHandler(this.casualToolStripMenuItem1_Click);
//
// glitchedToolStripMenuItem1
//
this.glitchedToolStripMenuItem1.Name = "glitchedToolStripMenuItem1";
this.glitchedToolStripMenuItem1.Size = new System.Drawing.Size(180, 22);
this.glitchedToolStripMenuItem1.Text = "Glitched";
this.glitchedToolStripMenuItem1.Click += new System.EventHandler(this.glitchedToolStripMenuItem1_Click);
//
// btn_new_item
//
this.btn_new_item.Location = new System.Drawing.Point(113, 81);
this.btn_new_item.Name = "btn_new_item";
this.btn_new_item.Size = new System.Drawing.Size(120, 23);
this.btn_new_item.TabIndex = 5;
this.btn_new_item.Text = "New Item";
this.btn_new_item.UseVisualStyleBackColor = true;
this.btn_new_item.Click += new System.EventHandler(this.btn_new_item_Click);
//
// button_goto
//
this.button_goto.Location = new System.Drawing.Point(261, 81);
this.button_goto.Name = "button_goto";
this.button_goto.Size = new System.Drawing.Size(47, 23);
this.button_goto.TabIndex = 6;
this.button_goto.Text = "Go To";
this.button_goto.UseVisualStyleBackColor = true;
this.button_goto.Click += new System.EventHandler(this.button_goto_Click);
//
// LogicEditorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(706, 539);
this.Controls.Add(this.button_goto);
this.Controls.Add(this.btn_new_item);
this.Controls.Add(this.tMain);
this.Controls.Add(this.lIName);
this.Controls.Add(this.lINo);
this.Controls.Add(this.nItem);
this.Controls.Add(this.mMenu);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "LogicEditorForm";
this.Text = "Logic Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.fLogicEdit_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.nItem)).EndInit();
this.tMain.ResumeLayout(false);
this.tMain.PerformLayout();
this.tTimes.ResumeLayout(false);
this.tTimes.PerformLayout();
this.tReq.ResumeLayout(false);
this.tCond.ResumeLayout(false);
this.mMenu.ResumeLayout(false);
this.mMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ItemEditForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ItemEditForm));
this.lItems = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tSetting = new System.Windows.Forms.TextBox();
this.tLayout = new System.Windows.Forms.TableLayoutPanel();
this.tLayout.SuspendLayout();
this.SuspendLayout();
//
// lItems
//
this.lItems.CheckBoxes = true;
this.lItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1});
this.lItems.Dock = System.Windows.Forms.DockStyle.Fill;
this.lItems.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.lItems.Location = new System.Drawing.Point(3, 3);
this.lItems.Name = "lItems";
this.lItems.Size = new System.Drawing.Size(1076, 469);
this.lItems.TabIndex = 1;
this.lItems.UseCompatibleStateImageBehavior = false;
this.lItems.View = System.Windows.Forms.View.List;
this.lItems.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lItems_ItemChecked);
//
// columnHeader1
//
this.columnHeader1.Width = 160;
//
// tSetting
//
this.tSetting.Dock = System.Windows.Forms.DockStyle.Fill;
this.tSetting.Location = new System.Drawing.Point(3, 478);
this.tSetting.Name = "tSetting";
this.tSetting.Size = new System.Drawing.Size(1076, 20);
this.tSetting.TabIndex = 2;
this.tSetting.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tSetting_KeyDown);
//
// tLayout
//
this.tLayout.ColumnCount = 1;
this.tLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tLayout.Controls.Add(this.lItems, 0, 0);
this.tLayout.Controls.Add(this.tSetting, 0, 1);
this.tLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.tLayout.Location = new System.Drawing.Point(0, 0);
this.tLayout.Name = "tLayout";
this.tLayout.RowCount = 2;
this.tLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tLayout.Size = new System.Drawing.Size(1082, 503);
this.tLayout.TabIndex = 3;
//
// ItemEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1082, 503);
this.Controls.Add(this.tLayout);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ItemEditForm";
this.Text = "Item List Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.fItemEdit_FormClosing);
this.tLayout.ResumeLayout(false);
this.tLayout.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ItemSelectorForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ItemSelectorForm));
this.lItems = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.tLayout = new System.Windows.Forms.TableLayoutPanel();
this.bDone = new System.Windows.Forms.Button();
this.textBoxFilter = new System.Windows.Forms.TextBox();
this.tLayout.SuspendLayout();
this.SuspendLayout();
//
// lItems
//
this.lItems.CheckBoxes = true;
this.lItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1});
this.lItems.Dock = System.Windows.Forms.DockStyle.Fill;
this.lItems.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.lItems.Location = new System.Drawing.Point(3, 3);
this.lItems.Name = "lItems";
this.lItems.Size = new System.Drawing.Size(1076, 481);
this.lItems.TabIndex = 1;
this.lItems.UseCompatibleStateImageBehavior = false;
this.lItems.View = System.Windows.Forms.View.List;
this.lItems.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lItems_MouseDoubleClick);
//
// columnHeader1
//
this.columnHeader1.Width = 160;
//
// tLayout
//
this.tLayout.ColumnCount = 1;
this.tLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tLayout.Controls.Add(this.lItems, 0, 0);
this.tLayout.Controls.Add(this.bDone, 0, 2);
this.tLayout.Controls.Add(this.textBoxFilter, 0, 1);
this.tLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.tLayout.Location = new System.Drawing.Point(0, 0);
this.tLayout.Name = "tLayout";
this.tLayout.RowCount = 3;
this.tLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tLayout.Size = new System.Drawing.Size(1082, 543);
this.tLayout.TabIndex = 4;
//
// bDone
//
this.bDone.Dock = System.Windows.Forms.DockStyle.Fill;
this.bDone.Location = new System.Drawing.Point(3, 518);
this.bDone.Name = "bDone";
this.bDone.Size = new System.Drawing.Size(1076, 22);
this.bDone.TabIndex = 2;
this.bDone.Text = "Done";
this.bDone.UseVisualStyleBackColor = true;
this.bDone.Click += new System.EventHandler(this.bDone_Click);
//
// textBoxFilter
//
this.textBoxFilter.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxFilter.ForeColor = System.Drawing.SystemColors.WindowText;
this.textBoxFilter.Location = new System.Drawing.Point(3, 490);
this.textBoxFilter.Name = "textBoxFilter";
this.textBoxFilter.Size = new System.Drawing.Size(1076, 20);
this.textBoxFilter.TabIndex = 3;
this.textBoxFilter.TextChanged += new System.EventHandler(this.textBoxFilter_TextChanged);
//
// ItemSelectorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1082, 543);
this.Controls.Add(this.tLayout);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ItemSelectorForm";
this.Text = "Select items...";
this.tLayout.ResumeLayout(false);
this.tLayout.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : JunkLocationEditForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JunkLocationEditForm));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lJunkLocations = new System.Windows.Forms.ListView();
this.tJunkLocationsString = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.lJunkLocations, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tJunkLocationsString, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(1134, 503);
this.tableLayoutPanel1.TabIndex = 0;
//
// lJunkLocations
//
this.lJunkLocations.CheckBoxes = true;
this.lJunkLocations.Dock = System.Windows.Forms.DockStyle.Fill;
this.lJunkLocations.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.lJunkLocations.Location = new System.Drawing.Point(3, 3);
this.lJunkLocations.Name = "lJunkLocations";
this.lJunkLocations.Size = new System.Drawing.Size(1128, 469);
this.lJunkLocations.TabIndex = 0;
this.lJunkLocations.UseCompatibleStateImageBehavior = false;
this.lJunkLocations.View = System.Windows.Forms.View.List;
this.lJunkLocations.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lJunkLocations_ItemChecked);
//
// tJunkLocationsString
//
this.tJunkLocationsString.Dock = System.Windows.Forms.DockStyle.Fill;
this.tJunkLocationsString.Location = new System.Drawing.Point(3, 478);
this.tJunkLocationsString.Name = "tJunkLocationsString";
this.tJunkLocationsString.Size = new System.Drawing.Size(1128, 20);
this.tJunkLocationsString.TabIndex = 1;
this.tJunkLocationsString.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tJunkLocationsString_KeyDown);
//
// JunkLocationEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1134, 503);
this.Controls.Add(this.tableLayoutPanel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "JunkLocationEditForm";
this.Text = "Junk Location Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.JunkLocationEditForm_FormClosing);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : StartingItemEditForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StartingItemEditForm));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lStartingItems = new System.Windows.Forms.ListView();
this.tStartingItemsString = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.lStartingItems, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tStartingItemsString, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(439, 503);
this.tableLayoutPanel1.TabIndex = 0;
//
// lStartingItems
//
this.lStartingItems.CheckBoxes = true;
this.lStartingItems.Dock = System.Windows.Forms.DockStyle.Fill;
this.lStartingItems.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.lStartingItems.Location = new System.Drawing.Point(3, 3);
this.lStartingItems.Name = "lStartingItems";
this.lStartingItems.Size = new System.Drawing.Size(433, 469);
this.lStartingItems.TabIndex = 0;
this.lStartingItems.UseCompatibleStateImageBehavior = false;
this.lStartingItems.View = System.Windows.Forms.View.List;
this.lStartingItems.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lStartingItems_ItemChecked);
//
// tStartingItemsString
//
this.tStartingItemsString.Dock = System.Windows.Forms.DockStyle.Fill;
this.tStartingItemsString.Location = new System.Drawing.Point(3, 478);
this.tStartingItemsString.Name = "tStartingItemsString";
this.tStartingItemsString.Size = new System.Drawing.Size(433, 20);
this.tStartingItemsString.TabIndex = 1;
this.tStartingItemsString.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tStartingItemsString_KeyDown);
//
// StartingItemEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(439, 503);
this.Controls.Add(this.tableLayoutPanel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "StartingItemEditForm";
this.Text = "Starting Item Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.StartingItemEditForm_FormClosing);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
See More Examples