C# - 바탕화면(Desktop)에 출력하기
C# 2021. 11. 20. 15:57 |반응형
바탕화면에 그래픽을 출력해 보자.
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
|
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;
using System.Runtime.InteropServices;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
[DllImport("User32.dll")]
public static extern IntPtr GetDC(IntPtr hwnd);
[DllImport("user32.dll")]
public static extern IntPtr ReleaseDC(IntPtr hWnd, IntPtr hDC);
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
IntPtr desktopPtr = GetDC(IntPtr.Zero);
using (Graphics g = Graphics.FromHdc(desktopPtr))
{
g.FillRectangle(Brushes.Red, 100, 100, 100, 100);
}
ReleaseDC(IntPtr.Zero, desktopPtr);
}
}
}
|
버튼 클릭 이벤트 핸들러를 작성한다.
반응형
'C#' 카테고리의 다른 글
C# Form Designer Layout Mode - 폼 디자이너 레이아웃 모드 (0) | 2021.11.22 |
---|---|
C# Windows Media Player Audio/Video Play #2 (0) | 2021.11.21 |
C# Windows Media Player Audio/Video Play #1 (0) | 2021.11.21 |
C# Media Player Mp3 (0) | 2021.11.21 |
C# I Love You Program - 사랑해 프로그램 (0) | 2021.11.20 |