我正在使用ListView在我的应用程序中显示日志的内容。我想根据用户在ListView中当前选择的条目更改上下文MenuItem的图标和可见性。
以下是我填充ListView的方法:
// Create the collection view source.
m_CollectionViewSource = new CollectionViewSource();
m_CollectionViewSource.SortDescriptions.Add(new System.ComponentModel.SortDescription("Time", System.ComponentModel.ListSortDirection.Descending));
m_CollectionViewSource.Filter += new FilterEventHandler(LogEventCollectionViewSource_Filter);
// Create the binding.
Binding binding = new Binding();
binding.Source = m_CollectionViewSource;
this.LogEventListView.SetBinding(ListView.ItemsSourceProperty, binding);
m_CollectionViewSource.Source = LogEventManager.Instance.LogEventCollection;
这是我正在创建ListView控件的地方。
<ListView x:Name="LogEventListView"
Grid.Row="0"
Grid.Column="0"
SelectionMode="Single"
VirtualizingStackPanel.IsVirtualizing="True">
<ListView.ContextMenu>
<ContextMenu Opened="ContextMenu_Opened">
<MenuItem x:Name="ContextMenuViewDetails"
Header="View Details..."
ToolTip="Shows all of the data associated with the log event message."
Visibility="{Binding ElementName=LogEventListView, Path=SelectedItem, Converter={StaticResource NullToVisibilityConverter}}">
<MenuItem.Icon>
<Image MaxHeight="16" MaxWidth="16" Source="{Binding ElementName=LogEventListView, Path=SelectedItem.Category, Converter={StaticResource LogEventCategoryConverter}, ConverterParameter='Small'}" />
</MenuItem.Icon>
</MenuItem>
除了第一个菜单项的绑定外,一切正常。如果未选择某个项目,我希望第一个菜单项的可见性被折叠。我还希望上下文MenuItem图像与所选日志事件的上下文匹配。我已经验证我的IValueConverter类的两个版本都正常工作。出于某种原因,第一个MenuItem始终可见,并且从不具有图标。有人能告诉我我在忽视什么吗?
更新 绑定到.NET 3.5中的MenuItem的Icon属性似乎存在一些实际问题,如here和here所示。我正在使用IValueConverter来选择合适的图像,这使问题更加复杂。虽然我更喜欢不解决方案,但现在我决定在ContextMenu的开幕活动中设置代码隐藏的值。
ContextMenu menu = sender as ContextMenu;
if (menu != null)
{
MenuItem item = LogicalTreeHelper.FindLogicalNode(menu, "ContextMenuViewDetails") as MenuItem;
if (item != null)
{
if (this.LogEventListView.SelectedItems.Count <= 0)
item.Visibility = Visibility.Collapsed;
else
item.Visibility = Visibility.Visible;
}
}
}
答案 0 :(得分:0)
<Image MaxHeight="16" MaxWidth="16"
Source="{Binding ElementName=LogEventListView,
Path=SelectedItem.Category,
Converter={StaticResource LogEventCategoryConverter}, ConverterParameter='Small'}"/>
我似乎找不到一个名为类别的附加属性 SelectedItem ??
答案 1 :(得分:0)
编辑后,这实际上可能是所描述问题的一个示例here
下面的原始答案,但可能无效
如果没有看到转换器,我无法评论为什么它可能无法正常工作,但您可以尝试使用样式来实现相同的效果:
<ContextMenu.Style>
<Style>
<Style.Triggers>
<DataTrigger Binding="{Binding SelectedItem, ElementName=LogEventListView} Value="{x:Null}">
<Setter Property="Visibility" Value="Collapsed"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ContextMenu.Style>