0

在 WinGrid(Infragistics,如果你必须知道的话)中,我得到了一个包含ints 的列。该值是秒数,您可以从中计算时间。我创建了一个 IFormatProvider/ICustomFormatter 来做到这一点。在网格初始化期间,我设置了 Format 和 FormatInfo 参数。

但是,当在我的自定义类型格式化程序上调用 GetFormat 时,类型参数始终是 NumberFormatInfo,而不是 ICustomFormatter。为什么?

这是我的课,以防万一:

public class SecToTime : IFormatProvider, ICustomFormatter
{
    public object GetFormat(Type formatType)
    {
        if (formatType == typeof(ICustomFormatter))
        {
            return this;
        }
        else
        {
            return null;
        }
    }

    public string Format(string format, object arg, IFormatProvider provider)
    {
        if (arg is int)
        {
            int seconds = (int)arg;
            int hours = (int)Math.Truncate((double)seconds / 3600);
            int minutes = (int)Math.Truncate((double)(seconds / 60) % 60);
            seconds = seconds % 60;
            return string.Format("{0:hh:mm:ss}", new DateTime(0, 0, 0, hours, minutes, seconds));
        }
        else
            throw new ArgumentNullException();
    }
}
4

1 回答 1

0

引用 Infragistics 团队的(伟大的)Mike Salzman 的话:

除非还设置了 Format 属性,否则不会调用 FormatInfo。这是我能想到为什么它不会被调用的唯一原因。

来源:这个 Infragistics 论坛的帖子

要对其进行测试,请尝试将 columnFormat属性设置为... :)

于 2011-03-09T20:43:00.363 回答