|
198 | 198 | <RowDefinition Height="Auto" /> |
199 | 199 | <RowDefinition Height="Auto" /> |
200 | 200 | <RowDefinition Height="Auto" /> |
| 201 | + <RowDefinition Height="Auto" /> |
201 | 202 | </Grid.RowDefinitions> |
202 | 203 | <Grid.ColumnDefinitions> |
203 | 204 | <ColumnDefinition Width="Auto" /> |
| 205 | + <ColumnDefinition /> |
204 | 206 | <ColumnDefinition Width="Auto" /> |
205 | 207 | </Grid.ColumnDefinitions> |
206 | 208 | <Label Margin="3" Content="Style:" /> |
207 | | - <ComboBox Margin="3" x:Name="CboStyle" SelectedValuePath="Content" Grid.Row="0" Grid.Column="1" IsReadOnly="True"> |
| 209 | + <ComboBox Margin="3" x:Name="CboStyle" SelectedValuePath="Content" Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" IsReadOnly="True"> |
208 | 210 | <ComboBoxItem Content="Metro" /> |
209 | 211 | <ComboBoxItem Content="Blend" /> |
210 | 212 | <ComboBoxItem Content="VS2010" /> |
|
222 | 224 | <ComboBoxItem Content="None" /> |
223 | 225 | </ComboBox> |
224 | 226 | <Label Margin="3" Grid.Row="1" Grid.Column="0" Content="Metro brush:" /> |
225 | | - <syncfusion:ColorPicker Margin="3" x:Name="CpMetroBrush" Grid.Row="1" Grid.Column="1" /> |
| 227 | + <syncfusion:ColorPicker Margin="3" x:Name="CpMetroBrush" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="2" /> |
226 | 228 | <Label Margin="3" Grid.Row="2" Grid.Column="0" Content="Border thickness:" /> |
227 | | - <syncfusion:IntegerTextBox Margin="3" x:Name="IntBorderThickness" Grid.Row="2" Grid.Column="1" MinValue="0"></syncfusion:IntegerTextBox> |
| 229 | + <syncfusion:IntegerTextBox Margin="3" x:Name="IntBorderThickness" Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="2" MinValue="0"></syncfusion:IntegerTextBox> |
228 | 230 | <Label Margin="3" Grid.Row="3" Grid.Column="0" Content="Window opacity:" /> |
229 | | - <Slider x:Name="SldOpacity" Margin="3" Grid.Row="3" Grid.Column="1" Minimum="30" Maximum="100" Width="150" ValueChanged="SldOpacity_OnValueChanged" /> |
| 231 | + <Slider x:Name="SldOpacity" Margin="3" Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" Minimum="30" Maximum="100" Width="180" ValueChanged="SldOpacity_OnValueChanged" /> |
230 | 232 | <Label Margin="3" Grid.Row="4" Grid.Column="0" Content="Resize border:" /> |
231 | | - <Slider x:Name="SldWindowResize" Margin="3" Grid.Row="4" Grid.Column="1" Minimum="2" Maximum="10" Width="150" ValueChanged="SldWindowResize_OnValueChanged" /> |
| 233 | + <Slider x:Name="SldWindowResize" Margin="3" Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="2" Minimum="2" Maximum="10" Width="180" ValueChanged="SldWindowResize_OnValueChanged" /> |
| 234 | + |
| 235 | + <Label Grid.Row="5" Grid.Column="0" Content="Warning level:" /> |
| 236 | + <syncfusion:IntegerTextBox x:Name="ItbWarningLevel" Grid.Row="5" Grid.Column="1" MinValue="1" MaxValue="99" /> |
| 237 | + <Label Grid.Row="5" Grid.Column="2" Content="%" /> |
232 | 238 | </Grid> |
233 | 239 | </GroupBox> |
234 | 240 | </Grid> |
|
0 commit comments