>> 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(); } }