청강컴정/C#

테두리 없는 WindowForm 생성하기

luckey 2009. 5. 13. 09:49
public void CreateMyBorderlessWindow()
{
    FormBorderStyle = FormBorderStyle.None;
    MaximizeBox = false;
    MinimizeBox = false;
    StartPosition = FormStartPosition.CenterScreen;
    ControlBox = false;
}