PowerTools MultiRow for Windows Forms 8.0J
Wrap プロパティ (DomainUpDownCell)
使用例 

ユーザーがリストの端を越えたときに項目のコレクションを最初または最後の項目に折り返すかどうかを示す値を取得または設定します。
構文
Public Property Wrap As Boolean
public bool Wrap {get; set;}

プロパティ値

ユーザーがコレクションの先頭または末尾に達したときにリストを折り返す場合はtrue。それ以外の場合はfalse。既定値はfalseです。
解説
Wrapプロパティをtrueに設定すると、ユーザーがコレクションの最後の項目に達し、さらに次の項目に進もうとした場合、リストが最初の項目に折り返されて表示が続行されます。逆方向でも同じように動作します。
使用例
次のサンプルコードは、Wrapプロパティの使用方法を示します。Wraptrueに設定すると、すべての項目が循環して表示されます。このサンプルコードは、DomainUpDownCellに示されている詳細なコード例の一部を抜粋したものです。
void setWrapButton_Click(object sender, EventArgs e)
{
    DomainUpDownCell domainUpDownCell1 = this.gcMultiRow1[0, 0] as DomainUpDownCell;

    if (domainUpDownCell1.Wrap)
    {
        //set the Wrap to false, the all items' can not be shown circularly.
        domainUpDownCell1.Wrap = false;
    }
    else
    {
        //set the Wrap to true, the all items' can be shown circularly.
        domainUpDownCell1.Wrap = true;
    }
    label.Text = "Click the button, the all items' can (or cannot) be shown circularly when you click the UpDown button";
}
Private Sub setWrapButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setWrapButton.Click
    Dim domainUpDownCell1 As DomainUpDownCell = TryCast(Me.gcMultiRow1(0, 0), DomainUpDownCell)

    If domainUpDownCell1.Wrap Then
        'set the Wrap to false, the all items' can not be shown circularly.
        domainUpDownCell1.Wrap = False
    Else
        'set the Wrap to true, the all items' can be shown circularly.
        domainUpDownCell1.Wrap = True
    End If
    label.Text = "Click the button, the all items' can (or cannot) be shown circularly when you click the UpDown button"
End Sub
参照

DomainUpDownCell クラス
DomainUpDownCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.