Upload files

Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
2025-06-09 20:01:58 +07:00
parent ce81153b95
commit 175817b262
16 changed files with 956 additions and 0 deletions

62
MainForm.Designer.cs generated Normal file
View File

@@ -0,0 +1,62 @@
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;
}
}