|
58 | 58 | <controls:SortableGridViewColumn Header="{x:Static properties:Resources.Name}" SortBy="Name"> |
59 | 59 | <controls:SortableGridViewColumn.CellTemplate> |
60 | 60 | <DataTemplate DataType="{x:Type spyX:SearchResult}"> |
61 | | - <StackPanel Orientation="Horizontal"> |
| 61 | + <DockPanel> |
62 | 62 | <Image Height="16" Margin="0,0,4,0" Width="16" Source="{Binding Image}" /> |
63 | 63 | <TextBlock Text="{Binding Name}" ToolTip="{Binding ToolTip}" TextTrimming="CharacterEllipsis" /> |
64 | | - </StackPanel> |
| 64 | + </DockPanel> |
65 | 65 | </DataTemplate> |
66 | 66 | </controls:SortableGridViewColumn.CellTemplate> |
67 | 67 | </controls:SortableGridViewColumn> |
68 | 68 | <controls:SortableGridViewColumn Header="{x:Static properties:Resources.Location}" SortBy="Location"> |
69 | 69 | <controls:SortableGridViewColumn.CellTemplate> |
70 | 70 | <DataTemplate DataType="{x:Type spyX:SearchResult}"> |
71 | | - <StackPanel Orientation="Horizontal"> |
| 71 | + <DockPanel> |
72 | 72 | <Image Height="16" Margin="4,0,4,0" Width="16" Source="{Binding LocationImage}" /> |
73 | 73 | <TextBlock Text="{Binding Location}" ToolTip="{Binding Location}" TextTrimming="CharacterEllipsis" /> |
74 | | - </StackPanel> |
| 74 | + </DockPanel> |
75 | 75 | </DataTemplate> |
76 | 76 | </controls:SortableGridViewColumn.CellTemplate> |
77 | 77 | </controls:SortableGridViewColumn> |
78 | 78 | <controls:SortableGridViewColumn Header="{x:Static properties:Resources.Assembly}" SortBy="Assembly"> |
79 | 79 | <controls:SortableGridViewColumn.CellTemplate> |
80 | 80 | <DataTemplate DataType="{x:Type spyX:SearchResult}"> |
81 | | - <StackPanel Orientation="Horizontal"> |
| 81 | + <DockPanel> |
82 | 82 | <Image Height="16" Margin="4,0,4,0" Width="16" Source="{Binding AssemblyImage}" /> |
83 | 83 | <TextBlock Text="{Binding Assembly}" ToolTip="{Binding Assembly}" TextTrimming="CharacterEllipsis" /> |
84 | | - </StackPanel> |
| 84 | + </DockPanel> |
85 | 85 | </DataTemplate> |
86 | 86 | </controls:SortableGridViewColumn.CellTemplate> |
87 | 87 | </controls:SortableGridViewColumn> |
|
0 commit comments