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 & MouseButtons.Left) == MouseButtons.Left)
{
Location = new Point(this.Left - (mousePoint.X - e.X), this.Top - (mousePoint.Y - e.Y));
}
}
private void pictureBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (this.WindowState == FormWindowState.Maximized)
{
this.WindowState = FormWindowState.Normal;
}
else
{
this.WindowState = FormWindowState.Maximized;
}
}
'컴퓨터 > 언어,프로그래밍' 카테고리의 다른 글
[C#] 연산자(Operators), 수식 연산자, 증감 연산자, 관계 연산자, 할당 연산자, 논리 연산자, 비트 연산자 (0) | 2012.10.05 |
---|---|
[C#] 변수의 형식 변환(Type Conversion), 문자 상수(Constant)선언 방법 (0) | 2012.10.05 |
[C# .NET] 윈도우 폼 타이틀바, 테두리 없애기, 배경화면 설정, 단축키 구현 (0) | 2012.09.28 |
[스크랩][C#] 타이머(Timer) 사용법 (0) | 2012.09.28 |
[스크랩] Excel 데이터를 C#으로 읽을 때 (0) | 2012.09.28 |