2012-05-06 61 views
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沒有獲得圖像?

回答

0

ToolStripRadioButton不支持顯示圖像。因爲ToolStripRadioButton源自ToolsStripButton,所以它將避免基礎渲染呈現RadioButton外觀,並且我們沒有任何實現來渲染其中的圖像。

但是這種支持將在我們未來的版本中提供。