ContentAlignment 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定在繪圖表面上的內容對齊。
public enum class ContentAlignment
public enum ContentAlignment
type ContentAlignment =
Public Enum ContentAlignment
- 繼承
欄位
BottomCenter | 512 | 內容垂直靠下對齊,且水平置中對齊。 |
BottomLeft | 256 | 內容垂直靠下對齊,且水平靠左對齊。 |
BottomRight | 1024 | 內容垂直靠下對齊,且水平靠右對齊。 |
MiddleCenter | 32 | 內容垂直居中對齊,且水平置中對齊。 |
MiddleLeft | 16 | 內容垂直居中對齊,且水平靠左對齊。 |
MiddleRight | 64 | 內容垂直居中對齊,且水平置中對齊。 |
TopCenter | 2 | 內容垂直靠上對齊,且水平置中對齊。 |
TopLeft | 1 | 內容垂直靠上對齊,且水平靠左對齊。 |
TopRight | 4 | 內容垂直靠上對齊,且水平靠右對齊。 |
範例
下列程式代碼範例示範如何使用 Point.Point 和 Size 建構函式和 System.Drawing.ContentAlignment 列舉。 若要執行此範例,請將此程式代碼貼入 Windows Form,其中包含名為 Label1
的標籤,並在表單的建構函式中呼叫 InitializeLabel1
方法。
void InitializeLabel1()
{
// Set a border.
Label1->BorderStyle = BorderStyle::FixedSingle;
// Set the size, constructing a size from two integers.
Label1->Size = System::Drawing::Size( 100, 50 );
// Set the location, constructing a point from a 32-bit integer
// (using hexadecimal).
Label1->Location = Point(0x280028);
// Set and align the text on the lower-right side of the label.
Label1->TextAlign = ContentAlignment::BottomRight;
Label1->Text = "Bottom Right Alignment";
}
private void InitializeLabel1()
{
// Set a border.
Label1.BorderStyle = BorderStyle.FixedSingle;
// Set the size, constructing a size from two integers.
Label1.Size = new Size(100, 50);
// Set the location, constructing a point from a 32-bit integer
// (using hexadecimal).
Label1.Location = new Point(0x280028);
// Set and align the text on the lower-right side of the label.
Label1.TextAlign = ContentAlignment.BottomRight;
Label1.Text = "Bottom Right Alignment";
}
Private Sub InitializeLabel1()
' Set a border.
Label1.BorderStyle = BorderStyle.FixedSingle
' Set the size, constructing a size from two integers.
Label1.Size = New Size(100, 50)
' Set the location, constructing a point from a 32-bit integer
' (using hexadecimal).
Label1.Location = New Point(&H280028)
' Set and align the text on the lower-right side of the label.
Label1.TextAlign = ContentAlignment.BottomRight
Label1.Text = "Bottom Right Alignment"
End Sub