我正在尝试使用带有过滤器图标的 MVVM 构建工具栏。当您单击它时,您会导航到设置过滤器的位置,然后导航回来。如果过滤器对选定的项目处于活动状态,我希望工具栏图标现在是不同的图像。
但是绑定似乎不起作用。每当我将图标设置为“Filter.png”等文件中的图像字符串时,工具栏只会显示文本“FILTER”。当我将绑定到 FileImageSource 的值转换为错误时
那么我该如何正确地做到这一点呢?我已经尝试过使用转换器,但结果相同。我的代码是:
XAML:
<ContentPage.ToolbarItems>
<ToolbarItem Order="Primary" Icon="{Binding FilterIconActive}" Text="Filter" Priority="0" Command="{Binding FilterCommand}" />
</ContentPage.ToolbarItems>
我的视图模型:
private string _filterIcon;
public string FilterIcon
{
get => _filterIcon;
set => SetProperty(ref _filterIcon, value);
}
FilterIcon = _selectedFilter.Any() ? "FilterDone.png" : "Filter.png";
正如我已经说过的,将 itemtype 从 string 更改为 FileImageSource 因为 Icon 是 MenuItem.Icon 类型也不起作用。多谢你们