Bagikan melalui


WrapMode Enum

Definisi

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

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

Bidang

Clamp 4

Tekstur atau gradien tidak diurutkan.

Tile 0

Ubin gradien atau tekstur.

TileFlipX 1

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

TileFlipXY 3

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

TileFlipY 2

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

Contoh

Contoh kode berikut menunjukkan cara mendapatkan bitmap baru menggunakan FromFile metode . Ini juga menunjukkan TextureBrush enumerasi dan WrapMode . Contoh ini dirancang untuk digunakan dengan Formulir Windows. Create 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 yang WrapMode dimiliki nilai enumerasi pada gambar petak peta, lihat Cara: Memiringkan Bentuk dengan Gambar.

Berlaku untuk

Lihat juga