FrmRankPoll.Designer.cs
9.39 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
namespace SunVoteARSPPT
{
partial class FrmRankPoll
{
/// <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()
{
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
"1",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("2");
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("3");
this.btnShowFull = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.lvwSlide = new System.Windows.Forms.ListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.dgvRank = new System.Windows.Forms.DataGridView();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.btnExport = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dgvRank)).BeginInit();
this.SuspendLayout();
//
// btnShowFull
//
this.btnShowFull.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnShowFull.AutoSize = true;
this.btnShowFull.Location = new System.Drawing.Point(469, 538);
this.btnShowFull.Name = "btnShowFull";
this.btnShowFull.Size = new System.Drawing.Size(112, 23);
this.btnShowFull.TabIndex = 34;
this.btnShowFull.Text = "全屏显示";
this.btnShowFull.UseVisualStyleBackColor = true;
this.btnShowFull.Click += new System.EventHandler(this.btnShowFull_Click);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.AutoSize = true;
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(705, 538);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 33;
this.btnClose.Text = "退出";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// lvwSlide
//
this.lvwSlide.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.lvwSlide.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader3});
this.lvwSlide.FullRowSelect = true;
this.lvwSlide.HideSelection = false;
listViewItem1.StateImageIndex = 0;
listViewItem2.StateImageIndex = 0;
listViewItem3.StateImageIndex = 0;
this.lvwSlide.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3});
this.lvwSlide.Location = new System.Drawing.Point(587, 12);
this.lvwSlide.MultiSelect = false;
this.lvwSlide.Name = "lvwSlide";
this.lvwSlide.Size = new System.Drawing.Size(193, 518);
this.lvwSlide.TabIndex = 39;
this.lvwSlide.UseCompatibleStateImageBehavior = false;
this.lvwSlide.View = System.Windows.Forms.View.Details;
this.lvwSlide.SelectedIndexChanged += new System.EventHandler(this.lvwSlide_SelectedIndexChanged);
//
// columnHeader2
//
this.columnHeader2.Text = "编号";
this.columnHeader2.Width = 44;
//
// columnHeader3
//
this.columnHeader3.Text = "反馈内容";
this.columnHeader3.Width = 123;
//
// dgvRank
//
this.dgvRank.AllowUserToAddRows = false;
this.dgvRank.AllowUserToDeleteRows = false;
this.dgvRank.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.dgvRank.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvRank.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2,
this.Column3,
this.Column4});
this.dgvRank.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.dgvRank.Location = new System.Drawing.Point(12, 12);
this.dgvRank.Name = "dgvRank";
this.dgvRank.RowHeadersVisible = false;
this.dgvRank.RowTemplate.Height = 23;
this.dgvRank.Size = new System.Drawing.Size(569, 518);
this.dgvRank.TabIndex = 43;
//
// Column1
//
this.Column1.HeaderText = "名次";
this.Column1.Name = "Column1";
//
// Column2
//
this.Column2.HeaderText = "候选编号";
this.Column2.Name = "Column2";
//
// Column3
//
this.Column3.HeaderText = "候选对象";
this.Column3.Name = "Column3";
//
// Column4
//
this.Column4.HeaderText = "票数";
this.Column4.Name = "Column4";
//
// btnExport
//
this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnExport.AutoSize = true;
this.btnExport.Location = new System.Drawing.Point(587, 538);
this.btnExport.Name = "btnExport";
this.btnExport.Size = new System.Drawing.Size(112, 23);
this.btnExport.TabIndex = 45;
this.btnExport.Text = "生成报表";
this.btnExport.UseVisualStyleBackColor = true;
this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
//
// FrmRankPoll
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(792, 573);
this.Controls.Add(this.btnExport);
this.Controls.Add(this.dgvRank);
this.Controls.Add(this.lvwSlide);
this.Controls.Add(this.btnShowFull);
this.Controls.Add(this.btnClose);
this.MinimumSize = new System.Drawing.Size(600, 450);
this.Name = "FrmRankPoll";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "选举排行";
this.Load += new System.EventHandler(this.FrmRankPoll_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvRank)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnShowFull;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.ListView lvwSlide;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.DataGridView dgvRank;
private System.Windows.Forms.Button btnExport;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
}
}