297 lines
15 KiB
C#
297 lines
15 KiB
C#
namespace ResultsBrowser.Forms
|
|
{
|
|
partial class CustomQuerySpecificationForm
|
|
{
|
|
/// <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.queryTypeComboBox = new System.Windows.Forms.ComboBox();
|
|
this.queryTypeLabel = new System.Windows.Forms.Label();
|
|
this.inputListTextBox = new System.Windows.Forms.TextBox();
|
|
this.addToListButton = new System.Windows.Forms.Button();
|
|
this.clearListButton = new System.Windows.Forms.Button();
|
|
this.inputListGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.importFromFileButton = new System.Windows.Forms.Button();
|
|
this.timePeriodGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.toLabel = new System.Windows.Forms.Label();
|
|
this.toDateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.fromLabel = new System.Windows.Forms.Label();
|
|
this.fromDateTimePicker = new System.Windows.Forms.DateTimePicker();
|
|
this.parameterGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.parameterValueTextBox = new System.Windows.Forms.TextBox();
|
|
this.parameterNameLabel = new System.Windows.Forms.Label();
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|
this.destinationFileGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.destinationFileButton = new System.Windows.Forms.Button();
|
|
this.destinationFileTextBox = new System.Windows.Forms.TextBox();
|
|
this.inputListGroupBox.SuspendLayout();
|
|
this.timePeriodGroupBox.SuspendLayout();
|
|
this.parameterGroupBox.SuspendLayout();
|
|
this.destinationFileGroupBox.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// queryTypeComboBox
|
|
//
|
|
this.queryTypeComboBox.FormattingEnabled = true;
|
|
this.queryTypeComboBox.Location = new System.Drawing.Point(136, 27);
|
|
this.queryTypeComboBox.Name = "queryTypeComboBox";
|
|
this.queryTypeComboBox.Size = new System.Drawing.Size(566, 21);
|
|
this.queryTypeComboBox.TabIndex = 1;
|
|
this.queryTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.queryTypeComboBox_SelectedIndexChanged);
|
|
//
|
|
// queryTypeLabel
|
|
//
|
|
this.queryTypeLabel.AutoSize = true;
|
|
this.queryTypeLabel.Location = new System.Drawing.Point(24, 30);
|
|
this.queryTypeLabel.Name = "queryTypeLabel";
|
|
this.queryTypeLabel.Size = new System.Drawing.Size(96, 13);
|
|
this.queryTypeLabel.TabIndex = 0;
|
|
this.queryTypeLabel.Text = "Typ vyhľadávania:";
|
|
//
|
|
// inputListTextBox
|
|
//
|
|
this.inputListTextBox.Location = new System.Drawing.Point(115, 21);
|
|
this.inputListTextBox.Multiline = true;
|
|
this.inputListTextBox.Name = "inputListTextBox";
|
|
this.inputListTextBox.Size = new System.Drawing.Size(566, 79);
|
|
this.inputListTextBox.TabIndex = 3;
|
|
//
|
|
// addToListButton
|
|
//
|
|
this.addToListButton.Location = new System.Drawing.Point(22, 21);
|
|
this.addToListButton.Name = "addToListButton";
|
|
this.addToListButton.Size = new System.Drawing.Size(75, 23);
|
|
this.addToListButton.TabIndex = 0;
|
|
this.addToListButton.Text = "Pridať";
|
|
this.addToListButton.UseVisualStyleBackColor = true;
|
|
this.addToListButton.Click += new System.EventHandler(this.addToListButton_Click);
|
|
//
|
|
// clearListButton
|
|
//
|
|
this.clearListButton.Location = new System.Drawing.Point(22, 77);
|
|
this.clearListButton.Name = "clearListButton";
|
|
this.clearListButton.Size = new System.Drawing.Size(75, 23);
|
|
this.clearListButton.TabIndex = 2;
|
|
this.clearListButton.Text = "Vymazať";
|
|
this.clearListButton.UseVisualStyleBackColor = true;
|
|
this.clearListButton.Click += new System.EventHandler(this.clearListButton_Click);
|
|
//
|
|
// inputListGroupBox
|
|
//
|
|
this.inputListGroupBox.Controls.Add(this.importFromFileButton);
|
|
this.inputListGroupBox.Controls.Add(this.inputListTextBox);
|
|
this.inputListGroupBox.Controls.Add(this.clearListButton);
|
|
this.inputListGroupBox.Controls.Add(this.addToListButton);
|
|
this.inputListGroupBox.Location = new System.Drawing.Point(21, 60);
|
|
this.inputListGroupBox.Name = "inputListGroupBox";
|
|
this.inputListGroupBox.Size = new System.Drawing.Size(692, 114);
|
|
this.inputListGroupBox.TabIndex = 2;
|
|
this.inputListGroupBox.TabStop = false;
|
|
this.inputListGroupBox.Text = "Vstupný zoznam";
|
|
//
|
|
// importFromFileButton
|
|
//
|
|
this.importFromFileButton.Location = new System.Drawing.Point(22, 49);
|
|
this.importFromFileButton.Name = "importFromFileButton";
|
|
this.importFromFileButton.Size = new System.Drawing.Size(75, 23);
|
|
this.importFromFileButton.TabIndex = 1;
|
|
this.importFromFileButton.Text = "Zo súboru";
|
|
this.importFromFileButton.UseVisualStyleBackColor = true;
|
|
this.importFromFileButton.Click += new System.EventHandler(this.importFromFileButton_Click);
|
|
//
|
|
// timePeriodGroupBox
|
|
//
|
|
this.timePeriodGroupBox.Controls.Add(this.toLabel);
|
|
this.timePeriodGroupBox.Controls.Add(this.toDateTimePicker);
|
|
this.timePeriodGroupBox.Controls.Add(this.fromLabel);
|
|
this.timePeriodGroupBox.Controls.Add(this.fromDateTimePicker);
|
|
this.timePeriodGroupBox.Location = new System.Drawing.Point(21, 180);
|
|
this.timePeriodGroupBox.Name = "timePeriodGroupBox";
|
|
this.timePeriodGroupBox.Size = new System.Drawing.Size(692, 40);
|
|
this.timePeriodGroupBox.TabIndex = 3;
|
|
this.timePeriodGroupBox.TabStop = false;
|
|
this.timePeriodGroupBox.Text = "Časový interval";
|
|
//
|
|
// toLabel
|
|
//
|
|
this.toLabel.AutoSize = true;
|
|
this.toLabel.Location = new System.Drawing.Point(416, 16);
|
|
this.toLabel.Name = "toLabel";
|
|
this.toLabel.Size = new System.Drawing.Size(19, 13);
|
|
this.toLabel.TabIndex = 2;
|
|
this.toLabel.Text = "do";
|
|
//
|
|
// toDateTimePicker
|
|
//
|
|
this.toDateTimePicker.Location = new System.Drawing.Point(456, 13);
|
|
this.toDateTimePicker.Name = "toDateTimePicker";
|
|
this.toDateTimePicker.Size = new System.Drawing.Size(225, 20);
|
|
this.toDateTimePicker.TabIndex = 3;
|
|
//
|
|
// fromLabel
|
|
//
|
|
this.fromLabel.AutoSize = true;
|
|
this.fromLabel.Location = new System.Drawing.Point(128, 17);
|
|
this.fromLabel.Name = "fromLabel";
|
|
this.fromLabel.Size = new System.Drawing.Size(19, 13);
|
|
this.fromLabel.TabIndex = 0;
|
|
this.fromLabel.Text = "od";
|
|
//
|
|
// fromDateTimePicker
|
|
//
|
|
this.fromDateTimePicker.Location = new System.Drawing.Point(168, 13);
|
|
this.fromDateTimePicker.Name = "fromDateTimePicker";
|
|
this.fromDateTimePicker.Size = new System.Drawing.Size(225, 20);
|
|
this.fromDateTimePicker.TabIndex = 1;
|
|
//
|
|
// parameterGroupBox
|
|
//
|
|
this.parameterGroupBox.Controls.Add(this.parameterValueTextBox);
|
|
this.parameterGroupBox.Controls.Add(this.parameterNameLabel);
|
|
this.parameterGroupBox.Location = new System.Drawing.Point(21, 226);
|
|
this.parameterGroupBox.Name = "parameterGroupBox";
|
|
this.parameterGroupBox.Size = new System.Drawing.Size(692, 40);
|
|
this.parameterGroupBox.TabIndex = 4;
|
|
this.parameterGroupBox.TabStop = false;
|
|
this.parameterGroupBox.Text = "Parameter";
|
|
//
|
|
// parameterValueTextBox
|
|
//
|
|
this.parameterValueTextBox.Location = new System.Drawing.Point(612, 13);
|
|
this.parameterValueTextBox.Name = "parameterValueTextBox";
|
|
this.parameterValueTextBox.Size = new System.Drawing.Size(68, 20);
|
|
this.parameterValueTextBox.TabIndex = 1;
|
|
//
|
|
// parameterNameLabel
|
|
//
|
|
this.parameterNameLabel.AutoSize = true;
|
|
this.parameterNameLabel.Location = new System.Drawing.Point(121, 17);
|
|
this.parameterNameLabel.Name = "parameterNameLabel";
|
|
this.parameterNameLabel.Size = new System.Drawing.Size(0, 13);
|
|
this.parameterNameLabel.TabIndex = 0;
|
|
//
|
|
// okButton
|
|
//
|
|
this.okButton.Location = new System.Drawing.Point(498, 335);
|
|
this.okButton.Name = "okButton";
|
|
this.okButton.Size = new System.Drawing.Size(89, 33);
|
|
this.okButton.TabIndex = 6;
|
|
this.okButton.Text = "OK";
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.Location = new System.Drawing.Point(613, 335);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(89, 33);
|
|
this.cancelButton.TabIndex = 7;
|
|
this.cancelButton.Text = "Zrušiť";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
|
//
|
|
// destinationFileGroupBox
|
|
//
|
|
this.destinationFileGroupBox.Controls.Add(this.destinationFileButton);
|
|
this.destinationFileGroupBox.Controls.Add(this.destinationFileTextBox);
|
|
this.destinationFileGroupBox.Location = new System.Drawing.Point(21, 272);
|
|
this.destinationFileGroupBox.Name = "destinationFileGroupBox";
|
|
this.destinationFileGroupBox.Size = new System.Drawing.Size(692, 50);
|
|
this.destinationFileGroupBox.TabIndex = 5;
|
|
this.destinationFileGroupBox.TabStop = false;
|
|
this.destinationFileGroupBox.Text = "Výsledky zapísať do súboru";
|
|
//
|
|
// destinationFileButton
|
|
//
|
|
this.destinationFileButton.Location = new System.Drawing.Point(22, 18);
|
|
this.destinationFileButton.Name = "destinationFileButton";
|
|
this.destinationFileButton.Size = new System.Drawing.Size(75, 23);
|
|
this.destinationFileButton.TabIndex = 0;
|
|
this.destinationFileButton.Text = "Vybrať";
|
|
this.destinationFileButton.UseVisualStyleBackColor = true;
|
|
this.destinationFileButton.Click += new System.EventHandler(this.destinationFileButton_Click);
|
|
//
|
|
// destinationFileTextBox
|
|
//
|
|
this.destinationFileTextBox.Location = new System.Drawing.Point(115, 20);
|
|
this.destinationFileTextBox.Name = "destinationFileTextBox";
|
|
this.destinationFileTextBox.Size = new System.Drawing.Size(566, 20);
|
|
this.destinationFileTextBox.TabIndex = 1;
|
|
//
|
|
// CustomQuerySpecificationForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(731, 381);
|
|
this.Controls.Add(this.destinationFileGroupBox);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.Controls.Add(this.okButton);
|
|
this.Controls.Add(this.parameterGroupBox);
|
|
this.Controls.Add(this.timePeriodGroupBox);
|
|
this.Controls.Add(this.inputListGroupBox);
|
|
this.Controls.Add(this.queryTypeLabel);
|
|
this.Controls.Add(this.queryTypeComboBox);
|
|
this.Name = "CustomQuerySpecificationForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Špecifikácia vyhľadávania vodomerov";
|
|
this.inputListGroupBox.ResumeLayout(false);
|
|
this.inputListGroupBox.PerformLayout();
|
|
this.timePeriodGroupBox.ResumeLayout(false);
|
|
this.timePeriodGroupBox.PerformLayout();
|
|
this.parameterGroupBox.ResumeLayout(false);
|
|
this.parameterGroupBox.PerformLayout();
|
|
this.destinationFileGroupBox.ResumeLayout(false);
|
|
this.destinationFileGroupBox.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox queryTypeComboBox;
|
|
private System.Windows.Forms.Label queryTypeLabel;
|
|
private System.Windows.Forms.TextBox inputListTextBox;
|
|
private System.Windows.Forms.Button addToListButton;
|
|
private System.Windows.Forms.Button clearListButton;
|
|
private System.Windows.Forms.GroupBox inputListGroupBox;
|
|
private System.Windows.Forms.Button importFromFileButton;
|
|
private System.Windows.Forms.GroupBox timePeriodGroupBox;
|
|
private System.Windows.Forms.Label toLabel;
|
|
private System.Windows.Forms.DateTimePicker toDateTimePicker;
|
|
private System.Windows.Forms.Label fromLabel;
|
|
private System.Windows.Forms.DateTimePicker fromDateTimePicker;
|
|
private System.Windows.Forms.GroupBox parameterGroupBox;
|
|
private System.Windows.Forms.TextBox parameterValueTextBox;
|
|
private System.Windows.Forms.Label parameterNameLabel;
|
|
private System.Windows.Forms.Button okButton;
|
|
private System.Windows.Forms.Button cancelButton;
|
|
private System.Windows.Forms.GroupBox destinationFileGroupBox;
|
|
private System.Windows.Forms.Button destinationFileButton;
|
|
private System.Windows.Forms.TextBox destinationFileTextBox;
|
|
}
|
|
} |