CoreDragOperation.SetDragUIContentFromSoftwareBitmap 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap) |
使用软件位图设置自定义拖动 UI 内容。 |
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap, Point) |
使用软件位图设置自定义拖动 UI 内容。 |
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap)
使用软件位图设置自定义拖动 UI 内容。
public:
virtual void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap ^ softwareBitmap) = SetDragUIContentFromSoftwareBitmap;
/// [Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmap")]
void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap const& softwareBitmap);
[Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmap")]
public void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap softwareBitmap);
function setDragUIContentFromSoftwareBitmap(softwareBitmap)
Public Sub SetDragUIContentFromSoftwareBitmap (softwareBitmap As SoftwareBitmap)
参数
- softwareBitmap
- SoftwareBitmap
自定义 UI 拖动内容。
- 属性
另请参阅
适用于
SetDragUIContentFromSoftwareBitmap(SoftwareBitmap, Point)
使用软件位图设置自定义拖动 UI 内容。
public:
virtual void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap ^ softwareBitmap, Point anchorPoint) = SetDragUIContentFromSoftwareBitmap;
/// [Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmapWithAnchorPoint")]
void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap const& softwareBitmap, Point const& anchorPoint);
[Windows.Foundation.Metadata.Overload("SetDragUIContentFromSoftwareBitmapWithAnchorPoint")]
public void SetDragUIContentFromSoftwareBitmap(SoftwareBitmap softwareBitmap, Point anchorPoint);
function setDragUIContentFromSoftwareBitmap(softwareBitmap, anchorPoint)
Public Sub SetDragUIContentFromSoftwareBitmap (softwareBitmap As SoftwareBitmap, anchorPoint As Point)
参数
- softwareBitmap
- SoftwareBitmap
自定义 UI 拖动内容。
- anchorPoint
- Point
从指针拖动视觉对象的相对位置。 定位点不能位于内容之外。 例如,如果定位点 (50,50) 并且指针的位置 (x,y) ,则视觉对象的左上角将 (x - 50,y - 50) 。
- 属性