373 lines
18 KiB
C#
373 lines
18 KiB
C#
///
|
|
/// Copyright (c) 2019 Sensus Slovensko a.s.
|
|
///
|
|
namespace TBF.UI.Bench.TestProfiles
|
|
{
|
|
partial class TestProfileDlg
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TestProfileDlg));
|
|
this.mainSplitContainer = new System.Windows.Forms.SplitContainer();
|
|
this.tabControl = new System.Windows.Forms.TabControl();
|
|
this.generalTabPage = new System.Windows.Forms.TabPage();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.errorCalculationRadioButton2 = new System.Windows.Forms.RadioButton();
|
|
this.errorCalculationRadioButton1 = new System.Windows.Forms.RadioButton();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.profileTypeRadioButton1 = new System.Windows.Forms.RadioButton();
|
|
this.profileTypeRadioButton5 = new System.Windows.Forms.RadioButton();
|
|
this.profileTypeRadioButton2 = new System.Windows.Forms.RadioButton();
|
|
this.profileTypeRadioButton4 = new System.Windows.Forms.RadioButton();
|
|
this.profileTypeRadioButton3 = new System.Windows.Forms.RadioButton();
|
|
this.lastChangedOnTextBox = new System.Windows.Forms.TextBox();
|
|
this.label15 = new System.Windows.Forms.Label();
|
|
this.lastChangedByTextBox = new System.Windows.Forms.TextBox();
|
|
this.label16 = new System.Windows.Forms.Label();
|
|
this.createdOnTextBox = new System.Windows.Forms.TextBox();
|
|
this.label14 = new System.Windows.Forms.Label();
|
|
this.createdByTextBox = new System.Windows.Forms.TextBox();
|
|
this.label13 = new System.Windows.Forms.Label();
|
|
this.descriptionTextBox = new System.Windows.Forms.TextBox();
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
this.procNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.metrologyTabPage = new System.Windows.Forms.TabPage();
|
|
this.metrologyListViewEx = new Common.Forms.ListViewEx();
|
|
this.errorFlagsTabPage = new System.Windows.Forms.TabPage();
|
|
this.errorFlagsListViewEx = new Common.Forms.ListViewEx();
|
|
this.errorFlags2TabPage = new System.Windows.Forms.TabPage();
|
|
this.errorFlags2ListViewEx = new Common.Forms.ListViewEx();
|
|
this.sharedButtons = new TBF.UI.Shared.SharedButtons();
|
|
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).BeginInit();
|
|
this.mainSplitContainer.Panel1.SuspendLayout();
|
|
this.mainSplitContainer.Panel2.SuspendLayout();
|
|
this.mainSplitContainer.SuspendLayout();
|
|
this.tabControl.SuspendLayout();
|
|
this.generalTabPage.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.metrologyTabPage.SuspendLayout();
|
|
this.errorFlagsTabPage.SuspendLayout();
|
|
this.errorFlags2TabPage.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// mainSplitContainer
|
|
//
|
|
resources.ApplyResources(this.mainSplitContainer, "mainSplitContainer");
|
|
this.mainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
this.mainSplitContainer.Name = "mainSplitContainer";
|
|
//
|
|
// mainSplitContainer.Panel1
|
|
//
|
|
this.mainSplitContainer.Panel1.Controls.Add(this.tabControl);
|
|
//
|
|
// mainSplitContainer.Panel2
|
|
//
|
|
this.mainSplitContainer.Panel2.Controls.Add(this.sharedButtons);
|
|
//
|
|
// tabControl
|
|
//
|
|
this.tabControl.Controls.Add(this.generalTabPage);
|
|
this.tabControl.Controls.Add(this.metrologyTabPage);
|
|
this.tabControl.Controls.Add(this.errorFlagsTabPage);
|
|
this.tabControl.Controls.Add(this.errorFlags2TabPage);
|
|
resources.ApplyResources(this.tabControl, "tabControl");
|
|
this.tabControl.Name = "tabControl";
|
|
this.tabControl.SelectedIndex = 0;
|
|
this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
|
|
//
|
|
// generalTabPage
|
|
//
|
|
this.generalTabPage.Controls.Add(this.groupBox2);
|
|
this.generalTabPage.Controls.Add(this.groupBox1);
|
|
this.generalTabPage.Controls.Add(this.lastChangedOnTextBox);
|
|
this.generalTabPage.Controls.Add(this.label15);
|
|
this.generalTabPage.Controls.Add(this.lastChangedByTextBox);
|
|
this.generalTabPage.Controls.Add(this.label16);
|
|
this.generalTabPage.Controls.Add(this.createdOnTextBox);
|
|
this.generalTabPage.Controls.Add(this.label14);
|
|
this.generalTabPage.Controls.Add(this.createdByTextBox);
|
|
this.generalTabPage.Controls.Add(this.label13);
|
|
this.generalTabPage.Controls.Add(this.descriptionTextBox);
|
|
this.generalTabPage.Controls.Add(this.label12);
|
|
this.generalTabPage.Controls.Add(this.procNameTextBox);
|
|
this.generalTabPage.Controls.Add(this.label1);
|
|
resources.ApplyResources(this.generalTabPage, "generalTabPage");
|
|
this.generalTabPage.Name = "generalTabPage";
|
|
this.generalTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.errorCalculationRadioButton2);
|
|
this.groupBox2.Controls.Add(this.errorCalculationRadioButton1);
|
|
resources.ApplyResources(this.groupBox2, "groupBox2");
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.TabStop = false;
|
|
//
|
|
// errorCalculationRadioButton2
|
|
//
|
|
resources.ApplyResources(this.errorCalculationRadioButton2, "errorCalculationRadioButton2");
|
|
this.errorCalculationRadioButton2.Name = "errorCalculationRadioButton2";
|
|
this.errorCalculationRadioButton2.TabStop = true;
|
|
this.errorCalculationRadioButton2.UseVisualStyleBackColor = true;
|
|
//
|
|
// errorCalculationRadioButton1
|
|
//
|
|
resources.ApplyResources(this.errorCalculationRadioButton1, "errorCalculationRadioButton1");
|
|
this.errorCalculationRadioButton1.Name = "errorCalculationRadioButton1";
|
|
this.errorCalculationRadioButton1.TabStop = true;
|
|
this.errorCalculationRadioButton1.UseVisualStyleBackColor = true;
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.profileTypeRadioButton1);
|
|
this.groupBox1.Controls.Add(this.profileTypeRadioButton5);
|
|
this.groupBox1.Controls.Add(this.profileTypeRadioButton2);
|
|
this.groupBox1.Controls.Add(this.profileTypeRadioButton4);
|
|
this.groupBox1.Controls.Add(this.profileTypeRadioButton3);
|
|
resources.ApplyResources(this.groupBox1, "groupBox1");
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.TabStop = false;
|
|
//
|
|
// profileTypeRadioButton1
|
|
//
|
|
resources.ApplyResources(this.profileTypeRadioButton1, "profileTypeRadioButton1");
|
|
this.profileTypeRadioButton1.Name = "profileTypeRadioButton1";
|
|
this.profileTypeRadioButton1.TabStop = true;
|
|
this.profileTypeRadioButton1.UseVisualStyleBackColor = true;
|
|
//
|
|
// profileTypeRadioButton5
|
|
//
|
|
resources.ApplyResources(this.profileTypeRadioButton5, "profileTypeRadioButton5");
|
|
this.profileTypeRadioButton5.Name = "profileTypeRadioButton5";
|
|
this.profileTypeRadioButton5.TabStop = true;
|
|
this.profileTypeRadioButton5.UseVisualStyleBackColor = true;
|
|
//
|
|
// profileTypeRadioButton2
|
|
//
|
|
resources.ApplyResources(this.profileTypeRadioButton2, "profileTypeRadioButton2");
|
|
this.profileTypeRadioButton2.Name = "profileTypeRadioButton2";
|
|
this.profileTypeRadioButton2.TabStop = true;
|
|
this.profileTypeRadioButton2.UseVisualStyleBackColor = true;
|
|
//
|
|
// profileTypeRadioButton4
|
|
//
|
|
resources.ApplyResources(this.profileTypeRadioButton4, "profileTypeRadioButton4");
|
|
this.profileTypeRadioButton4.Name = "profileTypeRadioButton4";
|
|
this.profileTypeRadioButton4.TabStop = true;
|
|
this.profileTypeRadioButton4.UseVisualStyleBackColor = true;
|
|
//
|
|
// profileTypeRadioButton3
|
|
//
|
|
resources.ApplyResources(this.profileTypeRadioButton3, "profileTypeRadioButton3");
|
|
this.profileTypeRadioButton3.Name = "profileTypeRadioButton3";
|
|
this.profileTypeRadioButton3.TabStop = true;
|
|
this.profileTypeRadioButton3.UseVisualStyleBackColor = true;
|
|
//
|
|
// lastChangedOnTextBox
|
|
//
|
|
resources.ApplyResources(this.lastChangedOnTextBox, "lastChangedOnTextBox");
|
|
this.lastChangedOnTextBox.Name = "lastChangedOnTextBox";
|
|
//
|
|
// label15
|
|
//
|
|
resources.ApplyResources(this.label15, "label15");
|
|
this.label15.Name = "label15";
|
|
//
|
|
// lastChangedByTextBox
|
|
//
|
|
resources.ApplyResources(this.lastChangedByTextBox, "lastChangedByTextBox");
|
|
this.lastChangedByTextBox.Name = "lastChangedByTextBox";
|
|
//
|
|
// label16
|
|
//
|
|
resources.ApplyResources(this.label16, "label16");
|
|
this.label16.Name = "label16";
|
|
//
|
|
// createdOnTextBox
|
|
//
|
|
resources.ApplyResources(this.createdOnTextBox, "createdOnTextBox");
|
|
this.createdOnTextBox.Name = "createdOnTextBox";
|
|
//
|
|
// label14
|
|
//
|
|
resources.ApplyResources(this.label14, "label14");
|
|
this.label14.Name = "label14";
|
|
//
|
|
// createdByTextBox
|
|
//
|
|
resources.ApplyResources(this.createdByTextBox, "createdByTextBox");
|
|
this.createdByTextBox.Name = "createdByTextBox";
|
|
//
|
|
// label13
|
|
//
|
|
resources.ApplyResources(this.label13, "label13");
|
|
this.label13.Name = "label13";
|
|
//
|
|
// descriptionTextBox
|
|
//
|
|
resources.ApplyResources(this.descriptionTextBox, "descriptionTextBox");
|
|
this.descriptionTextBox.Name = "descriptionTextBox";
|
|
//
|
|
// label12
|
|
//
|
|
resources.ApplyResources(this.label12, "label12");
|
|
this.label12.Name = "label12";
|
|
//
|
|
// procNameTextBox
|
|
//
|
|
resources.ApplyResources(this.procNameTextBox, "procNameTextBox");
|
|
this.procNameTextBox.Name = "procNameTextBox";
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.Name = "label1";
|
|
//
|
|
// metrologyTabPage
|
|
//
|
|
this.metrologyTabPage.Controls.Add(this.metrologyListViewEx);
|
|
resources.ApplyResources(this.metrologyTabPage, "metrologyTabPage");
|
|
this.metrologyTabPage.Name = "metrologyTabPage";
|
|
this.metrologyTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// metrologyListViewEx
|
|
//
|
|
this.metrologyListViewEx.AllowColumnReorder = true;
|
|
resources.ApplyResources(this.metrologyListViewEx, "metrologyListViewEx");
|
|
this.metrologyListViewEx.DoubleClickActivation = false;
|
|
this.metrologyListViewEx.FullRowSelect = true;
|
|
this.metrologyListViewEx.GridLines = true;
|
|
this.metrologyListViewEx.Name = "metrologyListViewEx";
|
|
this.metrologyListViewEx.UseCompatibleStateImageBehavior = false;
|
|
this.metrologyListViewEx.View = System.Windows.Forms.View.Details;
|
|
this.metrologyListViewEx.SelectedIndexChanged += new System.EventHandler(this.metrologyListViewEx_SelectedIndexChanged);
|
|
//
|
|
// errorFlagsTabPage
|
|
//
|
|
this.errorFlagsTabPage.Controls.Add(this.errorFlagsListViewEx);
|
|
resources.ApplyResources(this.errorFlagsTabPage, "errorFlagsTabPage");
|
|
this.errorFlagsTabPage.Name = "errorFlagsTabPage";
|
|
this.errorFlagsTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// errorFlagsListViewEx
|
|
//
|
|
this.errorFlagsListViewEx.AllowColumnReorder = true;
|
|
resources.ApplyResources(this.errorFlagsListViewEx, "errorFlagsListViewEx");
|
|
this.errorFlagsListViewEx.DoubleClickActivation = false;
|
|
this.errorFlagsListViewEx.FullRowSelect = true;
|
|
this.errorFlagsListViewEx.GridLines = true;
|
|
this.errorFlagsListViewEx.Name = "errorFlagsListViewEx";
|
|
this.errorFlagsListViewEx.UseCompatibleStateImageBehavior = false;
|
|
this.errorFlagsListViewEx.View = System.Windows.Forms.View.Details;
|
|
this.errorFlagsListViewEx.SelectedIndexChanged += new System.EventHandler(this.errorFlagsListViewEx_SelectedIndexChanged);
|
|
//
|
|
// errorFlags2TabPage
|
|
//
|
|
this.errorFlags2TabPage.Controls.Add(this.errorFlags2ListViewEx);
|
|
resources.ApplyResources(this.errorFlags2TabPage, "errorFlags2TabPage");
|
|
this.errorFlags2TabPage.Name = "errorFlags2TabPage";
|
|
this.errorFlags2TabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// errorFlags2ListViewEx
|
|
//
|
|
this.errorFlags2ListViewEx.AllowColumnReorder = true;
|
|
resources.ApplyResources(this.errorFlags2ListViewEx, "errorFlags2ListViewEx");
|
|
this.errorFlags2ListViewEx.DoubleClickActivation = false;
|
|
this.errorFlags2ListViewEx.FullRowSelect = true;
|
|
this.errorFlags2ListViewEx.GridLines = true;
|
|
this.errorFlags2ListViewEx.Name = "errorFlags2ListViewEx";
|
|
this.errorFlags2ListViewEx.UseCompatibleStateImageBehavior = false;
|
|
this.errorFlags2ListViewEx.View = System.Windows.Forms.View.Details;
|
|
this.errorFlags2ListViewEx.SelectedIndexChanged += new System.EventHandler(this.errorFlags2ListViewEx_SelectedIndexChanged);
|
|
//
|
|
// sharedButtons
|
|
//
|
|
resources.ApplyResources(this.sharedButtons, "sharedButtons");
|
|
this.sharedButtons.Name = "sharedButtons";
|
|
//
|
|
// TestProfileDlg
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.mainSplitContainer);
|
|
this.Name = "TestProfileDlg";
|
|
this.Load += new System.EventHandler(this.TestProfileDlg_Load);
|
|
this.mainSplitContainer.Panel1.ResumeLayout(false);
|
|
this.mainSplitContainer.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).EndInit();
|
|
this.mainSplitContainer.ResumeLayout(false);
|
|
this.tabControl.ResumeLayout(false);
|
|
this.generalTabPage.ResumeLayout(false);
|
|
this.generalTabPage.PerformLayout();
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.groupBox2.PerformLayout();
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.metrologyTabPage.ResumeLayout(false);
|
|
this.errorFlagsTabPage.ResumeLayout(false);
|
|
this.errorFlags2TabPage.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer mainSplitContainer;
|
|
private System.Windows.Forms.TabControl tabControl;
|
|
private System.Windows.Forms.TabPage metrologyTabPage;
|
|
private Common.Forms.ListViewEx metrologyListViewEx;
|
|
private TBF.UI.Shared.SharedButtons sharedButtons;
|
|
private System.Windows.Forms.TabPage generalTabPage;
|
|
private System.Windows.Forms.TextBox lastChangedOnTextBox;
|
|
private System.Windows.Forms.Label label15;
|
|
private System.Windows.Forms.TextBox lastChangedByTextBox;
|
|
private System.Windows.Forms.Label label16;
|
|
private System.Windows.Forms.TextBox createdOnTextBox;
|
|
private System.Windows.Forms.Label label14;
|
|
private System.Windows.Forms.TextBox createdByTextBox;
|
|
private System.Windows.Forms.Label label13;
|
|
private System.Windows.Forms.TextBox descriptionTextBox;
|
|
private System.Windows.Forms.Label label12;
|
|
private System.Windows.Forms.TextBox procNameTextBox;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.RadioButton profileTypeRadioButton2;
|
|
private System.Windows.Forms.RadioButton profileTypeRadioButton1;
|
|
private System.Windows.Forms.TabPage errorFlagsTabPage;
|
|
private Common.Forms.ListViewEx errorFlagsListViewEx;
|
|
private System.Windows.Forms.RadioButton profileTypeRadioButton3;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.RadioButton errorCalculationRadioButton2;
|
|
private System.Windows.Forms.RadioButton errorCalculationRadioButton1;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.RadioButton profileTypeRadioButton5;
|
|
private System.Windows.Forms.RadioButton profileTypeRadioButton4;
|
|
private System.Windows.Forms.TabPage errorFlags2TabPage;
|
|
private Common.Forms.ListViewEx errorFlags2ListViewEx;
|
|
}
|
|
} |