CoreDragUIOverride.SetContentFromSoftwareBitmap メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
SetContentFromSoftwareBitmap(SoftwareBitmap) |
ソフトウェア ビットマップを使用してカスタムドラッグ UI コンテンツを設定します。 |
SetContentFromSoftwareBitmap(SoftwareBitmap, Point) |
ソフトウェア ビットマップを使用してカスタムドラッグ UI コンテンツを設定します。 |
SetContentFromSoftwareBitmap(SoftwareBitmap)
ソフトウェア ビットマップを使用してカスタムドラッグ UI コンテンツを設定します。
public:
virtual void SetContentFromSoftwareBitmap(SoftwareBitmap ^ softwareBitmap) = SetContentFromSoftwareBitmap;
/// [Windows.Foundation.Metadata.Overload("SetContentFromSoftwareBitmap")]
void SetContentFromSoftwareBitmap(SoftwareBitmap const& softwareBitmap);
[Windows.Foundation.Metadata.Overload("SetContentFromSoftwareBitmap")]
public void SetContentFromSoftwareBitmap(SoftwareBitmap softwareBitmap);
function setContentFromSoftwareBitmap(softwareBitmap)
Public Sub SetContentFromSoftwareBitmap (softwareBitmap As SoftwareBitmap)
パラメーター
- softwareBitmap
- SoftwareBitmap
カスタムドラッグ UI コンテンツ。
- 属性
こちらもご覧ください
適用対象
SetContentFromSoftwareBitmap(SoftwareBitmap, Point)
ソフトウェア ビットマップを使用してカスタムドラッグ UI コンテンツを設定します。
public:
virtual void SetContentFromSoftwareBitmap(SoftwareBitmap ^ softwareBitmap, Point anchorPoint) = SetContentFromSoftwareBitmap;
/// [Windows.Foundation.Metadata.Overload("SetContentFromSoftwareBitmapWithAnchorPoint")]
void SetContentFromSoftwareBitmap(SoftwareBitmap const& softwareBitmap, Point const& anchorPoint);
[Windows.Foundation.Metadata.Overload("SetContentFromSoftwareBitmapWithAnchorPoint")]
public void SetContentFromSoftwareBitmap(SoftwareBitmap softwareBitmap, Point anchorPoint);
function setContentFromSoftwareBitmap(softwareBitmap, anchorPoint)
Public Sub SetContentFromSoftwareBitmap (softwareBitmap As SoftwareBitmap, anchorPoint As Point)
パラメーター
- softwareBitmap
- SoftwareBitmap
カスタム UI でコンテンツをドラッグします。
- anchorPoint
- Point
ポインターからのドラッグ ビジュアルの相対位置。 アンカー ポイントをコンテンツの外部にすることはできません。 たとえば、アンカー ポイントが (50、50) で、ポインターの位置が (x、y) の場合、ビジュアルの左上隅は (x - 50、y - 50) になります。
- 属性