FrmImportSlideSelect.Designer.cs
5.77 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
namespace SunVoteARSPPT
{
partial class FrmImportSlideSelect
{
/// <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.lblHelpZone2 = new System.Windows.Forms.Label();
this.lblHelpZone1 = new System.Windows.Forms.Label();
this.txtZone = new System.Windows.Forms.TextBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.lblHelpZone3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblHelpZone2
//
this.lblHelpZone2.Location = new System.Drawing.Point(25, 55);
this.lblHelpZone2.Name = "lblHelpZone2";
this.lblHelpZone2.Size = new System.Drawing.Size(323, 14);
this.lblHelpZone2.TabIndex = 14;
this.lblHelpZone2.Text = "可用“,”隔开,或用“-”表示连续编号,";
//
// lblHelpZone1
//
this.lblHelpZone1.Location = new System.Drawing.Point(25, 23);
this.lblHelpZone1.Name = "lblHelpZone1";
this.lblHelpZone1.Size = new System.Drawing.Size(323, 17);
this.lblHelpZone1.TabIndex = 12;
this.lblHelpZone1.Text = "请填写要导入的题目编号范围,如未填写则导入全部";
//
// txtZone
//
this.txtZone.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.txtZone.Location = new System.Drawing.Point(27, 97);
this.txtZone.Multiline = true;
this.txtZone.Name = "txtZone";
this.txtZone.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtZone.Size = new System.Drawing.Size(415, 123);
this.txtZone.TabIndex = 13;
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.AutoSize = true;
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(367, 236);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.AutoSize = true;
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(286, 236);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 10;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
//
// lblHelpZone3
//
this.lblHelpZone3.Location = new System.Drawing.Point(25, 74);
this.lblHelpZone3.Name = "lblHelpZone3";
this.lblHelpZone3.Size = new System.Drawing.Size(323, 20);
this.lblHelpZone3.TabIndex = 15;
this.lblHelpZone3.Text = "如:“1,2,3,11-20”";
//
// FrmImportSlideSelect
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(462, 273);
this.Controls.Add(this.lblHelpZone2);
this.Controls.Add(this.lblHelpZone1);
this.Controls.Add(this.txtZone);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.lblHelpZone3);
this.KeyPreview = true;
this.MaximizeBox = false;
this.Name = "FrmImportSlideSelect";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "导入题库";
this.Load += new System.EventHandler(this.FrmImportSlideSelect_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblHelpZone2;
private System.Windows.Forms.Label lblHelpZone1;
private System.Windows.Forms.TextBox txtZone;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label lblHelpZone3;
}
}