怎么把从textbox输入的值变成label的背景颜色,窗体启动时标签上的文字能沿窗体的主对交线循环移动
怎么把输入的值变成label的背景颜色呢,标签循环移动
怎么把从textbox输入的值变成label的背景颜色,窗体启动时标签上的文字能沿窗体的主对交线循环移动
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- CSDN专家-showbo 2022-03-05 15:08关注
下面这个是碰到边界回弹示例,对角线首先label得放到对角线上,代码计算出来会跳动
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp8 { public partial class Form2 : Form { public Form2() { InitializeComponent(); t = new Timer(); t.Enabled = false; t.Interval = 100;//100ms移动一次 t.Tick += T_Tick; } int x = 5, y = 5; private void T_Tick(object sender, EventArgs e) { label1.Location = new Point(label1.Location.X + x, label1.Location.Y+y); if (label1.Location.X > this.ClientRectangle.Width - label1.Width || label1.Location.X < 0) x = -x; if (label1.Location.Y > this.ClientRectangle.Height - label1.Height || label1.Location.Y < 0) y = -y; } Timer t; private void textBox1_TextChanged(object sender, EventArgs e) { label1.ForeColor = Color.FromName(textBox1.Text); } private void button1_Click(object sender, EventArgs e) { t.Enabled = button1.Text=="移动"; button1.Text = t.Enabled ? "停止" : "移动"; } } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 乌班图ip地址配置及远程SSH
- ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
- ¥15 PSPICE制作一个加法器
- ¥15 javaweb项目无法正常跳转
- ¥15 VMBox虚拟机无法访问
- ¥15 skd显示找不到头文件
- ¥15 机器视觉中图片中长度与真实长度的关系
- ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
- ¥15 java 的protected权限 ,问题在注释里
- ¥15 这个是哪里有问题啊?