📌  相关文章
📜  如何在C#的NumericUpDown中设置千位分隔符?

📅  最后修改于: 2021-05-30 00:04:04             🧑  作者: Mango

在Windows窗体中,NumericUpDown控件用于提供Windows旋转框或显示数字值的上下控件。换句话说,NumericUpDown控件提供了一个界面,该界面使用向上和向下箭头移动并保存一些预定义的数值。在NumericUpDown控件中,您可以在上下控件中设置千位分隔符,该控件将使用ThousandsSeparator属性显示在输出中。
如果此属性的值设置为true,则将显示千位分隔符。并且,如果将此属性的值设置为false,则千位分隔符将不会显示在屏幕上。此属性的默认值为false。您可以通过两种不同的方式设置此属性:

1.设计时:这是在NumericUpDown中设置千位分隔符的最简单方法,如以下步骤所示:

  • 第1步:创建一个Windows窗体,如下图所示:
    Visual Studio->文件->新建->项目-> WindowsFormApp
  • 步骤2:接下来,将NumericUpDown控件从窗体上的工具箱中拖放,如下图所示:

  • 步骤3:拖放之后,您将转到NumericUpDown的属性,并在NumericUpDown中设置千位分隔符,如下图所示:

    输出:

2.运行时:比上述方法有些棘手。在此方法中,您可以借助给定的语法以编程方式在NumericUpDown控件中设置数千个分隔符:

public bool ThousandsSeparator { get; set; }

此属性的值是System.Boolean类型,为true或false。以下步骤显示了如何在NumericUpDown中动态设置数千个分隔符:

  • 步骤1:使用NumericUpDown类提供的NumericUpDown()构造函数创建NumericUpDown。
    // Creating a NumericUpDown
    NumericUpDown n = new NumericUpDown();
    
  • 步骤2:创建NumericUpDown之后,设置NumericUpDown类提供的NumericUpDown的ThousandsSeparator属性。
    // Setting ThousandsSeparator
    n.ThousandsSeparator = true;
    
  • 步骤3:最后,使用以下语句将此NumericUpDown控件添加到表单中:
    // Adding NumericUpDown
    // control on the form
    this.Controls.Add(n);
    

    例子:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
      
    namespace WindowsFormsApp44 {
      
    public partial class Form1 : Form {
      
        public Form1()
        {
            InitializeComponent();
        }
      
        private void Form1_Load(object sender, EventArgs e)
        {
            // Creating and setting the
            // properties of the labels
            Label l1 = new Label();
            l1.Location = new Point(348, 61);
            l1.Size = new Size(215, 25);
            l1.Text = "Example";
            l1.Font = new Font("Bodoni MT", 16);
            this.Controls.Add(l1);
      
            Label l2 = new Label();
            l2.Location = new Point(242, 136);
            l2.Size = new Size(103, 20);
            l2.Text = "Select value:";
            l2.Font = new Font("Bodoni MT", 12);
            this.Controls.Add(l2);
      
            // Creating and setting the
            // properties of NumericUpDown
            NumericUpDown n = new NumericUpDown();
            n.Location = new Point(386, 130);
            n.Size = new Size(126, 26);
            n.Font = new Font("Bodoni MT", 12);
            n.Minimum = 1800;
            n.Maximum = 3000;
            n.Increment = 1;
            n.ThousandsSeparator = true;
      
            // Adding this control
            // to the form
            this.Controls.Add(n);
        }
    }
    }
    

    输出: