未找到項目變量的圖像屬性。我的代碼是 -在運行時PictureBox控件c中找不到圖像屬性#
foreach (Control item in this.Controls) //Iterating all controls on form
{
if (item is PictureBox)
{
if (item.Tag.ToString() == ipAddress + "OnOff")
{
MethodInvoker action = delegate
{ item.Image= }; //.Image property not shown
item.BeginInvoke(action);
break;
}
}
}
請幫忙嗎?
如果任何答案充分解決了您的問題,您可能希望選擇它作爲答案,因此可以從「未答覆」列表中刪除該問題。 – Alex
@Alex - 好吧,我要標記它。謝謝。 –