mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
164 lines
6.2 KiB
C#
164 lines
6.2 KiB
C#
namespace bnhtrade.gui
|
|
{
|
|
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()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
tabControl1 = new TabControl();
|
|
tabPage1 = new TabPage();
|
|
tabPage3 = new TabPage();
|
|
comboBox1 = new ComboBox();
|
|
dtTmOrderSearch = new DateTimePicker();
|
|
label1 = new Label();
|
|
txtbxOrderSearch = new TextBox();
|
|
tabPage2 = new TabPage();
|
|
purchaseLineStatusBindingSource = new BindingSource(components);
|
|
tabControl1.SuspendLayout();
|
|
tabPage3.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)purchaseLineStatusBindingSource).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// tabControl1
|
|
//
|
|
tabControl1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
tabControl1.Controls.Add(tabPage1);
|
|
tabControl1.Controls.Add(tabPage3);
|
|
tabControl1.Controls.Add(tabPage2);
|
|
tabControl1.Location = new Point(12, 12);
|
|
tabControl1.Name = "tabControl1";
|
|
tabControl1.SelectedIndex = 0;
|
|
tabControl1.Size = new Size(1010, 533);
|
|
tabControl1.TabIndex = 0;
|
|
tabControl1.SelectedIndexChanged += tabControl1_SelectedIndexChanged;
|
|
//
|
|
// tabPage1
|
|
//
|
|
tabPage1.Location = new Point(4, 24);
|
|
tabPage1.Name = "tabPage1";
|
|
tabPage1.Padding = new Padding(3);
|
|
tabPage1.Size = new Size(1002, 505);
|
|
tabPage1.TabIndex = 0;
|
|
tabPage1.Text = "Home";
|
|
tabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// tabPage3
|
|
//
|
|
tabPage3.Controls.Add(comboBox1);
|
|
tabPage3.Controls.Add(dtTmOrderSearch);
|
|
tabPage3.Controls.Add(label1);
|
|
tabPage3.Controls.Add(txtbxOrderSearch);
|
|
tabPage3.Location = new Point(4, 24);
|
|
tabPage3.Name = "tabPage3";
|
|
tabPage3.Padding = new Padding(3);
|
|
tabPage3.Size = new Size(1002, 505);
|
|
tabPage3.TabIndex = 2;
|
|
tabPage3.Text = "Receiving";
|
|
tabPage3.UseVisualStyleBackColor = true;
|
|
tabPage3.Click += tabPage3_Click;
|
|
//
|
|
// comboBox1
|
|
//
|
|
comboBox1.DataSource = purchaseLineStatusBindingSource;
|
|
comboBox1.DisplayMember = "PurchaseLineStatusName";
|
|
comboBox1.FormattingEnabled = true;
|
|
comboBox1.Location = new Point(580, 46);
|
|
comboBox1.Name = "comboBox1";
|
|
comboBox1.Size = new Size(214, 23);
|
|
comboBox1.TabIndex = 3;
|
|
comboBox1.ValueMember = "PurchaseLineStatusId";
|
|
comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
|
|
//
|
|
// dtTmOrderSearch
|
|
//
|
|
dtTmOrderSearch.Location = new Point(356, 46);
|
|
dtTmOrderSearch.Name = "dtTmOrderSearch";
|
|
dtTmOrderSearch.Size = new Size(157, 23);
|
|
dtTmOrderSearch.TabIndex = 2;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(31, 28);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(75, 15);
|
|
label1.TabIndex = 1;
|
|
label1.Text = "Order Search";
|
|
//
|
|
// txtbxOrderSearch
|
|
//
|
|
txtbxOrderSearch.Location = new Point(31, 46);
|
|
txtbxOrderSearch.Name = "txtbxOrderSearch";
|
|
txtbxOrderSearch.Size = new Size(268, 23);
|
|
txtbxOrderSearch.TabIndex = 0;
|
|
//
|
|
// tabPage2
|
|
//
|
|
tabPage2.AccessibleName = "";
|
|
tabPage2.Location = new Point(4, 24);
|
|
tabPage2.Name = "tabPage2";
|
|
tabPage2.Padding = new Padding(3);
|
|
tabPage2.Size = new Size(1002, 505);
|
|
tabPage2.TabIndex = 1;
|
|
tabPage2.Text = "FBA Shipments";
|
|
tabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// purchaseLineStatusBindingSource
|
|
//
|
|
purchaseLineStatusBindingSource.DataSource = typeof(Core.Model.Purchase.PurchaseLineStatus);
|
|
purchaseLineStatusBindingSource.CurrentChanged += purchaseLineStatusBindingSource_CurrentChanged;
|
|
//
|
|
// Form1
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(1034, 557);
|
|
Controls.Add(tabControl1);
|
|
Name = "Form1";
|
|
Text = "Form1";
|
|
Load += Form1_Load;
|
|
tabControl1.ResumeLayout(false);
|
|
tabPage3.ResumeLayout(false);
|
|
tabPage3.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)purchaseLineStatusBindingSource).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TabControl tabControl1;
|
|
private TabPage tabPage1;
|
|
private TabPage tabPage2;
|
|
private TabPage tabPage3;
|
|
private TextBox txtbxOrderSearch;
|
|
private Label label1;
|
|
private DateTimePicker dtTmOrderSearch;
|
|
private ComboBox comboBox1;
|
|
private BindingSource purchaseLineStatusBindingSource;
|
|
}
|
|
}
|