77 lines
2.6 KiB
C#
77 lines
2.6 KiB
C#
using System;
|
|||
|
|
using System.ComponentModel;
|
||
|
|
using System.Drawing;
|
||
|
|
using System.Windows.Forms;
|
||
|
|
using Server.Helper;
|
||
|
|
|
||
|
|
namespace Server.Forms;
|
||
|
|
|
||
|
|
public class FormAbout : FormMaterial
|
||
|
|
{
|
||
|
|
private IContainer components;
|
||
|
|
|
||
|
|
private PictureBox pictureBox1;
|
||
|
|
|
||
|
|
private Label label1;
|
||
|
|
|
||
|
|
public FormAbout()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void FormAbout_Load(object sender, EventArgs e)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override void Dispose(bool disposing)
|
||
|
|
{
|
||
|
|
if (disposing && components != null)
|
||
|
|
{
|
||
|
|
components.Dispose();
|
||
|
|
}
|
||
|
|
base.Dispose(disposing);
|
||
|
|
}
|
||
|
|
|
||
|
|
private void InitializeComponent()
|
||
|
|
{
|
||
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
|
|
this.label1 = new System.Windows.Forms.Label();
|
||
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
|
|
this.SuspendLayout();
|
||
|
|
//
|
||
|
|
// pictureBox1
|
||
|
|
//
|
||
|
|
this.pictureBox1.Location = new System.Drawing.Point(69, 94);
|
||
|
|
this.pictureBox1.Name = "pictureBox1";
|
||
|
|
this.pictureBox1.Size = new System.Drawing.Size(313, 178);
|
||
|
|
this.pictureBox1.TabIndex = 0;
|
||
|
|
this.pictureBox1.TabStop = false;
|
||
|
|
//
|
||
|
|
// label1
|
||
|
|
//
|
||
|
|
this.label1.AutoSize = true;
|
||
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
|
|
this.label1.Location = new System.Drawing.Point(59, 290);
|
||
|
|
this.label1.Name = "label1";
|
||
|
|
this.label1.Size = new System.Drawing.Size(323, 160);
|
||
|
|
this.label1.TabIndex = 1;
|
||
|
|
this.label1.Text = "Создано спецально для сквада {taskmgr}\r\n\r\n\r\nTelegram: https://t.me/taskmgrlink\r\nD" +
|
||
|
|
"iscord: нету\r\nLolz: нету\r\n\r\nПри подержке Evelyn";
|
||
|
|
//
|
||
|
|
// FormAbout
|
||
|
|
//
|
||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
|
|
this.ClientSize = new System.Drawing.Size(481, 474);
|
||
|
|
this.Controls.Add(this.label1);
|
||
|
|
this.Controls.Add(this.pictureBox1);
|
||
|
|
this.Name = "FormAbout";
|
||
|
|
this.Text = "About";
|
||
|
|
this.Load += new System.EventHandler(this.FormAbout_Load);
|
||
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
|
|
this.ResumeLayout(false);
|
||
|
|
this.PerformLayout();
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|