112 lines
4.1 KiB
C#
112 lines
4.1 KiB
C#
namespace qtc_net_client_2.Forms
|
|
{
|
|
partial class DonationWindow
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DonationWindow));
|
|
lblHi = new Label();
|
|
lblInfo = new Label();
|
|
pbKofi = new PictureBox();
|
|
pbCobaltPuter = new PictureBox();
|
|
((System.ComponentModel.ISupportInitialize)pbKofi).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)pbCobaltPuter).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// lblHi
|
|
//
|
|
lblHi.AutoSize = true;
|
|
lblHi.Font = new Font("Segoe UI", 30F, FontStyle.Bold | FontStyle.Italic);
|
|
lblHi.Location = new Point(231, 7);
|
|
lblHi.Name = "lblHi";
|
|
lblHi.Size = new Size(81, 54);
|
|
lblHi.TabIndex = 0;
|
|
lblHi.Text = "Hi!";
|
|
//
|
|
// lblInfo
|
|
//
|
|
lblInfo.Font = new Font("Segoe UI", 7F, FontStyle.Bold);
|
|
lblInfo.Location = new Point(12, 51);
|
|
lblInfo.Name = "lblInfo";
|
|
lblInfo.Size = new Size(290, 177);
|
|
lblInfo.TabIndex = 1;
|
|
lblInfo.Text = resources.GetString("lblInfo.Text");
|
|
lblInfo.TextAlign = ContentAlignment.MiddleLeft;
|
|
//
|
|
// pbKofi
|
|
//
|
|
pbKofi.Cursor = Cursors.Hand;
|
|
pbKofi.Image = Properties.Resources.support_me_on_kofi_badge_blue;
|
|
pbKofi.Location = new Point(89, 239);
|
|
pbKofi.Name = "pbKofi";
|
|
pbKofi.Size = new Size(149, 78);
|
|
pbKofi.SizeMode = PictureBoxSizeMode.Zoom;
|
|
pbKofi.TabIndex = 2;
|
|
pbKofi.TabStop = false;
|
|
pbKofi.Click += pbKofi_Click;
|
|
//
|
|
// pbCobaltPuter
|
|
//
|
|
pbCobaltPuter.Image = Properties.Resources.cobalt_sittingatputer;
|
|
pbCobaltPuter.Location = new Point(316, 29);
|
|
pbCobaltPuter.Name = "pbCobaltPuter";
|
|
pbCobaltPuter.Size = new Size(339, 270);
|
|
pbCobaltPuter.SizeMode = PictureBoxSizeMode.Zoom;
|
|
pbCobaltPuter.TabIndex = 3;
|
|
pbCobaltPuter.TabStop = false;
|
|
//
|
|
// DonationWindow
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DodgerBlue;
|
|
ClientSize = new Size(667, 328);
|
|
Controls.Add(pbCobaltPuter);
|
|
Controls.Add(pbKofi);
|
|
Controls.Add(lblInfo);
|
|
Controls.Add(lblHi);
|
|
ForeColor = Color.White;
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "DonationWindow";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "QtC.NET Client - Donate!";
|
|
((System.ComponentModel.ISupportInitialize)pbKofi).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)pbCobaltPuter).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblHi;
|
|
private Label lblInfo;
|
|
private PictureBox pbKofi;
|
|
private PictureBox pbCobaltPuter;
|
|
}
|
|
} |