PlazaSharp/testplaza/Form1.Designer.cs

134 lines
4.5 KiB
C#

namespace testplaza {
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() {
this.pbAlbumArt = new System.Windows.Forms.PictureBox();
this.txInfo = new System.Windows.Forms.TextBox();
this.btRefresh = new System.Windows.Forms.Button();
this.btLike = new System.Windows.Forms.Button();
this.btDislike = new System.Windows.Forms.Button();
this.lbLikes = new System.Windows.Forms.Label();
this.lbDislikes = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pbAlbumArt)).BeginInit();
this.SuspendLayout();
//
// pbAlbumArt
//
this.pbAlbumArt.Location = new System.Drawing.Point(12, 12);
this.pbAlbumArt.Name = "pbAlbumArt";
this.pbAlbumArt.Size = new System.Drawing.Size(200, 200);
this.pbAlbumArt.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pbAlbumArt.TabIndex = 0;
this.pbAlbumArt.TabStop = false;
//
// txInfo
//
this.txInfo.Enabled = false;
this.txInfo.Location = new System.Drawing.Point(218, 12);
this.txInfo.Multiline = true;
this.txInfo.Name = "txInfo";
this.txInfo.Size = new System.Drawing.Size(570, 200);
this.txInfo.TabIndex = 1;
//
// btRefresh
//
this.btRefresh.Location = new System.Drawing.Point(218, 218);
this.btRefresh.Name = "btRefresh";
this.btRefresh.Size = new System.Drawing.Size(570, 50);
this.btRefresh.TabIndex = 2;
this.btRefresh.Text = "Refresh";
this.btRefresh.UseVisualStyleBackColor = true;
this.btRefresh.Click += new System.EventHandler(this.BtRefresh_Click);
//
// btLike
//
this.btLike.Location = new System.Drawing.Point(12, 218);
this.btLike.Name = "btLike";
this.btLike.Size = new System.Drawing.Size(81, 50);
this.btLike.TabIndex = 3;
this.btLike.Text = "Like";
this.btLike.UseVisualStyleBackColor = true;
this.btLike.Click += new System.EventHandler(this.BtLike_Click);
//
// btDislike
//
this.btDislike.Location = new System.Drawing.Point(121, 218);
this.btDislike.Name = "btDislike";
this.btDislike.Size = new System.Drawing.Size(91, 50);
this.btDislike.TabIndex = 4;
this.btDislike.Text = "Dislike";
this.btDislike.UseVisualStyleBackColor = true;
this.btDislike.Click += new System.EventHandler(this.BtDislike_Click);
//
// lbLikes
//
this.lbLikes.AutoSize = true;
this.lbLikes.Location = new System.Drawing.Point(99, 222);
this.lbLikes.Name = "lbLikes";
this.lbLikes.Size = new System.Drawing.Size(16, 17);
this.lbLikes.TabIndex = 5;
this.lbLikes.Text = "0";
//
// lbDislikes
//
this.lbDislikes.AutoSize = true;
this.lbDislikes.Location = new System.Drawing.Point(99, 247);
this.lbDislikes.Name = "lbDislikes";
this.lbDislikes.Size = new System.Drawing.Size(16, 17);
this.lbDislikes.TabIndex = 6;
this.lbDislikes.Text = "0";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 280);
this.Controls.Add(this.lbDislikes);
this.Controls.Add(this.lbLikes);
this.Controls.Add(this.btDislike);
this.Controls.Add(this.btLike);
this.Controls.Add(this.btRefresh);
this.Controls.Add(this.txInfo);
this.Controls.Add(this.pbAlbumArt);
this.Name = "Form1";
this.Text = "libplaza validation app";
((System.ComponentModel.ISupportInitialize)(this.pbAlbumArt)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbAlbumArt;
private System.Windows.Forms.TextBox txInfo;
private System.Windows.Forms.Button btRefresh;
private System.Windows.Forms.Button btLike;
private System.Windows.Forms.Button btDislike;
private System.Windows.Forms.Label lbLikes;
private System.Windows.Forms.Label lbDislikes;
}
}