将文本框中的文本格式设置为百分比

时间:2009-05-11 19:59:42

标签: c# .net vb.net formatting

我在Textbox中有一个数字值,我想格式化为百分比。如何在C#或VB.NET中执行此操作?

4 个答案:

答案 0 :(得分:4)

在VB.NET中......

YourTextbox.Text = temp.ToString("0%")

和C#......

YourTextbox.Text = temp.ToString("0%");

答案 1 :(得分:2)

基于Larsenal的回答,如何使用TextBox.Validating事件:

yourTextBox_Validating(object sender, CancelEventArgs e)
{
    double doubleValue;
    if(Double.TryParse(yourTextBox.Text, out doubleValue))
    {
        yourTextBox.Text = doubleValue.ToString("0%");
    }
    else
    {
        e.Cancel = true;
        // do some sort of error reporting
    }
}

答案 2 :(得分:1)

为了增加乐趣,让我们让解析器更复杂一点。

而不是Double.TryParse,让我们创建通过这些测试的Percent.TryParse

100.0 == " 100.0 "
 55.0 == " 55%  "
100.0 == "1"
  1.0 == " 1 % "
  0.9 == " 0.9  % "
   90 == " 0.9 "
 50.0 == "50 "
1.001 == " 1.001"

如果我是需要输入百分比的用户,我认为这些规则看起来很公平。它允许您输入十进制值和百分数(需要“%”结束字符或输入的值大于1)。

public static class Percent {
    static string LOCAL_PERCENT = "%";
    static Regex PARSE_RE = new Regex(@"([\d\.,]+)\s*("+LOCAL_PERCENT+")?");
    public static bool TryParse(string str, out double ret) {
        var m = PARSE_RE.Match(str);
        if (m.Success) {
            double val;
            if (!double.TryParse(m.Groups[1].Value, out val)) {
                ret = 0.0;
                return false;
            }
            bool perc = (m.Groups[2].Value == LOCAL_PERCENT);
            perc = perc || (!perc && val > 1.0);
            ret = perc ? val : val * 100.0;
            return true;
        }
        else {
            ret = 0.0;
            return false;
        }
    }
    public static double Parse(string str) {
        double ret;
        if (!TryParse(str, out ret)) {
            throw new FormatException("Cannot parse: " + str);
        }
        return ret;
    }
    public static double ParsePercent(this string str) {
        return Parse(str);
    }
}

当然,如果您只是将{%}符号设置在TextBox之外,那就太过分了。

答案 3 :(得分:0)

在用户输入之前在面板中填充Label(& TexBox)的小技巧。这包括十进制,整数,百分比和字符串。

在发生任何事情之前在Page_Load事件中使用C#1.1:

if (!this.IsPostBack)

{

pnlIntake.Vissible=true'    // what our guest will see & then disappear  
pnlResult.Vissible=false"   // what will show up when the 'Submit' button fires   

txtIperson.Text = "enter who";  
lbl1R.Text = String.Format(Convert.ToString(0));     // how many times  
lbl2R.Text = String.Format(Convert.ToString(365));   // days a year  
lblPercentTime = String.Format("{0:p}", 0.00);       // or one zero will work '0'  
lblDecimal = String.Format("{0:d}", 0.00);           // to use as multiplier  
lblMoney = String.Format("{0:c}", 0.00);             // I just like money  

<  some code goes here - if you want >
}