c# winform 怎样让窗体启动位置位于屏幕右上角

c#winform怎样让窗体启动位置位于屏幕右上角,就像QQ登陆后,默认的位置在电脑屏幕的右上角.谢谢,最好有代码,谢谢!!!同样,像QQ窗体一样,将其拖向屏幕的边界,就... c# winform 怎样让窗体启动位置位于屏幕右上角,就像QQ登陆后,默认的位置在电脑屏幕的右上角.谢谢,最好有代码,谢谢!!!
同样,像QQ窗体一样,将其拖向屏幕的边界,就自动缩进去,鼠标移上去又显出来是怎么回事呢?
展开
 我来答
百度网友6809e30a0
推荐于2017-09-14 · TA获得超过5285个赞
知道大有可为答主
回答量:3765
采纳率:0%
帮助的人:2804万
展开全部
如QQ窗口一样的代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;

namespace WindowsApplication1
{
public partial class Form1 : Form
{
int state;

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
this.Left = Screen.PrimaryScreen.WorkingArea.Width - this.Width;
this.Top = 0;
state = 0;
}

private void Form1_MouseEnter(object sender, EventArgs e)
{
if (state == 0)
{
state = 1;
int t = this.Top;
for (int i = t; i <= 0; i++)
{
this.Top = i;
Application.DoEvents();
}
state = 0;
}
}

private void Form1_MouseLeave(object sender, EventArgs e)
{
if (this.Top <= 0 && state==0)
{
state = 1;
int t=this.Top;
for (int i = t; i > -this.Height + 10; i--)
{
this.Top = i;
Application.DoEvents();
}
state = 0;
}
}
}
}
kaoqiangshao
2009-03-29 · TA获得超过304个赞
知道小有建树答主
回答量:206
采纳率:0%
帮助的人:236万
展开全部
private void Form5_Load(object sender, EventArgs e)
{
int x = SystemInformation.PrimaryMonitorSize.Width - this.Width;
int y= SystemInformation.PrimaryMonitorSize.Height - this.Height;//要让窗体往上走 只需改变 Y的坐标
this.Location = new Point(x, y);
this.TopMost = true;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
定复2d
2009-03-29 · TA获得超过3196个赞
知道大有可为答主
回答量:2052
采纳率:0%
帮助的人:1923万
展开全部
private void Form2_Load(object sender, EventArgs e)
{
this.Left = 1000;

this.Top = 0;
}
类似的,不过你要获取分辨率

分辨率的话

Rectangle rect = new Rectangle();
rect = Screen.GetWorkingArea(this);
MessageBox.Show("本机器的分辨率是" + rect.Width.ToString() + "*" + rect.Height.ToString());
类似的就可以获取
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
du瓶邪
推荐于2017-10-03 · TA获得超过2.4万个赞
知道大有可为答主
回答量:1.7万
采纳率:100%
帮助的人:2867万
展开全部
this.ControlBox = false;
或者
this.FormBorderStyle = FormBorderStyle.None;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式