C#的label控件运行是怎样通过代码修改大小。例如我在窗体放一个label 两个button 当单击一个button时
ps:单击一个按钮时label的宽度变为一半单击另一个时又恢复到原来的大小。用代码怎么实现。...
ps:单击一个按钮时 label的宽度变为一半 单击另一个时 又恢复到原来的大小。
用代码怎么实现。 展开
用代码怎么实现。 展开
4个回答
展开全部
我觉得你是不是想让多出来的文字也隐藏啊?那样的话,需要设置AUTOSIZE为FALSE,这样才能达到无论多少字,都能变成原来的大小的一半。如果要适合字长度的话,那么,改变为TRUE,但是,那样的话,无论你怎么写,都不会变成原来的一半的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
通过size 属性修改
追问
我用这行代码把它缩小。
label4.SetBounds(label4.Location.X, label4.Location.Y, label4.Size.Width / 3, label4.Size.Height);
但是不能用这个方法把它变成原来大小。
详细点 。我要代码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
label1.Width = 100;
label1.AutoSize = false;
label1.Text = "01234567890123456789";
}
private void button1_Click(object sender, EventArgs e)
{
label1.Width = label1.Width / 2;
}
private void button2_Click(object sender, EventArgs e)
{
label1.Width = label1.Width * 2;
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
label1.Width = 100;
label1.AutoSize = false;
label1.Text = "01234567890123456789";
}
private void button1_Click(object sender, EventArgs e)
{
label1.Width = label1.Width / 2;
}
private void button2_Click(object sender, EventArgs e)
{
label1.Width = label1.Width * 2;
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询