Dictionary简洁

mydic_ShuiFei = new Dictionary<string, string>() {
            {"00000336","南京市自来水公司"}          
            };




cboxJFDW.ItemsSource = mydic_ShuiFei;
            cboxJFDW.SelectedValuePath = "Key";
            cboxJFDW.DisplayMemberPath = "Value";
            cboxJFDW.SelectedIndex = 0;

原文地址:https://www.cnblogs.com/sntetwt/p/8888744.html