Visual Studio 2005ス ..
835:デフォルトの名無しさん
05/12/24 00:58:29
>> 830,831
一応、コンソール出力を無くしてみました。何回もコードを載せてすみません。
// 参照設定 System, System.Drawing, System.Windows.Forms
using System;
using System.Drawing;
using System.Windows.Forms;
class Program
{
static void Main(string[] args)
{
int w = 1024; int h = 1024;
DateTime dt = DateTime.Now;
Bitmap b = new Bitmap(w, h);
for (int y = 0; y < h; y++)
for (int x = 0; x < w; x++)
b.SetPixel(x, y, Color.FromArgb(y + x * 0x100 - 0x01000000));
TimeSpan ts = DateTime.Now - dt;
Form f = new Form();
f.BackgroundImage = b;
f.Text = ts.ToString();
f.ShowDialog();
}
}
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
5381日前に更新/198 KB
担当:undef