DataView的RowFilter 实现过滤 根据文本框文字对datagridview的数据进行模糊查询, 其实也就是一个过滤 string qymc = textBox1.Text.ToString(); //获取文本框要模糊查询的文字 using (SQLiteConnection con = new SQLiteConnection(DATASOURCE)) { con.Open(); using (SQLiteCommand cmd = new SQLiteCommand()) { c…