终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

67 líneas
2.7 KiB

  1. <UserControl
  2. x:Class="BPASmartClient.CustomResource.Pages.View.DebugLogView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:BPASmartClient.CustomResource.Pages.View"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:vm="clr-namespace:BPASmartClient.CustomResource.Pages.ViewModel"
  9. d:DesignHeight="450"
  10. d:DesignWidth="800"
  11. mc:Ignorable="d">
  12. <UserControl.DataContext>
  13. <vm:DebugLogViewModel />
  14. </UserControl.DataContext>
  15. <Grid>
  16. <ScrollViewer
  17. Margin="20"
  18. HorizontalScrollBarVisibility="Hidden"
  19. VerticalScrollBarVisibility="Auto">
  20. <ItemsControl ItemsSource="{Binding MessageModels}">
  21. <ItemsControl.ItemTemplate>
  22. <DataTemplate>
  23. <Grid>
  24. <!--<TextBlock
  25. FontFamily="黑体"
  26. FontSize="16"
  27. Foreground="{Binding Forground}"
  28. LineHeight="30"
  29. Text="{Binding LogInfo}"
  30. TextWrapping="Wrap">
  31. -->
  32. <!--<TextBlock.Effect>
  33. <DropShadowEffect
  34. Direction="0"
  35. Opacity="0.5"
  36. ShadowDepth="5"
  37. Color="#20aefe" />
  38. </TextBlock.Effect>-->
  39. <!--
  40. </TextBlock>-->
  41. <TextBlock
  42. FontFamily="黑体"
  43. FontSize="16"
  44. Foreground="{Binding Forground}"
  45. LineHeight="30"
  46. TextWrapping="Wrap">
  47. <TextBlock.Text>
  48. <MultiBinding StringFormat="{}【{0:yyyy-MM-dd HH:mm:ss:ff}】 :{1}">
  49. <Binding Path="LogTime" />
  50. <Binding Path="LogInfo" />
  51. </MultiBinding>
  52. </TextBlock.Text>
  53. </TextBlock>
  54. </Grid>
  55. </DataTemplate>
  56. </ItemsControl.ItemTemplate>
  57. </ItemsControl>
  58. </ScrollViewer>
  59. </Grid>
  60. </UserControl>