c#中如何改变控件位置.?

privatevoidForm1_Load(objectsender,EventArgse){button1.Location.X=0;button1.Location.... private void Form1_Load(object sender, EventArgs e)
{
button1.Location.X = 0;
button1.Location.Y = 0;

这样怎么会不行.?
展开
 我来答
du瓶邪
推荐于2017-10-02 · TA获得超过2.4万个赞
知道大有可为答主
回答量:1.7万
采纳率:100%
帮助的人:2923万
展开全部
利用鼠标事件控制位置,比如:
private void butPlan_MouseMove(object sender, MouseEventArgs e)
{
//播放歌曲快进
if (e.Button == MouseButtons.Left && butPlay.BackgroundImage == FFS)
{
timer2.Enabled = false;
butPlan.Location = new Point(MousePosition.X - this.Location.X-10, prTime.Location.Y);
if ( butPlan .Location.X < 2 )
{
butPlan.Location = new Point(prTime.Location.X, prTime.Location.Y);
}
if (butPlan.Location.X > prTime.Size.Width -4)
{
butPlan.Location = new Point(prTime.Location.X + prTime.Size.Width - 4, prTime.Location.Y);
}
prTime.Value = (MousePosition.X - this.Location.X-3) * (prTime.Maximum / prTime.Size.Width)-6000;
TT((prTime.Value/1000).ToString ());
}
}

private void butPlan_MouseCaptureChanged(object sender, EventArgs e)
{
try
{
timer2.Enabled = true;
Music.CurrentPosition = prTime.Value / 1000;
MusicLrc.Text = "";
}
catch { }
}
百度网友dc91b32
推荐于2017-09-27 · TA获得超过5650个赞
知道大有可为答主
回答量:5653
采纳率:0%
帮助的人:0
展开全部
webform的话,楼上已经写好了,

winform的话:
button1.Location = new Point(0, 0);
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
灬空爱灬
2008-10-15 · TA获得超过118个赞
知道答主
回答量:192
采纳率:0%
帮助的人:110万
展开全部
button1.Style.Add("position", "absolute");
button1.Style.Add("left", "0");
button1.Style.Add("top", "0");

其它样式以此方法都可以添加
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式