Skip to content

Commit 6c3e8fe

Browse files
author
ayan kashif
committed
v2
1 parent adca291 commit 6c3e8fe

File tree

4 files changed

+1954
-4
lines changed

4 files changed

+1954
-4
lines changed

Form1.Designer.cs

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Form1.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using System.Text;
1010
using System.Threading.Tasks;
1111
using System.Windows.Forms;
12+
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
1213
using static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel;
1314

1415
namespace CSCord_App
@@ -163,5 +164,17 @@ private void button2_Click_1(object sender, EventArgs e)
163164
{
164165
MessageBox.Show("V.0.2 ALPHA: Removed embeds from front page, moved to new page to make space for new options.");
165166
}
167+
168+
private void checkBox1_CheckedChanged(object sender, EventArgs e)
169+
{
170+
if (checkBox1.Checked == true)
171+
{
172+
textBox5.PasswordChar = (char)0;
173+
}
174+
if (checkBox1.Checked == false)
175+
{
176+
textBox5.PasswordChar = Convert.ToChar("*");
177+
}
178+
}
166179
}
167180
}

Form4.Designer.cs

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)