FormBorderStyle 썸네일형 리스트형 [C# .NET] FormBorderStyle.None 상태에서 드래그로 폼 움직이기 namespace MyHTS_CShp { public partial class frmMultiStocks : Form { Point mousePoint; public frmMultiStocks() { InitializeComponent(); this.FormBorderStyle = FormBorderStyle.None; //화면 테두리가 없어짐 . . . . private void pictureBox1_MouseDown(object sender, MouseEventArgs e) { mousePoint = new Point(e.X, e.Y); } private void pictureBox1_MouseMove(object sender, MouseEventArgs e) { if ((e.Button & Mous.. 더보기 이전 1 다음