287 lines
14 KiB
C#
287 lines
14 KiB
C#
namespace TBF.UI.ResultsMI
|
|
{
|
|
partial class PreviousResultsDlg
|
|
{
|
|
/// <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.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.closeButton = new System.Windows.Forms.Button();
|
|
this.previousButton = new System.Windows.Forms.Button();
|
|
this.nextButton = new System.Windows.Forms.Button();
|
|
this.vertSplitContainer = new System.Windows.Forms.SplitContainer();
|
|
this.horizSplitContainer = new System.Windows.Forms.SplitContainer();
|
|
this.filterGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.reloadButton = new System.Windows.Forms.Button();
|
|
this.procedureTextBox = new System.Windows.Forms.TextBox();
|
|
this.procedureLabel = new System.Windows.Forms.Label();
|
|
this.toLabel = new System.Windows.Forms.Label();
|
|
this.fromLabel = new System.Windows.Forms.Label();
|
|
this.toDateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.fromDateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.snTextBox = new System.Windows.Forms.TextBox();
|
|
this.snLabel = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.vertSplitContainer)).BeginInit();
|
|
this.vertSplitContainer.Panel1.SuspendLayout();
|
|
this.vertSplitContainer.Panel2.SuspendLayout();
|
|
this.vertSplitContainer.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.horizSplitContainer)).BeginInit();
|
|
this.horizSplitContainer.Panel1.SuspendLayout();
|
|
this.horizSplitContainer.Panel2.SuspendLayout();
|
|
this.horizSplitContainer.SuspendLayout();
|
|
this.filterGroupBox.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// flowLayoutPanel1
|
|
//
|
|
this.flowLayoutPanel1.AutoScroll = true;
|
|
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
|
|
this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
|
this.flowLayoutPanel1.Size = new System.Drawing.Size(1060, 828);
|
|
this.flowLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// closeButton
|
|
//
|
|
this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.closeButton.Location = new System.Drawing.Point(12, 25);
|
|
this.closeButton.Name = "closeButton";
|
|
this.closeButton.Size = new System.Drawing.Size(103, 37);
|
|
this.closeButton.TabIndex = 1;
|
|
this.closeButton.Text = "Close";
|
|
this.closeButton.UseVisualStyleBackColor = true;
|
|
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
|
|
//
|
|
// previousButton
|
|
//
|
|
this.previousButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.previousButton.Location = new System.Drawing.Point(12, 95);
|
|
this.previousButton.Name = "previousButton";
|
|
this.previousButton.Size = new System.Drawing.Size(103, 37);
|
|
this.previousButton.TabIndex = 2;
|
|
this.previousButton.Text = "Previous";
|
|
this.previousButton.UseVisualStyleBackColor = true;
|
|
this.previousButton.Click += new System.EventHandler(this.previousButton_Click);
|
|
//
|
|
// nextButton
|
|
//
|
|
this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.nextButton.Location = new System.Drawing.Point(12, 138);
|
|
this.nextButton.Name = "nextButton";
|
|
this.nextButton.Size = new System.Drawing.Size(103, 37);
|
|
this.nextButton.TabIndex = 3;
|
|
this.nextButton.Text = "Next";
|
|
this.nextButton.UseVisualStyleBackColor = true;
|
|
this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
|
|
//
|
|
// vertSplitContainer
|
|
//
|
|
this.vertSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.vertSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
this.vertSplitContainer.IsSplitterFixed = true;
|
|
this.vertSplitContainer.Location = new System.Drawing.Point(0, 0);
|
|
this.vertSplitContainer.Name = "vertSplitContainer";
|
|
//
|
|
// vertSplitContainer.Panel1
|
|
//
|
|
this.vertSplitContainer.Panel1.Controls.Add(this.horizSplitContainer);
|
|
//
|
|
// vertSplitContainer.Panel2
|
|
//
|
|
this.vertSplitContainer.Panel2.Controls.Add(this.closeButton);
|
|
this.vertSplitContainer.Panel2.Controls.Add(this.nextButton);
|
|
this.vertSplitContainer.Panel2.Controls.Add(this.previousButton);
|
|
this.vertSplitContainer.Size = new System.Drawing.Size(1194, 892);
|
|
this.vertSplitContainer.SplitterDistance = 1060;
|
|
this.vertSplitContainer.TabIndex = 4;
|
|
//
|
|
// horizSplitContainer
|
|
//
|
|
this.horizSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.horizSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
|
this.horizSplitContainer.Location = new System.Drawing.Point(0, 0);
|
|
this.horizSplitContainer.Name = "horizSplitContainer";
|
|
this.horizSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// horizSplitContainer.Panel1
|
|
//
|
|
this.horizSplitContainer.Panel1.Controls.Add(this.filterGroupBox);
|
|
//
|
|
// horizSplitContainer.Panel2
|
|
//
|
|
this.horizSplitContainer.Panel2.Controls.Add(this.flowLayoutPanel1);
|
|
this.horizSplitContainer.Size = new System.Drawing.Size(1060, 892);
|
|
this.horizSplitContainer.SplitterDistance = 60;
|
|
this.horizSplitContainer.TabIndex = 0;
|
|
//
|
|
// filterGroupBox
|
|
//
|
|
this.filterGroupBox.Controls.Add(this.snLabel);
|
|
this.filterGroupBox.Controls.Add(this.snTextBox);
|
|
this.filterGroupBox.Controls.Add(this.reloadButton);
|
|
this.filterGroupBox.Controls.Add(this.procedureTextBox);
|
|
this.filterGroupBox.Controls.Add(this.procedureLabel);
|
|
this.filterGroupBox.Controls.Add(this.toLabel);
|
|
this.filterGroupBox.Controls.Add(this.fromLabel);
|
|
this.filterGroupBox.Controls.Add(this.toDateTimePicker);
|
|
this.filterGroupBox.Controls.Add(this.fromDateTimePicker);
|
|
this.filterGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.filterGroupBox.Location = new System.Drawing.Point(0, 0);
|
|
this.filterGroupBox.Name = "filterGroupBox";
|
|
this.filterGroupBox.Size = new System.Drawing.Size(1060, 60);
|
|
this.filterGroupBox.TabIndex = 0;
|
|
this.filterGroupBox.TabStop = false;
|
|
this.filterGroupBox.Text = "Filter";
|
|
//
|
|
// reloadButton
|
|
//
|
|
this.reloadButton.Location = new System.Drawing.Point(1009, 23);
|
|
this.reloadButton.Name = "reloadButton";
|
|
this.reloadButton.Size = new System.Drawing.Size(37, 23);
|
|
this.reloadButton.TabIndex = 0;
|
|
this.reloadButton.Text = "@";
|
|
this.reloadButton.UseVisualStyleBackColor = true;
|
|
this.reloadButton.Click += new System.EventHandler(this.reloadButton_Click);
|
|
//
|
|
// procedureTextBox
|
|
//
|
|
this.procedureTextBox.Location = new System.Drawing.Point(472, 25);
|
|
this.procedureTextBox.Name = "procedureTextBox";
|
|
this.procedureTextBox.Size = new System.Drawing.Size(523, 20);
|
|
this.procedureTextBox.TabIndex = 22;
|
|
//
|
|
// procedureLabel
|
|
//
|
|
this.procedureLabel.AutoSize = true;
|
|
this.procedureLabel.Location = new System.Drawing.Point(412, 30);
|
|
this.procedureLabel.Name = "procedureLabel";
|
|
this.procedureLabel.Size = new System.Drawing.Size(56, 13);
|
|
this.procedureLabel.TabIndex = 21;
|
|
this.procedureLabel.Text = "Procedure";
|
|
//
|
|
// toLabel
|
|
//
|
|
this.toLabel.AutoSize = true;
|
|
this.toLabel.Location = new System.Drawing.Point(151, 31);
|
|
this.toLabel.Name = "toLabel";
|
|
this.toLabel.Size = new System.Drawing.Size(16, 13);
|
|
this.toLabel.TabIndex = 20;
|
|
this.toLabel.Text = "to";
|
|
//
|
|
// fromLabel
|
|
//
|
|
this.fromLabel.AutoSize = true;
|
|
this.fromLabel.Location = new System.Drawing.Point(16, 31);
|
|
this.fromLabel.Name = "fromLabel";
|
|
this.fromLabel.Size = new System.Drawing.Size(27, 13);
|
|
this.fromLabel.TabIndex = 19;
|
|
this.fromLabel.Text = "from";
|
|
//
|
|
// toDateTimePicker
|
|
//
|
|
this.toDateTimePicker.CustomFormat = "dd.MM.yyyy";
|
|
this.toDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|
this.toDateTimePicker.Location = new System.Drawing.Point(174, 25);
|
|
this.toDateTimePicker.Name = "toDateTimePicker";
|
|
this.toDateTimePicker.Size = new System.Drawing.Size(82, 20);
|
|
this.toDateTimePicker.TabIndex = 18;
|
|
//
|
|
// fromDateTimePicker
|
|
//
|
|
this.fromDateTimePicker.CustomFormat = "dd.MM.yyyy";
|
|
this.fromDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|
this.fromDateTimePicker.Location = new System.Drawing.Point(53, 25);
|
|
this.fromDateTimePicker.Name = "fromDateTimePicker";
|
|
this.fromDateTimePicker.Size = new System.Drawing.Size(82, 20);
|
|
this.fromDateTimePicker.TabIndex = 17;
|
|
//
|
|
// snTextBox
|
|
//
|
|
this.snTextBox.Location = new System.Drawing.Point(295, 25);
|
|
this.snTextBox.Name = "snTextBox";
|
|
this.snTextBox.Size = new System.Drawing.Size(100, 20);
|
|
this.snTextBox.TabIndex = 23;
|
|
//
|
|
// snLabel
|
|
//
|
|
this.snLabel.AutoSize = true;
|
|
this.snLabel.Location = new System.Drawing.Point(269, 29);
|
|
this.snLabel.Name = "snLabel";
|
|
this.snLabel.Size = new System.Drawing.Size(23, 13);
|
|
this.snLabel.TabIndex = 24;
|
|
this.snLabel.Text = "s/n";
|
|
//
|
|
// PreviousResultsDlg
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.closeButton;
|
|
this.ClientSize = new System.Drawing.Size(1194, 892);
|
|
this.Controls.Add(this.vertSplitContainer);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.Name = "PreviousResultsDlg";
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Previous results";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PreviousResultsDlg_FormClosing);
|
|
this.Load += new System.EventHandler(this.PreviousResultsDlg_Load);
|
|
this.vertSplitContainer.Panel1.ResumeLayout(false);
|
|
this.vertSplitContainer.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.vertSplitContainer)).EndInit();
|
|
this.vertSplitContainer.ResumeLayout(false);
|
|
this.horizSplitContainer.Panel1.ResumeLayout(false);
|
|
this.horizSplitContainer.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.horizSplitContainer)).EndInit();
|
|
this.horizSplitContainer.ResumeLayout(false);
|
|
this.filterGroupBox.ResumeLayout(false);
|
|
this.filterGroupBox.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
|
|
private System.Windows.Forms.Button closeButton;
|
|
private System.Windows.Forms.Button previousButton;
|
|
private System.Windows.Forms.Button nextButton;
|
|
private System.Windows.Forms.SplitContainer vertSplitContainer;
|
|
private System.Windows.Forms.SplitContainer horizSplitContainer;
|
|
private System.Windows.Forms.GroupBox filterGroupBox;
|
|
private System.Windows.Forms.Label toLabel;
|
|
private System.Windows.Forms.Label fromLabel;
|
|
private System.Windows.Forms.DateTimePicker toDateTimePicker;
|
|
private System.Windows.Forms.DateTimePicker fromDateTimePicker;
|
|
private System.Windows.Forms.Label procedureLabel;
|
|
private System.Windows.Forms.TextBox procedureTextBox;
|
|
private System.Windows.Forms.Button reloadButton;
|
|
private System.Windows.Forms.Label snLabel;
|
|
private System.Windows.Forms.TextBox snTextBox;
|
|
}
|
|
} |