csharp パラパラしないTableLayoutPanel中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp パラパラしないTableLayoutPanel中相关的知识,希望对你有一定的参考价值。

  class TableLayoutPanelEx : TableLayoutPanel
  {
    protected override void OnCreateControl()
    {
      base.OnCreateControl();
      this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.CacheText, true);
    }

    protected override CreateParams CreateParams
    {
      get
      {
        CreateParams cp = base.CreateParams;
        cp.ExStyle |= NativeMethods.WS_EX_COMPOSITED;
        return cp;
      }
    }

    public void BeginUpdate()
    {
      NativeMethods.SendMessage(Handle, NativeMethods.WM_SETREDRAW, IntPtr.Zero, IntPtr.Zero);
    }

    public void EndUpdate()
    {
      NativeMethods.SendMessage(Handle, NativeMethods.WM_SETREDRAW, new IntPtr(1), IntPtr.Zero);
      Parent.Invalidate(true);
    }
  }

  static class NativeMethods
  {
    public static int WM_SETREDRAW = 0x000B; //uint WM_SETREDRAW
    public static int WS_EX_COMPOSITED = 0x02000000;


    [DllImport("user32.dll", CharSet = CharSet.Auto)]
    public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam); //UInt32 Msg
  }

以上是关于csharp パラパラしないTableLayoutPanel中的主要内容,如果未能解决你的问题,请参考以下文章

csharp [cmをinchに変换] ClosedXMLで余白などの指定をするときはインチ指定しなければならない。#ClosedXML #ExtensionMethod

php パラメーターで分岐

python GET·POSTパラメータ取得2

python GET·POSTパラメータ取得1

swift 型パラメータを切换文で使う

python URL·クエリパラメータのパース