DragOperation.SetDragUIContentFromSoftwareBitmap 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap) |
끌어서 놓기 작업 중에 지정된 비트맵 이미지를 사용자 지정 끌기 시각적 개체로 사용되도록 지정합니다. |
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap, Point) |
끌어서 놓기 작업 중에 지정된 비트맵 이미지를 사용자 지정 끌기 시각적 개체(입력 포인터의 지정된 오프셋에 표시)로 사용되도록 지정합니다. |
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap)
끌어서 놓기 작업 중에 지정된 비트맵 이미지를 사용자 지정 끌기 시각적 개체로 사용되도록 지정합니다.
public:
virtual void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap ^ bitmap) = SetDragUIContentFromSoftwareBitmap;
/// [Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmap")]
void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap const& bitmap);
[Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmap")]
public void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap bitmap);
function setDragUIContentFromSoftwareBitmap(bitmap)
Public Sub SetDragUIContentFromSoftwareBitmap (bitmap As SoftwareBitmap)
매개 변수
- bitmap
- SoftwareBitmap
끌어서 놓기 작업 중에 사용자 지정 끌기 시각적 개체에 사용할 비트맵 이미지입니다.
- 특성
적용 대상
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap, Point)
끌어서 놓기 작업 중에 지정된 비트맵 이미지를 사용자 지정 끌기 시각적 개체(입력 포인터의 지정된 오프셋에 표시)로 사용되도록 지정합니다.
public:
virtual void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap ^ bitmap, Point anchorPoint) = SetDragUIContentFromSoftwareBitmap;
/// [Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmap2")]
void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap const& bitmap, Point const& anchorPoint);
[Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmap2")]
public void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap bitmap, Point anchorPoint);
function setDragUIContentFromSoftwareBitmap(bitmap, anchorPoint)
Public Sub SetDragUIContentFromSoftwareBitmap (bitmap As SoftwareBitmap, anchorPoint As Point)
매개 변수
- bitmap
- SoftwareBitmap
끌어서 놓기 작업 중에 사용자 지정 끌기 시각적 개체에 사용할 비트맵 이미지입니다.
- anchorPoint
- Point
입력 포인터에서 끌어서 놓기 시각적 개체의 상대 위치입니다. 앵커 지점은 콘텐츠 외부에 있을 수 없습니다. 예를 들어 앵커 지점이 (50, 50)이고 포인터의 위치가 (x, y)인 경우 시각적 개체의 왼쪽 위 모서리는 (x - 50, y - 50)입니다.
- 특성