獲取一個問題的升技我只知道如何使用日期時間顯示,像這樣我的結果:DateTime只是日期?
{
string uri = "http://localhost:8002/Service/HireDate";
XDocument xDoc = XDocument.Load(uri);
var staff = xDoc.Descendants("HireDate")
.Select(n => new
{
StartDate = DateTime.Parse(n.Element("HireFromDate").Value), //this line
EndDate = DateTime.Parse(n.Element("HireToDate").Value), //this line
TotalDaysHired = n.Element("NumberOfDaysHired").Value,
})
.ToList();
dataGrid9.ItemsSource = staff;
}
但是這個輸出像這樣在我的DataGrid:
15/07/2012 00:00:00
27/07/2012 00:00:00
有沒有辦法刪除我只想要約會的時間?
這聽起來更像是一個UI的關注,即數據網格的工作。那麼:哪個數據網格是這樣的?的WinForms?的WebForms? WPF? SL? XNA?比照? MVC? – 2012-07-25 11:56:55
在這種情況下:[需要在動態構建的WPF DataGrid中格式化日期](http://stackoverflow.com/questions/848702/need-to-format-dates-in-dynamically-built-wpf-datagrid) – 2012-07-25 11:58:32