// *********************************************************************** // Assembly : HZH_Controls // Created : 08-08-2019 // // *********************************************************************** // // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com // // // Blog: https://www.cnblogs.com/bfyx // GitHub:https://github.com/kwwwvagaa/NetWinformControl // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git // // If you use this code, please keep this note. // *********************************************************************** namespace HZH_Controls.Forms { /// /// Class FrmWaiting. /// Implements the /// /// partial class FrmWaiting { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmWaiting)); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.label1 = new System.Windows.Forms.Label(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.label2 = new System.Windows.Forms.Label(); this.timer2 = new System.Windows.Forms.Timer(this.components); this.SuspendLayout(); // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.White; this.imageList1.Images.SetKeyName(0, "0.png"); this.imageList1.Images.SetKeyName(1, "1.png"); this.imageList1.Images.SetKeyName(2, "2.png"); this.imageList1.Images.SetKeyName(3, "3.png"); this.imageList1.Images.SetKeyName(4, "4.png"); this.imageList1.Images.SetKeyName(5, "5.png"); this.imageList1.Images.SetKeyName(6, "6.png"); this.imageList1.Images.SetKeyName(7, "7.png"); this.imageList1.Images.SetKeyName(8, "8.png"); this.imageList1.Images.SetKeyName(9, "9.png"); this.imageList1.Images.SetKeyName(10, "10.png"); this.imageList1.Images.SetKeyName(11, "11.png"); this.imageList1.Images.SetKeyName(12, "12.png"); this.imageList1.Images.SetKeyName(13, "13.png"); this.imageList1.Images.SetKeyName(14, "14.png"); this.imageList1.Images.SetKeyName(15, "15.png"); this.imageList1.Images.SetKeyName(16, "16.png"); this.imageList1.Images.SetKeyName(17, "17.png"); this.imageList1.Images.SetKeyName(18, "18.png"); this.imageList1.Images.SetKeyName(19, "19.png"); // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Top; this.label1.Image = global::HZH_Controls.Properties.Resources.loading; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(276, 196); this.label1.TabIndex = 0; // // timer1 // this.timer1.Interval = 20; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // label2 // this.label2.Dock = System.Windows.Forms.DockStyle.Top; this.label2.Font = new System.Drawing.Font("微软雅黑", 12F); this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.label2.Location = new System.Drawing.Point(0, 196); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(276, 30); this.label2.TabIndex = 1; this.label2.Text = "处理正在进行中,请稍候..."; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // timer2 // this.timer2.Tick += new System.EventHandler(this.timer2_Tick); // // FrmWaiting // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); this.ClientSize = new System.Drawing.Size(276, 244); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.IsFullSize = false; this.Name = "FrmWaiting"; this.Opacity = 0D; this.RegionRadius = 20; this.ShowIcon = false; this.ShowInTaskbar = false; this.Text = ""; this.TopMost = true; this.TransparencyKey = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); this.VisibleChanged += new System.EventHandler(this.FrmWaiting_VisibleChanged); this.ResumeLayout(false); } #endregion /// /// The image list1 /// private System.Windows.Forms.ImageList imageList1; /// /// The label1 /// private System.Windows.Forms.Label label1; /// /// The timer1 /// private System.Windows.Forms.Timer timer1; /// /// The label2 /// private System.Windows.Forms.Label label2; /// /// The timer2 /// private System.Windows.Forms.Timer timer2; } }