DataGrid.CreateControlStyle メソッド
アセンブリ: System.Web (system.web.dll 内)

Dim returnValue As Style returnValue = Me.CreateControlStyle
新しいスタイルを表す Style。

カスタム サーバー コントロールで CreateControlStyle メソッドをオーバーライドして、常に CellSpacing のない GridLines が DataGrid に表示されるようにする方法を次のコード例に示します。
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %> <%@ Page language="VB" %> <HTML> <HEAD> <title>Custom DataGrid - CreateControlStyle - VB.NET Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <h3>Custom DataGrid - CreateControlStyle - C# Example</h3> <aspSample:CustomDataGridCreateControlStyle id="Datagrid1" runat="server" AutoGenerateColumns="False"> <Columns> <asp:HyperLinkColumn Text="www.microsoft.com" Target="_blank" HeaderText="HyperLinks" NavigateUrl="http://www.microsoft.com" /> </Columns> </aspSample:CustomDataGridCreateControlStyle> </form> </body> </HTML> <br /><span space="preserve">...</span><br />Imports System.Web Imports System.Security.Permissions Namespace Samples.AspNet.VB.Controls <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _ Public NotInheritable Class CustomDataGridCreateControlStyle Inherits System.Web.UI.WebControls.DataGrid Protected Overrides Function CreateControlStyle() As System.Web.UI.WebControls.Style ' Create a new TableStyle instance based on ViewState values. Dim style As New System.Web.UI.WebControls.TableStyle(ViewState) ' Show the GridLines with no CellSpacing. style.GridLines = System.Web.UI.WebControls.GridLines.Both style.CellSpacing = 0 ' Return the Style Return style End Function End Class End Namespace
<%@ Page language="c#" %> <%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls" Assembly="Samples.AspNet.CS" %> <HTML> <HEAD> <title>Custom DataGrid - CreateControlStyle - C# Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <h3>Custom DataGrid - CreateControlStyle - C# Example</h3> <aspSample:CustomDataGridCreateControlStyle id="Datagrid1" runat="server" AutoGenerateColumns="False"> <Columns> <asp:HyperLinkColumn Text="www.microsoft.com" Target="_blank" HeaderText="HyperLinks" NavigateUrl="http://www.microsoft.com" /> </Columns> </aspSample:CustomDataGridCreateControlStyle> </form> </body> </HTML> <br /><span space="preserve">...</span><br />using System.Web; using System.Security.Permissions; namespace Samples.AspNet.CS.Controls { [AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)] public sealed class CustomDataGridCreateControlStyle : System.Web.UI.WebControls.DataGrid { protected override System.Web.UI.WebControls.Style CreateControlStyle() { // Create a new TableStyle instance based on ViewState values. System.Web.UI.WebControls.TableStyle style = new System.Web.UI.WebControls.TableStyle(ViewState); // Show the GridLines with no CellSpacing. style.GridLines = System.Web.UI.WebControls.GridLines.Both; style.CellSpacing = 0; // Return the Style return style; } } }
<%@ Page language="VJ#" %> <%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.JSL.Controls" Assembly="Samples.AspNet.JSL" %> <HTML> <HEAD> <title>Custom DataGrid - CreateControlStyle - VJ# Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <h3>Custom DataGrid - CreateControlStyle - VJ# Example</h3> <aspSample:CustomDataGridCreateControlStyle id="Datagrid1" runat="server" AutoGenerateColumns="False"> <Columns> <asp:HyperLinkColumn Text="www.microsoft.com" Target="_blank" HeaderText="HyperLinks" NavigateUrl="http://www.microsoft.com" /> </Columns> </aspSample:CustomDataGridCreateControlStyle> </form> </body> </HTML> <br /><span space="preserve">...</span><br />package Samples.AspNet.JSL.Controls; public class CustomDataGridCreateControlStyle extends System.Web.UI.WebControls.DataGrid { protected System.Web.UI.WebControls.Style CreateControlStyle() { // Create a new TableStyle instance based on ViewState values. System.Web.UI.WebControls.TableStyle style = new System.Web.UI.WebControls.TableStyle(get_ViewState()); // Show the GridLines with no CellSpacing. style.set_GridLines(System.Web.UI.WebControls.GridLines.Both); style.set_CellSpacing(0); // Return the Style return style; } //CreateControlStyle } //CustomDataGridCreateControlStyle

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDataGrid.CreateControlStyle メソッドを検索する場合は、下記のリンクをクリックしてください。

- DataGrid.CreateControlStyle メソッドのページへのリンク