DataPackage.SetBitmap(RandomAccessStreamReference) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataPackage에 포함된 비트맵 이미지를 설정합니다.
public:
virtual void SetBitmap(RandomAccessStreamReference ^ value) = SetBitmap;
void SetBitmap(RandomAccessStreamReference const& value);
public void SetBitmap(RandomAccessStreamReference value);
function setBitmap(value)
Public Sub SetBitmap (value As RandomAccessStreamReference)
매개 변수
비트맵 이미지를 포함하는 스트림입니다.
예제
다음 예제에서는 setBitmap 메서드를 사용하여 대상 앱과 이미지를 공유합니다.
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();
}
설명
이 메서드는 StandardFormats.Bitmap의 값을 설정합니다.
비트맵은 DataPackage 개체가 직접 지원하는 데이터 형식 중 하나입니다. 지원되는 다른 데이터 형식에 대한 자세한 내용은 StandardDataFormats 클래스를 참조하세요.