2

我正在开发 WP7 应用程序。我是WP7的新手。我也是silverlight的新手。我的应用程序中有一个文本框。在此文本框中,用户输入金额。我想在我的应用程序中提供该功能,以便用户可以输入浮动金额(例如 1000.50 或 499.9999)。用户应该能够在“.”之后输入两位数或四位数字。.我的文本框代码如下。

<TextBox InputScope="Number" Height="68" HorizontalAlignment="Left" Margin="-12,0,0,141" Name="AmountTextBox" Text="" VerticalAlignment="Bottom" Width="187" LostFocus="AmountTextBox_LostFocus" BorderBrush="Gray" MaxLength="10"/>

我对上述文本框进行了以下验证。

public void AmountTextBox_LostFocus(object sender, RoutedEventArgs e)
        {
            foreach (char c in AmountTextBox.Text)
            {                
                if (!char.IsDigit(c))
                {
                    MessageBox.Show("Only numeric values are allowed");
                    AmountTextBox.Focus();
                    return;
                }
            }
        }

如何解决上述问题。您能否提供我可以解决上述问题的任何代码或链接。如果我做错了什么,请指导我。

4

4 回答 4

3

下载 Charles Petzold 的免费书籍Programming Windows Phone 7。在第 380 页的第 12 章:数据绑定下的TextBox 绑定更新一节中,他有一个关于验证浮点输入的极好示例。

要将用户输入限制为小数点后 2 位或 4 位,您必须在TextBoxTextChanged回调中添加一些逻辑。例如,您可以将浮点数转换为字符串,搜索小数点,然后找出小数点右侧的字符串长度。

另一方面,如果您只想将用户输入四舍五入为 2 位或 4 位数字,请查看此页面上的定点 ("F") 格式说明符部分。

于 2011-03-25T12:01:49.207 回答
2

我以这种方式进行验证,如下面的代码所示。

无需逐个检查字符,尊重用户文化!

namespace Your_App_Namespace
{
public static class Globals
{
    public static double safeval = 0; // variable to save former value!

    public static bool isPositiveNumeric(string strval, System.Globalization.NumberStyles NumberStyle)
    // checking if string strval contains positive number in USER CULTURE NUMBER FORMAT!
    {
        double result;
        boolean test;
        if (strval.Contains("-")) test = false;
        else test = Double.TryParse(strval, NumberStyle, System.Globalization.CultureInfo.CurrentCulture, out result);
        // if (test == false) MessageBox.Show("Not positive number!");
        return test;
    }

    public static string numstr2string(string strval, string nofdec)
    // conversion from numeric string into string in USER CULTURE NUMBER FORMAT!
    // call example numstr2string("12.3456", "0.00") returns "12.34"
    {
        string retstr = "";
        if (Globals.isPositiveNumeric(strval, System.Globalization.NumberStyles.Number)) retstr = double.Parse(strval).ToString(nofdec);
        else retstr = Globals.safeval.ToString(nofdec);
        return retstr;
    }

    public static string number2string(double numval, string nofdec)
    // conversion from numeric value into string in USER CULTURE NUMBER FORMAT!
    // call example number2string(12.3456, "0.00") returns "12.34"
    {
        string retstr = "";
        if (Globals.isPositiveNumeric(numval.ToString(), System.Globalization.NumberStyles.Number)) retstr = numval.ToString(nofdec);
        else retstr = Globals.safeval.ToString(nofdec);
        return retstr;
    }
}

// Other Your_App_Namespace content

}

// This the way how to use those functions in any of your app pages

    // function to call when TextBox GotFocus

    private void textbox_clear(object sender, System.Windows.RoutedEventArgs e)
    {
        TextBox txtbox = e.OriginalSource as TextBox;
        // save original value
        Globals.safeval = double.Parse(txtbox.Text);
        txtbox.Text = "";
    }

    // function to call when TextBox LostFocus

    private void textbox_change(object sender, System.Windows.RoutedEventArgs e)
    {
        TextBox txtbox = e.OriginalSource as TextBox;
        // text from textbox into sting with checking and string format
        txtbox.Text = Globals.numstr2string(txtbox.Text, "0.00");
    }
于 2012-03-19T08:59:26.570 回答
0

您始终可以使用此正则表达式 [-+]?[0-9] .?[0-9]来确定它是否为浮点数。

public void AmountTextBox_LostFocus(object sender, RoutedEventArgs e)
  {
      Regex myRange = new Regex(@"[-+]?[0-9]*\.?[0-9]");
      if (myRange.IsMatch(textBox1.Text))
        // Match do whatever
      else
        // No match do whatever
  }
于 2011-03-25T20:31:40.373 回答
0

以下代码对我来说工作正常。我已经在我的应用程序中对其进行了测试。在下面的代码中,通过添加一些验证,我们可以将我们的通用文本框视为可以接受浮点值的数字文本框。

public void AmountTextBox_LostFocus(object sender, RoutedEventArgs e)
        {
            foreach (char c in AmountTextBox.Text)
            {                
                if (!char.IsDigit(c) && !(c == '.'))
                {
                    if (c == '-')
                    {
                        MessageBox.Show("Only positive values are allowed");
                        AmountTextBox.Focus();
                        return;
                    }

                    MessageBox.Show("Only numeric values are allowed");
                    AmountTextBox.Focus();
                    return;
                }
            }

            string [] AmountArr = AmountTextBox.Text.Split('.');
            if (AmountArr.Count() > 2)
            {
                MessageBox.Show("Only one decimal point are allowed");
                AmountTextBox.Focus();
                return;
            }

            if (AmountArr.Count() > 1)
            {
                int Digits = AmountArr[1].Count();
                if (Digits > 2)
                {
                    MessageBox.Show("Only two digits are allowed after decimal point");
                    AmountTextBox.Focus();
                    return;
                }
            }
        }
于 2011-03-26T10:22:20.967 回答