436 lines
22 KiB
C#
436 lines
22 KiB
C#
namespace VisualPascalABC
|
|
{
|
|
partial class AboutBox
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.dgvModules = new System.Windows.Forms.ListView();
|
|
this.chType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.chName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.chVersion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.chCopyright = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
|
|
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
|
|
this.lVersion = new System.Windows.Forms.Label();
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
this.label9 = new System.Windows.Forms.Label();
|
|
this.lVersionText = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.linkLabel3 = new System.Windows.Forms.LinkLabel();
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
this.label13 = new System.Windows.Forms.Label();
|
|
this.linkLabel4 = new System.Windows.Forms.LinkLabel();
|
|
this.groupBox1.SuspendLayout();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
this.flowLayoutPanel1.SuspendLayout();
|
|
this.flowLayoutPanel3.SuspendLayout();
|
|
this.flowLayoutPanel2.SuspendLayout();
|
|
this.flowLayoutPanel4.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.dgvModules);
|
|
this.groupBox1.Location = new System.Drawing.Point(8, 160);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(530, 137);
|
|
this.groupBox1.TabIndex = 12;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "COMPONENTS";
|
|
this.groupBox1.Enter += new System.EventHandler(this.groupBox1_Enter);
|
|
//
|
|
// dgvModules
|
|
//
|
|
this.dgvModules.AllowColumnReorder = true;
|
|
this.dgvModules.AutoArrange = false;
|
|
this.dgvModules.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.chType,
|
|
this.chName,
|
|
this.chVersion,
|
|
this.chCopyright});
|
|
this.dgvModules.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dgvModules.FullRowSelect = true;
|
|
this.dgvModules.GridLines = true;
|
|
this.dgvModules.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|
this.dgvModules.HideSelection = false;
|
|
this.dgvModules.Location = new System.Drawing.Point(3, 16);
|
|
this.dgvModules.MultiSelect = false;
|
|
this.dgvModules.Name = "dgvModules";
|
|
this.dgvModules.Size = new System.Drawing.Size(524, 118);
|
|
this.dgvModules.TabIndex = 3;
|
|
this.dgvModules.UseCompatibleStateImageBehavior = false;
|
|
this.dgvModules.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// chType
|
|
//
|
|
this.chType.Text = "TYPE";
|
|
this.chType.Width = 65;
|
|
//
|
|
// chName
|
|
//
|
|
this.chName.Text = "NAME";
|
|
this.chName.Width = 170;
|
|
//
|
|
// chVersion
|
|
//
|
|
this.chVersion.Text = "VERSION";
|
|
this.chVersion.Width = 74;
|
|
//
|
|
// chCopyright
|
|
//
|
|
this.chCopyright.Text = "COPYRIGHT";
|
|
this.chCopyright.Width = 200;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(220, 308);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(107, 23);
|
|
this.button1.TabIndex = 13;
|
|
this.button1.Text = "!OK";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// linkLabel1
|
|
//
|
|
this.linkLabel1.AutoSize = true;
|
|
this.linkLabel1.Location = new System.Drawing.Point(11, 105);
|
|
this.linkLabel1.Name = "linkLabel1";
|
|
this.linkLabel1.Size = new System.Drawing.Size(124, 13);
|
|
this.linkLabel1.TabIndex = 20;
|
|
this.linkLabel1.TabStop = true;
|
|
this.linkLabel1.Text = "!PASCALABCNET_SITE";
|
|
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
|
|
//
|
|
// linkLabel2
|
|
//
|
|
this.linkLabel2.AutoSize = true;
|
|
this.linkLabel2.Location = new System.Drawing.Point(11, 122);
|
|
this.linkLabel2.Name = "linkLabel2";
|
|
this.linkLabel2.Size = new System.Drawing.Size(139, 13);
|
|
this.linkLabel2.TabIndex = 21;
|
|
this.linkLabel2.TabStop = true;
|
|
this.linkLabel2.Text = "!PASCALABCNET_FORUM";
|
|
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
|
|
//
|
|
// lVersion
|
|
//
|
|
this.lVersion.AutoSize = true;
|
|
this.lVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.lVersion.ForeColor = System.Drawing.Color.DarkGreen;
|
|
this.lVersion.Location = new System.Drawing.Point(65, 0);
|
|
this.lVersion.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
|
|
this.lVersion.Name = "lVersion";
|
|
this.lVersion.Size = new System.Drawing.Size(44, 13);
|
|
this.lVersion.TabIndex = 5;
|
|
this.lVersion.Text = "vesion";
|
|
//
|
|
// label12
|
|
//
|
|
this.label12.AutoSize = true;
|
|
this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label12.Location = new System.Drawing.Point(3, 0);
|
|
this.label12.Name = "label12";
|
|
this.label12.Size = new System.Drawing.Size(311, 13);
|
|
this.label12.TabIndex = 17;
|
|
this.label12.Text = "Copyright (c) 2005-2026 Ivan Bondarev, Stanislav Mikhalkovich";
|
|
//
|
|
// label9
|
|
//
|
|
this.label9.AutoSize = true;
|
|
this.label9.Location = new System.Drawing.Point(3, 0);
|
|
this.label9.Name = "label9";
|
|
this.label9.Size = new System.Drawing.Size(49, 13);
|
|
this.label9.TabIndex = 22;
|
|
this.label9.Text = "MADEIN";
|
|
//
|
|
// lVersionText
|
|
//
|
|
this.lVersionText.AutoSize = true;
|
|
this.lVersionText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.lVersionText.Location = new System.Drawing.Point(3, 0);
|
|
this.lVersionText.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
|
|
this.lVersionText.Name = "lVersionText";
|
|
this.lVersionText.Size = new System.Drawing.Size(62, 13);
|
|
this.lVersionText.TabIndex = 4;
|
|
this.lVersionText.Text = "VERSION";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label1.ForeColor = System.Drawing.Color.Black;
|
|
this.label1.Location = new System.Drawing.Point(3, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(98, 13);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "PascalABC.NET";
|
|
//
|
|
// 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.flowLayoutPanel1, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel3, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel2, 0, 3);
|
|
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel4, 0, 2);
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(5, 8);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 4;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(332, 95);
|
|
this.tableLayoutPanel1.TabIndex = 23;
|
|
//
|
|
// flowLayoutPanel1
|
|
//
|
|
this.flowLayoutPanel1.Controls.Add(this.label1);
|
|
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 3);
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
|
this.flowLayoutPanel1.Size = new System.Drawing.Size(326, 17);
|
|
this.flowLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// flowLayoutPanel3
|
|
//
|
|
this.flowLayoutPanel3.Controls.Add(this.lVersionText);
|
|
this.flowLayoutPanel3.Controls.Add(this.lVersion);
|
|
this.flowLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowLayoutPanel3.Location = new System.Drawing.Point(3, 23);
|
|
this.flowLayoutPanel3.Margin = new System.Windows.Forms.Padding(3, 0, 3, 3);
|
|
this.flowLayoutPanel3.Name = "flowLayoutPanel3";
|
|
this.flowLayoutPanel3.Size = new System.Drawing.Size(326, 20);
|
|
this.flowLayoutPanel3.TabIndex = 2;
|
|
//
|
|
// flowLayoutPanel2
|
|
//
|
|
this.flowLayoutPanel2.Controls.Add(this.label9);
|
|
this.flowLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowLayoutPanel2.Location = new System.Drawing.Point(3, 69);
|
|
this.flowLayoutPanel2.Margin = new System.Windows.Forms.Padding(3, 0, 3, 3);
|
|
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
|
|
this.flowLayoutPanel2.Size = new System.Drawing.Size(326, 23);
|
|
this.flowLayoutPanel2.TabIndex = 1;
|
|
//
|
|
// flowLayoutPanel4
|
|
//
|
|
this.flowLayoutPanel4.Controls.Add(this.label12);
|
|
this.flowLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowLayoutPanel4.Location = new System.Drawing.Point(3, 49);
|
|
this.flowLayoutPanel4.Name = "flowLayoutPanel4";
|
|
this.flowLayoutPanel4.Size = new System.Drawing.Size(326, 17);
|
|
this.flowLayoutPanel4.TabIndex = 3;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label4.Location = new System.Drawing.Point(10, 50);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(93, 13);
|
|
this.label4.TabIndex = 22;
|
|
this.label4.Text = "!DEVELOPERS";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label5.Location = new System.Drawing.Point(20, 65);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(85, 13);
|
|
this.label5.TabIndex = 23;
|
|
this.label5.Text = "DEVELOPERS1";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label2.Location = new System.Drawing.Point(10, 16);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(110, 13);
|
|
this.label2.TabIndex = 26;
|
|
this.label2.Text = "PROJECT_ADMIN";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label3.Location = new System.Drawing.Point(20, 31);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(120, 13);
|
|
this.label3.TabIndex = 16;
|
|
this.label3.Text = "PROJECT_ADMIN_FIO";
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.linkLabel3);
|
|
this.groupBox2.Controls.Add(this.label6);
|
|
this.groupBox2.Controls.Add(this.label13);
|
|
this.groupBox2.Controls.Add(this.label3);
|
|
this.groupBox2.Controls.Add(this.label2);
|
|
this.groupBox2.Controls.Add(this.label5);
|
|
this.groupBox2.Controls.Add(this.label4);
|
|
this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.groupBox2.Location = new System.Drawing.Point(337, 8);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(201, 132);
|
|
this.groupBox2.TabIndex = 14;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "DEVELOPERS";
|
|
//
|
|
// linkLabel3
|
|
//
|
|
this.linkLabel3.AutoSize = true;
|
|
this.linkLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.linkLabel3.Location = new System.Drawing.Point(10, 84);
|
|
this.linkLabel3.Name = "linkLabel3";
|
|
this.linkLabel3.Size = new System.Drawing.Size(196, 13);
|
|
this.linkLabel3.TabIndex = 24;
|
|
this.linkLabel3.TabStop = true;
|
|
this.linkLabel3.Text = "!PASCALABCNET_DEVELOPERS";
|
|
this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
|
|
//
|
|
// label6
|
|
//
|
|
this.label6.AutoSize = true;
|
|
this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label6.Location = new System.Drawing.Point(20, 79);
|
|
this.label6.Name = "label6";
|
|
this.label6.Size = new System.Drawing.Size(85, 13);
|
|
this.label6.TabIndex = 29;
|
|
this.label6.Text = "DEVELOPERS2";
|
|
//
|
|
// label13
|
|
//
|
|
this.label13.AutoSize = true;
|
|
this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
|
this.label13.Location = new System.Drawing.Point(20, 93);
|
|
this.label13.Name = "label13";
|
|
this.label13.Size = new System.Drawing.Size(85, 13);
|
|
this.label13.TabIndex = 28;
|
|
this.label13.Text = "DEVELOPERS3";
|
|
//
|
|
// linkLabel4
|
|
//
|
|
this.linkLabel4.AutoSize = true;
|
|
this.linkLabel4.Location = new System.Drawing.Point(11, 139);
|
|
this.linkLabel4.Name = "linkLabel4";
|
|
this.linkLabel4.Size = new System.Drawing.Size(159, 13);
|
|
this.linkLabel4.TabIndex = 25;
|
|
this.linkLabel4.TabStop = true;
|
|
this.linkLabel4.Text = "!PASCALABCNET_TELEGRAM";
|
|
this.linkLabel4.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel4_LinkClicked);
|
|
//
|
|
// AboutBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(546, 345);
|
|
this.Controls.Add(this.linkLabel4);
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Controls.Add(this.linkLabel2);
|
|
this.Controls.Add(this.linkLabel1);
|
|
this.Controls.Add(this.groupBox2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.groupBox1);
|
|
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 = "FORMTEXT";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.AboutBox_FormClosing);
|
|
this.Load += new System.EventHandler(this.AboutBox_Load);
|
|
this.Shown += new System.EventHandler(this.AboutBox_Shown);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.flowLayoutPanel1.ResumeLayout(false);
|
|
this.flowLayoutPanel1.PerformLayout();
|
|
this.flowLayoutPanel3.ResumeLayout(false);
|
|
this.flowLayoutPanel3.PerformLayout();
|
|
this.flowLayoutPanel2.ResumeLayout(false);
|
|
this.flowLayoutPanel2.PerformLayout();
|
|
this.flowLayoutPanel4.ResumeLayout(false);
|
|
this.flowLayoutPanel4.PerformLayout();
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.groupBox2.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.LinkLabel linkLabel1;
|
|
private System.Windows.Forms.LinkLabel linkLabel2;
|
|
private System.Windows.Forms.Label lVersion;
|
|
private System.Windows.Forms.Label label12;
|
|
private System.Windows.Forms.Label label9;
|
|
private System.Windows.Forms.Label lVersionText;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel3;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel4;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
public System.Windows.Forms.ListView dgvModules;
|
|
private System.Windows.Forms.ColumnHeader chType;
|
|
private System.Windows.Forms.ColumnHeader chName;
|
|
private System.Windows.Forms.ColumnHeader chVersion;
|
|
private System.Windows.Forms.ColumnHeader chCopyright;
|
|
private System.Windows.Forms.LinkLabel linkLabel3;
|
|
private System.Windows.Forms.Label label6;
|
|
private System.Windows.Forms.Label label13;
|
|
private System.Windows.Forms.LinkLabel linkLabel4;
|
|
}
|
|
}
|