- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何按显示的、转换的值而不是绑定(bind)的源属性值对 WPF DataGridTextColumn 进行排序?现在它按行 View 模型中的整数值排序,而不是显示转换器返回的文本。我使用 MVVM。
这是一个请求的例子。然而,这是一般性问题。我可以将 MmsClass.Name 放在代表该行的类中。但我需要在所有地方进行适当的排序,而不仅仅是这里。
一行的类:
public class MaintenanceDataItem
{
public MaintenanceDataItem(int classId, Type objectType, object value, IEnumerable<MmsData> rows)
{
ClassId = classId;
TypeOfObject = objectType;
Value = value;
ObjectIds = new List<int>();
MmsDataRows = rows;
}
public int ClassId { get; private set; }
// rest of the properrties omitted
}
转换器:
public class MmsClassToNameConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
MmsClass mmsClass;
if (MmsClasses.Instance.TryGetValue((int) value, out mmsClass))
{
return mmsClass.Name;
}
return value.ToString();
}
public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
return value.Equals(true) ? parameter : Binding.DoNothing;
}
}
xaml 中的列:
<DataGridTextColumn Header="{StaticResource ResourceKey=MmsStrCondClass}" Binding="{Binding ClassId, Converter={StaticResource mmsclasstonameconverter}}" Width="*">
<DataGridTextColumn.ElementStyle>
<Style TargetType="{x:Type TextBlock}"
BasedOn="{StaticResource {x:Type TextBlock}}">
<Setter Property="TextWrapping" Value="NoWrap" />
<Setter Property="TextTrimming" Value="CharacterEllipsis"/>
</Style>
</DataGridTextColumn.ElementStyle>
</DataGridTextColumn>
我真的以为默认排序会显示值。如果这不容易解决,那么使用转换器对于 datagridcolumn 就没有多大意义。
最佳答案
不幸的是,这不是一项微不足道的任务。正如@Maverik 正确指出的那样,DataGrid
对基础数据进行排序,而不是转换器吐出的内容。为此,您需要自己排序
。首先创建一个类,其中包含一个属性以使用您的自定义排序器,另一个类用于定义要在给定列上使用的排序器:
public static ICustomSorter GetCustomSorter(DependencyObject obj)
{
return (ICustomSorter)obj.GetValue(CustomSorterProperty);
}
public static void SetCustomSorter(DependencyObject obj, ICustomSorter value)
{
obj.SetValue(CustomSorterProperty, value);
}
// Using a DependencyProperty as the backing store for CustomSorter. This enables animation, styling, binding, etc...
public static readonly DependencyProperty CustomSorterProperty =
DependencyProperty.RegisterAttached("CustomSorter", typeof(ICustomSorter), typeof(CustomSortBehavior), new PropertyMetadata(null));
public static bool GetAllowCustomSort(DependencyObject obj)
{
return (bool)obj.GetValue(AllowCustomSortProperty);
}
public static void SetAllowCustomSort(DependencyObject obj, bool value)
{
obj.SetValue(AllowCustomSortProperty, value);
}
// Using a DependencyProperty as the backing store for AllowCustomSort. This enables animation, styling, binding, etc...
public static readonly DependencyProperty AllowCustomSortProperty =
DependencyProperty.RegisterAttached("AllowCustomSort", typeof(bool), typeof(CustomSortBehavior), new PropertyMetadata(false, AllowCustomSortChanged));
ICustomSorter
是一个非常简单的接口(interface):
public interface ICustomSorter : IComparer
{
ListSortDirection SortDirection { get; set; }
string SortMemberPath { get; set; }
}
现在您需要从“AllowCustomSort”实现自定义排序:
private static void AllowCustomSortChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
DataGrid control = d as DataGrid;
{
var oldAllow = (bool)e.OldValue;
var newAllow = (bool)e.NewValue;
if (!oldAllow && newAllow)
{
control.Sorting += HandleCustomSorting;
}
else
{
control.Sorting -= HandleCustomSorting;
}
}
}
private static void HandleCustomSorting(object sender, DataGridSortingEventArgs e)
{
//Check if we should even be using custom sorting
DataGrid dataGrid = sender as DataGrid;
if (dataGrid != null && GetAllowCustomSort(dataGrid))
{
//Make sure we have a source we can sort
ListCollectionView itemsSource = dataGrid.ItemsSource as ListCollectionView;
if (itemsSource != null)
{
ICustomSorter columnSorter = GetCustomSorter(e.Column);
//Only do our own sort if a sorter was defined
if (columnSorter != null)
{
ListSortDirection nextSortDirection = e.Column.SortDirection == ListSortDirection.Ascending ?
ListSortDirection.Descending :
ListSortDirection.Ascending;
e.Column.SortDirection = columnSorter.SortDirection = nextSortDirection;
columnSorter.SortMemberPath = e.Column.SortMemberPath;
itemsSource.CustomSort = columnSorter;
//We've handled the sort, don't let the DataGrid mess with us
e.Handled = true;
}
}
}
}
这只是连接 Sorting
事件,然后通过调用提供的 ICustomSorter
对集合进行排序来处理它。
在您的 XAML 中,您创建一个已实现的 ICustomSorter
的实例并使用附加属性,如下所示:
<DataGridTextColumn Header="Column1" Binding="{Binding Column1, Converter={StaticResource Column1Converter}}" IsReadOnly="True"
util:CustomSortBehavior.CustomSorter="{StaticResource Column1Comparer}"/>
这很痛苦,您必须对所有转换后的值进行自定义排序,但它确实允许您在 DataGrid
中执行此操作。
关于wpf - 如何按显示的转换值而不是绑定(bind)的源属性值对 DataGridTextColumn 进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39984062/
我正在尝试提供一个行为类似于 DataGridTextColumn 的 DataGrid 列,但在编辑模式下有一个附加按钮。我查看了 DataGridTemplateColumn,但似乎更容易将 Da
这可能(希望)有一个微不足道或非常简单的答案。 假设我想要为我的 DataGrid 自定义标题.我可以使用 DataTemplate像这样:
有没有办法将工具提示添加到 DataGridColumn 标题并仍然保留排序功能。下面的代码不起作用(它不显示工具提示) 当我使用下面的代码时
我有几个数字列,希望它们右对齐。这是一个有点人为的例子来说明我的问题:
我有一个 DataGridTextColumn ElementStyle,如下所示:
也许,我想,事情太简单了。我有一个数据网格,从后面的代码动态添加列。这行得通。然后我有带有整数值的列,我希望在列中看到右对齐,但它失败了。我的代码是: public List> Integer
我有一个包含 3 个 DataGridTextColumns 的 DataGrid。我希望第一个占 40%,另外两个占 30%,基本上我需要它们填满整个 DataGrid。
我已经搜索并尝试了许多方法来格式化出生日期列,不仅按月份和日期,还考虑到年份。 我不敢相信这这么难做到。 我创建了几个类型转换器,它们将字符串“MM/dd/yyyy”转换为日期时间,尝试转换为不带“/
我有这个 WPF DataGrid:
首先,我使用 WPF 和 DataGrid,因为我想要列标题。但是,如果有办法做到这一点并且仍然有列标题,我不会接受这个解决方案。 现在,我进行了一些广泛的搜索并尝试了通过谷歌搜索找到的各种解决方案,
为什么这样做...
如何向 DataGridTextColumn 添加边距或填充? 最佳答案 没有示例代码的答案不是很有帮助。用这个:
如果我创建到 IsReadOnly 的绑定(bind)DataGridTextColumn 的属性(property),它没有实现。如果我通过标记设置它,它可以工作。 IsReferenceI
我目前有一个绑定(bind)到 Person 对象的 DataGrid: ... 当用户编辑网格并添加新用
我正在使用 WPFtoolkit DataGrid ,我必须将文本包装在 DataGridTextColumn 中或我必须将 ToolTip 添加到文本列。我已经在网上搜索过,但找不到合适的解决方案。
我尝试使用以下代码为 DataGridTextColumn 创建样式 ... 但是,Visual Studio 2010 用蓝线突出显示 {x:Type DataGridTe
我正在使用 DataTrigger 将空单元格替换为“-”文本。我的代码:
我正在尝试以编程方式添加 DataGridTextColumn,并设置一些属性以在单元格中显示文本。我不想使用 TemplateColumn,因为它需要双击才能进入编辑模式。我找不到可以设置文本对齐方
我正在使用 DataTrigger 将空单元格替换为“-”文本。我的代码:
我尝试做的是创建一个 Style 以在 Datagrid 中的所有 DataGridTextColumns 上应用 WordWrap,而不是像这样明确设置它。
我是一名优秀的程序员,十分优秀!