다음을 통해 공유


CroppedBitmap 생성자

정의

CroppedBitmap 클래스의 새 인스턴스를 초기화합니다.

오버로드

CroppedBitmap()

CroppedBitmap 클래스의 새 인스턴스를 초기화합니다.

CroppedBitmap(BitmapSource, Int32Rect)

지정된 CroppedBitmapSource이 포함된 SourceRect 클래스의 새 인스턴스를 초기화합니다.

CroppedBitmap()

CroppedBitmap 클래스의 새 인스턴스를 초기화합니다.

public:
 CroppedBitmap();
public CroppedBitmap ();
Public Sub New ()

설명

CroppedBitmap 구현 된 ISupportInitialize 여러 속성에 대해 초기화를 최적화 하는 인터페이스입니다. 초기화 하는 CroppedBitmap 이 생성자를 사용 하 여 만든, 간에 속성 초기화를 수행 해야 합니다 BeginInitEndInit 호출 합니다.

적용 대상

CroppedBitmap(BitmapSource, Int32Rect)

지정된 CroppedBitmapSource이 포함된 SourceRect 클래스의 새 인스턴스를 초기화합니다.

public:
 CroppedBitmap(System::Windows::Media::Imaging::BitmapSource ^ source, System::Windows::Int32Rect sourceRect);
public CroppedBitmap (System.Windows.Media.Imaging.BitmapSource source, System.Windows.Int32Rect sourceRect);
new System.Windows.Media.Imaging.CroppedBitmap : System.Windows.Media.Imaging.BitmapSource * System.Windows.Int32Rect -> System.Windows.Media.Imaging.CroppedBitmap
Public Sub New (source As BitmapSource, sourceRect As Int32Rect)

매개 변수

source
BitmapSource

CroppedBitmap 인스턴스의 Source입니다.

sourceRect
Int32Rect

CroppedBitmap 인스턴스의 SourceRect입니다.

예외

source이(가) null인 경우

sourceRectsource의 범위 밖에 있습니다.

예제

다음 예제에서는 클래스의 CroppedBitmap 새 인스턴스를 초기화하는 데 사용하는 CroppedBitmap(BitmapSource, Int32Rect) 방법을 보여줍니다.

// Create an Image element.
Image chainImage = new Image();
chainImage.Width = 200;
chainImage.Margin = new Thickness(5);

// Create the cropped image based on previous CroppedBitmap.
CroppedBitmap chained = new CroppedBitmap(cb,
   new Int32Rect(30, 0, (int)cb.Width-30, (int)cb.Height)); 
// Set the image's source.
chainImage.Source = chained;
' Create an Image element.
Dim chainImage As New Image()
chainImage.Width = 200
chainImage.Margin = New Thickness(5)

' Create the cropped image based on previous CroppedBitmap.
Dim chained As New CroppedBitmap(cb, New Int32Rect(30, 0, CType(cb.Width, Integer) - 30, CType(cb.Height, Integer)))
' Set the image's source.
chainImage.Source = chained

설명

CroppedBitmap 이 생성자를 사용 하 여 만들어진 개체가 자동으로 초기화 됩니다. 초기화 된 후 속성 변경은 무시 됩니다.

적용 대상