2012-01-16 52 views
0

我目前在Visual Studio 2010中使用vb.net,並對winforms使用radbuttons。如何在winforms中以radbutton添加圖像?

我怎樣纔能有一個按鈕,左邊的圖像和右邊的文字? 我無法找到設置圖像的正確屬性。

是的,我可以設置的DisplayStyle(圖片和文字)的屬性和imagealignment(middleleft)

人誰可以分享他的知識?

謝謝!

回答

1

套裝AppearanceAppearance.Button

設置Image財產

設置TextImageRelationTextImageRelation.ImageBeforeText

的默認外觀Appearance.Norm顯示了在標籤部分的圖像傳統的單選按鈕。

1

如果您的問題是有關正常按鈕,那麼您可以在Visual Studio中的屬性窗口中更改該按鈕的圖像屬性。

如果你是一代按鈕動態,您可以:

yourbuttonobject.Image = Image.FromFile(@"path to your image"); 
this.Controls.Add(yourbuttonobject);//controls have to be added to a container control 

如果你的問題是關於Telerik的radbutton控制從Telerik的 Telerik Rad Buttons for WinForms 那麼你可以的主題是這樣的按鈕How to theme the Telerik radbutton button

如果你的問題是關於一個單選按鈕你從屬性窗口或通過代碼這樣的主題:

private void Form1_Load(object sender, EventArgs e) 
     { 
      RadioButton dynamicRadioButton = new RadioButton(); 
      dynamicRadioButton.Text = "I am a Dynamic RadioButton"; 
      dynamicRadioButton.Location = new Point(20, 20); 
      dynamicRadioButton.Height = 40; 
      dynamicRadioButton.Width = 300; 
      dynamicRadioButton.Name = "DynamicRadioButton"; 
      dynamicRadioButton.Image = Image.FromFile(@"your_image_path"); 
      this.Controls.Add(dynamicRadioButton); 
     } 
相關問題