我创建了一个基于 Picturebox 的自定义控件:
public class Timebar : System.Windows.Forms.PictureBox
如果我在表单的初始化方法中手动创建控件/设置所有值等,这将正常工作。
现在我也在工具箱的顶部找到了这个:http: //i.imgur.com/4KUc0.png
当我尝试通过 msvc 插入它时,我得到一个错误。
Failed to create component 'Timebar'. The error message follows:
'System.MissingMethodException: Constructor on type 'SC.Timebar' not found.
这并不是我的组件 Timebar 的一个大问题(因为我将手动添加该组件),但它与我想要制作的自定义 Button 类有关(比默认值更花哨的东西)。
类中有一个构造函数:
public Timebar(Data refr)
{
this._refr = refr;
}
如何解决上述错误?
谢谢,
〜Tgys