1
숫자 식의 위로 버튼을 "빌드"합니다. 이제 질문이 생겼습니다. 버튼을 길게 누르면 프레스가 더 빨리 계산됩니다. 그러나 1-2 초 후에 만. 일반 숫자 버튼을 누르십시오. 버튼을 클릭하면 빨리 계산됩니다.C# WPF - 버튼을 길게 누르면 더 빠르게 카운트됩니다.
어떻게하면됩니까?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Diagnostics;
using System.Text.RegularExpressions;
namespace loeschen
{
/// <summary>
/// Interaktionslogik für MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void NumberValidationTextBox(object sender, TextCompositionEventArgs e)
{
//Regex regex = new Regex("[^0-9-)]");
// Regex regex = new Regex("[^0-9-)]");
//e.Handled = regex.IsMatch(e.Text);
//int zahl;
//e.Handled = int.TryParse(e.Text, out zahl);
Regex regex = new Regex(@"-?\d+(?:\.\d+)?");
e.Handled = !regex.IsMatch(e.Text);
}
private void textBox_GotFocus(object sender, RoutedEventArgs e)
{
textBox.SelectAll();
}
private void textBox1_GotFocus(object sender, RoutedEventArgs e)
{
}
private void button_Copy1_Click(object sender, RoutedEventArgs e)
{
if (!String.IsNullOrEmpty(tb.Text))
tb.Text = ((Int32.Parse(tb.Text)) + 1).ToString();
}
private void button_Copy2_Click(object sender, RoutedEventArgs e)
{
if (!String.IsNullOrEmpty(tb.Text))
tb.Text = ((Int32.Parse(tb.Text)) - 1).ToString();
}
private void tb_TextChanged(object sender, TextChangedEventArgs e)
{
try
{
if (!String.IsNullOrEmpty(tb.Text))
{
if (Int32.Parse(tb.Text) > 100)
{
label.Content = "Limit erreicht";
tb.Text = (Int32.Parse(tb.Text) - 1).ToString();
}
else if (Int32.Parse(tb.Text) < -100)
{
label.Content = "Limit erreicht";
tb.Text = (Int32.Parse(tb.Text) + 1).ToString();
}
else if(Int32.Parse(tb.Text) < 100 && Int32.Parse(tb.Text) > -100)
{
label.Content = "";
}
}
}
catch (Exception)
{
}
}
}
}
<Window x:Class="loeschen.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
xmlns:local="clr-namespace:loeschen"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid Background="#FFA8EE9D">
<Canvas HorizontalAlignment="Left" Height="46" Margin="75,25,0,0" VerticalAlignment="Top" Width="132" Background="White">
<Button x:Name="button" Content="▲" HorizontalAlignment="Left" VerticalAlignment="Top" Canvas.Left="116" Canvas.Top="2"/>
<Button x:Name="button_Copy" Content="▼" HorizontalAlignment="Left" VerticalAlignment="Top" Canvas.Left="116" Canvas.Top="24" RenderTransformOrigin="2.069,0.293"/>
<TextBox x:Name="textBox" HorizontalAlignment="Left" BorderThickness="0" Height="22" BorderBrush="Transparent" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="79" Canvas.Left="37" Canvas.Top="12" SelectionBrush="Transparent" TextAlignment="Center" Background="{x:Null}" GotFocus="textBox_GotFocus"/>
</Canvas>
<Canvas HorizontalAlignment="Left" Height="45" Margin="290,201,0,0" VerticalAlignment="Top" Width="99" Background="White">
<TextBox x:Name="tb" PreviewTextInput="NumberValidationTextBox" HorizontalAlignment="Left" BorderThickness="0" Height="22" BorderBrush="Transparent" TextWrapping="Wrap" Text="99" VerticalAlignment="Top" Width="79" Canvas.Top="13" SelectionBrush="Transparent" TextAlignment="Center" Background="{x:Null}" GotFocus="textBox_GotFocus" TextChanged="tb_TextChanged"/>
</Canvas>
<Canvas HorizontalAlignment="Left" Height="45" Margin="370,201,0,0" VerticalAlignment="Top" Width="19" Background="Gainsboro">
<Button x:Name="button_Copy1" Content="▲" HorizontalAlignment="Left" VerticalAlignment="Top" Height="19" Width="19" FontSize="9" Click="button_Copy1_Click"/>
<Button x:Name="button_Copy2" Content="▼" HorizontalAlignment="Left" VerticalAlignment="Top" Height="19" Width="19" FontSize="9" Canvas.Top="26" Click="button_Copy2_Click"/>
</Canvas>
<Label x:Name="label" Content="Label" HorizontalAlignment="Left" Margin="329,154,0,0" VerticalAlignment="Top"/>
</Grid>
</Window>
나는 또한 그의 해결책을 선호합니다. mousebutton down 이벤트는 control_click 이벤트보다 먼저 발생되어야한다고 생각하십니까? –
http://pastebin.combosa.com/23 여기에 첫 번째 버전이 있지만 Windows Form만큼 좋지 않습니다. 어떻게하면 더 아름답게 만들 수 있습니까? 숫자는 연속적으로 내려 가지 않습니다. – GabelUndMesser
"숫자가 연속적으로 내려 가지 않는다"는 것은 무엇을 의미합니까? – BugFinder