天生舞男

我喜欢谦虚的学习各种...,希望自己能坚持一辈子,因为即使一张卫生巾也是有它的作用.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

想利用Windows的图形图象为Web所用.

Posted on 2006-01-10 23:46  天生舞男  阅读(154)  评论(0编辑  收藏  举报

using System;
using System.Drawing;
using System.Windows.Forms;

public class Clr:Form
{
 Button b1 = new Button();
 TextBox tb = new TextBox();
 ColorDialog clg = new ColorDialog();

 public Clr()
 {
  b1.Click += new EventHandler(b1_click);
  b1.Text = "选择颜色";
  tb.Location = new Point(50,50);
  this.Controls.Add(b1);
  this.Controls.Add(tb);
 }

 public void b1_click(object sender, EventArgs e)
 {
  clg.ShowDialog();
  tb.BackColor = clg.Color;
 }

 public static void Main()
 {
  Application.Run(new Clr());
 }
}