2

WP7アプリケーションを開発しています。WP7は初めてです。私もSilverlightを初めて使用します。アプリケーションにテキストボックスがあります。このテキストボックスに、ユーザーは金額を入力します。ユーザーがフロート量(たとえば、1000.50または499.9999)を入力できるように、アプリケーションで機能を提供したいと思います。ユーザーは、「。」の後に2桁または4桁のいずれかを入力できる必要があります。。テキストボックスのコードは次のとおりです。

<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

CharlesPetzoldによる無料の本ProgrammingWindowsPhone7をダウンロードしてください。380ページの「TextBoxBindingUpdates」セクションChapter12:Data Bindings」に、浮動小数点入力の検証に関する優れた例があります。

ユーザー入力を小数点以下2桁または4桁に制限するには、TextBoxTextChangedコールバックにロジックを追加する必要があります。たとえば、floatを文字列に変換し、小数を検索してから、小数の右側の文字列の長さを計算できます。

一方、ユーザー入力を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

次のコードは私にとってはうまく機能しています。私は自分のアプリケーションでそれをテストしました。次のコードでは、いくつかの検証を追加することで、一般的なテキストボックスをfloat値を受け入れることができる数値テキストボックスとして扱うことができます。

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 に答える