qtcnet-client/qtcnet-client/Forms/StoreItemForm.Designer.cs

176 lines
6.9 KiB
C#

namespace qtcnet_client.Forms
{
partial class StoreItemForm
{
/// <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()
{
flpMainLayout = new FlowLayoutPanel();
pbThumbnail = new PictureBox();
lblName = new Label();
tlpIconPrice = new TableLayoutPanel();
pbIcon = new PictureBox();
lblPrice = new Label();
tlpBuyHolder = new TableLayoutPanel();
btnBuy = new Button();
flpMainLayout.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pbThumbnail).BeginInit();
tlpIconPrice.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pbIcon).BeginInit();
tlpBuyHolder.SuspendLayout();
SuspendLayout();
//
// flpMainLayout
//
flpMainLayout.Controls.Add(pbThumbnail);
flpMainLayout.Controls.Add(lblName);
flpMainLayout.Controls.Add(tlpIconPrice);
flpMainLayout.Controls.Add(tlpBuyHolder);
flpMainLayout.Dock = DockStyle.Fill;
flpMainLayout.Location = new Point(0, 0);
flpMainLayout.Name = "flpMainLayout";
flpMainLayout.Size = new Size(263, 386);
flpMainLayout.TabIndex = 0;
//
// pbThumbnail
//
pbThumbnail.Dock = DockStyle.Top;
pbThumbnail.Image = Properties.Resources.QtCNETIcon;
pbThumbnail.Location = new Point(3, 3);
pbThumbnail.Name = "pbThumbnail";
pbThumbnail.Size = new Size(256, 256);
pbThumbnail.SizeMode = PictureBoxSizeMode.Zoom;
pbThumbnail.TabIndex = 0;
pbThumbnail.TabStop = false;
//
// lblName
//
lblName.Font = new Font("Segoe UI", 20.25F, FontStyle.Bold, GraphicsUnit.Point, 0);
lblName.ForeColor = Color.White;
lblName.Location = new Point(3, 262);
lblName.Name = "lblName";
lblName.Size = new Size(256, 49);
lblName.TabIndex = 1;
lblName.Text = "Store Item";
lblName.TextAlign = ContentAlignment.MiddleCenter;
//
// tlpIconPrice
//
tlpIconPrice.ColumnCount = 2;
tlpIconPrice.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
tlpIconPrice.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
tlpIconPrice.Controls.Add(pbIcon, 0, 0);
tlpIconPrice.Controls.Add(lblPrice, 1, 0);
tlpIconPrice.GrowStyle = TableLayoutPanelGrowStyle.AddColumns;
tlpIconPrice.Location = new Point(3, 314);
tlpIconPrice.Name = "tlpIconPrice";
tlpIconPrice.RowCount = 1;
tlpIconPrice.RowStyles.Add(new RowStyle());
tlpIconPrice.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
tlpIconPrice.Size = new Size(256, 30);
tlpIconPrice.TabIndex = 2;
//
// pbIcon
//
pbIcon.Dock = DockStyle.Right;
pbIcon.Image = Properties.Resources.CurrencyIcon;
pbIcon.Location = new Point(111, 3);
pbIcon.Name = "pbIcon";
pbIcon.Size = new Size(14, 24);
pbIcon.SizeMode = PictureBoxSizeMode.CenterImage;
pbIcon.TabIndex = 0;
pbIcon.TabStop = false;
//
// lblPrice
//
lblPrice.Dock = DockStyle.Left;
lblPrice.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
lblPrice.ForeColor = Color.White;
lblPrice.Location = new Point(131, 0);
lblPrice.Name = "lblPrice";
lblPrice.Size = new Size(41, 30);
lblPrice.TabIndex = 1;
lblPrice.Text = "9999";
lblPrice.TextAlign = ContentAlignment.MiddleCenter;
//
// tlpBuyHolder
//
tlpBuyHolder.ColumnCount = 1;
tlpBuyHolder.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
tlpBuyHolder.Controls.Add(btnBuy, 0, 0);
tlpBuyHolder.Location = new Point(3, 350);
tlpBuyHolder.Name = "tlpBuyHolder";
tlpBuyHolder.RowCount = 1;
tlpBuyHolder.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
tlpBuyHolder.Size = new Size(256, 30);
tlpBuyHolder.TabIndex = 3;
//
// btnBuy
//
btnBuy.Dock = DockStyle.Top;
btnBuy.Location = new Point(3, 3);
btnBuy.Name = "btnBuy";
btnBuy.Size = new Size(250, 23);
btnBuy.TabIndex = 0;
btnBuy.Text = "Buy";
btnBuy.UseVisualStyleBackColor = true;
btnBuy.Click += btnBuy_Click;
//
// StoreItemForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(263, 386);
Controls.Add(flpMainLayout);
FormBorderStyle = FormBorderStyle.FixedSingle;
MaximizeBox = false;
MinimizeBox = false;
Name = "StoreItemForm";
StartPosition = FormStartPosition.CenterScreen;
Text = "QtC.NET Store Item";
FormClosed += StoreItemForm_FormClosed;
Load += StoreItemForm_Load;
flpMainLayout.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pbThumbnail).EndInit();
tlpIconPrice.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pbIcon).EndInit();
tlpBuyHolder.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private FlowLayoutPanel flpMainLayout;
private PictureBox pbThumbnail;
private Label lblName;
private TableLayoutPanel tlpIconPrice;
private PictureBox pbIcon;
private Label lblPrice;
private TableLayoutPanel tlpBuyHolder;
private Button btnBuy;
}
}