社区
C#
帖子详情
添加panel的背景色,急!
daijiedaimin
2006-06-29 02:07:32
按下button弹出一个对话框,可输汉字,若输入“黑色”,在richtextbox中显示汉字“黑色”,同时panel背景颜色变为黑色,该如何写代码?
...全文
359
2
打赏
收藏
添加panel的背景色,急!
按下button弹出一个对话框,可输汉字,若输入“黑色”,在richtextbox中显示汉字“黑色”,同时panel背景颜色变为黑色,该如何写代码?
复制链接
扫一扫
分享
转发到动态
举报
AI
作业
写回复
配置赞助广告
用AI写文章
2 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
灰太狼
2006-06-29
打赏
举报
回复
用枚举。
terry52
2006-06-29
打赏
举报
回复
Form1 代码:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace DemoButton
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.label1);
this.panel1.Location = new System.Drawing.Point(8, 32);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(192, 100);
this.panel1.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.ForeColor = System.Drawing.Color.Red;
this.label1.Location = new System.Drawing.Point(72, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 17);
this.label1.TabIndex = 0;
this.label1.Text = "Panel";
//
// button1
//
this.button1.Location = new System.Drawing.Point(168, 176);
this.button1.Name = "button1";
this.button1.TabIndex = 1;
this.button1.Text = "button1";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(240, 40);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(104, 80);
this.textBox1.TabIndex = 2;
this.textBox1.Text = "textBox1";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(408, 253);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.panel1);
this.Name = "Form1";
this.Text = "Form1";
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void button1_Click(object sender, System.EventArgs e) {
Form2 form2 = new Form2(this.panel1, this.textBox1);
form2.ShowDialog();
}
}
}
Form2 代码:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace DemoButton
{
/// <summary>
/// Form2 的摘要说明。
/// </summary>
public class Form2 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox textBox1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
private Control Ctl1;
private Control Ctl2;
public Form2()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
public Form2 (Control ctl1, Control ctl2) {
InitializeComponent();
Ctl1 = ctl1;
Ctl2 = ctl2;
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(80, 64);
this.textBox1.Name = "textBox1";
this.textBox1.TabIndex = 0;
this.textBox1.Text = "textBox1";
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// Form2
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(288, 189);
this.Controls.Add(this.textBox1);
this.Name = "Form2";
this.Text = "Form2";
this.ResumeLayout(false);
}
#endregion
private void textBox1_TextChanged(object sender, System.EventArgs e) {
if (this.textBox1.Text.Trim() == "黑色") {
Ctl1.BackColor = System.Drawing.Color.Black;
Ctl2.Text = "黑色";
}
}
}
}
JAVA 用JFreeChart绘制K线图
急
!
急
!
急
!!求高手!
package com;
import java.awt.Color;
import java.awt.GradientPaint;
import java.awt.Paint;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.InputEvent;
import java.awt.ev
vue的table表格背景样式和echart引入操作
vue的table表格背景样式,echart引入操作,el-tansfer的使用,select的使用方法解释
急
停开关解析:原理、参数、性能与应用全指南
急
停开关(E-Stop)是工业安全的核心组件,用于紧
急
切断危险源。其核心机制为强制断开:操作头(如蘑菇头)触发后直接驱动内部机构,确保常闭触点无条件断开并锁定,切断设备控制回路实现
急
停(符合IEC 60947-5-5)。遵循失效安全原则,即使弹簧失效或部件卡滞,仍倾向断开状态。
C# —— 点击按钮动态打开ComboBox
网上搜索了好多资料,大多是重绘ComboBox或者使用自定义控件创建一个全新的ComboBox(并非基于window的ComboBox)。 对于菜鸟的我,实现太麻烦,有些代码理解起来困难,但是项目比较
急
,所以就投机取巧,简单的做了一个比较粗糙的看起来像那么回事。 一、窗体布局如下 二、配置ComboBox的属性: 1.把背景颜色设为和底下控件同色; 2.把FlatStyle设置为Flat,去掉边框; 3.把DropDownStyle属性设置为DropDownLine,禁止...
最全面的Python自动化教程,包括:word、excel、ppt、pdf、视频等自动化代码生成,以及编辑音视频并
添加
字幕、
添加
水印、取消水印、加密文档、解密文档,十万字图文详细讲解使用方法(附源码)
最全面的Python自动化教程,包括:word、excel、ppt、pdf、视频等自动化代码生成,以及编辑音视频并
添加
字幕、
添加
水印、取消水印、加密文档、解密文档,十万字图文详细讲解使用方法(附源码) 主要分为几类: 1、自动化办公:对excel、word、ppt等office文档或pdf进行批量化、自动化等处理。 2、自动化媒体处理:对图片、视频等媒体文件进行批量化、自动化等处理。 3、自动化机器人:比如微信客服/聊天机器人、网站操作/录入、网络爬虫/网页信息抓取、自动化数据服务等
C#
111,096
社区成员
642,554
社区内容
发帖
与我相关
我的任务
C#
.NET技术 C#
复制链接
扫一扫
分享
社区描述
.NET技术 C#
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
让您成为最强悍的C#开发者
试试用AI创作助手写篇文章吧
+ 用AI写文章