138 lines
6.1 KiB
C#
138 lines
6.1 KiB
C#
namespace UniversalImports
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
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.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.viewFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.pb = new System.Windows.Forms.ToolStripProgressBar();
|
|
this.pbr = new System.Windows.Forms.ToolStripProgressBar();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dataGridView1.Location = new System.Drawing.Point(0, 24);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.ReadOnly = true;
|
|
this.dataGridView1.Size = new System.Drawing.Size(611, 415);
|
|
this.dataGridView1.TabIndex = 0;
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.importToolStripMenuItem,
|
|
this.viewFileToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(611, 24);
|
|
this.menuStrip1.TabIndex = 1;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// importToolStripMenuItem
|
|
//
|
|
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
|
|
this.importToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
|
|
this.importToolStripMenuItem.Text = "&Import";
|
|
this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
|
|
//
|
|
// viewFileToolStripMenuItem
|
|
//
|
|
this.viewFileToolStripMenuItem.Name = "viewFileToolStripMenuItem";
|
|
this.viewFileToolStripMenuItem.Size = new System.Drawing.Size(63, 20);
|
|
this.viewFileToolStripMenuItem.Text = "View file";
|
|
this.viewFileToolStripMenuItem.Click += new System.EventHandler(this.viewFileToolStripMenuItem_Click);
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.pb,
|
|
this.pbr});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 417);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(611, 22);
|
|
this.statusStrip1.TabIndex = 2;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// pb
|
|
//
|
|
this.pb.ForeColor = System.Drawing.Color.Blue;
|
|
this.pb.Name = "pb";
|
|
this.pb.Size = new System.Drawing.Size(100, 16);
|
|
//
|
|
// pbr
|
|
//
|
|
this.pbr.ForeColor = System.Drawing.Color.SpringGreen;
|
|
this.pbr.Name = "pbr";
|
|
this.pbr.Size = new System.Drawing.Size(100, 16);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(611, 439);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem viewFileToolStripMenuItem;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripProgressBar pb;
|
|
private System.Windows.Forms.ToolStripProgressBar pbr;
|
|
}
|
|
}
|
|
|