mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
ux: using Grid instead of StackPanel to layout convertional commit change type
This commit is contained in:
parent
72b46a6e16
commit
d3bca20034
1 changed files with 4 additions and 4 deletions
|
@ -59,10 +59,10 @@
|
|||
SelectedItem="{Binding Type, Mode=TwoWay}">
|
||||
<ComboBox.ItemTemplate>
|
||||
<DataTemplate x:DataType="{x:Type m:ConventionalCommitType}">
|
||||
<StackPanel Orientation="Horizontal" Height="20" VerticalAlignment="Center">
|
||||
<TextBlock Text="{Binding Type}"/>
|
||||
<TextBlock Margin="6,0,0,0" Text="{Binding Description}" Foreground="{DynamicResource Brush.FG2}"/>
|
||||
</StackPanel>
|
||||
<Grid Height="20" ColumnDefinitions="64,Auto" VerticalAlignment="Center">
|
||||
<TextBlock Grid.Column="0" Text="{Binding Type}"/>
|
||||
<TextBlock Grid.Column="1" Text="{Binding Description}" Foreground="{DynamicResource Brush.FG2}"/>
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
</ComboBox.ItemTemplate>
|
||||
</ComboBox>
|
||||
|
|
Loading…
Reference in a new issue