版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
./C#簡單通訊錄系別計算機與通信工程學院專業(yè)名稱計算機科學與技術班級學號學生成績2012年6月1簡單通訊錄的設計功能與界面設計〔1主界面設計通訊錄的功能主要分為添加、查找、刪除與修改這四個功能,因為查找和添加是最常用的功能,所以我把這兩個功能單獨列出來放到主界面上,把修改和刪除合并成為在功能管理通訊錄里,另外加上退出通訊錄的功能就設計出如下圖1.1.1圖主界面的主要代碼截圖如下圖圖〔2管理通信錄界面設計管理通訊錄界面應實現(xiàn)的功能包括刪除和修改,但是為了防止因為用戶的錯誤操作引起的數(shù)據(jù)丟失不可恢復,所以應該像txt和word一樣加上保存的功能,我設計的界面如下圖圖圖圖圖圖〔3快速查找界面設計查找功能包括一個簡單的快速搜索方法,用戶輸入簡單的名字信息,表格會自動跳轉至用戶想要找到的信息上,查找功能界面如下圖所示,實現(xiàn)搜索功能涉及的主要代碼截圖如下圖1.3.2另外該界面加載時系統(tǒng)同樣會將通訊錄.txt的信息加載到表格里,所使用方法同上,在這里不再描述圖圖〔4添加界面設計添加界面的設計較為簡單只包括四個供輸入的文本框,四個標簽,一個確定輸入的按鈕,如圖所示,用戶輸入功能要求用戶輸入的不能為空必須為純數(shù)字,對住址和性別的輸入未作限制,同時系統(tǒng)使用字符"*&$"作為標記分隔用戶的輸入方便以后的讀取,實現(xiàn)這些功能所涉及到的代碼如圖1.4.2所示,圖1.4.3給出用戶添加一些資料后,通訊錄.txt的容情況圖圖圖二、程序運行測試結果主界面點擊管理通訊錄選中一,錢二兩項點擊刪除后選中123124123141項點擊修改,在顯示出的修改框修改該記錄為宇飛男312313124點擊確認修改如果輸入的不是純數(shù)字未作保存,直接點右上角退出通訊錄保存后點擊關閉按鈕系統(tǒng)會返回主界面點擊快速查找按鈕輸入"武"進行搜索輸入"白"進行搜索關閉搜索界面,在主界面點擊添加聯(lián)系人按鈕當輸入為空時當輸入不為純數(shù)字時關閉添加聯(lián)系人界面,返回主界面點擊退出點擊是,立刻退出簡單通訊錄系統(tǒng)三、程序源代碼program.csusingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Windows.Forms;namespaceWindowsFormsApplication3{staticclassProgram{///<summary>///應用程序的主入口點。///</summary>[STAThread]staticvoidMain<>{Application.EnableVisualStyles<>;Application.SetCompatibleTextRenderingDefault<false>;Application.Run<new簡單通訊錄<>>;}}}簡單通訊錄.Designer.csnamespaceWindowsFormsApplication3{partialclass簡單通訊錄{///<summary>///必需的設計器變量。///</summary>privateSystem.ComponentModel.IContainercomponents=null;///<summary>///清理所有正在使用的資源。///</summary>///<paramname="disposing">如果應釋放托管資源,為true;否則為false。</param>protectedoverridevoidDispose<booldisposing>{if<disposing&&<components!=null>>{components.Dispose<>;}base.Dispose<disposing>;}#regionWindows窗體設計器生成的代碼///<summary>///設計器支持所需的方法-不要///使用代碼編輯器修改此方法的容。///</summary>privatevoidInitializeComponent<>{this.flowLayoutPanel1=newSystem.Windows.Forms.FlowLayoutPanel<>;this.button2=newSystem.Windows.Forms.Button<>;this.button3=newSystem.Windows.Forms.Button<>;this.button1=newSystem.Windows.Forms.Button<>;this.button4=newSystem.Windows.Forms.Button<>;this.flowLayoutPanel1.SuspendLayout<>;this.SuspendLayout<>;////flowLayoutPanel1//this.flowLayoutPanel1.Controls.Add<this.button2>;this.flowLayoutPanel1.Controls.Add<this.button3>;this.flowLayoutPanel1.Controls.Add<this.button1>;this.flowLayoutPanel1.Controls.Add<this.button4>;this.flowLayoutPanel1.Location=newSystem.Drawing.Point<74,23>;this.flowLayoutPanel1.Name="flowLayoutPanel1";this.flowLayoutPanel1.Size=newSystem.Drawing.Size<133,130>;this.flowLayoutPanel1.TabIndex=0;////button2//on=newSystem.Drawing.Point<3,3>;this.button2.Name="button2";this.button2.Size=newSystem.Drawing.Size<129,25>;this.button2.TabIndex=1;this.button2.Text="管理通信錄";sualStyleBackColor=true;this.button2.Click+=newSystem.EventHandler<this.button2_Click>;////button3//this.button3.Location=newSystem.Drawing.Point<3,34>;this.button3.Name="button3";this.button3.Size=newSystem.Drawing.Size<129,25>;this.button3.TabIndex=2;this.button3.Text="快速查找";this.button3.UseVisualStyleBackColor=true;this.button3.Click+=newSystem.EventHandler<this.button3_Click>;////button1//this.button1.Location=newSystem.Drawing.Point<3,65>;this.button1.Name="button1";this.button1.Size=newSystem.Drawing.Size<129,25>;this.button1.TabIndex=0;this.button1.Text="添加聯(lián)系人";this.button1.UseVisualStyleBackColor=true;this.button1.Click+=newSystem.EventHandler<this.button1_Click>;////button4//this.button4.Location=newSystem.Drawing.Point<3,96>;this.button4.Name="button4";this.button4.Size=newSystem.Drawing.Size<129,25>;this.button4.TabIndex=3;this.button4.Text="退出";this.button4.UseVisualStyleBackColor=true;this.button4.Click+=newSystem.EventHandler<this.button4_Click>;////簡單通訊錄//this.AutoScaleDimensions=newSystem.Drawing.SizeF<6F,12F>;this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;this.ClientSize=newSystem.Drawing.Size<284,262>;this.Controls.Add<this.flowLayoutPanel1>;this.Name="簡單通訊錄";this.Text="簡單通訊錄";this.flowLayoutPanel1.ResumeLayout<false>;this.ResumeLayout<false>;}#endregionprivateSystem.Windows.Forms.FlowLayoutPanelflowLayoutPanel1;privateSystem.Windows.Forms.Buttonbutton1;privateSystem.Windows.Forms.Buttonbutton2;privateSystem.Windows.Forms.Buttonbutton3;privateSystem.Windows.Forms.Buttonbutton4;}}簡單通訊錄.csusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.IO;namespaceWindowsFormsApplication3{publicpartialclass簡單通訊錄:Form{public簡單通訊錄<>{InitializeComponent<>;}privatevoidbutton4_Click<objectsender,EventArgse>{//點擊退出按鈕系統(tǒng)提示是否退出通訊錄系統(tǒng)DialogResultdiares;MessageBoxButtonsbuttons=MessageBoxButtons.YesNo;MessageBoxDefaultButtondefbut=MessageBoxDefaultButton.Button1;MessageBoxIconicon=MessageBoxIcon.Question;stringask="你是否要退出通訊錄?";stringcaption="溫馨提示";diares=MessageBox.Show<this,ask,caption,buttons,icon,defbut>;if<diares==DialogResult.Yes>{this.Close<>;}}privatevoidbutton1_Click<objectsender,EventArgse>{new添加聯(lián)系人<>.Show<>;}privatevoidbutton2_Click<objectsender,EventArgse>{newManageForm<>.Show<>;}privatevoidbutton3_Click<objectsender,EventArgse>{new快速查找<>.Show<>;}}}管理通訊錄.Designer.csnamespaceWindowsFormsApplication3{partialclassManageForm{///<summary>///Requireddesignervariable.///</summary>privateSystem.ComponentModel.IContainercomponents=null;///<summary>///Cleanupanyresourcesbeingused.///</summary>///<paramname="disposing">trueifmanagedresourcesshouldbedisposed;otherwise,false.</param>protectedoverridevoidDispose<booldisposing>{if<disposing&&<components!=null>>{components.Dispose<>;}base.Dispose<disposing>;}#regionWindowsFormDesignergeneratedcode///<summary>///RequiredmethodforDesignersupport-donotmodify///thecontentsofthismethodwiththecodeeditor.///</summary>privatevoidInitializeComponent<>{this.listView1=newSystem.Windows.Forms.ListView<>;this.column1=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.column2=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.column3=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.column4=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.deletebutton=newSystem.Windows.Forms.Button<>;this.alterbutton=newSystem.Windows.Forms.Button<>;this.savebutton=newSystem.Windows.Forms.Button<>;this.panel1=newSystem.Windows.Forms.Panel<>;this.textbox3=newSystem.Windows.Forms.TextBox<>;this.label4=newSystem.Windows.Forms.Label<>;this.textbox4=newSystem.Windows.Forms.TextBox<>;this.label3=newSystem.Windows.Forms.Label<>;this.textbox2=newSystem.Windows.Forms.TextBox<>;this.label2=newSystem.Windows.Forms.Label<>;this.label1=newSystem.Windows.Forms.Label<>;this.button4=newSystem.Windows.Forms.Button<>;this.textbox1=newSystem.Windows.Forms.TextBox<>;this.panel1.SuspendLayout<>;this.SuspendLayout<>;////listView1//this.listView1.BackColor=System.Drawing.SystemColors.ScrollBar;this.listView1.Columns.AddRange<newSystem.Windows.Forms.ColumnHeader[]{this.column1,this.column2,this.column3,this.column4}>;this.listView1.ForeColor=System.Drawing.SystemColors.InfoText;this.listView1.FullRowSelect=true;this.listView1.GridLines=true;this.listView1.Location=newSystem.Drawing.Point<12,12>;this.listView1.Name="listView1";this.listView1.Size=newSystem.Drawing.Size<327,238>;this.listView1.TabIndex=0;this.listView1.UseCompatibleStateImageBehavior=false;this.listView1.View=System.Windows.Forms.View.Details;////column1//this.column1.Text="";////column2//this.column2.Text="性別";////column3//this.column3.Text="";this.column3.Width=90;////column4//this.column4.Text="住址";this.column4.Width=120;////deletebutton//this.deletebutton.Location=newSystem.Drawing.Point<345,43>;this.deletebutton.Name="deletebutton";this.deletebutton.Size=newSystem.Drawing.Size<75,23>;this.deletebutton.TabIndex=1;this.deletebutton.Text="刪除";this.deletebutton.UseVisualStyleBackColor=true;this.deletebutton.Click+=newSystem.EventHandler<this.deletebutton_Click>;////alterbutton//ation=newSystem.Drawing.Point<345,131>;this.alterbutton.Name="alterbutton";this.alterbutton.Size=newSystem.Drawing.Size<75,23>;this.alterbutton.TabIndex=2;this.alterbutton.Text="修改";this.alterbutton.UseVisualStyleBackColor=true;this.alterbutton.Click+=newSystem.EventHandler<this.alterbutton_Click>;////savebutton//this.savebutton.Location=newSystem.Drawing.Point<345,227>;this.savebutton.Name="savebutton";this.savebutton.Size=newSystem.Drawing.Size<75,23>;this.savebutton.TabIndex=3;this.savebutton.Text="保存";this.savebutton.UseVisualStyleBackColor=true;this.savebutton.Click+=newSystem.EventHandler<this.savebutton_Click>;////panel1//this.panel1.AutoSize=true;this.panel1.Controls.Add<this.textbox3>;this.panel1.Controls.Add<this.label4>;this.panel1.Controls.Add<this.textbox4>;this.panel1.Controls.Add<this.label3>;this.panel1.Controls.Add<this.textbox2>;this.panel1.Controls.Add<this.label2>;this.panel1.Controls.Add<this.label1>;this.panel1.Controls.Add<this.button4>;this.panel1.Controls.Add<this.textbox1>;this.panel1.Location=newSystem.Drawing.Point<12,256>;this.panel1.Name="panel1";this.panel1.Size=newSystem.Drawing.Size<379,88>;this.panel1.TabIndex=7;this.panel1.Visible=false;////textbox3//this.textbox3.Location=newSystem.Drawing.Point<263,0>;this.textbox3.Name="textbox3";this.textbox3.Size=newSystem.Drawing.Size<100,21>;this.textbox3.TabIndex=18;////label4//this.label4.AutoSize=true;this.label4.Font=newSystem.Drawing.Font<"宋體",14.25F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,<<byte><134>>>;this.label4.Location=newSystem.Drawing.Point<191,33>;this.label4.Name="label4";this.label4.Size=newSystem.Drawing.Size<66,19>;this.label4.TabIndex=17;this.label4.Text="住址:";////textbox4//this.textbox4.Location=newSystem.Drawing.Point<263,31>;this.textbox4.Name="textbox4";this.textbox4.Size=newSystem.Drawing.Size<100,21>;this.textbox4.TabIndex=16;////label3//this.label3.AutoSize=true;this.label3.Font=newSystem.Drawing.Font<"宋體",14.25F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,<<byte><134>>>;this.label3.Location=newSystem.Drawing.Point<191,2>;this.label3.Name="label3";this.label3.Size=newSystem.Drawing.Size<66,19>;this.label3.TabIndex=15;this.label3.Text=":";////textbox2//this.textbox2.Location=newSystem.Drawing.Point<75,35>;this.textbox2.Name="textbox2";this.textbox2.Size=newSystem.Drawing.Size<100,21>;this.textbox2.TabIndex=12;////label2//this.label2.AutoSize=true;this.label2.Font=newSystem.Drawing.Font<"宋體",14.25F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,<<byte><134>>>;this.label2.Location=newSystem.Drawing.Point<3,35>;this.label2.Name="label2";this.label2.Size=newSystem.Drawing.Size<66,19>;this.label2.TabIndex=11;this.label2.Text="性別:";////label1//this.label1.AutoSize=true;this.label1.Font=newSystem.Drawing.Font<"宋體",14.25F,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,<<byte><134>>>;this.label1.Location=newSystem.Drawing.Point<3,2>;this.label1.Name="label1";this.label1.Size=newSystem.Drawing.Size<66,19>;this.label1.TabIndex=10;this.label1.Text=":";////button4//this.button4.Location=newSystem.Drawing.Point<155,62>;this.button4.Name="button4";this.button4.Size=newSystem.Drawing.Size<75,23>;this.button4.TabIndex=5;this.button4.Text="確認修改";this.button4.UseVisualStyleBackColor=true;this.button4.Click+=newSystem.EventHandler<this.button4_Click>;////textbox1//this.textbox1.Location=newSystem.Drawing.Point<75,0>;this.textbox1.Name="textbox1";this.textbox1.Size=newSystem.Drawing.Size<100,21>;this.textbox1.TabIndex=3;////ManageForm//this.AutoScaleDimensions=newSystem.Drawing.SizeF<6F,12F>;this.AutoScaleMode=System.Windows.Forms.AutoScaleMode.Font;this.ClientSize=newSystem.Drawing.Size<450,353>;this.Controls.Add<this.panel1>;this.Controls.Add<this.savebutton>;this.Controls.Add<this.alterbutton>;this.Controls.Add<this.deletebutton>;this.Controls.Add<this.listView1>;this.Name="ManageForm";this.Text="管理通訊錄";this.Load+=newSystem.EventHandler<this.管理通訊錄_Load>;this.panel1.ResumeLayout<false>;this.panel1.PerformLayout<>;this.ResumeLayout<false>;this.PerformLayout<>;}#endregionprivateSystem.Windows.Forms.ListViewlistView1;privateSystem.Windows.Forms.ColumnHeadercolumn1;privateSystem.Windows.Forms.ColumnHeadercolumn2;privateSystem.Windows.Forms.ColumnHeadercolumn3;privateSystem.Windows.Forms.ColumnHeadercolumn4;privateSystem.Windows.Forms.Buttondeletebutton;privateSystem.Windows.Forms.Buttonalterbutton;privateSystem.Windows.Forms.Buttonsavebutton;privateSystem.Windows.Forms.Panelpanel1;privateSystem.Windows.Forms.TextBoxtextbox3;privateSystem.Windows.Forms.Labellabel4;privateSystem.Windows.Forms.TextBoxtextbox4;privateSystem.Windows.Forms.Labellabel3;privateSystem.Windows.Forms.TextBoxtextbox2;privateSystem.Windows.Forms.Labellabel2;privateSystem.Windows.Forms.Labellabel1;privateSystem.Windows.Forms.Buttonbutton4;privateSystem.Windows.Forms.TextBoxtextbox1;}}管理通訊錄.csusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.IO;usingSystem.Text.RegularExpressions;namespaceWindowsFormsApplication3{publicpartialclassManageForm:Form{privateBooleanischanged=false;//定義ischanged變量來表示通訊錄是否被修改,用戶每次點擊刪除或者確定修改按鈕后,ischanged=true,//用戶點擊每次保存后,ischanged=false,這樣在關閉窗口時,觸發(fā)關閉窗口事件后//系統(tǒng)會判斷ischanged的值,如果ischanged=true說明用戶有未保存的修改,系統(tǒng)會提示用戶是否保存修改publicManageForm<>{InitializeComponent<>;listView1.ColumnClick+=newColumnClickEventHandler<listView1_ColumnClick>;//注冊排序事件this.FormClosing+=newSystem.Windows.Forms.FormClosingEventHandler<this.ManageForm_FormClosing>;//注冊關閉窗口事件}//點擊列名更改排序排序方式,默認是不排序privatevoidlistView1_ColumnClick<objectsender,ColumnClickEventArgse>{if<listView1.Sorting==SortOrder.Ascending>{listView1.Sorting=SortOrder.Descending;}else{listView1.Sorting=SortOrder.Ascending;}}privatevoidAddlistViewItem<String[]a>//向列表中添加項的方法{ListViewItemitem=newListViewItem<a>;listView1.Items.Add<item>;}privatevoid管理通訊錄_Load<objectsender,EventArgse>{//讀取通訊錄.txt中的每一行保存到a[]中String[]a=File.ReadAllLines<"通訊錄.txt",Encoding.Default>;for<inti=0;i<a.Length;i++>{string[]ax=a[i].Split<newString[]{"*&$"},StringSplitOptions.None>;//分割通訊錄的一行AddlistViewItem<ax>;//調用方法,添加每一行到表格中}}privatevoiddeletebutton_Click<objectsender,EventArgse>//刪除方法,刪除選中的1個或多個列表項{ischanged=true;for<inti=listView1.SelectedItems.Count-1;i>=0;i-->{ListViewItemitem=listView1.SelectedItems[i];listView1.Items.Remove<item>;}}publicvoidsave<>//這個方法用戶保存,它會新建一個與原文件同名的文件將原文件覆蓋,實現(xiàn)對原文件的復寫{FileStreamfs=newFileStream<"通訊錄.txt",FileMode.Create,FileAccess.Write>;StreamWritersw=newStreamWriter<fs,Encoding.Default>;for<inti=0;i<this.listView1.Items.Count;i++>{sw.WriteLine<string.Format<"{0}*&${1}*&${2}*&${3}",listView1.Items[i].SubItems[0].Text,listView1.Items[i].SubItems[1].Text,listView1.Items[i].SubItems[2].Text,listView1.Items[i].SubItems[3].Text>>;}sw.Close<>;fs.Close<>;}//下面是保存方法,能將編輯后的列表信息保存到通訊錄中并給出提示privatevoidsavebutton_Click<objectsender,EventArgse>{ischanged=false;save<>;MessageBox.Show<"保存成功">;}//下面方法實現(xiàn)這樣的功能:點擊修改按鈕,系統(tǒng)會將修改組件在顯示與隱藏直接切換privatevoidalterbutton_Click<objectsender,EventArgse>{if<panel1.Visible==true>{panel1.Visible=false;}else{panel1.Visible=true;}}privatevoidbutton4_Click<objectsender,EventArgse>{ischanged=true;if<listView1.SelectedItems.Count>=1>{ListViewItemitem=listView1.SelectedItems[listView1.SelectedItems.Count-1];if<!textbox1.Text.Contains<"*&$">&&!textbox2.Text.Contains<"*&$">&&!textbox3.Text.Contains<"*&$">&&!textbox4.Text.Contains<"*&$">>{if<textbox1.Text!="">//用戶輸入的不能為空{if<Regex.IsMatch<textbox3.Text,"^[0-9]*$">>{item.SubItems[0].Text=textbox1.Text;item.SubItems[1].Text=textbox2.Text;item.SubItems[2].Text=textbox3.Text;item.SubItems[3].Text=textbox4.Text;MessageBox.Show<"修改成功">;textbox1.Clear<>;textbox2.Clear<>;textbox3.Clear<>;textbox4.Clear<>;}elseMessageBox.Show<"輸入的只能為數(shù)字">;}elseMessageBox.Show<"用戶輸入不能為空">;}elseMessageBox.Show<"修改失敗,字符"*&$"是系統(tǒng)定義的特殊字符,請用戶不要使用">;}}privatevoidManageForm_FormClosing<objectsender,FormClosingEventArgse>{if<ischanged>{DialogResultresult=MessageBox.Show<"發(fā)現(xiàn)您有未保存的修改,是否要將修改應用到通訊錄","提示信息",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Information>;if<result==DialogResult.Cancel>{e.Cancel=true;}elseif<result==DialogResult.No>{e.Cancel=false;}else{save<>;e.Cancel=false;}}else{e.Cancel=false;}}}}快速查找.Designer.csnamespaceWindowsFormsApplication3{partialclass快速查找{///<summary>///Requireddesignervariable.///</summary>privateSystem.ComponentModel.IContainercomponents=null;///<summary>///Cleanupanyresourcesbeingused.///</summary>///<paramname="disposing">trueifmanagedresourcesshouldbedisposed;otherwise,false.</param>protectedoverridevoidDispose<booldisposing>{if<disposing&&<components!=null>>{components.Dispose<>;}base.Dispose<disposing>;}#regionWindowsFormDesignergeneratedcode///<summary>///RequiredmethodforDesignersupport-donotmodify///thecontentsofthismethodwiththecodeeditor.///</summary>privatevoidInitializeComponent<>{this.searchbutton=newSystem.Windows.Forms.Button<>;this.textBox1=newSystem.Windows.Forms.TextBox<>;this.listView2=newSystem.Windows.Forms.ListView<>;this.columnHeader1=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.columnHeader2=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.columnHeader3=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.columnHeader4=<<System.Windows.Forms.ColumnHeader><newSystem.Windows.Forms.ColumnHeader<>>>;this.SuspendLayout<>;////searchbutton//this.searchbutton.Location=newSystem.Drawing.Point<175,12>;this.searchbutton.Name="searchbutton";this.searchbutton.Size=newSystem.Drawing.Size<75,23>;this.searchbutton.TabIndex=0;this.searchbutton.Text="快速搜索";this.searchbutton.UseVisualStyleBackColor=true;this.searchbutton.Click+=newSystem.EventHandler<this.searchbutton_Click>;////textBox1//this.textBox1.Location=newSystem.Drawing.Point<2,12>;this.textBox1.Name="textBox1";this.textBox1.Size=newSystem.Drawing.Size<133,21>;this.textBox1.TabIndex=1;////listView2//this.listView2.BackColor=System.Drawing.SystemColors.ActiveCaption;this.listView2.Columns.AddRange<newSystem.Windows.Forms.ColumnHeader[]{this.columnHeader1,this.columnHeader2,this.columnHeader3,this.columnHeader4}>;this.listView2.FullRowSelect=true;this.listView2.GridLines=true;this.listView2.Location=newSystem.Drawing.Point<2,56>;this.listView2.Name="listView2";this.listView2.Size=newSystem.Drawing.Size<309,221>;this.listView2.TabIndex=3;this.listView2.UseCompatibleStateImageBehavior=false;this.listView2.View=System.Windows.Forms.View.Details;
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 土木工程的實習報告4篇
- 2025年云數(shù)融合項目規(guī)劃申請報告
- 2025年新型電子時間繼電器項目申請報告模范
- 2024-2025學年武漢市喬口區(qū)三上數(shù)學期末預測試題含解析
- 銀行的職員辭職報告(集合15篇)
- 出納畢業(yè)生的實習報告
- 2025年壓縮式垃圾車項目規(guī)劃申請報告模范
- 平凡的世界讀書有感2022
- 急診2022年護理工作計劃
- 律師事務所的實習報告模板集錦7篇
- 先玉335玉米品種介紹課件講解
- (正式版)JTT 1482-2023 道路運輸安全監(jiān)督檢查規(guī)范
- MH-T 5061-2022運輸機場專業(yè)工程施工組織設計規(guī)范
- 2023-2024學年福建省福州市鼓樓區(qū)屏東中學八年級(上)期末數(shù)學試卷
- 強夯安全技術交底
- 康復醫(yī)院籌建計劃書
- 吊籃安裝拆卸專項施工方案
- 企業(yè)財務風險防范的參考文獻
- 提升高中生領導能力和組織能力的建議
- 2024年四川省水電投資經營集團普格電力有限公司招聘筆試參考題庫含答案解析
- 2024屆新高考物理沖刺復習:“正則動量”解決帶電粒子在磁場中的運動問題
評論
0/150
提交評論