GridViewRowEventArgs クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
RowCreated イベントおよび RowDataBound イベントのデータを提供します。
public ref class GridViewRowEventArgs : EventArgs
public class GridViewRowEventArgs : EventArgs
type GridViewRowEventArgs = class
inherit EventArgs
Public Class GridViewRowEventArgs
Inherits EventArgs
- 継承
例
次の例では、イベント処理メソッドに渡された オブジェクトを GridViewRowEventArgs 使用して、データにバインドされている行のプロパティにアクセスする方法を示します。
<%@ Page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void CustomersGridView_RowDataBound(Object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow)
{
// Display the company name in italics.
e.Row.Cells[1].Text = "<i>" + e.Row.Cells[1].Text + "</i>";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>GridView RowDataBound Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>GridView RowDataBound Example</h3>
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSqlDataSource"
autogeneratecolumns="true"
allowpaging="true"
onrowdatabound="CustomersGridView_RowDataBound"
runat="server">
</asp:gridview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the Web.config file. -->
<asp:sqldatasource id="CustomersSqlDataSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server">
</asp:sqldatasource>
</form>
</body>
</html>
<%@ Page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub CustomersGridView_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs)
If e.Row.RowType = DataControlRowType.DataRow Then
' Display the company name in italics.
e.Row.Cells(1).Text = "<i>" & e.Row.Cells(1).Text & "</i>"
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>GridView RowDataBound Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>GridView RowDataBound Example</h3>
<asp:gridview id="CustomersGridView"
datasourceid="CustomersSqlDataSource"
autogeneratecolumns="true"
allowpaging="true"
onrowdatabound="CustomersGridView_RowDataBound"
runat="server">
</asp:gridview>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Northwind sample database. Use an ASP.NET -->
<!-- expression to retrieve the connection string value -->
<!-- from the Web.config file. -->
<asp:sqldatasource id="CustomersSqlDataSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server">
</asp:sqldatasource>
</form>
</body>
</html>
注釈
コントロールを GridView レンダリングする前に、コントロールの GridViewRow 各行に対して オブジェクトを作成する必要があります。 イベントは RowCreated 、コントロール内 GridView の行が作成されるたびに発生します。 これにより、このイベントが発生するたびにカスタム コンテンツを行に追加するなど、カスタム ルーチンを実行するイベント処理メソッドを提供できます。
同様に、コントロールの各行は、コントロールをレンダリングする前に、データ ソース内の GridView レコードにバインドする必要があります。 イベントは RowDataBound 、(オブジェクトによって GridViewRow 表される) データ行がコントロール内 GridView のデータにバインドされるときに発生します。 これにより、このイベントが発生するたびに、行にバインドされたデータの値を変更するなど、カスタム ルーチンを実行するイベント処理メソッドを提供できます。
GridViewRowEventArgsオブジェクトはイベント処理メソッドに渡されます。これにより、イベントを発生させた行のプロパティにアクセスできます。 行内の特定のセルにアクセスするには、 プロパティに Cells 含まれる オブジェクトの GridViewRow プロパティを Row 使用します。 オブジェクトの プロパティを使用して RowType 、作成される行の GridViewRow 種類 (ヘッダー行、データ行など) を決定することもできます。
イベントを処理する方法の詳細については、次を参照してください。処理とイベントの発生します。
のインスタンスの初期プロパティ値の GridViewRowEventArgs一覧については、 コンストラクターを GridViewRowEventArgs 参照してください。
コンストラクター
GridViewRowEventArgs(GridViewRow) |
GridViewRowEventArgs クラスの新しいインスタンスを初期化します。 |
プロパティ
Row |
作成される行またはデータにバインドされる行を取得します。 |
メソッド
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
こちらもご覧ください
.NET