public partial class TransparentPanel : System.Windows.Forms.Panel { public TransparentPanel() { } public TransparentPanel(IContainer container) { container.Add(this); } protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x20; return cp; } } protected override void OnPaintBackground(PaintEventArgs e) { } }
'.Net > Winform' 카테고리의 다른 글
C# DataGridView 체크 유무 확인하기 (0) | 2012.09.25 |
---|---|
C# Resource를 이용하여 프로그램에 이미지 포함하기 (0) | 2012.09.21 |
C# Winform에서 DaumAPI 사용하기[3]_JavaScript CallBack 구현 (0) | 2012.09.14 |
C# Winform에서 DaumAPI 사용하기[2]_JavaScript 메서드 호출 (0) | 2012.09.14 |
C# Winform에서 DaumAPI 사용하기[1]_WebBrowser Control 사용 (0) | 2012.09.10 |