diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-11-04 22:00:05 +0000 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-11-04 22:00:05 +0000 |
| commit | 1cdbf9659b0153285bb56bd35ab58e0a70f4d632 (patch) | |
| tree | 7f336d542e0b8fdd5ad9789e38054e5c90cdeea9 /Histacom2.Engine/UI/ClassicTextbox.cs | |
| parent | cc07981aa3603c74507c9ea0acb6dd0d8418d58e (diff) | |
| download | histacom2-1cdbf9659b0153285bb56bd35ab58e0a70f4d632.tar.gz histacom2-1cdbf9659b0153285bb56bd35ab58e0a70f4d632.tar.bz2 histacom2-1cdbf9659b0153285bb56bd35ab58e0a70f4d632.zip | |
Final commit!
Diffstat (limited to 'Histacom2.Engine/UI/ClassicTextbox.cs')
| -rw-r--r-- | Histacom2.Engine/UI/ClassicTextbox.cs | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Histacom2.Engine/UI/ClassicTextbox.cs b/Histacom2.Engine/UI/ClassicTextbox.cs index f89df03..4847ed5 100644 --- a/Histacom2.Engine/UI/ClassicTextbox.cs +++ b/Histacom2.Engine/UI/ClassicTextbox.cs @@ -12,8 +12,6 @@ namespace Histacom2.Engine.UI { public partial class ClassicTextBox : UserControl { - public bool UseSystemPasswordChar { get; set; } - public static Color textboxcolor = Color.Black; public static Color _lightBack = Color.Silver; @@ -31,6 +29,18 @@ namespace Histacom2.Engine.UI } } + public bool UseSystemPasswordChar + { + get + { + return textBox1.UseSystemPasswordChar; + } + set + { + textBox1.UseSystemPasswordChar = value; + } + } + public ClassicTextBox() { InitializeComponent(); |
