使用箭头键增加文本框中的值

本文关键字:文本 增加 | 更新日期: 2023-09-27 18:06:41

我试图通过使用箭头键来增加文本框中的值。我使用wfp, c#

if (ke.Key == Key.Up || ke.Key == Key.Down)
    ke.Handled = false;// need a method in here

如何使用方向键增加文本框中的值?

使用箭头键增加文本框中的值

WPF中的文本框

 <TextBox Name="textbox1" HorizontalAlignment="Left" Text="0" Height="23" TextWrapping="Wrap" VerticalAlignment="Top" Width="120" Margin="154,138,0,0" PreviewKeyDown="TextBox_KeyDown"/>
后台代码

private void TextBox_KeyDown(object sender, KeyEventArgs e)
{
    int currentNumber = Convert.ToInt32(textbox1.Text);
    if (e.Key == Key.Up)
    {
        textbox1.Text = (currentNumber + 1).ToString();
    }
    else if (e.Key == Key.Down)
    {
        textbox1.Text = (currentNumber - 1).ToString();
    }
}