您好,登錄后才能下訂單哦!
要使 Button 控件的文本垂直居中,您可以設置 Button 的 TextAlign
屬性為 MiddleCenter
。這將確保文本在按鈕內垂直和水平居中。
以下是如何在 C# 中創建一個帶有垂直居中文本的 Button 控件的示例:
using System;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
// 創建一個新的 Button 控件
Button button = new Button();
// 設置 Button 的 TextAlign 屬性為 MiddleCenter
button.TextAlign = ContentAlignment.MiddleCenter;
// 設置 Button 的其他屬性
button.Text = "點擊我";
button.Location = new System.Drawing.Point(50, 50);
button.Size = new System.Drawing.Size(100, 30);
// 將 Button 添加到窗體中
this.Controls.Add(button);
}
}
}
在這個示例中,我們首先創建了一個新的 Button 控件,然后將其 TextAlign
屬性設置為 ContentAlignment.MiddleCenter
,以確保文本垂直居中。接下來,我們設置了 Button 的其他屬性,如文本、位置和大小,最后將其添加到窗體中。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。