我正在研究CustomControl
应该有一个Property
which 是一个Image
.
public Image BackgroundPicture{ set; get };
但是,当Image
设置(none)
为时,Visual Studio 设计器会抛出错误:
“System.String”类型的对象无法转换为“System.Drawing.Image”类型。
有没有什么有效的方法来防止这个问题?
我正在研究CustomControl
应该有一个Property
which 是一个Image
.
public Image BackgroundPicture{ set; get };
但是,当Image
设置(none)
为时,Visual Studio 设计器会抛出错误:
“System.String”类型的对象无法转换为“System.Drawing.Image”类型。
有没有什么有效的方法来防止这个问题?