Bagikan melalui


WrapMode Enum

Definisi

Menentukan bagaimana tekstur atau gradien diurutkan saat lebih kecil dari area yang diisi.

public enum class WrapMode
public enum WrapMode
type WrapMode = 
Public Enum WrapMode
Warisan
WrapMode

Bidang

Nama Nilai Deskripsi
Tile 0

Ubin gradien atau tekstur.

TileFlipX 1

Membalikkan tekstur atau gradien secara horizontal lalu memiringkan tekstur atau gradien.

TileFlipY 2

Membalikkan tekstur atau gradien secara vertikal lalu memiringkan tekstur atau gradien.

TileFlipXY 3

Membalikkan tekstur atau gradien secara horizontal dan vertikal lalu memiringkan tekstur atau gradien.

Clamp 4

Tekstur atau gradien tidak diurutkan.

Contoh

Contoh kode berikut menunjukkan cara mendapatkan bitmap baru menggunakan metode .FromFile Ini juga menunjukkan TextureBrush enumerasi dan WrapMode . Contoh ini dirancang untuk digunakan dengan Windows Forms. Buat formulir yang berisi tombol bernama Button2. Tempelkan kode ke dalam formulir dan kaitkan Button2_Click metode dengan peristiwa tombol Click .

private:
   void Button2_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      try
      {
         Bitmap^ image1 = dynamic_cast<Bitmap^>(Image::FromFile( "C:\\Documents and Settings\\"
         "All Users\\Documents\\My Music\\music.bmp", true ));
         TextureBrush^ texture = gcnew TextureBrush( image1 );
         texture->WrapMode = System::Drawing::Drawing2D::WrapMode::Tile;
         Graphics^ formGraphics = this->CreateGraphics();
         formGraphics->FillEllipse( texture, RectangleF(90.0F,110.0F,100,100) );
         delete formGraphics;
      }
      catch ( System::IO::FileNotFoundException^ ) 
      {
         MessageBox::Show( "There was an error opening the bitmap."
         "Please check the path." );
      }
   }
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.");
    }
}
Private Sub Button2_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button2.Click
    Try
        Dim image1 As Bitmap = _
            CType(Image.FromFile("C:\Documents and Settings\" _
            & "All Users\Documents\My Music\music.bmp", True), Bitmap)

        Dim texture As New TextureBrush(image1)
        texture.WrapMode = Drawing2D.WrapMode.Tile
        Dim formGraphics As Graphics = Me.CreateGraphics()
        formGraphics.FillEllipse(texture, _
            New RectangleF(90.0F, 110.0F, 100, 100))
        formGraphics.Dispose()

    Catch ex As System.IO.FileNotFoundException
        MessageBox.Show("There was an error opening the bitmap." _
            & "Please check the path.")
    End Try

End Sub

Keterangan

Kuas menggunakan enumerasi ini untuk menentukan bagaimana bentuk diisi. Untuk melihat contoh efek WrapMode yang dimiliki nilai enumerasi pada gambar petak peta, lihat Cara: Petak Bentuk dengan Gambar.

Berlaku untuk

Lihat juga