WPF Datagrid 时间字段格式 hh:mm
我使用 WPF 工具包数据网格,其中 LINQ to SQL
<my:DataGrid AutoGenerateColumns="False" Name="dataGrid2">
<my:DataGrid.Columns>
<my:DataGridTextColumn Header="Date" MinWidth="80"
Binding="{Binding Date, StringFormat=d}"
CanUserSort="False"/>
<my:DataGridTextColumn Header="Time" MinWidth="70"
Binding="{Binding Time}"
CanUserSort="False" />
<my:DataGridTextColumn Header="Description" MinWidth="200"
Binding="{Binding Description}"
CanUserSort="False"/>
</my:DataGrid.Columns>
</my:DataGrid>
列 Time
绑定到 Time
数据类型的 SQL Server 表字段。现在,数据网格上的时间值以 hh:mm:ss 格式显示。
如何将数据网格的时间列中的时间表示更改为 hh:mm,删除秒?
编辑: 使用 StringFormat=t
不会产生任何结果。
<my:DataGridTextColumn Header="Time" MinWidth="70"
Binding="{Binding Time, StringFormat=t}"
CanUserSort="False" />
I use a WPF Toolkit Datagrid with a LINQ to SQL
<my:DataGrid AutoGenerateColumns="False" Name="dataGrid2">
<my:DataGrid.Columns>
<my:DataGridTextColumn Header="Date" MinWidth="80"
Binding="{Binding Date, StringFormat=d}"
CanUserSort="False"/>
<my:DataGridTextColumn Header="Time" MinWidth="70"
Binding="{Binding Time}"
CanUserSort="False" />
<my:DataGridTextColumn Header="Description" MinWidth="200"
Binding="{Binding Description}"
CanUserSort="False"/>
</my:DataGrid.Columns>
</my:DataGrid>
Column Time
is bound to a SQL Server table field of a Time
datatype. Now time value on the Datagrid is displayed in a format hh:mm:ss.
How could I change a time represantation in the Time column of a Datagrid to hh:mm, removing seconds?
EDIT:
Using StringFormat=t
gives no result.
<my:DataGridTextColumn Header="Time" MinWidth="70"
Binding="{Binding Time, StringFormat=t}"
CanUserSort="False" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
没有秒,
有秒,
这里只是有秒的时间:
without seconds
with seconds
here is only time with seconds:
可以使用 ValueConverter 完成:
这可以帮助:
内置 WPF IValueConverters
Can be done using ValueConverter:
This can help:
Built-in WPF IValueConverters
您需要将类型从 SqlDateTime 转换为 DateTime 才能使字符串格式正常工作。通过将参数转换为日期时间来完成此操作。例如,当使用 c# 引入表时。
这将使您能够使用 C# 默认时间转换器。
You will need to convert your type from SqlDateTime to DateTime in order for the string format to work. Do this by casting your parameter to datetime. So for example when using c# to bring in your table.
This will give you the ability to use the C# default converter for time.