-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProcessOutput.xaml
More file actions
21 lines (21 loc) · 1.29 KB
/
Copy pathProcessOutput.xaml
File metadata and controls
21 lines (21 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Window x:Class="TermExample.ProcessOutput"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:TermExample" xmlns:term="clr-namespace:EasyWindowsTerminalControl;assembly=EasyWindowsTerminalControl"
mc:Ignorable="d"
Background="{Binding BackroundColorBrush}"
Title="ProcessOutput" Height="650" Width="1200">
<Grid>
<term:EasyTerminalControl x:Name="basicTermControl" IsReadOnly="True" IsCursorVisible="False" Theme="{Binding Theme}"
StartupCommandLine="{Binding StartupCommand}"
FontFamilyWhenSettingTheme="Consolas" Margin="0,0,0,30" Win32InputMode="False" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Bottom">
<Button Content="Highlight File" Click="SelectFileClicked" Margin="5" />
<Button Content="Close Process STDIN" Click="CloseSTDINClicked" Margin="5" />
<Button Content="Clear Soft" Click="ClearConsoleSoft" Margin="5" />
<Button Content="Clear Hard" Click="ClearConsoleHard" Margin="5" />
</StackPanel>
</Grid>
</Window>