我想在按鈕內添加圖標。這裏是我的代碼如何在按鈕內顯示圖標windowsForms
private void Printbutton_Click(object sender, EventArgs e)
{
// Assign an image to the button.
Printbutton.Image = Image.FromFile("D:\\Downloads\\print.png");
// Align the image and text on the button.
Printbutton.ImageAlign = ContentAlignment.MiddleRight;
Printbutton.TextAlign = ContentAlignment.MiddleLeft;
// Give the button a flat appearance.
Printbutton.FlatStyle = FlatStyle.Flat;
if (SetupThePrinting())
printDocument1.Print();
}
這裏的問題是,該圖標沒有出現在第一,當我點擊該按鈕出現。
這裏有什麼問題?
你加入printbutton_click事件中的圖標,而不是將其定義表格initializecomponents –
@SebastianSchulz我如何準確地做? –