C#button控件的坐标修改

我用代码动态生成一个button控件,想修改它的坐标用Button.Location编译出错说是无法修改“System.Windows.Forms.Control.Loc... 我用代码动态生成一个button控件,想修改它的坐标用Button.Location编译出错说是 无法修改“System.Windows.Forms.Control.Location”的返回值,因为它不是变量请问怎么修改坐标?(用代码) 展开
 我来答
精神小伙喵
2013-04-18 · TA获得超过684个赞
知道小有建树答主
回答量:746
采纳率:50%
帮助的人:727万
展开全部

 

button1.Location = new Point(20, 200);

 

如果可用,望采纳~~

匿名用户
2013-04-18
展开全部
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;namespace CShapWindows_Demo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//动态生成的按钮
private Button btn_dynamic; //修改动态按钮的坐标
private Button btn_modPoint; private void Form1_Load(object sender, EventArgs e)
{
btn_dynamic = new Button();
btn_dynamic.Text = "动态添加的按钮";
btn_dynamic.Location = new Point(1, 1); btn_modPoint = new Button();
btn_modPoint.Text = "修改动态按钮的坐标";
//让修改按钮在窗体的中心
btn_modPoint.Location = new Point(this.Width / 2 - btn_modPoint.Width / 2, this.Height / 2 - btn_modPoint.Height / 2);
btn_modPoint.Click += new EventHandler(btn_modPoint_Click); this.Controls.Add(btn_dynamic);
this.Controls.Add(btn_modPoint); } void btn_modPoint_Click(object sender, EventArgs e)
{
//修改动态按钮的坐标
btn_dynamic.Location = new Point(20, 20);
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-04-18
展开全部
button.location=new location(x,y);这样试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
何为何为不过晋
2017-07-30 · 超过26用户采纳过TA的回答
知道答主
回答量:112
采纳率:0%
帮助的人:27.1万
展开全部
X 表示以十六进制形式输出
02 表示不足两位,前面补0输出;出过两位,不影响
举例:
printf("%02X", 0x123); //打印出:123
printf("%02X", 0x1); //打印出:01
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hahajing3998
2013-04-19 · 超过15用户采纳过TA的回答
知道答主
回答量:317
采纳率:0%
帮助的人:71.5万
展开全部
左边顶边数据写到代码里不行吗
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式