UCRunLog.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132
  1. <UserControl x:Class="MeterVision.UC.UCRunLog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:MeterVision.UC"
  7. mc:Ignorable="d"
  8. Background="White"
  9. d:DesignHeight="800" d:DesignWidth="400">
  10. <Grid x:Name="pnlLog">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*" />
  13. <RowDefinition Height="Auto" />
  14. </Grid.RowDefinitions>
  15. <Border Grid.Row="0">
  16. <RichTextBox x:Name="LogRichTextBox" BorderThickness="0" VerticalScrollBarVisibility="Auto"
  17. HorizontalScrollBarVisibility="Disabled" IsReadOnly="True" VerticalAlignment="Stretch"
  18. Margin="5 5 5 0" FontSize="14px" />
  19. </Border>
  20. <StackPanel x:Name="pnlImageCtl" Grid.Row="1" Orientation="Horizontal" Background="#666666" Margin="5" HorizontalAlignment="Center">
  21. <Button Content="↑" FontSize="20px" Width="30" Height="30" Click=" LogScrollTop_Click" Margin="20 5 20 5" Padding="0" Foreground="White" Background="#333333" />
  22. <!--<Button Content="⇕" FontSize="20px" Width="30" Height="30" Click="LogScrollMiddle_Click" Margin="0 5 10 5" Padding="0" Foreground="White" Background="#333333" />-->
  23. <Button Content="↓" FontSize="20px" Width="30" Height="30" Click="LogScrollBottom_Click" Margin="0 5 20 5" Padding="0" Foreground="White" Background="#333333" />
  24. <Button Content="📁" FontSize="20px" Width="30" Height="30" Click="AiLogSave_Click" Margin="0 5 10 5" Padding="0" Foreground="White" Background="#333333" />
  25. </StackPanel>
  26. </Grid>
  27. </UserControl>