StandardDataFormats.Bitmap プロパティ

定義

Bitmap 形式に対応する書式 ID 文字列値を返す読み取り専用プロパティ。

public:
 static property Platform::String ^ Bitmap { Platform::String ^ get(); };
static winrt::hstring Bitmap();
public static string Bitmap { get; }
var string = StandardDataFormats.bitmap;
Public Shared ReadOnly Property Bitmap As String

プロパティ値

String

Platform::String

winrt::hstring

ビットマップ形式に対応する書式 ID 文字列値。

この例では、 Bitmap プロパティの使用方法を示します。 この例のコードを使用するには、 アクティブ化された イベントを処理するイベント リスナーをアプリに追加します。 次に、このイベント リスナーが呼び出す関数にこのコードを配置します。

void DataRequested(DataTransferManager sender, DataRequestedEventArgs e)
{
    DataRequestDeferral deferral = e.Request.GetDeferral();
    e.Request.Data.Properties.Title = "Hello World!";
    e.Request.Data.Properties.Description = "This example shows how to share files and images.";
    if (this.dataPackageThumbnail != null)
    {
        e.Request.Data.Properties.Thumbnail = this.dataPackageThumbnail;
    }
    e.Request.Data.SetBitmap(imageStreamRef);
    deferral.Complete();
}

適用対象