* 결과물
* 소스
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private bool _isMouseDown = false;
private Point _lastLocation;
public Form1()
{
InitializeComponent();
pnlFormTitle.BackColor = Color.FromArgb(60, 63, 65);
this.BackColor = Color.FromArgb(75, 75, 75);
pnlFormTitle.Paint += (sender, e) =>
{
Graphics g = e.Graphics;
g.FillRectangle(new SolidBrush(Color.FromArgb(68, 221, 136)), new Rectangle(0, pnlFormTitle.Height - 1, pnlFormTitle.Width, 1));
};
}
private void pnlFormTitle_MouseDown(object sender, MouseEventArgs e)
{
_isMouseDown = true;
_lastLocation = e.Location;
}
private void pnlFormTitle_MouseMove(object sender, MouseEventArgs e)
{
if (!_isMouseDown) return;
this.Location = new Point(this.Location.X - _lastLocation.X + e.X, this.Location.Y - _lastLocation.Y + e.Y);
this.Update();
}
private void pnlFormTitle_MouseUp(object sender, MouseEventArgs e)
{
_isMouseDown = false;
}
}
}
|
cs |
시간이 없어 일단 올리고 다음에 icon, form text, close button등 작업해서 다시 올릴예정
'c#' 카테고리의 다른 글
[C#, Matlab] Matlab에서 생성한 Dll 이 System.TypeInitializationException' 오류가 날때 (0) | 2020.12.05 |
---|---|
[c#, control] winform에서 control 깜빡임 방지 2가지 방법 (0) | 2020.11.25 |
[c#, devexpress] 다른 thread에서 xtraMessagebox 또는 xtraForm에 스킨 적용이 안될때 (0) | 2020.10.22 |
[c#] form 초기 위치 control에 맞추기 (0) | 2020.07.29 |
visualstudio 첫 셋팅 저장 (0) | 2020.05.20 |