C# button 按鈕+Image圖片 顯示設定

C# button 按鈕+Image圖片 顯示設定

C# button 按鈕+Image圖片 顯示設定

資料來源:https://msdn.microsoft.com/zh-tw/library/system.windows.forms.buttonbase.image(v=vs.110).aspx

private void SetMyButtonProperties()
 {
    // Assign an image to the button.
    button1.Image = Image.FromFile(“C:\\Graphics\\MyBitmap.bmp”);
    // Align the image and text on the button.
    button1.ImageAlign = ContentAlignment.MiddleRight;    
    button1.TextAlign = ContentAlignment.MiddleLeft;

    // Give the button a flat appearance.
    button1.FlatStyle = FlatStyle.Flat;
 }

 

 

 

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *