使用WPF中的SQLite数据库中的数据填充一堆文本框时出现问题

时间:2019-04-07 21:48:03

标签: database wpf sqlite xaml data-binding

当前正在尝试编写一个应用程序,该应用程序将从SQLite数据库读取用户数据,并使用给定参数填充所有文本框。我遇到的问题是能够读取该数据,然后将其数据绑定到文本框。我已经创建了一个数据库,用户可以在其中输入有关此人的信息。

这是我的应用程序的图像: [enter image description here]

然后是我的连接和数据库的一些代码片段:

    {
        [PrimaryKey, AutoIncrement]

        public int Id { get; set; }

        [MaxLength(35)]
        public string Name { get; set; }


        [MaxLength(5)]
        public string Rate { get; set; }


        public string Senority { get; set; }

        [Ignore]
        public string NameAndRate
        {
            get
            {
                return Rate + Name;
            }
        }
public partial class App : Application
    {
        public static string databaseName = "Contacts.db";
        public static string folderPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
        public static string databasePath = System.IO.Path.Combine(folderPath, databaseName);
    }
private void GenerateList(object sender, RoutedEventArgs e)
        {
            using (SQLite.SQLiteConnection conn = new SQLite.SQLiteConnection(App.databasePath))
            {




            }
        }

0 个答案:

没有答案