StandardDataFormats.Bitmap 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
一个只读属性,返回对应于位图格式的格式 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
属性值
对应于位图格式的格式 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();
}