我有一个很烦人的问题。我在 ScrollViewer 中有 ListBox。ListBox 充满了 RadioButton 控件。以下代码显示了它:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<ScrollViewer Grid.Row="0" VerticalScrollBarVisibility="Auto" CanContentScroll="False">
<ListBox Name="lbActiveProjects" Background="Transparent"
Style="{StaticResource RadioButtonList}" SelectedValuePath="Value.IsMainProject"
ItemTemplate="{StaticResource ResourceKey=radioButtonActiveProjectsListItem}"
ItemsSource="{Binding Path=Model.Worker.ProjectManager.Projects}"
SelectedValue="true" FontSize="{Binding Source={x:Static props:Settings.Default},
Path=SmallerFontSize}"
Grid.Row="0"
><!--ScrollViewer.VerticalScrollBarVisibility="Auto"-->
<i:Interaction.Triggers>
<i:EventTrigger EventName="PreviewMouseUp">
<cmd:EventToCommand Command="{Binding SelectionChangedCommand}"
CommandParameter="{Binding ElementName=lbActiveProjects, Path=SelectedItem.Value}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</ListBox>
</ScrollViewer>
.
.
.
</Grid>
现在,当我在 ListBox 上有足够的项目来显示滚动条时,我无法选择底部项目。每次我尝试这样做时 - ListBox 都会滚动到顶部和 SelectedItem.Value 内部,列表中没有最后一项,而是靠近顶部的一项(例如从底部算起的第三个或某事)。
有没有办法阻止它滚动到顶部(我不需要)或者至少迫使他在滚动之前选择合适的项目?
谢谢