mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-14 12:23:52 +02:00
135 lines
5.9 KiB
C#
135 lines
5.9 KiB
C#
// Copyright(c) 2019 pypy. All rights reserved.
|
|
//
|
|
// This work is licensed under the terms of the MIT license.
|
|
// For a copy, see <https://opensource.org/licenses/MIT>.
|
|
|
|
namespace VRCX
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <summary>
|
|
/// 필수 디자이너 변수입니다.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 사용 중인 모든 리소스를 정리합니다.
|
|
/// </summary>
|
|
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form 디자이너에서 생성한 코드
|
|
|
|
/// <summary>
|
|
/// 디자이너 지원에 필요한 메서드입니다.
|
|
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.TrayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.TrayMenu_Open = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.TrayMenu_Separator = new System.Windows.Forms.ToolStripSeparator();
|
|
this.TrayMenu_Quit = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.TrayIcon = new System.Windows.Forms.NotifyIcon(this.components);
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.TrayMenu.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// TrayMenu
|
|
//
|
|
this.TrayMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
|
|
this.TrayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.TrayMenu_Open,
|
|
this.TrayMenu_Separator,
|
|
this.TrayMenu_Quit});
|
|
this.TrayMenu.Name = "TrayMenu";
|
|
this.TrayMenu.Size = new System.Drawing.Size(147, 58);
|
|
//
|
|
// TrayMenu_Open
|
|
//
|
|
this.TrayMenu_Open.Name = "TrayMenu_Open";
|
|
this.TrayMenu_Open.Size = new System.Drawing.Size(146, 24);
|
|
this.TrayMenu_Open.Text = "Open";
|
|
this.TrayMenu_Open.Click += new System.EventHandler(this.TrayMenu_Open_Click);
|
|
//
|
|
// TrayMenu_Separator
|
|
//
|
|
this.TrayMenu_Separator.Name = "TrayMenu_Separator";
|
|
this.TrayMenu_Separator.Size = new System.Drawing.Size(143, 6);
|
|
//
|
|
// TrayMenu_Quit
|
|
//
|
|
this.TrayMenu_Quit.Name = "TrayMenu_Quit";
|
|
this.TrayMenu_Quit.Size = new System.Drawing.Size(146, 24);
|
|
this.TrayMenu_Quit.Text = "Quit VRCX";
|
|
this.TrayMenu_Quit.Click += new System.EventHandler(this.TrayMenu_Quit_Click);
|
|
//
|
|
// TrayIcon
|
|
//
|
|
this.TrayIcon.ContextMenuStrip = this.TrayMenu;
|
|
this.TrayIcon.Text = "VRCX";
|
|
this.TrayIcon.Visible = true;
|
|
this.TrayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.TrayIcon_MouseDoubleClick);
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(91, 81);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(75, 23);
|
|
this.button1.TabIndex = 1;
|
|
this.button1.Text = "Dark";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(196, 81);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(75, 23);
|
|
this.button2.TabIndex = 2;
|
|
this.button2.Text = "Light";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(1052, 701);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.MinimumSize = new System.Drawing.Size(396, 288);
|
|
this.Name = "MainForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "VRCX";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
this.Move += new System.EventHandler(this.MainForm_Move);
|
|
this.Resize += new System.EventHandler(this.MainForm_Resize);
|
|
this.TrayMenu.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ContextMenuStrip TrayMenu;
|
|
private System.Windows.Forms.ToolStripMenuItem TrayMenu_Open;
|
|
private System.Windows.Forms.ToolStripSeparator TrayMenu_Separator;
|
|
private System.Windows.Forms.ToolStripMenuItem TrayMenu_Quit;
|
|
private System.Windows.Forms.NotifyIcon TrayIcon;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Button button2;
|
|
}
|
|
} |