我在一个名为Downloads.XAML的文件中有一个ListBox,绑定到该ListBox的条目来自我的ViewModel中的绑定列表。我在另一个XAML控件中的ListBoxItem样式中定义了一些状态,这些状态需要根据绑定项上设置的属性来触发。我遇到的问题是我无法从ListBox获取ListBoxItem,因为.SelectedItem引用的是实际绑定的对象,而不是ListBox。我尝试过使用ListBox.ItemContainerGenerator,但这只在大约80%的时间内返回ListItem,另外20%的时间返回null,因此没有在相关的ListBoxItem上设置VisualState。
我也尝试过在XAML中通过数据触发器来设置状态,但同样,这并不是100%有效。有人知道如何轻松地从绑定的对象中获取ListBoxItem,以便在绑定对象上触发我所需的VisualState吗?
绑定到ListBox列表中的项目是从不同的页面添加的-下载页面此时不可见,我在想这就是为什么找不到ListBoxItems或状态不被触发的原因?
下面是样式中ListBoxItem控件模板的XAML:
<Style x:Key="PrimaryDownloadsListBoxItemStyle" TargetType="ListBoxItem">
<Setter Property="Padding" Value="3"/>
<Setter Property="HorizontalContentAlignment" Value="Left"/>
<Setter Property="VerticalContentAlignment" Value="Top"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="TabNavigation" Value="Local"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListBoxItem" >
<Grid Margin="0" Height="71">
<Grid.RowDefinitions>
<RowDefinition Height="5"/>
<RowDefinition Height="5"/>
<RowDefinition Height="52"/>
<RowDefinition Height="5"/>
<RowDefinition Height="5"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="5"/>
<ColumnDefinition Width="90"/>
<ColumnDefinition Width="10"/>
<ColumnDefinition Width="10"/>
<ColumnDefinition Width="184"/>
<ColumnDefinition Width="116"/>
<ColumnDefinition Width="220"/>
<ColumnDefinition Width="67"/>
<ColumnDefinition Width="10"/>
</Grid.ColumnDefinitions>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal"/>
<VisualState x:Name="MouseOver"/>
<VisualState x:Name="Disabled"/>
</VisualStateGroup>
<VisualStateGroup x:Name="SelectionStates">
<VisualState x:Name="Unselected"/>
<VisualState x:Name="Selected">
<Storyboard>
<ColorAnimation Duration="0" To="#FF191919" Storyboard.TargetProperty="(Shape.Fill).(SolidColorBrush.Color)" Storyboard.TargetName="fillColor2" d:IsOptimized="True"/>
</Storyboard>
</VisualState>
<VisualState x:Name="SelectedUnfocused"/>
</VisualStateGroup>
<VisualStateGroup x:Name="FocusStates">
<VisualState x:Name="Focused"/>
<VisualState x:Name="Unfocused"/>
</VisualStateGroup>
<VisualStateGroup x:Name="LayoutStates">
<VisualState x:Name="AfterLoaded"/>
<VisualState x:Name="BeforeLoaded"/>
<VisualState x:Name="BeforeUnloaded"/>
</VisualStateGroup>
<VisualStateGroup x:Name="DownloadStates">
<VisualState x:Name="DownloadInProgress">
...
下面是我在后台代码中用来尝试设置状态的代码:
private void SetDownloadState(object[] itemDetails)
{
DispatcherHelper.CheckBeginInvokeOnUI(() =>
{
var item = itemDetails;
if (item != null)
{
string state = (string)item[0];
VideoItem vi = (VideoItem)item[1];
if (DownloadsListBox.ItemContainerGenerator != null)
{
DownloadsListBox.ScrollIntoView(DownloadsListBox.Items[0]);
foreach (var videoitem in
DownloadsListBox.Items.Where(videoitem => videoitem == vi))
{
DownloadsListBox.ScrollIntoView(videoitem);
}
var listBoxItem = DownloadsListBox.ItemContainerGenerator.ContainerFromItem(vi) as ListBoxItem;
//show the status state on this item.
if (listBoxItem != null)
{
if (state.ToUpper() == "DOWNLOADING")
{
bool success = VisualStateManager.GoToState(listBoxItem, "DownloadInProgress", true);
if (!success)
{
Debug.WriteLine("Error changing state in DownloadsView to Downloading!");
}
}
else if (state.ToUpper() == "COMPLETED")
{
bool success = VisualStateManager.GoToState(listBoxItem, "DownloadComplete",
true);
if (!success)
{
Debug.WriteLine("Error changing state in DownloadsView to completed!");
}
}
}
else
{
Debug.WriteLine("listBoxItem is null");
}
}
}
});
}
我确实尝试过在样式中将触发器添加到ContentTemplate中,但并不是100%有效:
<i:Interaction.Triggers>
<ei:DataTrigger Binding="{Binding DownloadState}" Value="Downloading">
<ei:GoToStateAction StateName="Focused"/>
<ei:GoToStateAction StateName="DownloadInProgress"/>
</ei:DataTrigger>
<ei:DataTrigger Binding="{Binding DownloadState}" Value="DownloadComplete">
<ei:GoToStateAction StateName="Focused"/>
<ei:GoToStateAction StateName="DownloadComplete"/>
</ei:DataTrigger>
</i:Interaction.Triggers>
发布于 2010-10-19 08:30:16
我通过在视图模型中设置一个属性来获取ListBoxItem,该属性指向ContentTemplate中网格的templatedParent,然后引用listboxitem:
"{Binding RelativeSource={RelativeSource TemplatedParent}}"
希望这能在某个时候对某人有所帮助:)
https://stackoverflow.com/questions/3923672
复制