gpt4 book ai didi

c# - 将 DataGrid 列按日期排序

转载 作者:行者123 更新时间:2023-12-02 08:28:09 25 4
gpt4 key购买 nike

我正在编写一个程序来帮助我的公司跟踪工具校准。我将所有工具保存在 SQLite 数据库中,该数据库没有将列类型设置为 DATETIME 的选项。因此,为了简单起见,我以 M/D/YYYY 格式存储日期。

我让模型从数据库中提取工具库存并将填充的表返回到 View 模型。

从这里,我将 View 模型数据表绑定(bind)到数据网格,还将每个数据网格列绑定(bind)到数据表中的相应列。

我希望用户能够将“校准到期”列从最新到最旧或从最旧到最新进行排序。

问题是,由于 SQLite 和 DataGrid 控件似乎都没有 DateTime 列的选项,因此数据网格继续将它们作为字符串进行排序。

DataGrid 列设置为 DataGridTextColumns,因为我无法确定模板化列是否可以解决此问题,甚至无法确定如何使用它。

I.E. :

9/26/2017

9/12/2017

8/5/2017

8/28/2017

我尝试将日期转换为 MM/DD/YYYY 格式,但这不起作用。谁能帮我弄清楚我需要做什么才能对这些日期进行正确的排序?

我正在使用 Caliburn.Micro 和 SQLite,如果这有助于缩小可能的解决方案范围。

在模型中 checkout :

    public DataTable RetrieveToolRoster()
{
string db_command = "SELECT [id], [cal_date] FROM inventory WHERE [cal_date] IS NOT NULL ORDER BY [id] ASC;";
SQLiteConnection db_connection = new SQLiteConnection(Properties.Settings.Default.db_connectionstring);
SQLiteDataAdapter db_dataAdapter = new SQLiteDataAdapter(db_command, db_connection);
DataTable tr_dataTable = new DataTable();

try
{
db_connection.Open();
db_dataAdapter.Fill(tr_dataTable);
db_connection.Close();
return tr_dataTable;
}
catch (Exception ex)
{
MessageBox.Show("Error:\r\n" + ex.Message);
return null;
}
}

CheckOutInViewModel:

    private DataTable _toolRoster;
public DataTable ToolRoster
{
get { return _toolRoster; }
set
{
_toolRoster = value;
NotifyOfPropertyChange(() => ToolRoster);
}
}
public void PopulateToolRoster()
{
CheckOutInModel coim = new CheckOutInModel();
ToolRoster = coim.RetrieveToolRoster();
}

checkout 查看:

    <DataGrid Grid.Column="0"
ItemsSource="{Binding ToolRoster}"
Style="{DynamicResource DataGridStandard}">
<DataGrid.Columns>
<DataGridTextColumn Header="Tool ID"
Width="*"
Binding="{Binding id}"/>
<DataGridTextColumn Header="Calibration Due"
Width="*"
Binding="{Binding cal_due, StringFormat={}{0:d}}"/>
</DataGrid.Columns>
</DataGrid>

谢谢!

解决方案

我将自己填写的数据表中的数据转移到一个列表中,并返回了该列表。

CheckOutInViewModel:

    private List<RosterData> _toolRoster;

public List<RosterData> ToolRoster
{
get { return _toolRoster; }
set
{
_toolRoster = value;
NotifyOfPropertyChange(() => ToolRoster);
}
}

在模型中 checkout :

    public List<RosterData> RetrieveToolRoster()
{
string db_command = "SELECT [id], [cal_date] FROM inventory WHERE [cal_date] IS NOT NULL ORDER BY [id] ASC;";
SQLiteConnection db_connection = new SQLiteConnection(Properties.Settings.Default.db_connectionstring);
SQLiteDataAdapter db_dataAdapter = new SQLiteDataAdapter(db_command, db_connection);
DataTable tr_dataTable = new DataTable();

try
{
db_connection.Open();
db_dataAdapter.Fill(tr_dataTable);
db_connection.Close();
List<RosterData> rd = new List<RosterData>();
foreach (DataRow dr in tr_dataTable.Rows)
{
RosterData rds = new RosterData();
rds.id = dr[0].ToString();
rds.cal_date = Convert.ToDateTime(dr[1]);
rd.Add(rds);
}
return rd;
}
catch (Exception ex)
{
MessageBox.Show("Error:\r\n" + ex.Message);
return null;
}
}

名册数据.cs:

public class RosterData
{
public string id { get; set; }
public DateTime cal_date { get; set; }
}

最佳答案

只需定义您的自定义类,而不是加载数据表。使用 SQLiteDateReader 并将每条记录转换为自定义类的 List 的元素

public class RosterData
{
public int id {get;set;}
public DateTime cal_date {get;set;}
}

public List<RosterData> RetrieveToolRoster()
{
string List<RosterData> result = new List<RosterData>();
string db_command = "SELECT [id], [cal_date] FROM inventory WHERE [cal_date] IS NOT NULL ORDER BY [id] ASC;";
using(SQLiteConnection db_connection = new SQLiteConnection(Properties.Settings.Default.db_connectionstring))
using(SQLiteCommand cmd = new SQLiteCommand(db_command, db_connection))
{
try
{
db_connection.Open();
using(SQLiteDataReader reader = cmd.ExecuteReader())
{
while(reader.Read())
{
RosterData rd = new RosterData()
{
rd.id = Convert.ToInt32(rd["id"]);
rd.cal_date = Convert.ToDateTime(rd["cal_date"]);
};
result.Add(rd);
}
}
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error:\r\n" + ex.Message);
return null;
}

}
}

.......

private List<RosterData> _toolRoster;
public List<RosterData> ToolRoster
{
get { return _toolRoster; }
set
{
_toolRoster = value;
NotifyOfPropertyChange(() => ToolRoster);
}
}

关于c# - 将 DataGrid 列按日期排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46777743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com