From fe7108fd24e8dd403b4efb3557d32013ce1f9a06 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Mon, 16 Jun 2025 07:21:31 +0300 Subject: Production data graph. --- .../Visual_Studio/Tango.Touch/Controls/TouchMultiLineTextBox.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchMultiLineTextBox.cs') diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchMultiLineTextBox.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchMultiLineTextBox.cs index f3c554a8c..70e9608bd 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/TouchMultiLineTextBox.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchMultiLineTextBox.cs @@ -18,6 +18,13 @@ namespace Tango.Touch.Controls public static readonly DependencyProperty CornerRadiusProperty = DependencyProperty.Register("CornerRadius", typeof(CornerRadius), typeof(TouchMultiLineTextBox), new PropertyMetadata(new CornerRadius(0))); + public FrameworkElement KeyboardContainer + { + get { return (FrameworkElement)GetValue(KeyboardContainerProperty); } + set { SetValue(KeyboardContainerProperty, value); } + } + public static readonly DependencyProperty KeyboardContainerProperty = + DependencyProperty.Register("KeyboardContainer", typeof(FrameworkElement), typeof(FrameworkElement), new PropertyMetadata(null)); static TouchMultiLineTextBox() -- cgit v1.3.1