使用以下代码,字体的下拉列表在屏幕外运行。设置ScrollViewer
并没有显示滚动条。第二个问题是我可以在下拉菜单中进行鼠标移动,但不能使用鼠标滚轮进行鼠标滚动。
<RibbonComboBox
xmlns:ComponentModel="clr-namespace:System.ComponentModel;assembly=WindowsBase"
ItemTemplate="{DynamicResource FontTemplate}"
ScrollViewer.VerticalScrollBarVisibility="Visible"
ScrollViewer.HorizontalScrollBarVisibility="Visible">
<RibbonComboBox.Resources>
<CollectionViewSource x:Key="myFonts" Source="{Binding Source={x:Static Fonts.SystemFontFamilies}}">
<CollectionViewSource.SortDescriptions>
<ComponentModel:SortDescription PropertyName="Source" />
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
<Style x:Key="FontStyle">
<Setter Property="Control.FontFamily" Value="{Binding Source}" />
<Setter Property="Control.FontSize" Value="16" />
</Style>
<DataTemplate x:Key="FontTemplate">
<StackPanel VirtualizingStackPanel.IsVirtualizing="False">
<TextBlock Style="{StaticResource FontStyle}"
Text="{Binding Source}"
ToolTip="{Binding Source}" />
</StackPanel>
</DataTemplate>
</RibbonComboBox.Resources>
<RibbonComboBox.ItemsSource>
<Binding Source="{StaticResource myFonts}"/>
</RibbonComboBox.ItemsSource>
</RibbonComboBox>
答案 0 :(得分:0)
回答我自己的问题:这似乎或多或少地满足了我的要求。
shouldComponentUpdate(nextProps, nextState) {
console.log(this.state); // how can this be old state?
}