我创建了继承自BindingNavigator组件的自定义控件,在其构造函数中我使用此代码:
if (!DesignMode)
{
bindingNavigatorMoveFirstItem.Image = Image.FromFile(Path.GetFullPath("Pictures\\last.png"));
}
我以另一种形式使用此控件,当我尝试打开表单时(在设计模式下),我收到以下错误:
类型的异常' System.ComponentModel.Design.ExceptionCollection'被抛出。
我该怎么做才能解决它?