c# – 在Winforms上处理控件

前端之家收集整理的这篇文章主要介绍了c# – 在Winforms上处理控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么Visual Studio将此代码添加到Class.Designer.cs分部类中.
任何人都能告诉我这个组件变量什么时候会得到一些价值?这里的模式是什么?
private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise,false.</param>
        protected override void Dispose(bool disposing)
        {
            if(disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

解决方法

私有字段组件用于跟踪表单上的一次性组件.尝试拖动Timer组件,您应该在设计器生成代码中看到类似的内容
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);

Dispose(bool)方法显示的模式通常称为the disposable pattern.基本上,该模式确保将处置所有跟踪的组件,即使您从未明确调用Dispose方法,在这种情况下基类您的表单将在其终结器中调用Dispose方法(在垃圾回收期间).

原文链接:https://www.f2er.com/csharp/92290.html

猜你在找的C#相关文章