Unterschriftenfunktionsprototyp soweit fertig Alle Dateien werden von unserem Server bereitgestellt Code-Optimierungen Aufklappbare Elemente haben jetzt ein Pfeilicon Fat-Client: SettingsKeys eingeführt Aufgaben nur noch im Hilfeplan anlegbar Debug-Ausgabe
22 lines
1.0 KiB
XML
22 lines
1.0 KiB
XML
<Window x:Class="BeWo.View.Detail.DebugMessageLogView"
|
|
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"
|
|
xmlns:local="clr-namespace:BeWo.View.Detail"
|
|
Title="Debug Log" mc:Ignorable="d"
|
|
d:DesignHeight="500" d:DesignWidth="1000">
|
|
|
|
<Grid>
|
|
<ListView x:Name="DebugListView" ItemsSource="{Binding DebugMessageList}" Background="Gainsboro">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate DataType="local:DebugWindowMessage">
|
|
<Grid>
|
|
<TextBlock FontSize="16" FontWeight="Bold" FontFamily="Consolas" Text="{Binding MessageText}" Foreground="{Binding TextColor}"></TextBlock>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</Grid>
|
|
</Window>
|