using System.Reflection;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public static class Extensions
{
public static void DoubleBuffered(this Control control, bool enabled)
{
var prop = control.GetType().GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic);
prop.SetValue(control, enabled, null);
}
}
}
'C# Programming' 카테고리의 다른 글
C# 엑셀 열 정렬하기 (0) | 2022.05.06 |
---|---|
C# 엑셀 파일 열고 닫기 (0) | 2022.05.06 |
C# Flicker (0) | 2021.12.23 |
C# WinForm - FormBorderStyle이 None인 폼 크기 조절하기 (1) | 2021.11.11 |
C# textbox 커서 위치 (0) | 2021.11.01 |