Condividi tramite


StandardDataFormats.Bitmap Proprietà

Definizione

Proprietà di sola lettura che restituisce il valore della stringa ID di formato corrispondente al formato 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

Valore della proprietà

String

Platform::String

winrt::hstring

Valore della stringa ID di formato corrispondente al formato Bitmap.

Esempio

In questo esempio viene illustrato l'uso della proprietà Bitmap . Per usare il codice in questo esempio, aggiungere un listener eventi all'app per gestire l'evento attivato . Inserire quindi questo codice nella funzione che questo listener evento chiama.

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

Si applica a