Browse Source

ProjectOptionPanel.xaml VerticalAlignment="Center" for ComboBoxes

pull/30/head
PeterForstmeier 13 years ago
parent
commit
0ca48c2698
  1. 4
      src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ProjectOptionPanel.xaml

4
src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/ProjectOptionPanel.xaml

@ -13,9 +13,9 @@ @@ -13,9 +13,9 @@
<DockPanel>
<StackPanel x:Name="PART_stackpanel" DockPanel.Dock="Top" Orientation="Horizontal">
<Label Content="{core:StringParse ${res:Dialog.ProjectOptions.Configuration}:}" Target="{Binding ElementName=PART_configuration}" />
<ComboBox Name="PART_configuration" Width="120" />
<ComboBox Name="PART_configuration" Width="120" VerticalAlignment="Center" />
<Label Content="{core:StringParse ${res:Dialog.ProjectOptions.Platform}:}" Target="{Binding ElementName=PART_platform}" />
<ComboBox Name="PART_platform" Width="120" />
<ComboBox Name="PART_platform" Width="120" VerticalAlignment="Center"/>
</StackPanel>
<Line x:Name="PART_headerline" X1="0" X2="1" Margin="0,4" StrokeThickness="3" Stroke="Gray" DockPanel.Dock="Top" Stretch="Fill"/>
<ContentPresenter Content="{TemplateBinding ContentControl.Content}"

Loading…
Cancel
Save