Ok, j'aurais pensé que c'était une question simple, mais apparemment, il m'a confondu.WPF RibbonComboBox Taille
Lorsque j'essaie de définir la hauteur de mon RibbonComboBox, la taille réelle de celui-ci ne bouge pas, juste la zone qui l'entoure.
Voici mon 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>
je peux changer la hauteur à 200 ou 1, mais la hauteur ne change jamais.
Qu'est-ce que je fais mal?
Merci, Eroc
Vous devez aussi faire la même chose avec l'un de la grille (au moins avec les commandes de System.Windows.Controls.Ribbon de Microsoft). –