マイペースなプログラミング日記

DTMやプログラミングにお熱なd-kamiがマイペースに書くブログ

2009-07-05から1日間の記事一覧

デスクトップに文字列を描画する

C#

デスクトップの右上に文字列を描画するプログラムを作った。 using System; using System.Drawing; using System.Runtime.InteropServices; namespace Desktop{ class Desktop [DllImport("user32.dll")] private static extern IntPtr GetDC(IntPtr hwnd); …