|
98 | 98 |
|
99 | 99 | <DataGrid.Columns> |
100 | 100 | <DataGridTextColumn Header="Project" x:Name="txtColumnTitle" CellStyle="{StaticResource NoFocusCellStyle}" Binding="{Binding Title}" ClipboardContentBinding="{x:Null}" IsReadOnly="True" Width="150"> |
101 | | - <DataGridTextColumn.HeaderTemplate> |
102 | | - <DataTemplate> |
103 | | - <TextBlock Text="Project" IsHitTestVisible="False" /> |
104 | | - </DataTemplate> |
105 | | - </DataGridTextColumn.HeaderTemplate> |
106 | 101 | </DataGridTextColumn> |
107 | 102 |
|
108 | 103 | <DataGridTextColumn Header="Version" Binding="{Binding Version}" ClipboardContentBinding="{x:Null}" IsReadOnly="True" Width="72"> |
109 | | - <DataGridTextColumn.HeaderTemplate> |
110 | | - <DataTemplate> |
111 | | - <TextBlock Text="Version" IsHitTestVisible="False" /> |
112 | | - </DataTemplate> |
113 | | - </DataGridTextColumn.HeaderTemplate> |
114 | 104 | <DataGridTextColumn.CellStyle> |
115 | 105 | <Style TargetType="{x:Type DataGridCell}"> |
116 | 106 | <Setter Property="Foreground" Value="{DynamicResource ThemeGridRedText}" /> |
|
152 | 142 | </DataGridTextColumn> |
153 | 143 | <!--CellStyle="{StaticResource NoFocusCellStyle"}--> |
154 | 144 | <DataGridTextColumn Header="Path" x:Name="txtColumnPath" Binding="{Binding Path}" ClipboardContentBinding="{x:Null}" IsReadOnly="True" Width="185"> |
155 | | - <DataGridTextColumn.HeaderTemplate> |
156 | | - <DataTemplate> |
157 | | - <TextBlock Text="Path" IsHitTestVisible="False" /> |
158 | | - </DataTemplate> |
159 | | - </DataGridTextColumn.HeaderTemplate> |
160 | 145 | <DataGridTextColumn.CellStyle> |
161 | 146 | <Style TargetType="{x:Type DataGridCell}"> |
162 | 147 | <Style.Triggers> |
|
173 | 158 | ClipboardContentBinding="{x:Null}" |
174 | 159 | IsReadOnly="True" |
175 | 160 | Width="120"> |
176 | | - <DataGridTextColumn.HeaderTemplate> |
177 | | - <DataTemplate> |
178 | | - <TextBlock Text="Modified" IsHitTestVisible="False" /> |
179 | | - </DataTemplate> |
180 | | - </DataGridTextColumn.HeaderTemplate> |
181 | 161 | <DataGridTextColumn.CellStyle> |
182 | 162 | <Style TargetType="DataGridCell"> |
183 | 163 | <Setter Property="FocusVisualStyle" Value="{x:Null}" /> |
|
193 | 173 | </DataGridTextColumn> |
194 | 174 |
|
195 | 175 | <DataGridTextColumn Header="Arguments" Binding="{Binding Arguments}" CellStyle="{StaticResource NoFocusCellStyle}" ClipboardContentBinding="{x:Null}" IsReadOnly="False" Width="100"> |
196 | | - <DataGridTextColumn.HeaderTemplate> |
197 | | - <DataTemplate> |
198 | | - <TextBlock Text="Arguments" IsHitTestVisible="False" /> |
199 | | - </DataTemplate> |
200 | | - </DataGridTextColumn.HeaderTemplate> |
201 | 176 | </DataGridTextColumn> |
202 | 177 | <DataGridTextColumn Header="Branch" x:Name="txtColumnGitBranch" Binding="{Binding GITBranch}" CellStyle="{StaticResource NoFocusCellStyle}" ClipboardContentBinding="{x:Null}" IsReadOnly="True" Width="60"> |
203 | | - <DataGridTextColumn.HeaderTemplate> |
204 | | - <DataTemplate> |
205 | | - <TextBlock Text="Branch" IsHitTestVisible="False" /> |
206 | | - </DataTemplate> |
207 | | - </DataGridTextColumn.HeaderTemplate> |
208 | 178 | </DataGridTextColumn> |
209 | 179 | <!--TODO platform as dropdown?--> |
210 | 180 | <!--<DataGridTextColumn CellStyle="{StaticResource NoFocusCellStyle}" Binding="{Binding TargetPlatform}" ClipboardContentBinding="{x:Null}" Header="Platform" IsReadOnly="True" Width="100"/>--> |
|
227 | 197 | </DataGridTemplateColumn> |
228 | 198 |
|
229 | 199 | <DataGridTextColumn Header="SRP" x:Name="txtColumnRenderPipeline" Binding="{Binding SRP}" CellStyle="{StaticResource NoFocusCellStyle}" ClipboardContentBinding="{x:Null}" IsReadOnly="True" Width="50"> |
230 | | - <DataGridTextColumn.HeaderTemplate> |
231 | | - <DataTemplate> |
232 | | - <TextBlock Text="SRP" IsHitTestVisible="False" /> |
233 | | - </DataTemplate> |
234 | | - </DataGridTextColumn.HeaderTemplate> |
235 | 200 | </DataGridTextColumn> |
236 | 201 | </DataGrid.Columns> |
237 | 202 |
|
|
403 | 368 | </DataGridTextColumn> |
404 | 369 |
|
405 | 370 | <DataGridTextColumn Binding="{Binding Version}" ClipboardContentBinding="{x:Null}" Header="Version" IsReadOnly="True" MinWidth="90"> |
406 | | - <DataGridTextColumn.HeaderTemplate> |
407 | | - <DataTemplate> |
408 | | - <TextBlock Text="Version" IsHitTestVisible="False" /> |
409 | | - </DataTemplate> |
410 | | - </DataGridTextColumn.HeaderTemplate> |
411 | 371 | <DataGridTextColumn.CellStyle> |
412 | 372 | <Style TargetType="{x:Type DataGridCell}"> |
413 | 373 | <Setter Property="BorderBrush" Value="Orange" /> |
|
0 commit comments