Table.CreateControlCollection 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 ControlCollection 컨트롤의 TableRow 컨트롤을 저장할 새 Table 개체를 만듭니다.
protected:
override System::Web::UI::ControlCollection ^ CreateControlCollection();
protected override System.Web.UI.ControlCollection CreateControlCollection ();
override this.CreateControlCollection : unit -> System.Web.UI.ControlCollection
Protected Overrides Function CreateControlCollection () As ControlCollection
반환
현재 ControlCollection 컨트롤의 TableRow 컨트롤을 포함할 Table 개체입니다.
예제
다음 코드 예제에는 재정의 하는 방법을 보여 줍니다.는 CreateControlCollection 의 새 인스턴스를 항상 반환 되도록 컨트롤을 사용자 지정 서버에서 메서드를 EmptyControlCollection 클래스는 Table합니다.
<%@ Register TagPrefix="aspSample"
Namespace="Samples.AspNet.CS.Controls" %>
<%@ Page Language="C#" %>
<!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 id="Head2" runat="server">
<title>Custom Table - CreateControlCollection - C# Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>Custom Table - CreateControlCollection - C# Example</h3>
<aspSample:CustomTableCreateControlCollection runat="server"
id="Table1" GridLines="Both" CellPadding="4">
<asp:TableRow>
<asp:TableCell>Row 0, Col 0</asp:TableCell>
<asp:TableCell>Row 0, Col 1</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>Row 1, Col 0</asp:TableCell>
<asp:TableCell>Row 1, Col 1</asp:TableCell>
</asp:TableRow>
</aspSample:CustomTableCreateControlCollection>
</div>
</form>
</body>
</html>
<%@ Register TagPrefix="aspSample"
Namespace="Samples.AspNet.VB.Controls" %>
<%@ 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 id="Head2" runat="server">
<title>Custom Table - CreateControlCollection - VB Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>Custom Table - CreateControlCollection - VB Example</h3>
<aspSample:CustomTableCreateControlCollection runat="server"
id="Table1" GridLines="Both" CellPadding="4">
<asp:TableRow>
<asp:TableCell>Row 0, Col 0</asp:TableCell>
<asp:TableCell>Row 0, Col 1</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>Row 1, Col 0</asp:TableCell>
<asp:TableCell>Row 1, Col 1</asp:TableCell>
</asp:TableRow>
</aspSample:CustomTableCreateControlCollection>
</div>
</form>
</body>
</html>
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.Permissions;
namespace Samples.AspNet.CS.Controls
{
[AspNetHostingPermission(SecurityAction.Demand,
Level = AspNetHostingPermissionLevel.Minimal)]
public sealed class CustomTableCreateControlCollection : Table
{
protected override ControlCollection CreateControlCollection()
{
// Return a new ControlCollection
return new ControlCollection(this);
}
}
}
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Security.Permissions
Namespace Samples.AspNet.VB.Controls
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
Public Class CustomTableCreateControlCollection
Inherits Table
Protected Overrides Function CreateControlCollection() As ControlCollection
' Return a new ControlCollection
Return New ControlCollection(Me)
End Function
End Class
End Namespace
설명
이 메서드는 컨트롤에서 Table 사용자 지정 클래스를 파생할 때 컨트롤 개발자가 주로 사용합니다.
이 메서드는 기본 Control 클래스에 CreateControlCollection 대한 구현을 재정의합니다. 컨트롤의 Table 경우 는 CreateControlCollection 항상 현재 Table 컨트롤의 컨트롤만 포함 TableRow 할 수 있는 를 반환 ControlCollection 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET