WrapMode 列舉

定義

指定在紋理或漸層小於要填滿的區域時的拼接方式。

public enum WrapMode
繼承
WrapMode

欄位

名稱 Description
Clamp 4

未拼接紋理或漸層。

Tile 0

拼接漸層或材質。

TileFlipX 1

水平地反轉材質或漸層,然後拼接材質或漸層。

TileFlipXY 3

水平和垂直地反轉材質或漸層,然後拼接材質或漸層。

TileFlipY 2

垂直地反轉材質或漸層,然後拼接材質或漸層。

範例

下列程式代碼範例示範如何使用 方法取得新的點陣圖 FromFile 。 它也會示範 TextureBrushWrapMode 列舉。 此範例的設計目的是要與 Windows Forms 搭配使用。 Create 表單,其中包含名為的Button2按鈕。 將程式代碼貼到表單中,並將 Button2_Click 方法與按鈕的事件 Click 產生關聯。

private void Button2_Click(System.Object sender, System.EventArgs e)
{
    try
    {
        Bitmap image1 = (Bitmap) Image.FromFile(@"C:\Documents and Settings\" +
            @"All Users\Documents\My Music\music.bmp", true);

        TextureBrush texture = new TextureBrush(image1);
        texture.WrapMode = System.Drawing.Drawing2D.WrapMode.Tile;
        Graphics formGraphics = this.CreateGraphics();
        formGraphics.FillEllipse(texture, 
            new RectangleF(90.0F, 110.0F, 100, 100));
        formGraphics.Dispose();
    }
    catch(System.IO.FileNotFoundException)
    {
        MessageBox.Show("There was an error opening the bitmap." +
            "Please check the path.");
    }
}

備註

筆刷會使用此列舉來決定圖形的填滿方式。 若要查看列舉值在並排影像上具有之效果 WrapMode 的範例,請參閱 如何:使用影像來並排圖形

適用於

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

另請參閱