@@ -14,9 +14,7 @@ namespace StuMgmClient | |||
public LoginForm() | |||
{ | |||
InitializeComponent(); | |||
SystemComm.Init(deaultIp, deaultPort); | |||
if (SystemData.InitSystemData() != ErrCode.Success) | |||
throw new Exception("初始化异常,请重新启动"); | |||
SystemComm.Init(deaultIp, deaultPort); | |||
} | |||
////账号密码正则校验 | |||
@@ -56,6 +54,9 @@ namespace StuMgmClient | |||
if (VerifLogin(out job_id, out userRole, out token) != ErrCode.Success) | |||
return; | |||
if (SystemData.InitSystemData() != ErrCode.Success) | |||
throw new Exception("初始化异常,请重新启动"); | |||
switch (userRole) | |||
{ | |||
case Lvl.Student: | |||
@@ -36,10 +36,10 @@ namespace StuMgmClient | |||
{ | |||
short idState = Convert.ToInt16((dr["id"])); | |||
stateNum= (int)dicStatus[idState]; | |||
MssionPower(stateNum); | |||
txtMsg.Text = dr["Content"].ToString(); | |||
label2.Text =dr["name"].ToString(); | |||
lblState.Text = dic[stateNum]; | |||
MssionPower(stateNum); | |||
//try | |||
//{ | |||
@@ -64,7 +64,8 @@ namespace StuMgmClient | |||
o.Token = t_token; | |||
Utility.DicParsing(dicStatus); | |||
o.Status = Utility.DicParsing(dicStatus); | |||
SystemCtrl.SendUserCourseInfoOper(o); | |||
if (SystemCtrl.SendUserCourseInfoOper(o) != ErrCode.Success) | |||
MessageBox.Show("提交失败,请联系管理员", "提示"); | |||
MessageBox.Show("提交成功,可预习下一阶段内容", "提示"); | |||
btnSumit.Visible = false; | |||
this.Dispose(); | |||
@@ -55,6 +55,7 @@ | |||
this.txtMsg.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.txtMsg.Location = new System.Drawing.Point(3, 93); | |||
this.txtMsg.Name = "txtMsg"; | |||
this.txtMsg.ReadOnly = true; | |||
this.txtMsg.Size = new System.Drawing.Size(701, 524); | |||
this.txtMsg.TabIndex = 0; | |||
this.txtMsg.Text = ""; | |||
@@ -84,12 +84,6 @@ | |||
<Compile Include="StudentTree.Designer.cs"> | |||
<DependentUpon>StudentTree.cs</DependentUpon> | |||
</Compile> | |||
<Compile Include="StudentNavigation.cs"> | |||
<SubType>UserControl</SubType> | |||
</Compile> | |||
<Compile Include="StudentNavigation.Designer.cs"> | |||
<DependentUpon>StudentNavigation.cs</DependentUpon> | |||
</Compile> | |||
<Compile Include="SystemCtrl.cs" /> | |||
<Compile Include="SystemData.cs" /> | |||
<Compile Include="Utility.cs" /> | |||
@@ -115,9 +109,6 @@ | |||
<EmbeddedResource Include="StudentTree.resx"> | |||
<DependentUpon>StudentTree.cs</DependentUpon> | |||
</EmbeddedResource> | |||
<EmbeddedResource Include="StudentNavigation.resx"> | |||
<DependentUpon>StudentNavigation.cs</DependentUpon> | |||
</EmbeddedResource> | |||
<None Include="app.config" /> | |||
<None Include="Properties\Settings.settings"> | |||
<Generator>SettingsSingleFileGenerator</Generator> | |||
@@ -29,10 +29,16 @@ namespace StuMgmClient | |||
/// </summary> | |||
private void InitializeComponent() | |||
{ | |||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StudentForm)); | |||
this.tlpIndex = new System.Windows.Forms.TableLayoutPanel(); | |||
this.studentNavigation = new StuMgmClient.StudentNavigation(); | |||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); | |||
this.btnMission = new System.Windows.Forms.Button(); | |||
this.btnFile = new System.Windows.Forms.Button(); | |||
this.btnPersonalData = new System.Windows.Forms.Button(); | |||
this.studentTree = new StuMgmClient.StudentTree(); | |||
this.btnSwAccount = new System.Windows.Forms.Button(); | |||
this.tlpIndex.SuspendLayout(); | |||
this.tableLayoutPanel1.SuspendLayout(); | |||
this.SuspendLayout(); | |||
// | |||
// tlpIndex | |||
@@ -40,7 +46,7 @@ namespace StuMgmClient | |||
this.tlpIndex.ColumnCount = 2; | |||
this.tlpIndex.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F)); | |||
this.tlpIndex.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 80F)); | |||
this.tlpIndex.Controls.Add(this.studentNavigation, 0, 0); | |||
this.tlpIndex.Controls.Add(this.tableLayoutPanel1, 0, 0); | |||
this.tlpIndex.Controls.Add(this.studentTree, 1, 0); | |||
this.tlpIndex.Dock = System.Windows.Forms.DockStyle.Fill; | |||
this.tlpIndex.Location = new System.Drawing.Point(0, 0); | |||
@@ -51,13 +57,79 @@ namespace StuMgmClient | |||
this.tlpIndex.Size = new System.Drawing.Size(1030, 543); | |||
this.tlpIndex.TabIndex = 6; | |||
// | |||
// studentNavigation | |||
// tableLayoutPanel1 | |||
// | |||
this.studentNavigation.Dock = System.Windows.Forms.DockStyle.Fill; | |||
this.studentNavigation.Location = new System.Drawing.Point(3, 3); | |||
this.studentNavigation.Name = "studentNavigation"; | |||
this.studentNavigation.Size = new System.Drawing.Size(200, 537); | |||
this.studentNavigation.TabIndex = 0; | |||
this.tableLayoutPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanel1.BackgroundImage"))); | |||
this.tableLayoutPanel1.ColumnCount = 1; | |||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); | |||
this.tableLayoutPanel1.Controls.Add(this.btnMission, 0, 0); | |||
this.tableLayoutPanel1.Controls.Add(this.btnFile, 0, 1); | |||
this.tableLayoutPanel1.Controls.Add(this.btnSwAccount, 0, 3); | |||
this.tableLayoutPanel1.Controls.Add(this.btnPersonalData, 0, 2); | |||
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; | |||
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3); | |||
this.tableLayoutPanel1.Name = "tableLayoutPanel1"; | |||
this.tableLayoutPanel1.RowCount = 5; | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); | |||
this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 537); | |||
this.tableLayoutPanel1.TabIndex = 6; | |||
// | |||
// btnMission | |||
// | |||
this.btnMission.BackColor = System.Drawing.Color.Transparent; | |||
this.btnMission.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnMission.FlatAppearance.BorderSize = 0; | |||
this.btnMission.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnMission.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnMission.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnMission.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnMission.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnMission.Location = new System.Drawing.Point(3, 3); | |||
this.btnMission.Name = "btnMission"; | |||
this.btnMission.Size = new System.Drawing.Size(194, 44); | |||
this.btnMission.TabIndex = 0; | |||
this.btnMission.Text = "我的任务"; | |||
this.btnMission.UseVisualStyleBackColor = false; | |||
// | |||
// btnFile | |||
// | |||
this.btnFile.BackColor = System.Drawing.Color.Transparent; | |||
this.btnFile.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnFile.FlatAppearance.BorderSize = 0; | |||
this.btnFile.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnFile.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnFile.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnFile.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnFile.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnFile.Location = new System.Drawing.Point(3, 53); | |||
this.btnFile.Name = "btnFile"; | |||
this.btnFile.Size = new System.Drawing.Size(194, 48); | |||
this.btnFile.TabIndex = 2; | |||
this.btnFile.Text = "相关文档"; | |||
this.btnFile.UseVisualStyleBackColor = false; | |||
// | |||
// btnPersonalData | |||
// | |||
this.btnPersonalData.BackColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnPersonalData.FlatAppearance.BorderSize = 0; | |||
this.btnPersonalData.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnPersonalData.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnPersonalData.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.Location = new System.Drawing.Point(3, 107); | |||
this.btnPersonalData.Name = "btnPersonalData"; | |||
this.btnPersonalData.Size = new System.Drawing.Size(194, 48); | |||
this.btnPersonalData.TabIndex = 4; | |||
this.btnPersonalData.Text = "个人信息"; | |||
this.btnPersonalData.UseVisualStyleBackColor = false; | |||
this.btnPersonalData.Click += new System.EventHandler(this.btnPersonalData_Click); | |||
// | |||
// studentTree | |||
// | |||
@@ -67,6 +139,23 @@ namespace StuMgmClient | |||
this.studentTree.Size = new System.Drawing.Size(818, 537); | |||
this.studentTree.TabIndex = 1; | |||
// | |||
// btnSwAccount | |||
// | |||
this.btnSwAccount.BackColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnSwAccount.FlatAppearance.BorderSize = 0; | |||
this.btnSwAccount.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnSwAccount.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnSwAccount.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.Location = new System.Drawing.Point(3, 161); | |||
this.btnSwAccount.Name = "btnSwAccount"; | |||
this.btnSwAccount.Size = new System.Drawing.Size(194, 49); | |||
this.btnSwAccount.TabIndex = 3; | |||
this.btnSwAccount.Text = "切换账号"; | |||
this.btnSwAccount.UseVisualStyleBackColor = false; | |||
// | |||
// StudentForm | |||
// | |||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); | |||
@@ -76,6 +165,7 @@ namespace StuMgmClient | |||
this.Name = "StudentForm"; | |||
this.Text = "学员信息"; | |||
this.tlpIndex.ResumeLayout(false); | |||
this.tableLayoutPanel1.ResumeLayout(false); | |||
this.ResumeLayout(false); | |||
} | |||
@@ -83,7 +173,11 @@ namespace StuMgmClient | |||
#endregion | |||
private System.Windows.Forms.TableLayoutPanel tlpIndex; | |||
private StudentNavigation studentNavigation; | |||
private StudentTree studentTree; | |||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; | |||
private System.Windows.Forms.Button btnMission; | |||
private System.Windows.Forms.Button btnFile; | |||
private System.Windows.Forms.Button btnPersonalData; | |||
private System.Windows.Forms.Button btnSwAccount; | |||
} | |||
} |
@@ -21,5 +21,10 @@ namespace StuMgmClient | |||
} | |||
private void btnPersonalData_Click(object sender, EventArgs e) | |||
{ | |||
} | |||
} | |||
} |
@@ -112,9 +112,84 @@ | |||
<value>2.0</value> | |||
</resheader> | |||
<resheader name="reader"> | |||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |||
</resheader> | |||
<resheader name="writer"> | |||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |||
</resheader> | |||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |||
<data name="tableLayoutPanel1.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |||
<value> | |||
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 | |||
MfMLpy7cvhrp45fUx+3L8x/irH//2Q== | |||
</value> | |||
</data> | |||
</root> |
@@ -1,152 +0,0 @@ | |||
namespace StuMgmClient | |||
{ | |||
partial class StudentNavigation | |||
{ | |||
/// <summary> | |||
/// 必需的设计器变量。 | |||
/// </summary> | |||
private System.ComponentModel.IContainer components = null; | |||
/// <summary> | |||
/// 清理所有正在使用的资源。 | |||
/// </summary> | |||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param> | |||
protected override void Dispose(bool disposing) | |||
{ | |||
if (disposing && (components != null)) | |||
{ | |||
components.Dispose(); | |||
} | |||
base.Dispose(disposing); | |||
} | |||
#region 组件设计器生成的代码 | |||
/// <summary> | |||
/// 设计器支持所需的方法 - 不要 | |||
/// 使用代码编辑器修改此方法的内容。 | |||
/// </summary> | |||
private void InitializeComponent() | |||
{ | |||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StudentNavigation)); | |||
this.btnPersonalData = new System.Windows.Forms.Button(); | |||
this.btnSwAccount = new System.Windows.Forms.Button(); | |||
this.btnFile = new System.Windows.Forms.Button(); | |||
this.btnMission = new System.Windows.Forms.Button(); | |||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); | |||
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); | |||
this.tableLayoutPanel1.SuspendLayout(); | |||
this.SuspendLayout(); | |||
// | |||
// btnPersonalData | |||
// | |||
this.btnPersonalData.BackColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnPersonalData.FlatAppearance.BorderSize = 0; | |||
this.btnPersonalData.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnPersonalData.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnPersonalData.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnPersonalData.Location = new System.Drawing.Point(3, 107); | |||
this.btnPersonalData.Name = "btnPersonalData"; | |||
this.btnPersonalData.Size = new System.Drawing.Size(299, 48); | |||
this.btnPersonalData.TabIndex = 4; | |||
this.btnPersonalData.Text = "个人信息"; | |||
this.btnPersonalData.UseVisualStyleBackColor = false; | |||
// | |||
// btnSwAccount | |||
// | |||
this.btnSwAccount.BackColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnSwAccount.FlatAppearance.BorderSize = 0; | |||
this.btnSwAccount.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnSwAccount.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnSwAccount.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnSwAccount.Location = new System.Drawing.Point(3, 161); | |||
this.btnSwAccount.Name = "btnSwAccount"; | |||
this.btnSwAccount.Size = new System.Drawing.Size(299, 49); | |||
this.btnSwAccount.TabIndex = 3; | |||
this.btnSwAccount.Text = "切换账号"; | |||
this.btnSwAccount.UseVisualStyleBackColor = false; | |||
// | |||
// btnFile | |||
// | |||
this.btnFile.BackColor = System.Drawing.Color.Transparent; | |||
this.btnFile.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnFile.FlatAppearance.BorderSize = 0; | |||
this.btnFile.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnFile.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnFile.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnFile.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnFile.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnFile.Location = new System.Drawing.Point(3, 53); | |||
this.btnFile.Name = "btnFile"; | |||
this.btnFile.Size = new System.Drawing.Size(299, 48); | |||
this.btnFile.TabIndex = 2; | |||
this.btnFile.Text = "相关文档"; | |||
this.btnFile.UseVisualStyleBackColor = false; | |||
// | |||
// btnMission | |||
// | |||
this.btnMission.BackColor = System.Drawing.Color.Transparent; | |||
this.btnMission.Dock = System.Windows.Forms.DockStyle.Bottom; | |||
this.btnMission.FlatAppearance.BorderSize = 0; | |||
this.btnMission.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent; | |||
this.btnMission.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent; | |||
this.btnMission.FlatStyle = System.Windows.Forms.FlatStyle.System; | |||
this.btnMission.Font = new System.Drawing.Font("幼圆", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); | |||
this.btnMission.ForeColor = System.Drawing.Color.Transparent; | |||
this.btnMission.Location = new System.Drawing.Point(3, 3); | |||
this.btnMission.Name = "btnMission"; | |||
this.btnMission.Size = new System.Drawing.Size(299, 44); | |||
this.btnMission.TabIndex = 0; | |||
this.btnMission.Text = "我的任务"; | |||
this.btnMission.UseVisualStyleBackColor = false; | |||
// | |||
// tableLayoutPanel1 | |||
// | |||
this.tableLayoutPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableLayoutPanel1.BackgroundImage"))); | |||
this.tableLayoutPanel1.ColumnCount = 1; | |||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); | |||
this.tableLayoutPanel1.Controls.Add(this.btnMission, 0, 0); | |||
this.tableLayoutPanel1.Controls.Add(this.btnFile, 0, 1); | |||
this.tableLayoutPanel1.Controls.Add(this.btnSwAccount, 0, 3); | |||
this.tableLayoutPanel1.Controls.Add(this.btnPersonalData, 0, 2); | |||
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; | |||
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); | |||
this.tableLayoutPanel1.Name = "tableLayoutPanel1"; | |||
this.tableLayoutPanel1.RowCount = 5; | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); | |||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); | |||
this.tableLayoutPanel1.Size = new System.Drawing.Size(305, 627); | |||
this.tableLayoutPanel1.TabIndex = 5; | |||
// | |||
// StudentNavigation | |||
// | |||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); | |||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |||
this.Controls.Add(this.tableLayoutPanel1); | |||
this.Name = "StudentNavigation"; | |||
this.Size = new System.Drawing.Size(305, 627); | |||
this.tableLayoutPanel1.ResumeLayout(false); | |||
this.ResumeLayout(false); | |||
} | |||
#endregion | |||
private System.Windows.Forms.Button btnPersonalData; | |||
private System.Windows.Forms.Button btnSwAccount; | |||
private System.Windows.Forms.Button btnFile; | |||
private System.Windows.Forms.Button btnMission; | |||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; | |||
private System.ComponentModel.BackgroundWorker backgroundWorker1; | |||
} | |||
} |
@@ -1,18 +0,0 @@ | |||
using System; | |||
using System.Collections.Generic; | |||
using System.ComponentModel; | |||
using System.Drawing; | |||
using System.Data; | |||
using System.Text; | |||
using System.Windows.Forms; | |||
namespace StuMgmClient | |||
{ | |||
public partial class StudentNavigation : UserControl | |||
{ | |||
public StudentNavigation() | |||
{ | |||
InitializeComponent(); | |||
} | |||
} | |||
} |
@@ -1,198 +0,0 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<root> | |||
<!-- | |||
Microsoft ResX Schema | |||
Version 2.0 | |||
The primary goals of this format is to allow a simple XML format | |||
that is mostly human readable. The generation and parsing of the | |||
various data types are done through the TypeConverter classes | |||
associated with the data types. | |||
Example: | |||
... ado.net/XML headers & schema ... | |||
<resheader name="resmimetype">text/microsoft-resx</resheader> | |||
<resheader name="version">2.0</resheader> | |||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |||
<value>[base64 mime encoded serialized .NET Framework object]</value> | |||
</data> | |||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |||
<comment>This is a comment</comment> | |||
</data> | |||
There are any number of "resheader" rows that contain simple | |||
name/value pairs. | |||
Each data row contains a name, and value. The row also contains a | |||
type or mimetype. Type corresponds to a .NET class that support | |||
text/value conversion through the TypeConverter architecture. | |||
Classes that don't support this are serialized and stored with the | |||
mimetype set. | |||
The mimetype is used for serialized objects, and tells the | |||
ResXResourceReader how to depersist the object. This is currently not | |||
extensible. For a given mimetype the value must be set accordingly: | |||
Note - application/x-microsoft.net.object.binary.base64 is the format | |||
that the ResXResourceWriter will generate, however the reader can | |||
read any of the formats listed below. | |||
mimetype: application/x-microsoft.net.object.binary.base64 | |||
value : The object must be serialized with | |||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |||
: and then encoded with base64 encoding. | |||
mimetype: application/x-microsoft.net.object.soap.base64 | |||
value : The object must be serialized with | |||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |||
: and then encoded with base64 encoding. | |||
mimetype: application/x-microsoft.net.object.bytearray.base64 | |||
value : The object must be serialized into a byte array | |||
: using a System.ComponentModel.TypeConverter | |||
: and then encoded with base64 encoding. | |||
--> | |||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |||
<xsd:element name="root" msdata:IsDataSet="true"> | |||
<xsd:complexType> | |||
<xsd:choice maxOccurs="unbounded"> | |||
<xsd:element name="metadata"> | |||
<xsd:complexType> | |||
<xsd:sequence> | |||
<xsd:element name="value" type="xsd:string" minOccurs="0" /> | |||
</xsd:sequence> | |||
<xsd:attribute name="name" use="required" type="xsd:string" /> | |||
<xsd:attribute name="type" type="xsd:string" /> | |||
<xsd:attribute name="mimetype" type="xsd:string" /> | |||
<xsd:attribute ref="xml:space" /> | |||
</xsd:complexType> | |||
</xsd:element> | |||
<xsd:element name="assembly"> | |||
<xsd:complexType> | |||
<xsd:attribute name="alias" type="xsd:string" /> | |||
<xsd:attribute name="name" type="xsd:string" /> | |||
</xsd:complexType> | |||
</xsd:element> | |||
<xsd:element name="data"> | |||
<xsd:complexType> | |||
<xsd:sequence> | |||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |||
</xsd:sequence> | |||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |||
<xsd:attribute ref="xml:space" /> | |||
</xsd:complexType> | |||
</xsd:element> | |||
<xsd:element name="resheader"> | |||
<xsd:complexType> | |||
<xsd:sequence> | |||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |||
</xsd:sequence> | |||
<xsd:attribute name="name" type="xsd:string" use="required" /> | |||
</xsd:complexType> | |||
</xsd:element> | |||
</xsd:choice> | |||
</xsd:complexType> | |||
</xsd:element> | |||
</xsd:schema> | |||
<resheader name="resmimetype"> | |||
<value>text/microsoft-resx</value> | |||
</resheader> | |||
<resheader name="version"> | |||
<value>2.0</value> | |||
</resheader> | |||
<resheader name="reader"> | |||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |||
</resheader> | |||
<resheader name="writer"> | |||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |||
</resheader> | |||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |||
<data name="tableLayoutPanel1.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |||
<value> | |||
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 | |||
MfMLpy7cvhrp45fUx+3L8x/irH//2Q== | |||
</value> | |||
</data> | |||
<metadata name="backgroundWorker1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |||
<value>17, 17</value> | |||
</metadata> | |||
</root> |