mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
e9b598e3ba
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
72 lines
2.6 KiB
C#
72 lines
2.6 KiB
C#
namespace XenAdmin.Controls.ConsoleTab
|
|
{
|
|
partial class FullScreenHint
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FullScreenHint));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.BackColor = System.Drawing.Color.Transparent;
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.ForeColor = System.Drawing.SystemColors.GrayText;
|
|
this.label1.Name = "label1";
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Interval = 1;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// FullScreenHint
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "FullScreenHint";
|
|
this.Opacity = 0D;
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.Load += new System.EventHandler(this.FullScreenHint_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Timer timer1;
|
|
}
|
|
}
|
|
|