2017-05-18 104 views
-1

,我發現了錯誤,「不能蘊轉換型‘System.Collections.IEnumberable’到‘串’。一個明確的轉換存在)」通過WCF服務填充一個ComboBox

我一直在使用Convert.ToString嘗試()和.ToString,但是當發生這種情況ComboBox不會填充。 我可以直接填充SQLConnection,但我的主要目標是通過WCF服務。 我錯過了什麼?

C#:

{ 

    public MainWindow() 
    { 
     InitializeComponent(); 
     BindComboBox(cbxUsername); 
    } 

    public void BindComboBox(ComboBox Username) 
    { 
     ServiceReference1.Service1Client Client = new ServiceReference1.Service1Client(); 
     ServiceReference1.getUser GetUsername = new ServiceReference1.getUser(); 

     GetUsername.Username = cbxUsername.ItemsSource; 

    } 

    private void Button_Click(object sender, RoutedEventArgs e) 
    { 

    } 
} 

}

回答

1

應該是另一種方式,

cbxUsername.ItemsSource = GetUsername.Username; 
+0

謝謝你,你擺脫了我的錯誤! :) –