ux: using Grid instead of StackPanel to layout convertional commit change type

This commit is contained in:
leo 2024-10-18 16:33:13 +08:00
parent 72b46a6e16
commit d3bca20034
No known key found for this signature in database

View file

@ -59,10 +59,10 @@
SelectedItem="{Binding Type, Mode=TwoWay}"> SelectedItem="{Binding Type, Mode=TwoWay}">
<ComboBox.ItemTemplate> <ComboBox.ItemTemplate>
<DataTemplate x:DataType="{x:Type m:ConventionalCommitType}"> <DataTemplate x:DataType="{x:Type m:ConventionalCommitType}">
<StackPanel Orientation="Horizontal" Height="20" VerticalAlignment="Center"> <Grid Height="20" ColumnDefinitions="64,Auto" VerticalAlignment="Center">
<TextBlock Text="{Binding Type}"/> <TextBlock Grid.Column="0" Text="{Binding Type}"/>
<TextBlock Margin="6,0,0,0" Text="{Binding Description}" Foreground="{DynamicResource Brush.FG2}"/> <TextBlock Grid.Column="1" Text="{Binding Description}" Foreground="{DynamicResource Brush.FG2}"/>
</StackPanel> </Grid>
</DataTemplate> </DataTemplate>
</ComboBox.ItemTemplate> </ComboBox.ItemTemplate>
</ComboBox> </ComboBox>