Browse Source

Minor ConfigForm changes

- add event handler for KeyDown
- drop unused code, we don't support
  table and rc4 now

Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
tags/3.3
Syrone Wong 8 years ago
parent
commit
2b4b6cba07
2 changed files with 2 additions and 15 deletions
  1. +2
    -2
      shadowsocks-csharp/View/ConfigForm.Designer.cs
  2. +0
    -13
      shadowsocks-csharp/View/ConfigForm.cs

+ 2
- 2
shadowsocks-csharp/View/ConfigForm.Designer.cs View File

@@ -176,8 +176,8 @@
this.PasswordTextBox.Name = "PasswordTextBox";
this.PasswordTextBox.Size = new System.Drawing.Size(160, 21);
this.PasswordTextBox.TabIndex = 2;
this.PasswordTextBox.WordWrap = false;
this.PasswordTextBox.UseSystemPasswordChar = true;
this.PasswordTextBox.WordWrap = false;
//
// EncryptionLabel
//
@@ -216,7 +216,6 @@
this.EncryptionSelect.Name = "EncryptionSelect";
this.EncryptionSelect.Size = new System.Drawing.Size(160, 20);
this.EncryptionSelect.TabIndex = 3;
this.EncryptionSelect.SelectedIndexChanged += new System.EventHandler(this.EncryptionSelect_SelectedIndexChanged);
//
// OneTimeAuth
//
@@ -480,6 +479,7 @@
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ConfigForm_FormClosed);
this.Load += new System.EventHandler(this.ConfigForm_Load);
this.Shown += new System.EventHandler(this.ConfigForm_Shown);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConfigForm_KeyDown);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ServerGroupBox.ResumeLayout(false);


+ 0
- 13
shadowsocks-csharp/View/ConfigForm.cs View File

@@ -325,18 +325,5 @@ namespace Shadowsocks.View
MoveConfigItem(+1); // +1 means move forward
}
}
private void EncryptionSelect_SelectedIndexChanged(object sender, EventArgs e)
{
if (EncryptionSelect.Text == "rc4" || EncryptionSelect.Text == "table")
{
OneTimeAuth.Enabled = false;
OneTimeAuth.Checked = false;
}
else
{
OneTimeAuth.Enabled = true;
}
}
}
}

Loading…
Cancel
Save