PictureBox.ImageLocation 属性

定义

获取或设置要在 PictureBox 中显示的图像的路径或 URL。

public:
 property System::String ^ ImageLocation { System::String ^ get(); void set(System::String ^ value); };
public string ImageLocation { get; set; }
public string? ImageLocation { get; set; }
member this.ImageLocation : string with get, set
Public Property ImageLocation As String

属性值

要在 PictureBox 中显示的图像的路径或 URL。

注解

属性值可以是实际路径 (,例如“C:\SomeFolder\SomeSubFolder\Picture.jpg”) 、相对路径 (“\SomeSubFolder\Picture.jpg”) 或 URL (http://contoso.com/images/Picture.jpg) 。

如果使用相对路径,则将它视为相对于工作目录。

调用 Load 方法将覆盖 ImageLocation 属性,并将 设置为 ImageLocation 方法调用中指定的 URL 值。

适用于