Skip to content

Instantly share code, notes, and snippets.

@kevingosse
Created January 2, 2018 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevingosse/84cc9e2a75edf85e5b00e2ceb51c3671 to your computer and use it in GitHub Desktop.
Save kevingosse/84cc9e2a75edf85e5b00e2ceb51c3671 to your computer and use it in GitHub Desktop.
<ui:ToolWindowView
x:Class="WinDbgExt.History.HistoryControl"
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:ui="clr-namespace:DbgX.Interfaces.UI;assembly=DbgX.Interfaces"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
ui:ToolWindowView.TabTitle="History"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<ListBox x:Name="HistoryList" ItemsSource="{Binding Path=History}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Item1}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</ui:ToolWindowView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment