ViewCollection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示一个集合容器,该容器使 MultiView 控件可以其维护子控件列表。
public ref class ViewCollection : System::Web::UI::ControlCollection
public class ViewCollection : System.Web.UI.ControlCollection
type ViewCollection = class
inherit ControlCollection
Public Class ViewCollection
Inherits ControlCollection
- 继承
示例
下面的代码示例演示如何以编程方式向控件添加 View 控件 MultiView 。 创建每个 View 控件后, AddAt 使用 方法将 View 控件添加到 ViewCollection 位于指定索引处的 MultiView 控件集合中。 索引Item[]器用于访问ID存储在集合中的ViewViewCollection控件的属性,并将其显示给用户。
<%@ Page Language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>ViewCollection example</title>
<script runat="server">
Sub Button1_Click(ByVal Sender As Object, ByVal e As EventArgs)
' Create a MultiView control.
Dim MultiView1 As New MultiView
' Create a ViewCollection for the View
' controls contained in MultiView1.
Dim myViewCollection As New ViewCollection(MultiView1)
' Create a View control.
Dim View1 As New View
' Use a helper function to create the view.
View1 = CreateView("View1")
' Add View1 to myViewCollection at index 0.
myViewCollection.AddAt(0, View1)
' Create a second View control and
' add it to myViewCollection at index 1.
Dim View2 As New View
View2 = CreateView("View2")
myViewCollection.AddAt(1, View2)
' Create a third View control and
' add it to myViewCollection at index 0.
' Inserting View3 at index 0
' causes View1 to move to index 1
' and View2 to move to index 2.
Dim View3 As New View
View3 = CreateView("View3")
myViewCollection.AddAt(0, View3)
' Show the contents of myViewCollection on the page.
DisplayViewCollectionContents(myViewCollection)
End Sub
' A function to programmatically create a View control.
Private Function CreateView(ByVal viewId As String) As View
' Create a View control
Dim myView As New View
myView.ID = viewId
' Create a Panel control.
Dim Panel1 As New Panel
' Set the style properties for Panel1.
Panel1.Height = New Unit(150)
Panel1.Width = New Unit(150)
Panel1.BackColor = System.Drawing.Color.Azure
Panel1.BorderStyle = BorderStyle.Double
' Add Panel1 to the Controls collection
' of the View control.
myView.Controls.Add(Panel1)
' Create a Label control.
Dim Label1 As New Label
' Set the properties for Label1.
Label1.Text = "This is " + CStr(myView.ID)
' Add Label1 to the Controls collection
' of the Panel1 control.
Panel1.Controls.Add(Label1)
Return myView
End Function
' A sub-routine to display the contents of myViewCollection.
Sub DisplayViewCollectionContents(ByVal collection As ViewCollection)
' Use the Item property to access the ID of the View
' control at the specified index in the collection.
Label1.Text = "The view at index 0 is " + collection.Item(0).ID
Label2.Text = "The view at index 1 is " + collection.Item(1).ID
Label3.Text = "The view at index 2 is " + collection.Item(2).ID
End Sub
</script>
</head>
<body>
<form id="Form1" runat="server">
<h3>ViewCollection example</h3>
<asp:Button id="Button2"
Text="Show ViewCollection contents"
OnClick="Button1_Click"
runat="Server"/>
<br /><br />
<hr />
<asp:Label ID="Label1"
runat="Server">
</asp:Label><br /><br />
<asp:Label ID="Label2"
runat="Server">
</asp:Label><br /><br />
<asp:Label ID="Label3"
runat="Server">
</asp:Label><br /><br />
</form>
</body>
</html>
注解
类 ViewCollection 表示一个集合容器,该容器使 MultiView 控件能够维护其子控件的列表。 控件 MultiView 只能 View 包含控件作为子控件。
Add使用 方法将新View控件添加到ViewCollection序号索引数组末尾的集合中。 AddAt使用 方法在特定索引位置添加新控件。 使用简单数组表示法,Item[]使用索引器从集合中ViewCollection获取View指定索引处的控件。
构造函数
ViewCollection(Control) |
初始化 ViewCollection 类的新实例。 |
属性
Count |
为指定的 ASP.NET 服务器控件获取 ControlCollection 对象中的服务器控件数。 (继承自 ControlCollection) |
IsReadOnly |
获取一个值,该值指示 ControlCollection 对象是否为只读。 (继承自 ControlCollection) |
IsSynchronized |
获取一个值,该值指示是否同步 ControlCollection 对象。 (继承自 ControlCollection) |
Item[Int32] |
获取对位于 View 集合中的指定索引位置的 ViewCollection 的引用。 |
Owner |
获取 ControlCollection 对象所属的 ASP.NET 服务器控件。 (继承自 ControlCollection) |
SyncRoot |
获取可用于同步控件集合访问的对象。 (继承自 ControlCollection) |
方法
Add(Control) |
将指定的 View 控件添加到集合中。 |
AddAt(Int32, Control) |
将指定的 View 控件添加到集合中的指定索引位置。 |
Clear() |
从当前服务器控件的 ControlCollection 对象中移除所有控件。 (继承自 ControlCollection) |
Contains(Control) |
确定指定的服务器控件是否在父服务器控件的 ControlCollection 对象中。 (继承自 ControlCollection) |
CopyTo(Array, Int32) |
从 ControlCollection 中的指定索引位置开始,将 Array 对象中存储的子控件复制到 Array 对象。 (继承自 ControlCollection) |
Equals(Object) |
确定指定对象是否等于当前对象。 (继承自 Object) |
GetEnumerator() |
检索可遍历 ControlCollection 对象的枚举器。 (继承自 ControlCollection) |
GetHashCode() |
作为默认哈希函数。 (继承自 Object) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
IndexOf(Control) |
检索集合中指定 Control 对象的索引。 (继承自 ControlCollection) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
Remove(Control) |
从父服务器控件的 ControlCollection 对象中移除指定服务器控件。 (继承自 ControlCollection) |
RemoveAt(Int32) |
从 ControlCollection 对象中移除指定索引位置处的子控件。 (继承自 ControlCollection) |
ToString() |
返回表示当前对象的字符串。 (继承自 Object) |
扩展方法
Cast<TResult>(IEnumerable) |
将 IEnumerable 的元素强制转换为指定的类型。 |
OfType<TResult>(IEnumerable) |
根据指定类型筛选 IEnumerable 的元素。 |
AsParallel(IEnumerable) |
启用查询的并行化。 |
AsQueryable(IEnumerable) |
将 IEnumerable 转换为 IQueryable。 |