C# try catch代码块不起效果的解决方法

 更新时间:2023年01月30日 10:47:33   作者:王彦杰698  
本文主要介绍了C# try catch代码块不起效果的解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

我上次编写winform程序时发生了ObjectDisposedException,后来使用了try catch代码块还是没有解决,源代码:

using System.Windows.Forms;
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
 
class Program
{
    /// <summary>
    /// 应用程序的主入口点
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.Run(new MainForm()); //在这里,视觉样式是默认的样式,以系统的默认样式为基准
    } 
}
 
public class MainForm : Form
{
    public MainForm()
    {
        FormPanel fp = new FormPanel(20);
        fp.Location = new Point(0, 0);
    }
}
 
public class FormPanel : UserControl
{
    public Panel Head = new Panel();
    public Label Close_Label = new Label();
    
    public FormPanel(int Head_Height)
    {
        #region Head
            Head.Parent = this;
            Head.Dock = DockStyle.Top;
            Head.Height = Head_Height;
        #endregion Head
        Form f1 = new Form();
        this.Parent = f1;
        #region Close_Label
            Close_Label.Parent = Head;
            Close_Label.Dock = DockStyle.Right;
            Close_Label.AutoSize = true;
            Close_Label.Text = "x"; //这里的x不是x,为了美观,输入了全角字符,不要随便使用
            Close_Label.MouseClick += (sender, e) =>
            {
                if (e.Button == MouseButtons.Left)
                {
                    f1.Close();
                    this.Dispose();
                }
            }
        #endregion
    }
}

endregion后面可以添加任何字符,编译后相当于不存在,也就是单行注释,但不能删除,因为有region

加上try catch代码块以后:

​using System.Windows.Forms;
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
 
class Program
{
    /// <summary>
    /// 应用程序的主入口点
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.Run(new MainForm()); //在这里,视觉样式是默认的样式,以系统的默认样式为基准
    } 
}
 
public class MainForm : Form
{
    public MainForm()
    {
        FormPanel fp = new FormPanel(20);
        fp.Location = new Point(0, 0);
    }
}
 
public class FormPanel : UserControl
{
    public Panel Head = new Panel();
    public Label Close_Label = new Label();
    
    public FormPanel(int Head_Height)
    {
        #region Head
            Head.Parent = this;
            Head.Dock = DockStyle.Top;
            Head.Height = Head_Height;
        #endregion Head
        Form f1 = new Form();
        this.Parent = f1;
        #region Close_Label
            Close_Label.Parent = Head;
            Close_Label.Dock = DockStyle.Right;
            Close_Label.AutoSize = true;
            Close_Label.Text = "x"; //这里的x不是x,为了美观,输入了全角字符,不要随便使用
            Close_Label.MouseClick += (sender, e) =>
            {
                if (e.Button == MouseButtons.Left)
                {
                    try
                    {
                        f1.Close();
                        this.Dispose();
                    }
                    catch { }
                }
            }
        #endregion
    }
}

原因是:

f1.Close()导致执行了FormPanel.Dispose(),这样try catch代码块不在class外面,解决方法:

public class FormPanel : UserControl
{
    public void Close(IsDispose)
    {
        this.Parent = null;
        f1.Close();
        if (IsDispose)
            this.Dispose();
    }
    
    Form f1 = new Form(); //将f1设为全局变量
    public Panel Head = new Panel();
    public Label Close_Label = new Label();
    
    public FormPanel(int Head_Height, bool CloseIsDispose)
    {
        #region Head
            Head.Parent = this;
            Head.Dock = DockStyle.Top;
            Head.Height = Head_Height;
        #endregion Head
        this.Parent = f1;
        #region Close_Label
            Close_Label.Parent = Head;
            Close_Label.Dock = DockStyle.Right;
            Close_Label.AutoSize = true;
            Close_Label.Text = "x"; //这里的x不是x,为了美观,输入了全角字符,不要随便使用
            Close_Label.MouseClick += (sender, e) =>
            {
                if (e.Button == MouseButtons.Left)
                {
                    this.Close(CloseIsDispose);
                }
            }
        #endregion
    }
}

总结:尽量不要手动添加代码关闭这个控件类的父窗体,如要关闭父窗体,请确认Close函数要在所有代码之后,否则设置这个控件类的父容器为null,再关闭父窗体,执行完所有代码之后,清除这个控件类。

到此这篇关于C# try catch代码块不起效果的解决方法的文章就介绍到这了,更多相关C# try catch代码块不起效果内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • C# 获取本机IP地址(IPv4和IPv6)

    C# 获取本机IP地址(IPv4和IPv6)

    本文主要介绍了C# 获取本机IP地址(IPv4和IPv6),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-08-08
  • C#使用Tesseract进行Ocr识别的方法实现

    C#使用Tesseract进行Ocr识别的方法实现

    本文主要介绍了C#使用Tesseract进行Ocr识别的方法实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-06-06
  • C#中radioButton控件使用详细方法示例

    C#中radioButton控件使用详细方法示例

    这篇文章主要给大家介绍了关于C#中radioButton控件使用详细方法的相关资料,RadioButton是圆形单选按钮,在同一个容器中,单选项互斥,不同容器中的RadioButton互相独立,需要的朋友可以参考下
    2023-10-10
  • C#实现十六进制与十进制相互转换以及及不同进制表示

    C#实现十六进制与十进制相互转换以及及不同进制表示

    在C#中十进制和十六进制转换非常简单,下面这篇文章主要给大家介绍了关于C#实现十六进制与十进制相互转换以及及不同进制表示的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下
    2022-10-10
  • C#如何将查询到的数据库里面的数据输出到textbox控件

    C#如何将查询到的数据库里面的数据输出到textbox控件

    这篇文章主要介绍了C#如何将查询到的数据库里面的数据输出到textbox控件问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-07-07
  • C#实现在前端网页弹出警告对话框(alert)的方法

    C#实现在前端网页弹出警告对话框(alert)的方法

    这篇文章主要介绍了C#实现在前端网页弹出警告对话框(alert)的方法,涉及C#通过自定义函数调用window.alert方法弹出对话框的技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-04-04
  • 如何在C#中使用注册表

    如何在C#中使用注册表

    这篇文章主要介绍了如何在C# 使用注册表,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下
    2020-12-12
  • Unity实现10天签到系统

    Unity实现10天签到系统

    这篇文章主要为大家详细介绍了Unity实现10天签到系统,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-04-04
  • C#Url操作类封装、仿Node.Js中的Url模块实例

    C#Url操作类封装、仿Node.Js中的Url模块实例

    这篇文章主要介绍了C#Url操作类封装、仿Node.Js中的Url模块,实例分析了C#Url操作类封装的技巧,非常具有实用价值,需要的朋友可以参考下。
    2016-10-10
  • C# 线程相关知识总结

    C# 线程相关知识总结

    这篇文章主要介绍了C# 线程相关知识,文中讲解非常细致,代码帮助大家更好的理解和学习,感兴趣的朋友可以了解下
    2020-06-06

最新评论