-
-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ComboBox Popup MinWidth too large #1151
Comments
Uh, i guess I forgot to mention that in the changelog. The instance property was converted to an attached property |
That looks strange. |
What informations do you need? |
The XAML code you used for the problematic ribbon button in your screenshot or a small project containing everything needed to reproduce the issue. |
This is the code of my <fluent:RibbonTabItem Header="{DynamicResource Lang.Ribbon.Home}" Name="homeRibbon" ReduceOrder="GroupBox1,GroupBox1,GroupBox1,
GroupBox2,GroupBox2,GroupBox2,
GroupBox3,GroupBox3,GroupBox3,
GroupBox4,GroupBox4,GroupBox4,
Miscellaneous,Miscellaneous,Miscellaneous">
<fluent:RibbonGroupBox Name="Miscellaneous" Header="{DynamicResource Lang.Miscellaneous}" IsLauncherVisible="True" LauncherCommand="{Binding ShowMiscellaneousPanelCommand}">
<!-- GroupBox1-->
<!-- GroupBox2-->
<!-- GroupBox3-->
<!-- GroupBox4-->
<!-- Miscellaneous -->
<fluent:RibbonGroupBox Name="Miscellaneous" Header="{DynamicResource Lang.Miscellaneous}" IsLauncherVisible="True" LauncherCommand="{Binding ShowMiscellaneousPanelCommand}">
<fluent:ComboBox fluent:InputControlProperties.InputWidth="110" Header="{DynamicResource Lang.Purge}" ItemsSource="{Binding VM.PurgeMode}" SelectedItem="{Binding VM.PurgeMode}" IsEditable="False" ItemTemplate="{StaticResource TranslatedEnumComboBox}" SizeDefinition="Large"/>
<fluent:ComboBox fluent:InputControlProperties.InputWidth="110" IsEditable="false" Header="{DynamicResource Lang.Speed}" ItemsSource="{Binding VM.PrinterSpeeds}" SelectedItem="{Binding VM.PrinterSpeed}" ItemTemplate="{StaticResource TranslatedEnumComboBox}" SizeDefinition="Large" />
</fluent:RibbonGroupBox>
</fluent:RibbonTabItem> |
Upgrading from v9.0.4 to v10.0.0 the property
InputWidth
is missing fromFluent.Spinner
andFluent.ComboBox
.XLS0413 The property 'InputWidth' was not found in type 'Spinner'
XLS0413 The property 'InputWidth' was not found in type 'ComboBox'
I don't see anything about this break change in the changelog. I've missing somethings?
Thansk a lot!
Environment
The text was updated successfully, but these errors were encountered: