Files
xmltest/xmlserializetest/Form1.Designer.cs
2024-03-22 01:35:19 +01:00

114 lines
4.7 KiB
C#

namespace xmlserializetest
{
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()
{
System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
this.lbGroups = new System.Windows.Forms.ListBox();
this.lbPins = new System.Windows.Forms.ListBox();
this.lbTests = new System.Windows.Forms.ListBox();
((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
this.SuspendLayout();
//
// chart1
//
chartArea1.Name = "ChartArea1";
this.chart1.ChartAreas.Add(chartArea1);
legend1.Name = "Legend1";
this.chart1.Legends.Add(legend1);
this.chart1.Location = new System.Drawing.Point(712, 121);
this.chart1.Name = "chart1";
series1.ChartArea = "ChartArea1";
series1.Legend = "Legend1";
series1.Name = "Series1";
this.chart1.Series.Add(series1);
this.chart1.Size = new System.Drawing.Size(856, 674);
this.chart1.TabIndex = 0;
this.chart1.Text = "chart1";
//
// lbGroups
//
this.lbGroups.FormattingEnabled = true;
this.lbGroups.ItemHeight = 16;
this.lbGroups.Location = new System.Drawing.Point(223, 121);
this.lbGroups.Name = "lbGroups";
this.lbGroups.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.lbGroups.Size = new System.Drawing.Size(189, 356);
this.lbGroups.TabIndex = 1;
this.lbGroups.SelectedIndexChanged += new System.EventHandler(this.lbGroups_SelectedIndexChanged);
//
// lbPins
//
this.lbPins.FormattingEnabled = true;
this.lbPins.ItemHeight = 16;
this.lbPins.Location = new System.Drawing.Point(436, 121);
this.lbPins.Name = "lbPins";
this.lbPins.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.lbPins.Size = new System.Drawing.Size(189, 356);
this.lbPins.TabIndex = 2;
this.lbPins.SelectedIndexChanged += new System.EventHandler(this.lbPins_SelectedIndexChanged);
//
// lbTests
//
this.lbTests.FormattingEnabled = true;
this.lbTests.ItemHeight = 16;
this.lbTests.Location = new System.Drawing.Point(12, 122);
this.lbTests.Name = "lbTests";
this.lbTests.Size = new System.Drawing.Size(187, 356);
this.lbTests.TabIndex = 3;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1711, 899);
this.Controls.Add(this.lbTests);
this.Controls.Add(this.lbPins);
this.Controls.Add(this.lbGroups);
this.Controls.Add(this.chart1);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataVisualization.Charting.Chart chart1;
private System.Windows.Forms.ListBox lbGroups;
private System.Windows.Forms.ListBox lbPins;
private System.Windows.Forms.ListBox lbTests;
}
}