diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-07-17 15:17:34 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-07-17 15:17:34 +0300 |
| commit | 7dcc2ebea136baff65860d0c3c59042fcd4fc6e3 (patch) | |
| tree | 25d8b7e7d1bcdfc86dfbce5df2a6c9db857dacc6 /Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs | |
| parent | 0ebf1c2723114689200d6d01e7d0bbb9f194119a (diff) | |
| download | Tango-7dcc2ebea136baff65860d0c3c59042fcd4fc6e3.tar.gz Tango-7dcc2ebea136baff65860d0c3c59042fcd4fc6e3.zip | |
PPC. GUI changes
Related Work Items: #6699
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs index dbda2320e..15c516124 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs @@ -73,7 +73,13 @@ namespace Tango.Touch.Controls public static readonly DependencyProperty DisplayWatermarkHintProperty = DependencyProperty.Register("DisplayWatermarkHint", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false)); - + public bool HideUnderline + { + get { return (bool)GetValue(HideUnderlineProperty); } + set { SetValue(HideUnderlineProperty, value); } + } + public static readonly DependencyProperty HideUnderlineProperty = + DependencyProperty.Register("HideUnderline", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false)); public String StringFormat { |
