わかりました。これは簡単な質問だと思いましたが、どうやら混乱してしまいました。
RibbonComboBoxの高さを設定しようとすると、実際のサイズではなく、周囲のボックスだけが移動します。
これが私のXAMLです。
<ribbon:RibbonComboBox
DisplayMemberPath="CompanyCode"
Height="22"
Margin="0,0,0,-30"
VerticalAlignment="Bottom"
Width="102">
<ribbon:RibbonGallery SelectedValue="{Binding Path=Companies.SelectedItem,
ValidatesOnDataErrors=true,
NotifyOnValidationError=true }">
<ribbon:RibbonGalleryCategory ItemsSource="{Binding Path=Companies.Items,
NotifyOnValidationError=true,
ValidatesOnDataErrors=true}" />
</ribbon:RibbonGallery>
</ribbon:RibbonComboBox>
高さを200または1に変更できますが、高さが変更されることはありません。
私は何が間違っているのですか?
ありがとう、Eroc