12345678910111213141516171819202122232425 |
- <Window x:Class="ProgressObserver.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:converter="clr-namespace:ProgressObserver.Converters"
- Title="MainWindow" Height="350" Width="525"
- DataContext="{Binding Source={StaticResource Locator}, Path=Main}">
- <Window.Resources>
- <ResourceDictionary>
- <converter:LocalTimeConverter x:Key="localTime" />
- </ResourceDictionary>
- </Window.Resources>
- <Grid>
- <ItemsControl ItemsSource="{Binding Messages}">
- <ItemsControl.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding Recieved, Converter={StaticResource localTime}}" />
- <TextBlock Text=":" />
- <TextBlock Text="{Binding Message}" />
- </StackPanel>
- </DataTemplate>
- </ItemsControl.ItemTemplate>
- </ItemsControl>
- </Grid>
- </Window>
|