我想知道爲什麼我可以從例如主類外部的組合框中訪問文本。但我不能添加項目.. 我的組合框的修改設置爲公共訪問組件c#
public class ImageManager : mainFrame // Where my components are located
{
public ImageManager()
{
}
public void getText()
{
Console.WriteLine(comboBox.Text); //Will perfectly retrieve the text from it
}
public void setItem()
{
comboBox.Items.Add("Items"); //Does absolutely nothing and doesn't show error
}
}
感謝您的幫助!
你如何檢查組合框的內容? – Steve
在我的課mainFrame我設置comboBox.Text =「測試」,然後當我從ImageManager中的任何地方調用getText()它顯示「測試」在我的控制檯 –
如果你試圖讓文本使用comboBox.Text你會得到什麼顯示在組合框中。如果沒有項目被選中,你將不會得到任何東西,直到你選擇一個項目 – hagensoft