StandardDataFormats.Bitmap 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
唯讀屬性,會傳回對應至 Bitmap 格式的格式識別碼字串值。
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
屬性值
對應至點陣圖格式的格式識別碼字串值。
範例
此範例示範 點陣圖 屬性的使用。 若要使用此範例中的程式碼,請將事件接聽程式新增至您的應用程式以處理 啟動 的事件。 然後將此程式碼放入這個事件接聽程式所呼叫的函式中。
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();
}