Visual Studio 2005ス ..
[2ch|▼Menu]
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