67 lines
2.6 KiB
C#
67 lines
2.6 KiB
C#
using KaraokePlayer.Interfaces;
|
|
|
|
namespace KaraokePlayer
|
|
{
|
|
partial class SongInfoForm
|
|
{
|
|
/// <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.previewLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// previewLabel
|
|
//
|
|
this.previewLabel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.previewLabel.Font = new System.Drawing.Font("Century Gothic", 60F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.previewLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.previewLabel.Location = new System.Drawing.Point(0, 0);
|
|
this.previewLabel.Margin = new System.Windows.Forms.Padding(3, 100, 3, 0);
|
|
this.previewLabel.Name = "previewLabel";
|
|
this.previewLabel.Padding = new System.Windows.Forms.Padding(0, 100, 0, 0);
|
|
this.previewLabel.Size = new System.Drawing.Size(1008, 729);
|
|
this.previewLabel.TabIndex = 0;
|
|
this.previewLabel.Text = "This is the first line\r\n\r\nAnd this is the second line.";
|
|
this.previewLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
//
|
|
// SongInfoForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.Black;
|
|
this.ClientSize = new System.Drawing.Size(1008, 729);
|
|
this.Controls.Add(this.previewLabel);
|
|
this.Name = "SongInfoForm";
|
|
this.Text = "SongInfoForm";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label previewLabel;
|
|
}
|
|
} |