diff --git a/.vs/PresenceClientFix/v17/.wsuo b/.vs/PresenceClientFix/v17/.wsuo new file mode 100644 index 0000000..c99108c Binary files /dev/null and b/.vs/PresenceClientFix/v17/.wsuo differ diff --git a/.vs/PresenceClientFix/v17/DocumentLayout.json b/.vs/PresenceClientFix/v17/DocumentLayout.json new file mode 100644 index 0000000..3135545 --- /dev/null +++ b/.vs/PresenceClientFix/v17/DocumentLayout.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\clued\\source\\repos\\Clueeng\\PresenceClientFix\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [] + } + ] +} \ No newline at end of file diff --git a/PresenceClient/PresenceClient-GUI/MainForm.Designer.cs b/PresenceClient/PresenceClient-GUI/MainForm.Designer.cs index 2abf9cf..1203322 100644 --- a/PresenceClient/PresenceClient-GUI/MainForm.Designer.cs +++ b/PresenceClient/PresenceClient-GUI/MainForm.Designer.cs @@ -68,10 +68,11 @@ private void InitializeComponent() // clientBox // this.clientBox.Location = new System.Drawing.Point(78, 73); - this.clientBox.MaxLength = 18; + this.clientBox.MaxLength = 100; this.clientBox.Name = "clientBox"; this.clientBox.Size = new System.Drawing.Size(100, 20); this.clientBox.TabIndex = 3; + this.clientBox.TextChanged += new System.EventHandler(this.clientBox_TextChanged); // // label1 // @@ -215,19 +216,19 @@ private void InitializeComponent() this.connectToolStripMenuItem, this.trayExitMenuItem}); this.trayContextMenu.Name = "trayContextMenu"; - this.trayContextMenu.Size = new System.Drawing.Size(120, 48); + this.trayContextMenu.Size = new System.Drawing.Size(121, 48); // // connectToolStripMenuItem // this.connectToolStripMenuItem.Name = "connectToolStripMenuItem"; - this.connectToolStripMenuItem.Size = new System.Drawing.Size(119, 22); + this.connectToolStripMenuItem.Size = new System.Drawing.Size(120, 22); this.connectToolStripMenuItem.Text = "Connect"; this.connectToolStripMenuItem.Click += new System.EventHandler(this.ConnectButton_Click); // // trayExitMenuItem // this.trayExitMenuItem.Name = "trayExitMenuItem"; - this.trayExitMenuItem.Size = new System.Drawing.Size(119, 22); + this.trayExitMenuItem.Size = new System.Drawing.Size(120, 22); this.trayExitMenuItem.Text = "Exit"; this.trayExitMenuItem.Click += new System.EventHandler(this.TrayExitMenuItem_Click); // @@ -299,7 +300,7 @@ private void InitializeComponent() this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "MainForm"; - this.Text = "PresenceClient"; + this.Text = "PresenceClientFix"; 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); diff --git a/PresenceClient/PresenceClient-GUI/MainForm.cs b/PresenceClient/PresenceClient-GUI/MainForm.cs index d70f572..ba5ff37 100644 --- a/PresenceClient/PresenceClient-GUI/MainForm.cs +++ b/PresenceClient/PresenceClient-GUI/MainForm.cs @@ -366,5 +366,10 @@ private void UpdateStatus(string text, Color color) private void CheckMainMenu_CheckedChanged(object sender, EventArgs e) => ManualUpdate = true; private void UseMacDefault_CheckedChanged(object sender, EventArgs e) => HasSeenMacPrompt = true; + + private void clientBox_TextChanged(object sender, EventArgs e) + { + + } } }