2017-08-26 32 views
0

devexpress wpf toolsバージョン17.1を使用しています。私はアプリケーションでLight Grayテーマを使用しています。ここで は、ここでラジオボタンdev express WPFでラジオとそのコンテンツを整列する方法

  <RadioButton Content="Forms" 
         Grid.Row="0" 
         GroupName="ActionGroup"/> 
     <RadioButton Content="All Questions" 
         Grid.Row="1" 
         GroupName="ActionGroup"/> 

     <RadioButton Content="Current Question" 
         Grid.Row="2" 
         GroupName="ActionGroup"/> 

のための私のXAMLは、コンテンツがトップ整列される出力 enter image description here

であることが画像でセンタリングしたいです。これらのラジオボタンをdx:GroupFrameに配置しました。グループフレームヘッダーも同じ問題があり、ヘッダーは一揃えで停止します。

答えて

0

RadioButtonのVerticalContentAlignmentプロパティをCenterに設定しようとしましたか?この線に沿って

何か:

<RadioButton Content="Current Question" 
    Grid.Row="2" 
    VerticalContentAlignment="Center" 
    GroupName="ActionGroup"/> 
+0

は、verticalContentAlignment、マージン、パディングと試みたtextAlignmentの何も作業していません – GANI

関連する問題