解决方案 »

  1.   

    Form没有virtual的Dispose方法供你重写
      

  2.   

    你这个Form的基类是什么?不是System.Windows.Forms.Form?
      
    *****************************************************************************
    签名档: http://feiyun0112.cnblogs.com/
      

  3.   

    partial class Form1
    它应该是另外一个Form1.cs的设计器文件,被手动输入或改错了。
      

  4.   


    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;namespace 轴承_GUI
    {
        partial class Form 
        {
            public Form()
            {
                InitializeComponent();
            }               private void linkLb定位预紧_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
            {
                groupBox定位预紧.Visible = true;
                groupBox定压预紧.Visible = false;
            }        private void linkLb定压预紧_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
            {
                groupBox定位预紧.Visible = false;
                groupBox定压预紧.Visible = true;
            }        
        }
    }
      

  5.   

    错误 1 “轴承_GUI.Form.Dispose(bool)”: 没有找到适合的方法来重写 错误 2 已经解决,就剩下错误 1 了
     
       
      

  6.   

    partial class Form : System.Windows.Forms.Form