118 lines
No EOL
4.4 KiB
C#
118 lines
No EOL
4.4 KiB
C#
namespace BetterJoyForCemu {
|
|
partial class MainForm {
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing) {
|
|
if (disposing && (components != null)) {
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent() {
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
|
this.console = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
|
|
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.contextMenu.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// console
|
|
//
|
|
this.console.Location = new System.Drawing.Point(12, 25);
|
|
this.console.Multiline = true;
|
|
this.console.Name = "console";
|
|
this.console.ReadOnly = true;
|
|
this.console.Size = new System.Drawing.Size(260, 224);
|
|
this.console.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(83, 13);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "Console Output:";
|
|
//
|
|
// notifyIcon
|
|
//
|
|
this.notifyIcon.BalloonTipText = "Double click the tray icon to maximise";
|
|
this.notifyIcon.BalloonTipTitle = "BetterJoyForCemu";
|
|
this.notifyIcon.ContextMenuStrip = this.contextMenu;
|
|
this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
|
|
this.notifyIcon.Text = "BetterJoyForCemu";
|
|
this.notifyIcon.Visible = true;
|
|
this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MouseDoubleClick);
|
|
//
|
|
// contextMenu
|
|
//
|
|
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.exitToolStripMenuItem});
|
|
this.contextMenu.Name = "contextMenu";
|
|
this.contextMenu.Size = new System.Drawing.Size(153, 48);
|
|
//
|
|
// exitToolStripMenuItem
|
|
//
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.exitToolStripMenuItem.Text = "Exit";
|
|
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(244, 9);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(28, 13);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "v4.0";
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(284, 261);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.console);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "MainForm";
|
|
this.Text = "BetterJoyForCemu";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
this.Resize += new System.EventHandler(this.MainForm_Resize);
|
|
this.contextMenu.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.TextBox console;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.NotifyIcon notifyIcon;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenu;
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
}
|
|
} |