101 lines
3.4 KiB
C#
101 lines
3.4 KiB
C#
namespace WinFormDi.UserControls
|
|
{
|
|
partial class ucCustomerValue
|
|
{
|
|
/// <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 Component 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()
|
|
{
|
|
lblCustName = new Label();
|
|
lblAmount = new Label();
|
|
btnShowMore = new Button();
|
|
lblNumberof = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// lblCustName
|
|
//
|
|
lblCustName.AutoSize = true;
|
|
lblCustName.Font = new Font("Verdana Pro", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
|
lblCustName.Location = new Point(3, 9);
|
|
lblCustName.Name = "lblCustName";
|
|
lblCustName.Size = new Size(123, 14);
|
|
lblCustName.TabIndex = 0;
|
|
lblCustName.Text = "Customer default";
|
|
//
|
|
// lblAmount
|
|
//
|
|
lblAmount.AutoSize = true;
|
|
lblAmount.Font = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point);
|
|
lblAmount.Location = new Point(317, 5);
|
|
lblAmount.Name = "lblAmount";
|
|
lblAmount.Size = new Size(36, 20);
|
|
lblAmount.TabIndex = 1;
|
|
lblAmount.Text = "0,00";
|
|
//
|
|
// btnShowMore
|
|
//
|
|
btnShowMore.BackColor = Color.FromArgb(192, 192, 255);
|
|
btnShowMore.ForeColor = Color.FromArgb(0, 0, 64);
|
|
btnShowMore.Location = new Point(563, 5);
|
|
btnShowMore.Name = "btnShowMore";
|
|
btnShowMore.Size = new Size(72, 23);
|
|
btnShowMore.TabIndex = 2;
|
|
btnShowMore.Text = "Visa mer";
|
|
btnShowMore.UseVisualStyleBackColor = false;
|
|
btnShowMore.Click += btnShowMore_Click;
|
|
//
|
|
// lblNumberof
|
|
//
|
|
lblNumberof.AutoSize = true;
|
|
lblNumberof.Location = new Point(505, 9);
|
|
lblNumberof.Name = "lblNumberof";
|
|
lblNumberof.Size = new Size(13, 15);
|
|
lblNumberof.TabIndex = 3;
|
|
lblNumberof.Text = "0";
|
|
//
|
|
// ucCustomerValue
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.FromArgb(192, 255, 255);
|
|
Controls.Add(lblNumberof);
|
|
Controls.Add(btnShowMore);
|
|
Controls.Add(lblAmount);
|
|
Controls.Add(lblCustName);
|
|
Name = "ucCustomerValue";
|
|
Size = new Size(638, 28);
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblCustName;
|
|
private Label lblAmount;
|
|
private Button btnShowMore;
|
|
private Label lblNumberof;
|
|
}
|
|
}
|