我无法找到c#winform默认错误图片或空图片地址
如何找到c#winform defalut null image?
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("Default"),
System.ComponentModel.Description("Set thr first custom background Image"),
***System.ComponentModel.DefaultValue(typeof(Image),"null")]***
// Property for the background image to be drawn behind the button text.
public Image BackgroundImageBefore
{
get
{
return this.backgroundImage;
}
set
{
this.backgroundImage = value;
}
}
'