码迷,mamicode.com
首页 > Windows程序 > 详细

C# VS2017 winForm 使tableLayoutPanel 不闪烁

时间:2018-04-27 13:57:45      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:lag   for   部分   type   you   binding   ntp   pre   code   

//设置tablelayoutpanel控件的DoubleBuffered 属性为true,这样可以减少或消除由于不断重绘所显示图面的某些部分而导致的闪烁

        private void Form_PrintPreview_Load(object sender, EventArgs e)
        {
            //开启双缓冲,改善TableLayoutPanel闪烁问题
            TableLayoutPanel1.GetType().GetProperty("DoubleBuffered", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(TableLayoutPanel1, true,null);
        }

 

C# VS2017 winForm 使tableLayoutPanel 不闪烁

标签:lag   for   部分   type   you   binding   ntp   pre   code   

原文地址:https://www.cnblogs.com/nb08611033/p/8960870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!