111 lines
4.3 KiB
C#
111 lines
4.3 KiB
C#
namespace StockInfoCore
|
|
{
|
|
partial class frmUtilities
|
|
{
|
|
/// <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.lblUtilityHeader = new System.Windows.Forms.Label();
|
|
this.btnReadStockLists = new System.Windows.Forms.Button();
|
|
this.lvStockGroups = new System.Windows.Forms.ListView();
|
|
this.ch1 = new System.Windows.Forms.ColumnHeader();
|
|
this.ch2 = new System.Windows.Forms.ColumnHeader();
|
|
this.ch3 = new System.Windows.Forms.ColumnHeader();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblUtilityHeader
|
|
//
|
|
this.lblUtilityHeader.AutoSize = true;
|
|
this.lblUtilityHeader.Font = new System.Drawing.Font("Segoe UI", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
|
|
this.lblUtilityHeader.Location = new System.Drawing.Point(19, 12);
|
|
this.lblUtilityHeader.Name = "lblUtilityHeader";
|
|
this.lblUtilityHeader.Size = new System.Drawing.Size(86, 28);
|
|
this.lblUtilityHeader.TabIndex = 0;
|
|
this.lblUtilityHeader.Text = "Utilities";
|
|
this.lblUtilityHeader.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
|
|
//
|
|
// btnReadStockLists
|
|
//
|
|
this.btnReadStockLists.Location = new System.Drawing.Point(28, 64);
|
|
this.btnReadStockLists.Name = "btnReadStockLists";
|
|
this.btnReadStockLists.Size = new System.Drawing.Size(134, 23);
|
|
this.btnReadStockLists.TabIndex = 1;
|
|
this.btnReadStockLists.Text = "List Stocks By Group";
|
|
this.btnReadStockLists.UseVisualStyleBackColor = true;
|
|
this.btnReadStockLists.Click += new System.EventHandler(this.btnReadStockLists_Click);
|
|
//
|
|
// lvStockGroups
|
|
//
|
|
this.lvStockGroups.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.ch1,
|
|
this.ch2,
|
|
this.ch3});
|
|
this.lvStockGroups.Location = new System.Drawing.Point(174, 69);
|
|
this.lvStockGroups.Name = "lvStockGroups";
|
|
this.lvStockGroups.Size = new System.Drawing.Size(397, 214);
|
|
this.lvStockGroups.TabIndex = 2;
|
|
this.lvStockGroups.UseCompatibleStateImageBehavior = false;
|
|
this.lvStockGroups.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// ch1
|
|
//
|
|
this.ch1.Text = "Id";
|
|
//
|
|
// ch2
|
|
//
|
|
this.ch2.Text = "StockGroup";
|
|
this.ch2.Width = 150;
|
|
//
|
|
// ch3
|
|
//
|
|
this.ch3.Text = "StockName";
|
|
this.ch3.Width = 200;
|
|
//
|
|
// frmUtilities
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(583, 503);
|
|
this.Controls.Add(this.lvStockGroups);
|
|
this.Controls.Add(this.btnReadStockLists);
|
|
this.Controls.Add(this.lblUtilityHeader);
|
|
this.Name = "frmUtilities";
|
|
this.Text = "Utilities";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblUtilityHeader;
|
|
private Button btnReadStockLists;
|
|
private ListView lvStockGroups;
|
|
private ColumnHeader ch1;
|
|
private ColumnHeader ch2;
|
|
private ColumnHeader ch3;
|
|
}
|
|
} |