Clients/Message/FormClientMessage.Designer.cs
author StephaneLenclud
Sat, 07 Jan 2017 20:21:42 +0100
changeset 277 71ba0dd622a5
permissions -rw-r--r--
Created Audio Manager class.
Clean up CScore audio usage.
Fixing broken audio device change handler.
Fixed various audio Dispose deadlock due to Invoke usage.
Thus now using BeginInvoke instead.
     1 namespace SharpDisplayClientMessage
     2 {
     3     partial class FormClientMessage
     4     {
     5         /// <summary>
     6         /// Required designer variable.
     7         /// </summary>
     8         private System.ComponentModel.IContainer components = null;
     9 
    10         /// <summary>
    11         /// Clean up any resources being used.
    12         /// </summary>
    13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    14         protected override void Dispose(bool disposing)
    15         {
    16             if (disposing && (components != null))
    17             {
    18                 components.Dispose();
    19             }
    20             base.Dispose(disposing);
    21         }
    22 
    23         #region Windows Form Designer generated code
    24 
    25         /// <summary>
    26         /// Required method for Designer support - do not modify
    27         /// the contents of this method with the code editor.
    28         /// </summary>
    29         private void InitializeComponent()
    30         {
    31             this.components = new System.ComponentModel.Container();
    32             this.iTimer = new System.Windows.Forms.Timer(this.components);
    33             this.SuspendLayout();
    34             // 
    35             // iTimer
    36             // 
    37             this.iTimer.Tick += new System.EventHandler(this.iTimer_Tick);
    38             // 
    39             // FormClientMessage
    40             // 
    41             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    42             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    43             this.ClientSize = new System.Drawing.Size(284, 261);
    44             this.Name = "FormClientMessage";
    45             this.Text = "Form1";
    46             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormClientMessage_FormClosing);
    47             this.Load += new System.EventHandler(this.FormClientMessage_Load);
    48             this.Shown += new System.EventHandler(this.FormClientMessage_Shown);
    49             this.ResumeLayout(false);
    50 
    51         }
    52 
    53         #endregion
    54 
    55         private System.Windows.Forms.Timer iTimer;
    56     }
    57 }
    58