谁知道在自定义的控件中怎么使用Form中的某个成员如题[解决办法]每个控件都有一个方法FindForm(),可以通过这个方法得到它所在的窗体容器,在使用上,可以这样来用: Form owner = this.FindForm(); 或按你的定义的窗体的类型来取: youForm owner = this.FindForm() as youForm; if (owner!=null) { //调用owner的方法 }