几天来我一直在尝试格式化数据网格中的字段。我怎样才能简单地更改“期间”为访问的日期字段。在这种尝试中,我不断收到错误:

“{local:DateConverter}”值不是有效的MarkupExtension表达式。无法解析 namespace “clr-namespace:Yabba”中的“DateConverter”。 “DateConverter”必须是MarkupExtension的子类。

但是,我所有工作的示例都显示了DateConverter:IValueConverter。

我几乎只是想更改列以根据日期列出我想要的任何内容。但是无法获得任何一种示例/方法。

XAML

<Window Name="MainForm" x:Class="Yabba.MainWindow"
    xmlns:local="clr-namespace:Yabba"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="655.217" Width="887.851" Loaded="Window_Loaded">
<Window.Resources>
    <local:DateConverter x:Key="dateConverter"/>
</Window.Resources>
<Grid>
    <DataGrid Name="dataGrid1"  AutoGenerateColumns="False" PreviewKeyDown="dataGrid1_KeyDown" CanUserAddRows="false" SelectionUnit="FullRow" IsReadOnly="True" SelectionMode="Single" HorizontalAlignment="Left" VerticalAlignment="Top" Height="348" Width="753" SelectionChanged="dataGrid1_SelectionChanged" Margin="0,20,0,0" MouseDoubleClick="dataGrid1_MouseDoubleClick">
        <DataGrid.Columns>
            <DataGridTextColumn Header="Question" Binding="{Binding title}"></DataGridTextColumn>
            <DataGridTextColumn Header="Period" Binding="{Binding started, Converter={local:DateConverter}}"></DataGridTextColumn>
        </DataGrid.Columns>
    </DataGrid>
</Grid>

代码
namespace Yabba {
/// <summary>
[ValueConversion(typeof(DateTime), typeof(String))]
public class DateConverter : IValueConverter {
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
        DateTime date = (DateTime)value;
        return date.ToShortDateString();
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
        string strValue = value as string;
        DateTime resultDateTime;
        if (DateTime.TryParse(strValue, out resultDateTime)) {
            return resultDateTime;
        }
        return DependencyProperty.UnsetValue;
    }
}

我在这里做错了什么?

向使用此示例作为示例的任何人添加了注释:(与问题无关,查看选定的答案作为答案)

您可能需要更改类型。
[ValueConversion(typeof(DateTime), typeof(String))]

我不得不将我的更改为
[ValueConversion(typeof(String), typeof(String))]

然后重铸到DateTime
DateTime date = DateTime.Parse((string)value);

最佳答案

Converter={local:DateConverter}}
是错的。改用这个:
Converter={StaticResource dateConverter}}
注意小写的“d”。资源名称区分大小写。

关于C#WPF DataGrid转换器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15696752/

10-11 00:51