版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Windows CE 程式設計實務运用 eMbedded Visual BasicChapter 5Outline CommonDialog Control File and File System Controls App and Clipboard Objects MenuBar and ImageList Controls TreeView and ListView Controls Grid Control TabStrip ControlCommonDialog Control 普通檔案處理程式中,我們要開啟舊檔或另存新檔等,處理這些動作的對話框即是 CommonDialog。Com
2、monDialog Properties CancelError:設定一個运用者按下“取消按鈕時,會不會產生錯誤代碼,預設是 False,即不會。 Color:傳回或設定 CommonDialog 的顏色。 DefaultExt:設定預設的副檔名。 DialogTitle:設定對話框的標題。當我們要開啟的對話框是 “Color或“Font時,這個屬性不會作用。 object.DialogTitle =titleCommonDialog Properties (Cont.) FileName:傳回或設定所選取檔案的路徑和檔案名稱。 object.FileName=pathname,pathnam
3、e 表示特定的路徑和檔案名稱,假设在 “Open對話框結束之後,FileName=“,則代表运用者沒有選取任何一個檔案。 FileTitle:和 FileName 很像,但 FileTitle 只包含檔案名稱,不包含檔案的路徑。CommonDialog Properties (Cont.) Filter:比如我們希望找的檔案是 *.bmp 檔,則可以把 *.bmp 副檔名設定在 Filter 中。 Object.Filter =description1|filter1|description2|filter2 CommonDialog1.Filter = CommonDialog1.Filte
4、r = All files|*.* CommonDialog1.Filter = Text files|*.txt“ CommonDialog1.Filter = Bitmaps|*.2bp;*.bmp|Text Files|*.txt CommonDialog Properties (Cont.) FilterIndex:設定或傳回一個內定的 filter for “Open或 “Save As。內定是 1。 Flags:設定對話框中的選項 object.Flags =Value常數值內容cdlCCFullOpen&H2顯示整個對話框,包括自訂顏色的部分cdlCCPreventFul
5、lOpen&H4Disables the Define Custom Colors command button and prevents the user from defining custom colors cdlCCRGBInit&H1Sets the initial color value for the dialog box CommonDialog Properties (Cont.) Open 和 SaveAs 對話框CommonDialog Properties (Cont.) FontBold,FontItalic,FontUnderline,FontNam
6、e,FontSize HelpCommand:returns and sets the type of Help requested object.HelpCommand =valueCommonDialog Properties (Cont.) HelpContext:returns and sets the context identifier of a requested Help topic. object.HelpContext =value HelpFile:應用程式假设有 Help 檔,可以將 Help 檔的檔名和路徑指定給這個屬性。 InitDir:設定預設的目錄 Max,Mi
7、n:可選取字形的最大和最小值。 MaxFileSize:returns and sets the maximum size of the file name opened using the CommonDialog control. 範圍是 132KBCommonDialog Methods ShowOpen:顯示 Open 對話框CommonDialog Methods (Cont.) ShowSave:顯示 “Save As 對話框CommonDialog Methods (Cont.) ShowColor:顯示“Color對話框CommonDialog Methods (Cont.)
8、ShowFont:CommonDialog Methods (Cont.) ShowHelp:MiniSeeImageCtlName:imgShowCheckBoxName:chkStretchcmdOpenlblFileNameCommonDialogName:dlgPic tureOpenMiniSee (Cont.)File and FileSystem Controls 在 eVB 中關於檔案處理有兩個元件:File 與 FileSystem。File 提供應用程式建立檔案,讀寫檔案的功能。FileSystem 提供應用程式刪除,複製,搬移檔案及建立/刪除目錄的功能。File Cont
9、rol Properties Attr:获得 File Control 開啟檔案的方式,並記錄關於下次 file read/write 的起點位置。 file.Attr常數值None0fsModeInput1fsModeOutput2fsModeRandom4fsModeAppend8fsModeBinary32File Control Properties (Cont.) EOF:判斷能否已在檔案的結尾。 Loc:傳回以開啟的檔案中,目前的讀取或寫入的位置。 Seek:設定開啟的檔案中,下一個要讀取或寫入資料位置。 file.Seek =position Seek 值會不断比 Loc 多 1
10、,但假设剛開啟一個檔案,Seek=Loc=1。 Seek 值不可為 0 或負數。 File Control Methods Close(): Get:讀取已開啟的檔案 file.Get Data, Recnumber Recnumber:用來指定讀取檔案的位置。假设是 Random 方式,所用的單位就是 record number。假设檔案以 binary 方式開啟,則指定的單位便是 byte。 Input:假设檔案是以“輸入或binary方式開啟時,我們可以运用這個方法來讀取資料。 file.Input (number) number:指定要讀取的字元數。 傳回是字串方式的值。 通常我們运用
11、 Input 讀取檔案時,會运用 LinePrint 寫入資料。File Control Methods (Cont.) InputB:假设檔案是以“輸入或binary方式開啟時,我們可以运用這個方法來讀取資料。 file.Input (number) number:指定要讀取的 byte 數。 傳回是陣列方式的值。 通常我們运用 InputB 讀取檔案時,會运用 LinePrint 或 Put 寫入資料。File Control Methods (Cont.) InputFields:讀取已開啟的循序檔 (“輸入或binary方式)。 InputFields(number) number:要
12、讀取欄位之數目,欄位之間以頓號做區隔。 傳回型態為 variant 的一維陣列。 通常我們运用 InputField 讀取檔案時,會运用 WriteField 寫入資料。 InputField 讀取內容和資料方式有關資料內容讀取的資料內容頓號或者是空行無#NULL#Null#TRUE#或#FALSE#TRUE 或 FALSE#yyyy-mm-dd hh:mm:ss#日期或時間File Control Methods (Cont.) LineInputString:一次會從循序檔案中讀取一行資料,直到復位 (Chr(13)或復位加上換行(Chr(13)+Chr(10)字元為止。 file.Lin
13、eInputString Data read with LineInputString usually is written from a file with LinePrint. LinePrint:writes a single line to an open sequential file. file.LinePrint output output:要寫到檔案中的字串 自動在字串後面加上換行與復位符號。File Control Methods (Cont.) Open: file.Open pathname, mode, access, lock, reclength mode:開啟檔案
14、的方式。1:input,2:output,4:Random,8:Append,32:binary。 access:存取的方式。讀(1),寫(2),讀寫(3,預設值) lock:Operations permitted on the open file by other processes: Shared, LockRead, LockWrite Default, and LockReadWrite. (1, 2, 3, 0) reclength:指定資料記錄的長度,32767 byte。假设檔案是隨機存取檔,這個數值指的是 record 的長度。假设是普通的循序檔,指的便是字元數。File C
15、ontrol Methods (Cont.) Put:將一個變數內容寫進檔案中。 file.Put data,recnumber recnumber:Record number (Random mode files) or byte number (Binary mode files) Put 與 Get 是一對 WriteFields:把資料寫入循序檔中 File.WriteFields data 沒有 “data 時會寫入一個空行File System Control Methods Dir:依據我們設定的條件和屬性,把符合的檔案名稱列出來。 file.Dir (pathname, att
16、ributes) pathname:String expression that specifies a file name or path. 檔案的屬性選項File System Control Methods (Cont.) FileCopy:複製檔案 filesystem.FileCopy PathName,NewPathName FileDateTime:傳回檔案建立的時間,或者檔案最近修正的時間 filesystem.FileDateTime(pathname) FileLen:查詢檔案的長度 filesystem.FileLen(pathname)File System Contr
17、ol Methods (Cont.) GetAttr:获得檔案或目錄的屬性 filesystem.GetAttr(pathname) Kill:刪除檔案 filesystem.Kill Pathname MkDir:建立新目錄 filesystem.MkDir Pathname MoveFile:更改檔案或目錄名稱 filesystem.MoveFile Pathname,NewPathNameFile System Control Methods (Cont.) RmDir:移除目錄 filesystem.RmDir PathName SetAttr:設定檔案的屬性 filesystem.S
18、etAttr pathname,attributesFile System Control Methods (Cont.)開啟檔案的模式常數處理檔案的方法InputFsModeInputInput, InputB, LineInputString, InputFieldsOutputFsModeOutputLinePrint, WriteFieldsAppendFsModeAppendLinePrint, WriteFieldsRandomFsModeAppendGet, PutBinaryFsModeBinaryGet, Put, Input, InputBApp Properties Co
19、mments:傳回或設定應用程式的註解 (型態為字串),執行階段為唯讀。 objectments CompanyName:傳回或設定應用程式的所屬的公司名稱或作者姓名,執行階段為唯讀。 objectpanyName EXEName:傳回執行檔的名稱,不包含副檔名。 Object.EXEName FileDescription:傳回或設定應用程式的檔案說明資訊 (型態為字串),執行階段為唯讀。 LegalCopyRight:傳回或設定應用程式的著作權資訊 (型態為字串),執行階段為唯讀。App Properties (Cont.) LegalTrademarks:傳回或設定應用程式的商標資訊 (
20、型態為字串),執行階段為唯讀。 Major,Minor:傳回或設定專案版本編號的主要編號與次要編號,執行階段為唯讀。This property provides version information about the running application. The values range from 0 through 9,999. Path:以字串方式傳回或設定應用程式目前的路徑 ProductName:傳回或設定應用程式的產品名稱 (型態為字串),執行階段為唯讀。App Properties (Cont.) Revision:傳回或設定專案版本編號當中的修訂資訊,執行階段為唯讀。Th
21、e value of the Revision property is in the range from 0 through 9,999. TaskVisible:設定應用程式在執行時能否會出現在 Windows 的任务清單當中,預設值是 True。 Title:傳回或設定應用程式的標題。App Methods End:結束應用程式 app.End WaitForEvents:使應用程式暫停,不断到事件發生才繼續執行。 app.WaitForEvents EndWaitForEvents:使因 WaitForEvents 而暫停的應用程式繼續執行。Clipboard Methods Clea
22、r:去除 Clipboard 內容 object.Clear GetText:傳回一字串,获得 Clipboard 文字內容 clipboard.GetText(format) SetText:把字串放到 Clipboard 中。 clipboard.SetText Data, formatImageList Control Properties ImageList Control 物件可看程式管理小圖形檔的元件,提供其他物件运用小圖示的功能。 大部分是和其他控制項一併运用,像是 TreeView、CommandBar 和 TabStrip Count:傳回 ImageList 物件當中的圖檔
23、數量。 object.Count ImageWidth,ImageHeight hImageList:returns a handle to an ImageList control. 假设其他物件想要运用 ImageList 物件的話,可以运用此屬性來获得 ImageList 物件的控制權。ImageList Control Methods Add (ImageList):把圖形加到 ImageList 物件中。 imagelist.Add(filename) 在 eVB 的 ImageList 物件所援助的圖檔格式只需 bmp、dib 及 2bp。 Images can be differ
24、ent sizes, but after you add the first image, all subsequently added images are sized identically to the first. Remove object.Remove(index) index:要被移除的圖檔之索引值。ImageList Control Methods (Cont.) RemoveAll(ImageList) imageList.RemoveAll Replace:更換 ImageList 物件中的一個圖檔。 imagelist.Replace(index, filename) R
25、eset:移除一切圖形檔,並重新設定一切的資料。 imagelist.Reset Reset clears the ImageWidth and ImageHeight entries, enabling the control to be used with differently sized images. Note that this also releases the Win32 ImageList handle. ImageList Exampleimglst1PictureBox1Command1ImageList Example (Cont.)MenuBar Control Pr
26、operties Controls Collection:MenuBar 中一切正在运用物件的集合。 在 eVB 中,MenuBar 物件运用 MenuControls Collection 集合物件來管理 MenuBar 物件中一切的 Menu 和 Button,我們可以藉由 MenuControls Collection 來替 MenuBar 加上 Menu 或 Button。 object.Controls(index) index:Integer with a range from 0 to the number of controls 1MenuBar Control Propert
27、ies (Cont.) ImageList:指定要运用的 ImageList 物件。 object.ImageList =hImagelist himagelist:ImageList object 的屬性。 在 MenuBar 中提供兩種 Menu 型式,一種是普通選單式的 Menu,另一種是類似工具列的 Button 型式的 Menu。 在 Button 型式的 MenuBar 型式有兩種,一種是 CommandButton (文字按鈕),另一種是可以运用 ImageList 物件提供小圖示的按鈕 (See Example:MiniWord)。MenuBar Control Propert
28、ies (Cont.) Example: Set MenuBar.ImageList = ImageList1.hImageList MenuBar Control Properties (Cont.) NewButton: object.NewButton =Boolean True:我們沒有對 Menu 做任何設定就自動會有一個 Menu 項目。假设不需求這個 Menu 項目的話,把這個屬性設為 False。MenuBar Control Events ButtonClick:This event occurs when a user clicks on a button on a Men
29、uBar control. Private Sub menubar_ButtonClick(button) button:Copy of an edited Button object on a MenuBar. MenuBar Control Events (Cont.) MenuClick:This event occurs when a user chooses an Item object from a menu on a MenuBar control. Private Sub object_MenuClick(menu) menu:Copy of the chosen Item o
30、bject. NewClick:This event occurs when the New button on a MenuBar control is clicked. Private Sub MenuBar_NewClickMenuControls Collection Properties Item:在 MenuControls collection 當中的項目。eVB 运用 Items Collection 來管理 Item。 object.Item(index) Count:物件的總數MenuControls Collection Methods AddButton:adds a
31、MenuControl button to the MenuControls collection of a MenuBar control. MenuBar.Controls.AddButton (key) key:Unique string for the Key property of the new Button. Example: Dim B As MenuBarButton Set B = MenuBar1.Controls.AddButton() B.Style = mbrCheck MenuControls Collection Methods (Cont.) AddMenu:
32、在 MenuControls collection 當中参与一個 Menu 物件。 MenuBar.Controls.AddMenu(caption,key) Example: Dim M As MenuBarMenu Set M = MenuBar1.Controls.AddMenu() M.Style = mbrMenuSeparator Clear:去除 MenuControls collection 中一切的物件。 MenuControlsObject.ClearItems Collection Properties Caption: Checked:布林值,This property
33、 returns and sets a value that determines whether a check mark is displayed next to a menu item. Enabled:This property returns and sets a value that determines whether a form or control can respond to user-generated events. Index:This property returns the number that uniquely identifies an object in
34、 a collection. Key:String。Returns and sets a string that uniquely identifies a member in a collection.Items Collection Properties (Cont.) Parent:This property returns the form, object, or collection that contains a control. Style:This property returns and sets the appearance of a button on a MenuBar
35、 control or a menu item on a MenuBar control. object.Style =ValueItems Collection Properties (Cont.) The following table shows the settings for the Style property for a Button on a MenuBar control. Items Collection Properties (Cont.) The following table shows the settings for the Style property for
36、a Menu Item on a MenuBar control. Items Collection Properties (Cont.) SubItems:This property returns an Items collection from an Item on a MenuBar control. Each Item has a SubItems property that returns an Items collection that contains the submenus of the Item. The SubItems property enables the Men
37、uBar to have menus with submenus. Items Collection Properties (Cont.) Tag:This property returns and sets an expression that stores any extra data needed for an application. Visible:This property returns and sets a value that indicates whether an object is visible or hidden.Items Collection This obje
38、ct represents a collection of Menu objects for a MenuBar or CommandBarMenuBar control. Example:MenuBar.Items(index) Count:集合物件中的物件總數 Item:集合物件當中的資料項目 Add:在集合物件當中参与一個資料項目 object.Add(index, type, key, caption, style) Key:獨一無二的字串,用來代表該資料項目 Style:該資料項目的方式Items Collection (Cont.) The possible values for
39、the type parameter Example: Dim B As CommandBarButton Set B = CommandBar1.Controls.Add(cbrButton) B.Style = cbrCheckItems Collection (Cont.) Add:This method adds a menu bar Item object to the MenuItems collection of a MenuBar control. items.Add(index, key, Caption, style) style:資料項目的方式Items Collecti
40、on (Cont.) Clear:This method clears the contents of a ListBox object, ComboBox object, or the system Clipboard object. object.Clear Remove:移除一項資料項目 object.Remove(index)MenuBarButton Object Properties Image:sets the image associated with an object. object.Image=value value:指定要运用 ImageList 物件當中的第幾張圖 S
41、tyle:設定 MenuBarButton Object 的型態 object.Style=value value:按鈕型態MenuBarButton Object Properties (Cont.)MenuBarButton Object Properties (Cont.) MixedState:This property causes a Button object to appear shaded. object.MixedState=value (boolean) ToolTip:設定當滑鼠移動到按鈕上方時會顯示的提示文字。 object.ToolTip =String Value
42、:获得或設定按鈕目前的狀況 object.Value =valueMenuBarButton Object Properties (Cont.)MenuBar 範例menubarMenuBar 範例 (Cont.)itemsMenuBar 範例 (Cont.)subitemsMenuBar 範例 (Cont.)MenuBarName:mnuMenuMenuBar 範例 (Cont.)MenuBar 範例 (Cont.) 在 MenuBar 上有三個 Menu,為 New,File 和 Edit,因為 New 是預設的項目,所以我們只需再新增另兩個 Menu 項目即可。 接著在 File 這個
43、Menu 項目下参与 4 個資料項目:Open、Add、分隔線及 delete。 同樣我們在 Edit 這個 Menu 項目下参与 Copy、Cut、Paste 和 find。 在 Paste 資料項目下参与兩個子項目 (subitem),也是用 Add。MenuBar 範例 (Cont.)MenuBar 範例 (Cont.) 我們用的是 Menu 型式的 MenuBar,所以运用者選擇資料項目引發的事件是 MenuClick。 參數 Item 型態為 MenuBar.Item,指的是运用者所選擇的項目。範例:Button 型式的 Menu範例:Button 型式的 Menu (Cont.)範
44、例:Button 型式的 Menu (Cont.)範例:Button 型式的 Menu (Cont.)MenuBarName:mnbButton範例:Button 型式的 Menu (Cont.)範例:Button 型式的 Menu (Cont.) 我們运用 AddButton 在 MenuBar 中参与按鈕。 因為加到 MenuBar 物件的是按鈕,所以运用者引發的事件為 ButtonClick。 參數 Button 為运用者按下的按鈕。Example:MiniWordExample:MiniWord (Cont.)Example:MiniWord (Cont.)FileName: File
45、1FileSystemName: FileSys tem1MenuBarName: mnb ButtonImageListName: ilsALLI ConsCommonDialogName: dlg FileTextBoxName: tex TextLabelName: lbl FileNameExample:MiniWord (Cont.)Example:MiniWord (Cont.)Example:MiniWord (Cont.)Example:MiniWord (Cont.)Example:MiniWord (Cont.)Example:MiniWord (Cont.)Example
46、:MiniWord (Cont.)Example:MiniWord (Cont.)Example:MiniWord (Cont.) 运用 ilsALLICons 物件的 Add 把所要顯示的圖檔加到 ImageList 物件當中。 將 ilsALLICons 的 hImageList 屬性設定給 MenuBar 物件 mnbButton 的 ImageList 屬性。 利用 AddButton 把按鈕一個一個参与 MenuBar 中。順便設定 Button 的 Image 屬性,用來指定所运用的圖檔。 mbuButton.Controls.AddButton.Enabled= False,產生
47、一個按鈕空格。假设我們只想產生一個分隔線的話,可以把 Button Style 設成 mbrSeparator,這樣就可以在按鈕間產生分隔線。Example:MiniWord (Cont.) 當运用者按下“開新檔案按鈕時,假设文字框中還有文字,必須提示运用者存檔,然後再開啟新檔。 ShowSave:This method displays the Save As dialog box of the CommonDialog control. 假设运用者在對話框中輸入檔名(strFileName 不是空字串),則進行存檔的動作 (呼叫本人寫的 SaveFile)。假设沒有輸入檔名,則將文字框內容
48、去除。假设本來就有檔名存在,則直接呼叫 SaveFile。Example:MiniWord (Cont.) 當运用者按下“開舊檔案按鈕時,假设文字框中有文字,則我們必須先處理存檔的問題,才干再開啟舊檔。處理完後呼叫 OpenFile 開啟舊檔。 首先先运用對話框讓运用者選擇要開啟的文字檔。開檔讀檔的動作交給 File1 來處理。我們运用 fsModeInput 方式開啟舊檔。 运用 LineInputString 一行一行讀資料,把讀到的資料先暫存在 strTempRead 字串當中。再加上換行和復位字元,最後 strTemp 所存放的便是被讀取的文字檔之一切內容。Example:MiniWo
49、rd (Cont.) 當运用者按下“儲存檔案按鈕時,假设本来运用者沒有輸入檔名,則跳出SaveAs 對話框讓运用者可以輸入檔名。假设本来就有檔名,則直接呼叫 SaveFile 程序。 當运用者按下“複製按鈕時,先用 Clear 把 Clipboard 原先內容清掉。而 TextBox 物件的 SelText 就是运用者所選取的文字。 當运用者按下“剪下按鈕時,動作與按下“複製按鈕時差不多。Example:MiniWord (Cont.) 當运用者按下“貼上按鈕時,我們运用 Clipboard 的 GetText 方法把存放在 Clipboard 的文字取出。 SaveFile 程序用來儲存檔案
50、。假设先前同名的檔案存在,則先呼叫 Kill 刪除以前的檔案。 儲存檔案時把文字框 txtText 內容先放在 strTemp 中。再用 fsModeOutput 開啟檔案,运用 LinePrint 把字串 strTemp 寫到檔案中。Example:MiniWord (Cont.) 當运用者按下右上角“OK按鈕時,我們要留意文字框中的文字能否已經存檔。處理步驟類似按下“開新檔案。 當运用者有啟動輸入面版 (SIP) 時,我們把文字框的高度縮短,方便运用者輸入資料,輸入面版才不會擋到文字框,反之則放大文字框。這在 SIPChange 程序中執行。 bSIPVisible=TRUE,代表运用者啟
51、動 SIP 面版。TreeView Control Properties TreeView Controls 运用 Nodes Collection 來管理當中的資料項目(Node 物件)。 HideSelection:決定當物件失焦時,本来選取的文字能否要繼續以明顯的方式顯示。TRUE 代表當物件失去焦點時,便不再以明顯的方式顯示本来選取的文字。 object.HideSelection ImageList:指定所要运用的 ImageList 物件。 object.ImageList =hImagelistTreeView Control Properties (Cont.) Identat
52、ion:傳回或設定 TreeView Control 物件的縮排寬度 object.Identation =number LabelEdit:設定运用者能否可以自行更改 TreeView 物件當中的資料項目的標籤。 object.LabelEdit =integer數值內容0 (預設值)自動。當使用者在 TreeView 物件當中選取資料項目時,就會產生 BeforeLabelEdit Event1(lvwManual/tvwManual)手動。只有在使用 StartLabelEdit 方法時,才會產生 BeforeLabelEdit EventTreeView Control Propert
53、ies (Cont.) LabelEdit 屬性和 StartLabelEdit 方法常並用,我們可以設定什麼時候可以更改資料項目的標籤。 LineStyle:設定資料項目間的線條型式 object.LineStyle =number數值內容0 (預設值)在資料項目間,只會顯示子節點和父節點之間的線條1除了子節點和父節點之間的線條外,還會顯示節點到根節點間的線條TreeView Control Properties (Cont.) PathSeparator:用來設定分隔路徑的字串。預設值是。 object.PathSeparator =string SelectedItem:這個屬性會傳回被
54、選取物件的 reference。 object.SelectedItem Sorted:設定 TreeView 物件當中的資料項目要不要依英文字母次序陈列。 object.Sorted =BooleanTreeView Control Properties (Cont.) Style:設定物件的顯示型態 object.Style =numberTreeView Control Methods GetVisibleCount:用來設定 TreeView 顯示區域當中可以顯示資料項目的個數。 treeview.GetVisibleCount Note that the return value i
55、s the number of items that can be fully visible. If you can see all of 20 items and part of one more item, the return value is 20. StartLabelEdit:讓运用者開始編輯 TreeView 物件當中資料項目的標籤。 control2.StartLabelEditTreeView Control Events BeforeLabelEdit:當运用者要開始修正資料項目的標籤時會引發此事件。 AfterLabelEdit:當运用者始修正資料項目的標籤後會引發此事
56、件。 Expand:當运用者展開一個父節點下面的資料項目時會引發此事件。 Collapse:當运用者關閉(折疊)一個父節點下面一切的資料項目時會引發此事件。 NodeClick:當运用者選擇 Node 物件時會引發此事件。Nodes Collection Properties TreeView Object 运用 Nodes Collection 物件來管理眾多的資料項目。 Nodes Collection 屬性 Count:傳回 Nodes Collection 物件當中存放的物件總數 object.Count Item:物件當中的資料項目。 object.Item(index)Nodes
57、Collection Methods Add:在 Nodes Collection 中参与一個 Node 物件 (資料項目) Nodes.Add(relative,relationship,key,text,image,selectedimage) relative:The key of a pre-existing Node object or a Node object. The relationship between the new node and this pre-existing node is found in the relationship parameter. Nodes
58、 Collection Methods (Cont.) relationship:即將要参与的心結點與舊節點的關係。Nodes Collection Methods (Cont.) key:Unique string expression that can be used to access a member (資料項目)of the Nodes collection. text:顯示的文字 image:用來指定所要用的圖檔(圖檔存放在 ImageList 中)。Integer that sets the icon to be displayed from the ImageList cont
59、rol associated with the TreeView control. selectedimage:用來指定當运用者選擇此節點時要顯示的圖檔(圖檔存放在 ImageList 中)。Nodes Collection Methods (Cont.) Clear:移除 collection 中一切資料項目 object.Clear Remove:一次只移除一個資料項目 object.Remove (index) index:所要移除物件的索引值Node Object Properties Child:获得子節點當中,第一個子節點的 reference。 node.Child Childr
60、en:傳回子點的個數 treeview.Children Expanded:設定或获得物件展開的狀況。當這個屬性值為 True,代表這個物件被展開。 node.Expanded =valueNode Object Properties (Cont.) ExpandedImage:設定或获得當這節點被展開時,要运用 ImageList 物件當中的哪一個圖檔。 object.ExpandedImage =value value:integer, 用來指定要运用 ImageList 物件當中的哪一張圖。 FirstSibling:傳回同一個階層中的第一個 Node 物件的 reference。 node.FirstSi
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 《非充分供水条件下灌溉预报方法研究》
- 林木育种的新品种选育与推广考核试卷
- 《智慧社区养老服务问题及改进策略研究》
- 《鄂西土家族吊脚楼传统建筑元素的创新设计研究》
- 制糖业食品安全管理案例报告考核试卷
- 农药制造中的植物病虫害防治技术考核试卷
- 《康得新财务造假案例研究》
- 2024-2030年中国橡胶家用手套行业生产营销模式及未来发展潜力分析报告
- 建筑施工队入场安全教育培训考核试卷
- 水运运营中的供应链管理策略考核试卷
- 智能电网-课件
- 中西方-诗歌的比较课件
- 医院消毒供应中心医疗器械清洗消毒规范和流程
- 慢阻肺健康知识宣教完整版课件
- 闲鱼玩法实战班课件
- 中考作文指导:考场作文拟题(共23张PPT)
- 人体解剖学:神经系统课件
- 六年级上册数学课件-6.2 百分数的认识丨苏教版 (共24张PPT)
- 【精品主题班会】高三家长会(共30张PPT)
- 四年级上册书法课件- 10兰叶撇 |通用版 (共10张PPT)
- 消防水池 (有限空间)作业安全告知牌及警示标志
评论
0/150
提交评论