我試圖根據第一個選擇更改第二個組合框。對於第一個組合框,我從數據庫中的表中獲取數據。c#wpf組合框選擇
{
SqlConnection conn = new SqlConnection("Server = localhost;Database = autoser; Integrated Security = true");
SqlDataAdapter da = new SqlDataAdapter("Select id_type,type FROM types", conn);
DataSet ds = new DataSet();
da.Fill(ds, "types");
typescb.ItemsSource = ds.Tables[0].DefaultView;
typescb.DisplayMemberPath = ds.Tables[0].Columns["type"].ToString();
typescb.SelectedValuePath = ds.Tables[0].Columns["id_type"].ToString();
}
例如,如果在第一個下拉框我選擇在第二輛卡車應顯示卡車的列表,或者如果我選擇車,在第二個應該出現的是在我的數據庫車的列表。我在這個網站看了一些帖子,他們沒有幫助我,所以我發佈這個問題。對不起,我的英語不好!
谷歌級聯下拉。這是一個解決的問題。 – Crowcoder