3个回答
展开全部
首先要加个颜色对话框(colorDialog)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace 窗体颜色
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog( ) == DialogResult.OK)
{
this.BackColor = colorDialog1.Color;
}
}
private void button2_Click(object sender, EventArgs e)
{
this.BackColor = Color.WhiteSmoke;
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace 窗体颜色
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog( ) == DialogResult.OK)
{
this.BackColor = colorDialog1.Color;
}
}
private void button2_Click(object sender, EventArgs e)
{
this.BackColor = Color.WhiteSmoke;
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
VS工具箱的对话框中有个ColorDialog(颜色对话框)控件,将该控件拖入窗体中,在按钮的单击事件中写入如下代码:
this.colorDialog1.ShowDialog();
this.BackColor = this.colorDialog1.Color;
即可;
this.colorDialog1.ShowDialog();
this.BackColor = this.colorDialog1.Color;
即可;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没有默认的修改皮肤的方法,都是自己写的
自己写一个窗口然后要什么功能自己家,不是每一个功能系统都能提供默认的方法的,大部分好的方法过程都是自己写出来的
自己写一个窗口然后要什么功能自己家,不是每一个功能系统都能提供默认的方法的,大部分好的方法过程都是自己写出来的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询