Created
January 2, 2018 15:26
-
-
Save kevingosse/84cc9e2a75edf85e5b00e2ceb51c3671 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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