X-Aim

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 2  →  ?path2? @ 3
/trunk/X-Aim/Form1.Designer.cs
@@ -1,4 +1,6 @@
namespace X_Aim
using X_Aim.Controls;
 
namespace X_Aim
{
partial class Form1
{
@@ -32,8 +34,13 @@
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.enableToolStripMenuItem = new X_Aim.Controls.BindableToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.settingsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.startWithWindowsToolStripMenuItem = new X_Aim.Controls.BindableToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
@@ -47,19 +54,54 @@
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.enableToolStripMenuItem,
this.toolStripSeparator2,
this.settingsToolStripMenuItem1,
this.toolStripSeparator1,
this.aboutToolStripMenuItem,
this.quitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(144, 48);
this.contextMenuStrip1.Size = new System.Drawing.Size(144, 104);
//
// quitToolStripMenuItem
// enableToolStripMenuItem
//
this.quitToolStripMenuItem.Image = global::X_Aim.Properties.Resources.quit;
this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
this.quitToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.quitToolStripMenuItem.Text = "Quit";
this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
this.enableToolStripMenuItem.Checked = global::X_Aim.Properties.Settings.Default.Enable;
this.enableToolStripMenuItem.CheckOnClick = true;
this.enableToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.enableToolStripMenuItem.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::X_Aim.Properties.Settings.Default, "Enable", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.enableToolStripMenuItem.Name = "enableToolStripMenuItem";
this.enableToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.enableToolStripMenuItem.Text = "Enable";
this.enableToolStripMenuItem.CheckStateChanged += new System.EventHandler(this.Enable_OnCheckStateChanged);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(140, 6);
//
// settingsToolStripMenuItem1
//
this.settingsToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.startWithWindowsToolStripMenuItem});
this.settingsToolStripMenuItem1.Name = "settingsToolStripMenuItem1";
this.settingsToolStripMenuItem1.Size = new System.Drawing.Size(143, 22);
this.settingsToolStripMenuItem1.Text = "Settings";
//
// startWithWindowsToolStripMenuItem
//
this.startWithWindowsToolStripMenuItem.Checked = global::X_Aim.Properties.Settings.Default.StartWithWindows;
this.startWithWindowsToolStripMenuItem.CheckOnClick = true;
this.startWithWindowsToolStripMenuItem.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::X_Aim.Properties.Settings.Default, "StartWithWindows", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.startWithWindowsToolStripMenuItem.Name = "startWithWindowsToolStripMenuItem";
this.startWithWindowsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.startWithWindowsToolStripMenuItem.Text = "Start with Windows";
this.startWithWindowsToolStripMenuItem.CheckStateChanged += new System.EventHandler(this.StartWithWindows_OnCheckStateChanged);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(140, 6);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Image = global::X_Aim.Properties.Resources.help;
@@ -68,6 +110,14 @@
this.aboutToolStripMenuItem.Text = "Help / About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// quitToolStripMenuItem
//
this.quitToolStripMenuItem.Image = global::X_Aim.Properties.Resources.quit;
this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
this.quitToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.quitToolStripMenuItem.Text = "Quit";
this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
//
// Form1
//
this.AllowDrop = true;
@@ -88,6 +138,7 @@
this.Text = "Form1";
this.TopMost = true;
this.TransparencyKey = System.Drawing.Color.White;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
this.Load += new System.EventHandler(this.OnLoad);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
@@ -105,6 +156,11 @@
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BindableToolStripMenuItem enableToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem1;
private BindableToolStripMenuItem startWithWindowsToolStripMenuItem;
}
}