資源簡介
這是鄭阿奇C#程序設計教程的程序代碼部分

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
namespace?StudentMIS
{
????public?partial?class?Course?:?Form
????{
????????public?Course()
????????{
????????????InitializeComponent();
????????}
????????private?void?button1_Click(object?sender?EventArgs?e)
????????{
????????????//采用遍歷的方法檢索選擇項
????????????if?(c1.Checked)
????????????{
????????????????textBox1.Text?=?“必修“;
????????????}
????????????if?(c2.Checked)
????????????{
????????????????textBox1.Text?=?“選修“;
????????????}
????????????if?(c3.Checked)
????????????{
????????????????textBox1.Text?=?“平臺“;
????????????}
????????????if?(c4.Checked)
????????????{
????????????????textBox1.Text?=?“自主“;
????????????}
????????????//采用遍歷容器內控件的方法檢索選擇項
????????????foreach?(Control?control?in?groupBox2.Controls)
????????????{
????????????????if?((control?as?RadioButton).Checked)
????????????????{
????????????????????textBox2.Text?=?(control?as?RadioButton).Text;
????????????????????break;
????????????????}
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????6817??2007-08-14?16:57??C#程序教程-鄭阿奇-程序代碼\chapter5\42.gif
?????文件??????40960??2008-07-01?16:36??C#程序教程-鄭阿奇-程序代碼\chapter5\bin\Debug\StudentMIS.exe
?????文件??????30208??2008-07-01?16:36??C#程序教程-鄭阿奇-程序代碼\chapter5\bin\Debug\StudentMIS.pdb
?????文件???????5632??2005-12-08?14:51??C#程序教程-鄭阿奇-程序代碼\chapter5\bin\Debug\StudentMIS.vshost.exe
?????文件??????????1??2008-07-01?15:39??C#程序教程-鄭阿奇-程序代碼\chapter5\ClassDiagram1.cd
?????文件???????1235??2007-08-15?17:44??C#程序教程-鄭阿奇-程序代碼\chapter5\Course.cs
?????文件??????12270??2007-08-15?17:44??C#程序教程-鄭阿奇-程序代碼\chapter5\Course.Designer.cs
?????文件???????5814??2007-08-15?17:44??C#程序教程-鄭阿奇-程序代碼\chapter5\Course.resx
?????文件???????1163??2007-08-14?16:53??C#程序教程-鄭阿奇-程序代碼\chapter5\Login.cs
?????文件???????4863??2007-08-14?15:26??C#程序教程-鄭阿奇-程序代碼\chapter5\Login.Designer.cs
?????文件???????5814??2007-08-14?15:26??C#程序教程-鄭阿奇-程序代碼\chapter5\Login.resx
?????文件???????1087??2007-08-16?11:07??C#程序教程-鄭阿奇-程序代碼\chapter5\Main.cs
?????文件???????1460??2007-08-15?22:05??C#程序教程-鄭阿奇-程序代碼\chapter5\Main.Designer.cs
?????文件???????5814??2007-08-15?22:05??C#程序教程-鄭阿奇-程序代碼\chapter5\Main.resx
?????文件???????1175??2008-07-01?16:33??C#程序教程-鄭阿奇-程序代碼\chapter5\obj\Debug\StudentMIS.csproj.GenerateResource.Cache
?????文件??????40960??2008-07-01?16:36??C#程序教程-鄭阿奇-程序代碼\chapter5\obj\Debug\StudentMIS.exe
?????文件???????7279??2007-09-04?22:45??C#程序教程-鄭阿奇-程序代碼\chapter5\obj\Debug\StudentMIS.Properties.Resources.resources
?????文件???????7323??2008-07-01?16:33??C#程序教程-鄭阿奇-程序代碼\chapter5\obj\Debug\StudentMIS.StuInfo.resources
?????文件???????4608??2007-08-16?11:08??C#程序教程-鄭阿奇-程序代碼\chapter5\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
?????文件????????291??2008-07-01?16:37??C#程序教程-鄭阿奇-程序代碼\chapter5\obj\StudentMIS.csproj.FileList.txt
?????文件????????471??2008-07-01?16:28??C#程序教程-鄭阿奇-程序代碼\chapter5\Program.cs
?????文件???????1204??2007-08-14?11:44??C#程序教程-鄭阿奇-程序代碼\chapter5\Properties\AssemblyInfo.cs
?????文件???????3086??2007-08-16?11:08??C#程序教程-鄭阿奇-程序代碼\chapter5\Properties\Resources.Designer.cs
?????文件???????6191??2007-08-14?16:57??C#程序教程-鄭阿奇-程序代碼\chapter5\Properties\Resources.resx
?????文件???????1106??2007-08-16?11:08??C#程序教程-鄭阿奇-程序代碼\chapter5\Properties\Settings.Designer.cs
?????文件????????249??2007-08-14?11:44??C#程序教程-鄭阿奇-程序代碼\chapter5\Properties\Settings.settings
?????文件???????6817??2007-08-14?16:57??C#程序教程-鄭阿奇-程序代碼\chapter5\Resources\42.gif
?????文件???????3317??2008-07-01?15:56??C#程序教程-鄭阿奇-程序代碼\chapter5\StudentMIS.csproj
?????文件????????836??2008-07-01?15:54??C#程序教程-鄭阿奇-程序代碼\chapter5\StudentMIS.csproj.user
?????文件????????908??2007-08-14?11:44??C#程序教程-鄭阿奇-程序代碼\chapter5\StudentMIS.sln
............此處省略1839個文件信息
評論
共有 條評論