diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-27 23:49:32 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-27 23:49:32 +0200 |
| commit | 5f45be5bae69be7b7e916f02fb6d69b2db60e529 (patch) | |
| tree | 9aff84020b5eca21df7bf0a7b5439e073969cec1 /Software/Visual_Studio/Tango.Console/ConsoleControl.xaml | |
| parent | 03970962af1bfbfc5c13109c3f0a465cf9a1dc29 (diff) | |
| download | Tango-5f45be5bae69be7b7e916f02fb6d69b2db60e529.tar.gz Tango-5f45be5bae69be7b7e916f02fb6d69b2db60e529.zip | |
Implemented Generic messages support!
Implemented custom external bridge request handlers.
Diffstat (limited to 'Software/Visual_Studio/Tango.Console/ConsoleControl.xaml')
| -rw-r--r-- | Software/Visual_Studio/Tango.Console/ConsoleControl.xaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.Console/ConsoleControl.xaml b/Software/Visual_Studio/Tango.Console/ConsoleControl.xaml index fba10403a..6b0aaf8b6 100644 --- a/Software/Visual_Studio/Tango.Console/ConsoleControl.xaml +++ b/Software/Visual_Studio/Tango.Console/ConsoleControl.xaml @@ -35,11 +35,11 @@ <DataTemplate> <StackPanel Margin="0 0 0 10"> <StackPanel Orientation="Horizontal"> - <TextBlock> + <TextBlock VerticalAlignment="Center"> <Run Text="{Binding WorkingFolder}"></Run><Run Text=">"></Run> </TextBlock> - <StackPanel Margin="5 0 0 0" Orientation="Horizontal"> - <TextBox IsReadOnly="True" Cursor="Arrow" AcceptsReturn="True" Background="Transparent" BorderThickness="0" Foreground="{Binding ElementName=control,Path=Foreground}" CaretBrush="{Binding ElementName=control,Path=CaretBrush}" SelectionBrush="{Binding ElementName=control,Path=SelectionBrush}" Text="{Binding CommandText}"></TextBox> + <StackPanel VerticalAlignment="Center" Margin="5 0 0 0" Orientation="Horizontal"> + <TextBox VerticalAlignment="Center" IsReadOnly="True" Cursor="Arrow" AcceptsReturn="True" Background="Transparent" BorderThickness="0" Foreground="{Binding ElementName=control,Path=Foreground}" CaretBrush="{Binding ElementName=control,Path=CaretBrush}" SelectionBrush="{Binding ElementName=control,Path=SelectionBrush}" Text="{Binding CommandText}"></TextBox> </StackPanel> </StackPanel> |
