247 lines
12 KiB
C#
247 lines
12 KiB
C#
namespace CoreDeleteTool
|
|
{
|
|
partial class Main
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.buttonDelete = new System.Windows.Forms.Button();
|
|
this.buttonLoadAll = new System.Windows.Forms.Button();
|
|
this.buttonLoadOld = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.labelLoadResult = new System.Windows.Forms.Label();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
|
|
this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.buttonDeleteAll = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.contextMenuStrip.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.AllowUserToAddRows = false;
|
|
this.dataGridView.AllowUserToResizeRows = false;
|
|
this.dataGridView.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.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.ContextMenuStrip = this.contextMenuStrip;
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 73);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.ReadOnly = true;
|
|
this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dataGridView.Size = new System.Drawing.Size(624, 244);
|
|
this.dataGridView.TabIndex = 0;
|
|
this.dataGridView.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dataGridView_DataBindingComplete);
|
|
//
|
|
// contextMenuStrip
|
|
//
|
|
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.deleteToolStripMenuItem});
|
|
this.contextMenuStrip.Name = "contextMenuStrip";
|
|
this.contextMenuStrip.Size = new System.Drawing.Size(108, 26);
|
|
//
|
|
// deleteToolStripMenuItem
|
|
//
|
|
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
|
|
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
|
|
this.deleteToolStripMenuItem.Text = "Delete";
|
|
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.buttonDelete_Click);
|
|
//
|
|
// buttonClose
|
|
//
|
|
this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonClose.Location = new System.Drawing.Point(561, 323);
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonClose.TabIndex = 1;
|
|
this.buttonClose.Text = "Close";
|
|
this.buttonClose.UseVisualStyleBackColor = true;
|
|
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
|
//
|
|
// buttonDelete
|
|
//
|
|
this.buttonDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonDelete.Location = new System.Drawing.Point(12, 323);
|
|
this.buttonDelete.Name = "buttonDelete";
|
|
this.buttonDelete.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonDelete.TabIndex = 2;
|
|
this.buttonDelete.Text = "Delete";
|
|
this.buttonDelete.UseVisualStyleBackColor = true;
|
|
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
|
|
//
|
|
// buttonLoadAll
|
|
//
|
|
this.buttonLoadAll.Location = new System.Drawing.Point(12, 44);
|
|
this.buttonLoadAll.Name = "buttonLoadAll";
|
|
this.buttonLoadAll.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonLoadAll.TabIndex = 3;
|
|
this.buttonLoadAll.Text = "Load all";
|
|
this.buttonLoadAll.UseVisualStyleBackColor = true;
|
|
this.buttonLoadAll.Click += new System.EventHandler(this.buttonLoadAll_Click);
|
|
//
|
|
// buttonLoadOld
|
|
//
|
|
this.buttonLoadOld.Location = new System.Drawing.Point(202, 7);
|
|
this.buttonLoadOld.Name = "buttonLoadOld";
|
|
this.buttonLoadOld.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonLoadOld.TabIndex = 4;
|
|
this.buttonLoadOld.Text = "Load";
|
|
this.buttonLoadOld.UseVisualStyleBackColor = true;
|
|
this.buttonLoadOld.Click += new System.EventHandler(this.buttonLoadOld_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 12);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(81, 13);
|
|
this.label1.TabIndex = 5;
|
|
this.label1.Text = "Load older than";
|
|
//
|
|
// numericUpDown1
|
|
//
|
|
this.numericUpDown1.Location = new System.Drawing.Point(99, 10);
|
|
this.numericUpDown1.Name = "numericUpDown1";
|
|
this.numericUpDown1.Size = new System.Drawing.Size(50, 20);
|
|
this.numericUpDown1.TabIndex = 6;
|
|
this.numericUpDown1.Value = new decimal(new int[] {
|
|
18,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(155, 12);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(41, 13);
|
|
this.label2.TabIndex = 7;
|
|
this.label2.Text = "months";
|
|
//
|
|
// labelLoadResult
|
|
//
|
|
this.labelLoadResult.AutoSize = true;
|
|
this.labelLoadResult.Location = new System.Drawing.Point(283, 12);
|
|
this.labelLoadResult.Name = "labelLoadResult";
|
|
this.labelLoadResult.Size = new System.Drawing.Size(0, 13);
|
|
this.labelLoadResult.TabIndex = 8;
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripProgressBar,
|
|
this.toolStripStatusLabel});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 356);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(648, 22);
|
|
this.statusStrip1.TabIndex = 9;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// toolStripProgressBar
|
|
//
|
|
this.toolStripProgressBar.Name = "toolStripProgressBar";
|
|
this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
|
|
//
|
|
// toolStripStatusLabel
|
|
//
|
|
this.toolStripStatusLabel.Name = "toolStripStatusLabel";
|
|
this.toolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
|
|
//
|
|
// buttonDeleteAll
|
|
//
|
|
this.buttonDeleteAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonDeleteAll.Location = new System.Drawing.Point(99, 323);
|
|
this.buttonDeleteAll.Name = "buttonDeleteAll";
|
|
this.buttonDeleteAll.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonDeleteAll.TabIndex = 10;
|
|
this.buttonDeleteAll.Text = "Delete all";
|
|
this.buttonDeleteAll.UseVisualStyleBackColor = true;
|
|
this.buttonDeleteAll.Click += new System.EventHandler(this.buttonDeleteAll_Click);
|
|
//
|
|
// Main
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(648, 378);
|
|
this.Controls.Add(this.buttonDeleteAll);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Controls.Add(this.labelLoadResult);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.numericUpDown1);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonLoadOld);
|
|
this.Controls.Add(this.buttonLoadAll);
|
|
this.Controls.Add(this.buttonDelete);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Main";
|
|
this.Text = "ENI message core removal tool";
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.contextMenuStrip.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView;
|
|
private System.Windows.Forms.Button buttonClose;
|
|
private System.Windows.Forms.Button buttonDelete;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
|
private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
|
|
private System.Windows.Forms.Button buttonLoadAll;
|
|
private System.Windows.Forms.Button buttonLoadOld;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.NumericUpDown numericUpDown1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label labelLoadResult;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
|
|
private System.Windows.Forms.Button buttonDeleteAll;
|
|
}
|
|
}
|
|
|