0
我在Winform項目中使用Syncfusion。我正在嘗試添加一個ToolStripEx ToolStripRadioButton。 ToolStripEx位於功能區中。Winform Syncfusion ToolStripRadioButton圖像
我希望單選按鈕是圖像。
我的代碼是:
LayoutCoosing.Items.Add(new ToolStripRadioButton()
{
Name = "SingleScreenDividerButton",
DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image,
Image = (Image)Properties.Resources.ResourceManager.GetObject("SingleScreenDivider"),
GroupID = 0,
Checked = true
});
我檢查了,圖像路徑是確定。爲什麼RadioButton沒有獲得圖像?