当前位置: 首页>>代码示例>>C#>>正文


C# System.Windows.Forms.Panel.Invalidate方法代码示例

本文整理汇总了C#中System.Windows.Forms.Panel.Invalidate方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.Panel.Invalidate方法的具体用法?C# System.Windows.Forms.Panel.Invalidate怎么用?C# System.Windows.Forms.Panel.Invalidate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.Panel的用法示例。


在下文中一共展示了System.Windows.Forms.Panel.Invalidate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DrawForm

        public DrawForm()
            : base()
        {
            Load += (s, e) =>
            {
                var p = new System.Windows.Forms.Panel();
                p.Dock = System.Windows.Forms.DockStyle.Fill;
                Controls.Add(p);

                typeof(System.Windows.Forms.Panel).InvokeMember("DoubleBuffered",
                    BindingFlags.SetProperty | BindingFlags.Instance | BindingFlags.NonPublic,
                    null, p, new object[] { true });

                var bmp = new System.Drawing.Bitmap(1024, 1024);
                p.Paint += (_, pe) =>
                {
                    pe.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
                    pe.Graphics.DrawImage(bmp, System.Drawing.Point.Empty);
                };
                Graphics = System.Drawing.Graphics.FromImage(bmp);

                var t = new Thread(new ThreadStart(
                    delegate
                    {
                        while (true)
                        {
                            p.Invalidate();
                            p.Update();
                            System.Threading.Thread.Sleep(250);
                        }
                    }));
                t.IsBackground = true;
                t.Start();
            };
        }
开发者ID:hemme,项目名称:scriptcs-gui,代码行数:35,代码来源:DrawForm.cs


注:本文中的System.Windows.Forms.Panel.Invalidate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。