コード例 #1
0
        private void btn_Set_Click(object sender, EventArgs e)
        {
            double P_dbl_temp;                                 //定义double类型变量

            if (double.TryParse(txt_str.Text, out P_dbl_temp)) //验证输入是否正确并赋值
            {
                System.Globalization.NumberFormatInfo GN =     //实例化NumberFormatInfo对象
                                                           new System.Globalization.
                                                           CultureInfo("zh-CN", false).NumberFormat;
                GN.CurrencyGroupSeparator = ",";                          //设置货币值中用来分组的字符串
                txt_result.Text           = P_dbl_temp.ToString("C", GN); //格式化为货币格式并显示
            }
            else
            {
                MessageBox.Show("请输入正确的货币值!", "提示!");//输出错误信息
            }
        }
コード例 #2
0
        private void btn_Set_Click(object sender, EventArgs e)
        {
            double P_dbl_temp;                                 //定義double類型變數

            if (double.TryParse(txt_str.Text, out P_dbl_temp)) //驗證輸入是否正確並賦值
            {
                System.Globalization.NumberFormatInfo GN =     //實例化NumberFormatInfo物件
                                                           new System.Globalization.
                                                           CultureInfo("zh-CN", false).NumberFormat;
                GN.CurrencyGroupSeparator = ",";                          //設定貨幣值中用來分組的字串
                txt_result.Text           = P_dbl_temp.ToString("C", GN); //格式化為貨幣格式並顯示
            }
            else
            {
                MessageBox.Show("請輸入正確的貨幣值!", "提示!");//輸出錯誤訊息
            }
        }