欢迎莅临 SUN WU GANG 的园子!!!

世上无难事,只畏有心人。有心之人,即立志之坚午也,志坚则不畏事之不成。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace HS_INSURANCE_PLATFORM_FORM.BaseTool
{
    public class ControlHelper
    {
        //定义一个用于保存静态变量的实例
        private static ControlHelper instance = null;
        //定义一个保证线程同步的标识
        private static readonly object locker = new object();
        //构造函数为私有,使外界不能创建该类的实例
        private ControlHelper() { }
        public static ControlHelper Instance
        {
            get
            {
                if (instance == null)
                {
                    lock (locker)
                    {
                        if (instance == null) instance = new ControlHelper();
                    }
                }
                return instance;
            }
        }

        public void TxbWriteValue(TextBox txtContent, string value)
        {
            Console.WriteLine(value);
            txtContent.Text += value + "\r\n\r\n";
            txtContent.Focus();//获取焦点
            txtContent.Select(txtContent.TextLength, 0);//光标定位到文本最后
            txtContent.ScrollToCaret();//滚动到光标处
        }

    }
}

  

posted on 2024-10-09 14:30  sunwugang  阅读(18)  评论(0编辑  收藏  举报