Mobilversion:
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
This commit is contained in:
21
BeWo/View/Detail/DebugMessageLogView.xaml
Normal file
21
BeWo/View/Detail/DebugMessageLogView.xaml
Normal file
@@ -0,0 +1,21 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user