123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- // ***********************************************************************
- // Assembly : HZH_Controls
- // Created : 08-08-2019
- //
- // ***********************************************************************
- // <copyright file="FrmWaiting.cs">
- // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
- // </copyright>
- //
- // 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.
- // ***********************************************************************
- 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 HZH_Controls.Forms
- {
- /// <summary>
- /// Class FrmWaiting.
- /// Implements the <see cref="HZH_Controls.Forms.FrmBase" />
- /// </summary>
- /// <seealso cref="HZH_Controls.Forms.FrmBase" />
- public partial class FrmWaiting : FrmBase
- {
- /// <summary>
- /// Gets or sets the MSG.
- /// </summary>
- /// <value>The MSG.</value>
- public string Msg { get { return label2.Text; } set { label2.Text = value; } }
- /// <summary>
- /// Initializes a new instance of the <see cref="FrmWaiting" /> class.
- /// </summary>
- public FrmWaiting()
- {
- base.SetStyle(ControlStyles.UserPaint, true);
- base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
- base.SetStyle(ControlStyles.DoubleBuffer, true);
- InitializeComponent();
- }
- /// <summary>
- /// Handles the Tick event of the timer1 control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
- private void timer1_Tick(object sender, EventArgs e)
- {
- if (this.label1.ImageIndex == this.imageList1.Images.Count - 1)
- this.label1.ImageIndex = 0;
- else
- this.label1.ImageIndex++;
- }
- /// <summary>
- /// Handles the VisibleChanged event of the FrmWaiting control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
- private void FrmWaiting_VisibleChanged(object sender, EventArgs e)
- {
- //this.timer1.Enabled = this.Visible;
- }
- /// <summary>
- /// Does the escape.
- /// </summary>
- protected override void DoEsc()
- {
- }
- /// <summary>
- /// Handles the Tick event of the timer2 control.
- /// </summary>
- /// <param name="sender">The source of the event.</param>
- /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
- private void timer2_Tick(object sender, EventArgs e)
- {
- base.Opacity = 1.0;
- this.timer2.Enabled = false;
- }
- /// <summary>
- /// Shows the form.
- /// </summary>
- /// <param name="intSleep">The int sleep.</param>
- public void ShowForm(int intSleep = 1)
- {
- base.Opacity = 0.0;
- if (intSleep <= 0)
- {
- intSleep = 1;
- }
- base.Show();
- this.timer2.Interval = intSleep;
- this.timer2.Enabled = true;
- }
- }
- }
|