PowerTools PlusPak for Windows Forms 8.0J
SpinButton クラス
メンバ  使用例 

ピッカーコントロールに表示されるスピンボタンを表します。
構文
Public Class SpinButton 
   Inherits SideButtonBase
public class SpinButton : SideButtonBase 
解説
SpinButtonはピッカーコントロールのサイドボタンの1つです。このボタンを使用すると、関連付けられたピッカーコントロールの値をスピンアップまたはスピンダウンできます。
使用例

次のサンプルコードは、SpinButtonを作成し、このクラスのSpinUpイベントとSpinDownイベントの使用方法を示します。この例では、スピンボタンをスピンアップまたはスピンダウンすると、listBox1の選択されたインデックスが増減します。

このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。その元の例では、最初にcomboBox1からSpinButton項目を選択してgcComboFrame1にSpinButtonを表示し、次にそのSpinButtonをスピンアップまたはスピンダウンできます。

// Returns a SpinButton instance for gcComboFrame1.
private SideButtonBase CreateSpinButton()
{
    SpinButton spinButton = new SpinButton();

    // Specify a unique name for this button.
    spinButton.Name = "SpinButton";

    // Set the Interval for spinButton.
    spinButton.Interval = 100;

    spinButton.SpinUp += new EventHandler(SpinButton_SpinUp);
    spinButton.SpinDown += new EventHandler(SpinButton_SpinDown);

    // Not show spinButton in gcComboFrame1.
    spinButton.Visible = ButtonVisibility.NotShown;

    return spinButton;
}

// Increase the seleced index of listBox1 when spin is down.
private void SpinButton_SpinDown(object sender, EventArgs e)
{
    if (this.listBox1.SelectedIndex < this.listBox1.Items.Count - 1)
    {
        this.listBox1.SelectedIndex += 1;
    }
    else
    {
        this.listBox1.SelectedIndex = this.listBox1.Items.Count - 1;
    }

    this.textBox1.Text = this.listBox1.SelectedItem.ToString();
}

// Decrease the seleced index of listBox1 when spin is down.
private void SpinButton_SpinUp(object sender, EventArgs e)
{
    if (this.listBox1.SelectedIndex > 0)
    {
        this.listBox1.SelectedIndex -= 1;
    }
    else
    {
        this.listBox1.SelectedIndex = 0;
    }
    this.textBox1.Text = this.listBox1.SelectedItem.ToString();
}
' Returns a SpinButton instance for gcComboFrame1.
Private Function CreateSpinButton() As SideButtonBase
    Dim spinButton As New SpinButton()

    ' Specify a unique name for this button.
    spinButton.Name = "SpinButton"

    ' Set the Interval for spinButton.
    spinButton.Interval = 100

    AddHandler spinButton.SpinUp, AddressOf SpinButton_SpinUp
    AddHandler spinButton.SpinDown, AddressOf SpinButton_SpinDown

    ' Not show spinButton in gcComboFrame1.
    spinButton.Visible = ButtonVisibility.NotShown

    Return spinButton
End Function

' Increase the selected index of listBox1 when spin is down.
Private Sub SpinButton_SpinDown(ByVal sender As Object, ByVal e As EventArgs)
    If Me.listBox1.SelectedIndex < Me.listBox1.Items.Count - 1 Then
        Me.listBox1.SelectedIndex += 1
    Else
        Me.listBox1.SelectedIndex = Me.listBox1.Items.Count - 1
    End If

    Me.textBox1.Text = Me.listBox1.SelectedItem.ToString()
End Sub

' Decrease the selected index of listBox1 when spin is down.
Private Sub SpinButton_SpinUp(ByVal sender As Object, ByVal e As EventArgs)
    If Me.listBox1.SelectedIndex > 0 Then
        Me.listBox1.SelectedIndex -= 1
    Else
        Me.listBox1.SelectedIndex = 0
    End If
    Me.textBox1.Text = Me.listBox1.SelectedItem.ToString()
End Sub
継承階層

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.Win.Common.SideButtonBase
            GrapeCity.Win.Common.SpinButton

プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

SpinButton メンバ
GrapeCity.Win.Common 名前空間

Send Feedback