Clients/Idle/FormClientIdle.Designer.cs
author Stephane Lenclud
Mon, 22 Aug 2016 13:20:54 +0200
changeset 252 59ea5cb46258
parent 193 317fdfa4fbb6
permissions -rw-r--r--
Trying to clean up our Harmony handling.
StephaneLenclud@193
     1

StephaneLenclud@225
     2
namespace SharpDisplayClientIdle
StephaneLenclud@192
     3
{
StephaneLenclud@192
     4
    partial class FormClientIdle
StephaneLenclud@192
     5
    {
StephaneLenclud@192
     6
        /// <summary>
StephaneLenclud@192
     7
        /// Required designer variable.
StephaneLenclud@192
     8
        /// </summary>
StephaneLenclud@192
     9
        private System.ComponentModel.IContainer components = null;
StephaneLenclud@192
    10
StephaneLenclud@192
    11
        /// <summary>
StephaneLenclud@192
    12
        /// Clean up any resources being used.
StephaneLenclud@192
    13
        /// </summary>
StephaneLenclud@192
    14
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
StephaneLenclud@192
    15
        protected override void Dispose(bool disposing)
StephaneLenclud@192
    16
        {
StephaneLenclud@192
    17
            if (disposing && (components != null))
StephaneLenclud@192
    18
            {
StephaneLenclud@192
    19
                components.Dispose();
StephaneLenclud@192
    20
            }
StephaneLenclud@192
    21
            base.Dispose(disposing);
StephaneLenclud@192
    22
        }
StephaneLenclud@192
    23
StephaneLenclud@192
    24
        #region Windows Form Designer generated code
StephaneLenclud@192
    25
StephaneLenclud@192
    26
        /// <summary>
StephaneLenclud@192
    27
        /// Required method for Designer support - do not modify
StephaneLenclud@192
    28
        /// the contents of this method with the code editor.
StephaneLenclud@192
    29
        /// </summary>
StephaneLenclud@192
    30
        private void InitializeComponent()
StephaneLenclud@192
    31
        {
StephaneLenclud@193
    32
            this.components = new System.ComponentModel.Container();
StephaneLenclud@193
    33
            this.iTimer = new System.Windows.Forms.Timer(this.components);
StephaneLenclud@192
    34
            this.SuspendLayout();
StephaneLenclud@192
    35
            // 
StephaneLenclud@193
    36
            // iTimer
StephaneLenclud@193
    37
            // 
StephaneLenclud@193
    38
            this.iTimer.Tick += new System.EventHandler(this.iTimer_Tick);
StephaneLenclud@193
    39
            // 
StephaneLenclud@193
    40
            // FormClientIdle
StephaneLenclud@192
    41
            // 
StephaneLenclud@192
    42
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@192
    43
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@192
    44
            this.ClientSize = new System.Drawing.Size(531, 303);
StephaneLenclud@193
    45
            this.Name = "FormClientIdle";
StephaneLenclud@192
    46
            this.Text = "Sharp Display Idle Client";
StephaneLenclud@193
    47
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormClientIdle_FormClosing);
StephaneLenclud@193
    48
            this.Load += new System.EventHandler(this.FormClientIdle_Load);
StephaneLenclud@193
    49
            this.Shown += new System.EventHandler(this.FormClientIdle_Shown);
StephaneLenclud@192
    50
            this.ResumeLayout(false);
StephaneLenclud@192
    51
StephaneLenclud@192
    52
        }
StephaneLenclud@192
    53
StephaneLenclud@192
    54
        #endregion
StephaneLenclud@193
    55
StephaneLenclud@193
    56
        private System.Windows.Forms.Timer iTimer;
StephaneLenclud@192
    57
    }
StephaneLenclud@192
    58
}
StephaneLenclud@192
    59