2024-05-23 21:35:02 -04:00
|
|
|
<UserControl x:Class="MPF.UI.UserControls.LogOutput"
|
2021-02-28 02:28:53 -08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
2018-07-14 00:48:35 +02:00
|
|
|
<Grid>
|
2021-02-28 10:28:31 -08:00
|
|
|
<StackPanel Orientation="Vertical">
|
2021-02-28 10:55:49 -08:00
|
|
|
<Border Height="180" Background="White" BorderBrush="Gainsboro" BorderThickness="1" Margin="10">
|
2021-08-04 14:17:53 -07:00
|
|
|
<ScrollViewer Name="OutputViewer" Template="{DynamicResource CustomScrollViewerControlStyle}">
|
|
|
|
|
<RichTextBox Name="Output" FontFamily="Consolas" Background="#FF202020" IsReadOnly="true" />
|
2021-02-28 10:28:31 -08:00
|
|
|
</ScrollViewer>
|
|
|
|
|
</Border>
|
2018-07-14 00:48:35 +02:00
|
|
|
|
2021-02-28 10:55:49 -08:00
|
|
|
<GroupBox Grid.Row="2" Margin="5,5,5,5" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
2024-12-22 00:51:56 +09:00
|
|
|
<GroupBox.Template>
|
|
|
|
|
<ControlTemplate TargetType="GroupBox">
|
|
|
|
|
<Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="5">
|
|
|
|
|
<ContentPresenter Content="{TemplateBinding Content}" Margin="{TemplateBinding Padding}" />
|
|
|
|
|
</Border>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</GroupBox.Template>
|
|
|
|
|
<UniformGrid Columns="4" Margin="5,5,5,5" Height="27">
|
2021-03-08 14:56:26 -08:00
|
|
|
<Label/> <!-- Empty label for padding -->
|
2025-10-17 00:47:36 +09:00
|
|
|
<Button Name="ClearButton" Height="25" Width="80" Content="{DynamicResource ClearButtonString}" Style="{DynamicResource CustomButtonStyle}" />
|
|
|
|
|
<Button Name="SaveButton" Height="25" Width="80" Content="{DynamicResource SaveButtonString}" Style="{DynamicResource CustomButtonStyle}" />
|
2021-03-08 14:56:26 -08:00
|
|
|
<Label/> <!-- Empty label for padding -->
|
2021-03-01 21:09:26 -08:00
|
|
|
</UniformGrid>
|
2021-02-28 10:55:49 -08:00
|
|
|
</GroupBox>
|
2021-02-28 10:28:31 -08:00
|
|
|
</StackPanel>
|
2018-07-14 00:48:35 +02:00
|
|
|
</Grid>
|
2021-02-28 02:28:53 -08:00
|
|
|
</UserControl>
|