일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 황광진
- 윈도데브
- MIX10
- 윈도우모바일
- 소년포비
- 윈도우 모바일
- 거제도
- 마이크로소프트
- 옴니아2
- 서진호
- 데브피아
- 루나네스
- UX베이커리
- 신동혁
- 쉐어포인트코리아
- 지승욱
- 실버라이트 코리아
- 윈도우폰7
- 스마트폰
- 헤이맨
- 훈스닷넷
- 윈도우폰
- 주신영
- 윈모데브
- 김춘배
- 소년포비소프트
- 신석현
- winmodev
- 안드로이드
- windows mobile 6.5
- Today
- Total
소년포비의 세계정복!!
[C#]API 이용해서 프레임이 없는 윈도우 이동 본문
API 이용해서 프레임이 없는 윈도우를 이동하고 싶을 때..
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices; // for API
namespace MoveWndWithAPISample
{
public partial class Form1 : Form
{
#region API 등록
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
#endregion
public Form1()
{
InitializeComponent();
}
private void Form1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
}
}
'프로그램 세상 > C#' 카테고리의 다른 글
[C#] 멀티 업로드 (0) | 2009.10.08 |
---|---|
vb.net 소스코드를 c# 소스코드로(그 반대 역시) 변환 (0) | 2009.10.07 |
C#으로 모니터 제어(on/off) (0) | 2009.10.07 |
웹에서 윈폼 실행시키며 정보 넘기기 (0) | 2009.10.07 |
C# 미니팝업창 애니메이션 효과 (0) | 2009.10.07 |