LogWindow.xaml 405 B

123456789
  1. <Window x:Class="BmffViewer.LogWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. DataContext="{Binding RelativeSource={RelativeSource Self}}"
  5. Title="Log" Height="300" Width="300">
  6. <Grid>
  7. <ListBox ItemsSource="{Binding LogTraceListener.Messages}"></ListBox>
  8. </Grid>
  9. </Window>