SortedList

SortedList是一個英文單詞,有多種釋義,如n.成員、對象。

基本介紹

  • 外文名:SortedList
  • 類型:英文單詞
n,SortedList 對象,簡介,案例,數據綁定,

n

成員
SortedList 構造函式 (泛型 IDict... ... SortedList 泛型類 SortedList 成員)
雙語例句
SortedList Represents a selectable UI object that displays a sorted list of textitems.
SortedList表示一個可選擇的 UI對象,用於按順序顯示一個文本項目列表。
SortedList Represents a selectable UI object that displays a sorted list of textitems.
SortedList表示一個可選擇的 UI 對象,用於按順序顯示一個文本項目列表。
Create two manifestation relationships from the above artifact to the List and SortedList classes from the logical design model.
在邏輯設計模型中,在以上標誌和類 List 和 SortedList之間創建兩個聲明關係。
Procedures for the use of documents to read and write, regular expressions, as well as technologies such as SortedList prepared containers.
程式使用檔案讀寫,正則表達式,以及SortedList類容器等技術編寫。

SortedList 對象

簡介

SortedList 對象包含用鍵/值對表示的項目。SortedList 對象可按照字元順序或數字順序自動地對項目進行排序。
通過 Add() 方法向 SortedList 添加項目。SortedList 可通過 TrimToSize() 方法調整為最終尺寸。

案例

sub Page_Load if Not Page.IsPostBack then
dim mycountries=New SortedList mycountries.Add("C","China")
mycountries.Add("S","Sweden")
mycountries.Add("F","France")
mycountries.Add("I","Italy")
end if end sub

數據綁定

SortedList 對象可自動地為下面的控制項生成文本和值:
asp:RadioButtonList
asp:CheckBoxList
asp:DropDownList
asp:Listbox
如需把數據綁定到 RadioButtonList 控制項,首先請在 aspx 檔案中創建一個 RadioButtonList 控制項(沒有任何 asp:ListItem 元素):
然後添加構建列表的腳本:
sub Page_Load if Not Page.IsPostBack then dim
mycountries=New SortedList mycountries.Add("C","China")
mycountries.Add("S","Sweden")
mycountries.Add("F","France")
mycountries.Add("I","Italy") rb.DataSource=mycountries
rb.DataValueField="Key"
rb.DataTextField="Value"
rb.DataBind()
end if end sub
然後我們添加一個子例程,該子例程會在用戶點擊 RadioButtonList 控制項中的項目時執行。當單選按鈕被點擊時,文本將出現在 label 中:
sub Page_Load if Not Page.IsPostBack then
dim mycountries=New SortedList mycountries.Add("C","China")
mycountries.Add("S","Sweden") mycountries.Add("F","France")
mycountries.Add("I","Italy") rb.DataSource=mycountries rb.DataValueField="Key" rb.DataTextField="Value" rb.DataBind()
end if end sub
sub displayMessage(s as Object,e As EventArgs)
lbl1.text="Your favorite country is: " & rb.SelectedItem.Text end sub

相關詞條

熱門詞條

聯絡我們