Clients/Message/FormClientMessage.Designer.cs
author Stephane Lenclud
Mon, 22 Aug 2016 13:20:54 +0200
changeset 252 59ea5cb46258
permissions -rw-r--r--
Trying to clean up our Harmony handling.
StephaneLenclud@225
     1
namespace SharpDisplayClientMessage
StephaneLenclud@225
     2
{
StephaneLenclud@225
     3
    partial class FormClientMessage
StephaneLenclud@225
     4
    {
StephaneLenclud@225
     5
        /// <summary>
StephaneLenclud@225
     6
        /// Required designer variable.
StephaneLenclud@225
     7
        /// </summary>
StephaneLenclud@225
     8
        private System.ComponentModel.IContainer components = null;
StephaneLenclud@225
     9
StephaneLenclud@225
    10
        /// <summary>
StephaneLenclud@225
    11
        /// Clean up any resources being used.
StephaneLenclud@225
    12
        /// </summary>
StephaneLenclud@225
    13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
StephaneLenclud@225
    14
        protected override void Dispose(bool disposing)
StephaneLenclud@225
    15
        {
StephaneLenclud@225
    16
            if (disposing && (components != null))
StephaneLenclud@225
    17
            {
StephaneLenclud@225
    18
                components.Dispose();
StephaneLenclud@225
    19
            }
StephaneLenclud@225
    20
            base.Dispose(disposing);
StephaneLenclud@225
    21
        }
StephaneLenclud@225
    22
StephaneLenclud@225
    23
        #region Windows Form Designer generated code
StephaneLenclud@225
    24
StephaneLenclud@225
    25
        /// <summary>
StephaneLenclud@225
    26
        /// Required method for Designer support - do not modify
StephaneLenclud@225
    27
        /// the contents of this method with the code editor.
StephaneLenclud@225
    28
        /// </summary>
StephaneLenclud@225
    29
        private void InitializeComponent()
StephaneLenclud@225
    30
        {
StephaneLenclud@225
    31
            this.components = new System.ComponentModel.Container();
StephaneLenclud@225
    32
            this.iTimer = new System.Windows.Forms.Timer(this.components);
StephaneLenclud@225
    33
            this.SuspendLayout();
StephaneLenclud@225
    34
            // 
StephaneLenclud@225
    35
            // iTimer
StephaneLenclud@225
    36
            // 
StephaneLenclud@225
    37
            this.iTimer.Tick += new System.EventHandler(this.iTimer_Tick);
StephaneLenclud@225
    38
            // 
StephaneLenclud@225
    39
            // FormClientMessage
StephaneLenclud@225
    40
            // 
StephaneLenclud@225
    41
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@225
    42
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@225
    43
            this.ClientSize = new System.Drawing.Size(284, 261);
StephaneLenclud@225
    44
            this.Name = "FormClientMessage";
StephaneLenclud@225
    45
            this.Text = "Form1";
StephaneLenclud@225
    46
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormClientMessage_FormClosing);
StephaneLenclud@225
    47
            this.Load += new System.EventHandler(this.FormClientMessage_Load);
StephaneLenclud@225
    48
            this.Shown += new System.EventHandler(this.FormClientMessage_Shown);
StephaneLenclud@225
    49
            this.ResumeLayout(false);
StephaneLenclud@225
    50
StephaneLenclud@225
    51
        }
StephaneLenclud@225
    52
StephaneLenclud@225
    53
        #endregion
StephaneLenclud@225
    54
StephaneLenclud@225
    55
        private System.Windows.Forms.Timer iTimer;
StephaneLenclud@225
    56
    }
StephaneLenclud@225
    57
}
StephaneLenclud@225
    58