63 lines
2.5 KiB
C#
63 lines
2.5 KiB
C#
namespace ScreenCaptureApp
|
||
{
|
||
partial class MainForm
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором форм Windows
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.bigButton = new System.Windows.Forms.Button();
|
||
this.SuspendLayout();
|
||
//
|
||
// bigButton
|
||
//
|
||
this.bigButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
|
||
this.bigButton.Location = new System.Drawing.Point(12, 12);
|
||
this.bigButton.Name = "bigButton";
|
||
this.bigButton.Size = new System.Drawing.Size(314, 163);
|
||
this.bigButton.TabIndex = 2;
|
||
this.bigButton.Text = "SHOOOOOT";
|
||
this.bigButton.UseVisualStyleBackColor = true;
|
||
this.bigButton.Click += new System.EventHandler(this.btnCapture_Click);
|
||
//
|
||
// MainForm
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(339, 186);
|
||
this.Controls.Add(this.bigButton);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||
this.Name = "MainForm";
|
||
this.Text = "MainForm";
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
private System.Windows.Forms.Button bigButton;
|
||
}
|
||
}
|
||
|