次の方法で共有


Form.PageCount プロパティ

定義

フォームの改ページ位置の自動修正後にフォーム内のページ数を返します。 この API は、互換性のために残されています。 ASP.NET モバイル アプリケーションを開発する方法については、「ASP.NET を使用した Mobile Apps & サイト」を参照してください。

public:
 property int PageCount { int get(); };
[System.ComponentModel.Bindable(false)]
[System.ComponentModel.Browsable(false)]
public int PageCount { get; }
[<System.ComponentModel.Bindable(false)>]
[<System.ComponentModel.Browsable(false)>]
member this.PageCount : int
Public ReadOnly Property PageCount As Integer

プロパティ値

フォームの改ページ位置の自動修正後のフォーム内のページ数。

属性

次のコード例では、 コントロールの プロパティを PageCount 使用する方法を Form 示します。 このコード例は、 プロパティの大きな例の ControlToPaginate 一部です。

void Form_Paginated(object sender, EventArgs e)
{
    // Set the background color based on 
    // the number of pages
    if (ActiveForm.PageCount > 1)
        ActiveForm.BackColor = Color.LightBlue;
    else
        ActiveForm.BackColor = Color.LightGray;

    // Check to see if the Footer template has been chosen
    if (DevSpec.HasTemplates)
    {   
        System.Web.UI.MobileControls.Label lbl = null;
        
        // Get the Footer panel
        System.Web.UI.MobileControls.Panel pan = Form1.Footer;

        // Get the Label from the panel
        lbl = (System.Web.UI.MobileControls.Label)pan.FindControl("lblCount");
        // Set the text in the Label
        lbl.Text = "Page #" + Form1.CurrentPage.ToString();
    }
}
Private Sub Form_Paginated(ByVal sender As Object, _
    ByVal e As EventArgs)
    
    ' Set the background color based on 
    ' the number of pages
    If ActiveForm.PageCount > 1 Then
        ActiveForm.BackColor = Color.LightBlue
    Else
        ActiveForm.BackColor = Color.LightGray
    End If
    
    ' Check to see if the Footer template has been chosen
    If DevSpec.HasTemplates Then
        Dim lbl As System.Web.UI.MobileControls.Label
        
        ' Get the Footer panel
        Dim pan As System.Web.UI.MobileControls.Panel = Form1.Footer

        ' Get the Label from the panel
        lbl = CType(pan.FindControl("lblCount"), System.Web.UI.MobileControls.Label)
        ' Set the text in the Label
        lbl.Text = "Page #" + Form1.CurrentPage.ToString()
    End If
End Sub

注釈

コントロールはForm、 プロパティと プロパティをPageCountCurrentPage公開します。これにより、現在のフォームのページ分割方法に関する情報が提供されます。 プロパティは PageCount 、別のページへのナビゲーション機能を提供するのにも役立ちます。 たとえば、よりリッチなデバイスでレンダリングする場合、検索結果フォームにはデバイス固有の UI 要素が含まれる場合があります。これにより、ユーザーはリンク ナビゲーションではなく、数値で結果のページを参照できます。

注意

この値は、イベントが発生した後に Paginated 使用できます。 プロパティを PageCount 取得するには、フォームの イベントを Paginated 処理できます。

適用対象

こちらもご覧ください