110 lines
5.3 KiB
C#
110 lines
5.3 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.components = new System.ComponentModel.Container();
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
||
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
|
||
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||
this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.toggleHotkeyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
||
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.contextMenuStrip1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// notifyIcon1
|
||
//
|
||
this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
|
||
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
|
||
this.notifyIcon1.Text = "notifyIcon1";
|
||
this.notifyIcon1.Visible = true;
|
||
this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
|
||
//
|
||
// contextMenuStrip1
|
||
//
|
||
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.showToolStripMenuItem,
|
||
this.toggleHotkeyToolStripMenuItem,
|
||
this.toolStripSeparator1,
|
||
this.exitToolStripMenuItem});
|
||
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
||
this.contextMenuStrip1.Size = new System.Drawing.Size(222, 76);
|
||
//
|
||
// showToolStripMenuItem
|
||
//
|
||
this.showToolStripMenuItem.Name = "showToolStripMenuItem";
|
||
this.showToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
|
||
this.showToolStripMenuItem.Text = "Show in Taskbar";
|
||
this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
|
||
//
|
||
// toggleHotkeyToolStripMenuItem
|
||
//
|
||
this.toggleHotkeyToolStripMenuItem.Name = "toggleHotkeyToolStripMenuItem";
|
||
this.toggleHotkeyToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
|
||
this.toggleHotkeyToolStripMenuItem.Text = "Disable Print Screen capture";
|
||
this.toggleHotkeyToolStripMenuItem.Click += new System.EventHandler(this.toggleHotkeyToolStripMenuItem_Click);
|
||
//
|
||
// toolStripSeparator1
|
||
//
|
||
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
||
this.toolStripSeparator1.Size = new System.Drawing.Size(218, 6);
|
||
//
|
||
// exitToolStripMenuItem
|
||
//
|
||
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
||
this.exitToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
|
||
this.exitToolStripMenuItem.Text = "Exit";
|
||
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||
this.Name = "MainForm";
|
||
this.Text = "MainForm";
|
||
this.contextMenuStrip1.ResumeLayout(false);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.NotifyIcon notifyIcon1;
|
||
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
|
||
private System.Windows.Forms.ToolStripMenuItem toggleHotkeyToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripMenuItem showToolStripMenuItem;
|
||
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
||
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
||
}
|
||
}
|
||
|