PagerSettings.Mode プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
改ページ位置の自動修正をサポートするコントロールで、ページャー コントロールを表示するモードを取得または設定します。
public:
property System::Web::UI::WebControls::PagerButtons Mode { System::Web::UI::WebControls::PagerButtons get(); void set(System::Web::UI::WebControls::PagerButtons value); };
public System.Web.UI.WebControls.PagerButtons Mode { get; set; }
member this.Mode : System.Web.UI.WebControls.PagerButtons with get, set
Public Property Mode As PagerButtons
プロパティ値
PagerButtons 値のいずれか 1 つ。 既定値は、PagerButtons.Numeric
です。
例外
Mode が、PagerButtons 値の 1 つではない値に設定されています。
例
次のコード例は、プロパティを Mode 使用して、コントロールのポケットベル行に数値ボタンを GridView 表示するように指定する方法を示しています。
<%@ 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 runat="server">
<title>PagerSetting Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>PagerSetting Example</h3>
<asp:gridview id="CustomerGridView"
datasourceid="CustomerDataSource"
autogeneratecolumns="true"
datakeynames="CustomerID"
allowpaging="true"
runat="server">
<pagersettings mode="NumericFirstLast"
firstpagetext="First"
lastpagetext="Last"
pagebuttoncount="5"
position="Bottom"/>
</asp:gridview>
<br/>
<asp:label id="MessageLabel"
forecolor="Red"
runat="server"/>
<!-- 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="CustomerDataSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server"/>
</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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>PagerSetting Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>PagerSetting Example</h3>
<asp:gridview id="CustomerGridView"
datasourceid="CustomerDataSource"
autogeneratecolumns="true"
datakeynames="CustomerID"
allowpaging="true"
runat="server">
<pagersettings mode="NumericFirstLast"
firstpagetext="First"
lastpagetext="Last"
pagebuttoncount="5"
position="Bottom"/>
</asp:gridview>
<br/>
<asp:label id="MessageLabel"
forecolor="Red"
runat="server"/>
<!-- 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="CustomerDataSource"
selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
runat="server"/>
</form>
</body>
</html>
注釈
ページ分割をサポートするコントロールは、ページング コントロールを表示する複数のモードを提供します。 このプロパティを Mode 使用してモードを指定します。 次の表では、改ページ位置コントロールのさまざまなモードについて説明します。
モード | 説明 |
---|---|
NextPrevious | [前のページ] ボタンと [次ページ] ボタン。 |
NextPreviousFirstLast | 前ページ、次ページ、最初のページ、最後のページのボタン。 |
Numeric | ページに直接アクセスするための番号付きリンク ボタン。 |
NumericFirstLast | 番号付きボタンと最初のリンクボタンと最後のリンク ボタン。 |
プロパティが Mode 、NextPreviousFirstLastまたはNumericFirstLast値にNextPrevious設定されている場合は、次の表に示すプロパティを設定することで、数値以外のボタンのカスタム テキストを指定できます。
プロパティ | 説明 |
---|---|
FirstPageText | 最初のページ ボタンのテキスト。 |
PreviousPageText | 前のページ ボタンのテキスト。 |
NextPageText | 次のページ ボタンのテキスト。 |
LastPageText | 最後のページ ボタンのテキスト。 |
別の方法として、次の表に示すプロパティを設定することで、数値以外のボタンの画像を表示することもできます。
プロパティ | 説明 |
---|---|
FirstPageImageUrl | 最初のページへ移動するボタン用に表示するイメージの URL。 |
PreviousPageImageUrl | 前のページへ移動するボタン用に表示するイメージの URL。 |
NextPageImageUrl | 次のページへ移動するボタン用に表示するイメージの URL。 |
LastPageImageUrl | 最後のページへ移動するボタン用に表示するイメージの URL。 |
注意
イメージ プロパティを設定すると、対応するテキスト プロパティがイメージの代替テキストとして機能します。 たとえば、プロパティを FirstPageImageUrl 設定すると、プロパティで FirstPageText 指定されたテキストが画像の代替テキストとして表示されます。 ツール ヒントをサポートするブラウザーでは、このテキストは、対応するボタンのツールヒントとしても表示されます。
このプロパティの値はビュー ステートに格納されます。