|
56 | 56 |
|
57 | 57 | <ItemsControl IsVisible="{Binding ControlParameters, Converter={x:Static c:ListConverters.IsNotNullOrEmpty}}"
|
58 | 58 | ItemsSource="{Binding ControlParameters, Mode=OneWay}">
|
59 |
| - <ItemsControl.Styles> |
60 |
| - <Style Selector="ContentPresenter"> |
61 |
| - <Setter Property="Margin" Value="0,1,0,1"/> |
62 |
| - </Style> |
63 |
| - </ItemsControl.Styles> |
64 |
| - |
65 | 59 | <ItemsControl.ItemsPanel>
|
66 | 60 | <ItemsPanelTemplate>
|
67 | 61 | <StackPanel Orientation="Vertical"/>
|
|
70 | 64 |
|
71 | 65 | <ItemsControl.DataTemplates>
|
72 | 66 | <DataTemplate DataType="vm:CustomActionControlTextBox">
|
73 |
| - <Grid ColumnDefinitions="150,*"> |
| 67 | + <Grid Height="32" ColumnDefinitions="150,*"> |
74 | 68 | <TextBlock Grid.Column="0"
|
75 | 69 | Text="{Binding Label}"
|
76 | 70 | HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
85 | 79 | </DataTemplate>
|
86 | 80 |
|
87 | 81 | <DataTemplate DataType="vm:CustomActionControlCheckBox">
|
88 |
| - <Grid ColumnDefinitions="150,*"> |
| 82 | + <Grid Height="32" ColumnDefinitions="150,*"> |
89 | 83 | <CheckBox Grid.Column="1"
|
90 | 84 | Content="{Binding Label}"
|
91 | 85 | ToolTip.Tip="{Binding ToolTip, Mode=OneWay}"
|
|
94 | 88 | </DataTemplate>
|
95 | 89 |
|
96 | 90 | <DataTemplate DataType="vm:CustomActionControlPathSelector">
|
97 |
| - <Grid ColumnDefinitions="150,*"> |
| 91 | + <Grid Height="32" ColumnDefinitions="150,*"> |
98 | 92 | <TextBlock Grid.Column="0"
|
99 | 93 | Text="{Binding Label}"
|
100 | 94 | HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
0 commit comments