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) 。
- 属性