CroppedBitmap 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CroppedBitmap 클래스의 새 인스턴스를 초기화합니다.
오버로드
CroppedBitmap() |
CroppedBitmap 클래스의 새 인스턴스를 초기화합니다. |
CroppedBitmap(BitmapSource, Int32Rect) |
지정된 CroppedBitmap 및 Source이 포함된 SourceRect 클래스의 새 인스턴스를 초기화합니다. |
CroppedBitmap()
CroppedBitmap 클래스의 새 인스턴스를 초기화합니다.
public:
CroppedBitmap();
public CroppedBitmap ();
Public Sub New ()
설명
CroppedBitmap 구현 된 ISupportInitialize 여러 속성에 대해 초기화를 최적화 하는 인터페이스입니다. 초기화 하는 CroppedBitmap 이 생성자를 사용 하 여 만든, 간에 속성 초기화를 수행 해야 합니다 BeginInit 고 EndInit 호출 합니다.
적용 대상
CroppedBitmap(BitmapSource, Int32Rect)
지정된 CroppedBitmap 및 Source이 포함된 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
인 경우
sourceRect
가 source
의 범위 밖에 있습니다.
예제
다음 예제에서는 클래스의 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 이 생성자를 사용 하 여 만들어진 개체가 자동으로 초기화 됩니다. 초기화 된 후 속성 변경은 무시 됩니다.