StandardDataFormats.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();
}

适用于