FrmLuckyShow.designer.cs
5.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
namespace SunVoteARSPPT
{
partial class FrmLuckyShow
{
/// <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();
this.picClose = new System.Windows.Forms.PictureBox();
this.lblRoll = new System.Windows.Forms.Label();
this.tmrRoll = new System.Windows.Forms.Timer(this.components);
this.tmrSelect = new System.Windows.Forms.Timer(this.components);
this.lblFont = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.picClose)).BeginInit();
this.SuspendLayout();
//
// picClose
//
this.picClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.picClose.BackColor = System.Drawing.Color.Transparent;
this.picClose.BackgroundImage = global::SunVoteARSPPT.Properties.Resources.Close;
this.picClose.Location = new System.Drawing.Point(728, 1);
this.picClose.Name = "picClose";
this.picClose.Size = new System.Drawing.Size(24, 24);
this.picClose.TabIndex = 3;
this.picClose.TabStop = false;
this.picClose.Click += new System.EventHandler(this.picClose_Click);
//
// lblRoll
//
this.lblRoll.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblRoll.BackColor = System.Drawing.Color.White;
this.lblRoll.Font = new System.Drawing.Font("微软雅黑", 72F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblRoll.ForeColor = System.Drawing.Color.Blue;
this.lblRoll.Location = new System.Drawing.Point(12, 9);
this.lblRoll.Name = "lblRoll";
this.lblRoll.Size = new System.Drawing.Size(730, 134);
this.lblRoll.TabIndex = 4;
this.lblRoll.Text = "请1号同学作答";
this.lblRoll.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// tmrRoll
//
this.tmrRoll.Tick += new System.EventHandler(this.tmrRoll_Tick);
//
// tmrSelect
//
this.tmrSelect.Enabled = true;
this.tmrSelect.Tick += new System.EventHandler(this.tmrSelect_Tick);
//
// lblFont
//
this.lblFont.AutoSize = true;
this.lblFont.Location = new System.Drawing.Point(192, 143);
this.lblFont.Name = "lblFont";
this.lblFont.Size = new System.Drawing.Size(41, 12);
this.lblFont.TabIndex = 5;
this.lblFont.Text = "label1";
this.lblFont.Visible = false;
//
// FrmLuckyShow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Blue;
this.ClientSize = new System.Drawing.Size(754, 152);
this.Controls.Add(this.lblFont);
this.Controls.Add(this.picClose);
this.Controls.Add(this.lblRoll);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.KeyPreview = true;
this.Name = "FrmLuckyShow";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "FrmLuckyShow";
this.TopMost = true;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmLuckyShow_FormClosing);
this.Load += new System.EventHandler(this.FrmLuckyShow_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmLuckyShow_KeyDown);
((System.ComponentModel.ISupportInitialize)(this.picClose)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox picClose;
private System.Windows.Forms.Label lblRoll;
public System.Windows.Forms.Timer tmrRoll;
private System.Windows.Forms.Timer tmrSelect;
private System.Windows.Forms.Label lblFont;
}
}