PersonPicture.ProfilePicture 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置联系人个人资料图片的源。
Windows 应用 SDK中适用于 UWP 的等效 WinUI 2 API:Microsoft.UI.Xaml.Controls.PersonPicture.ProfilePicture (for WinUI,请参阅) Windows 应用 SDK命名空间。
public:
property ImageSource ^ ProfilePicture { ImageSource ^ get(); void set(ImageSource ^ value); };
ImageSource ProfilePicture();
void ProfilePicture(ImageSource value);
public ImageSource ProfilePicture { get; set; }
var imageSource = personPicture.profilePicture;
personPicture.profilePicture = imageSource;
Public Property ProfilePicture As ImageSource
<PersonPicture ProfilePicture="uri"/>
属性值
一个 对象,该对象表示所绘制图像的图像源文件。 通常,使用 BitmapImage 对象进行设置,该对象使用统一资源标识符 (URI) 构造,用于描述有效图像源文件的路径。 或者,可以使用流(可能是存储文件中的流)初始化 BitmapSource 。