using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace DrawDesktop
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
IntPtr hdc = GetDCEx(GetDesktopWindow(), IntPtr.Zero, 1027);
using (Graphics g = Graphics.FromHdc(hdc))
{
g.FillEllipse(Brushes.Red, 0, 0, 400, 400);
}
}
[DllImport("user32.dll")]
static extern IntPtr GetDesktopWindow();
[DllImport("user32.dll")]
static extern IntPtr GetDCEx(IntPtr hwnd, IntPtr hrgn, uint flags);
}
}
寫這個網誌的目的,一方面在於紀錄自己在工作上找到的一些How to資訊,以及分享自己對於軟體架構上的心得,另一方面是為了紀錄自己技術的成長過程. Just for fun with software architecture.
2010年8月5日 星期四
[.NET] 如何在桌面上畫圖
這個範例示範了如何利用API取得桌面handle並在桌面上畫圖
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言
嘎嘎嘎