wpf combobox下拉内容查询 sqllite
时间: 2023-05-15 07:07:28 浏览: 146
可以使用以下代码来查询 SQLite 数据库并将结果填充到 WPF ComboBox 控件中:
```csharp
using System.Data.SQLite;
// 创建 SQLite 连接
string connectionString = "Data Source=database.db";
using (SQLiteConnection connection = new SQLiteConnection(connectionString))
{
// 打开连接
connection.Open();
// 创建查询命令
string query = "SELECT name FROM table";
using (SQLiteCommand command = new SQLiteCommand(query, connection))
{
// 执行查询并获取结果
using (SQLiteDataReader reader = command.ExecuteReader())
{
// 将结果添加到 ComboBox 中
while (reader.Read())
{
comboBox.Items.Add(reader.GetString(0));
}
}
}
}
```
其中,`database.db` 是 SQLite 数据库文件的路径,`table` 是要查询的表名,`name` 是要查询的列名,`comboBox` 是要填充数据的 ComboBox 控件。
注意,需要在项目中添加 `System.Data.SQLite` 库的引用。
阅读全文