namespace SunVoteARSPPT
{
partial class FrmRankPoll
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
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;
}
}