gpt4 book ai didi

c# - 将winform定位在屏幕的左下角

转载 作者:可可西里 更新时间:2023-11-01 12:35:08 24 4
gpt4 key购买 nike

我试图在屏幕的左下角(在开始按钮上)放置一个表单我有以下代码试图这样做,但只考虑了屏幕的工作区域 - 所以表单位于开始按钮的正上方:

int x = Screen.PrimaryScreen.WorkingArea.Left + this.Width;
int y = Screen.PrimaryScreen.WorkingArea.Bottom - this.Height;
this.Location = new Point(x, y);

下面的演示/屏幕进一步展示了我正在尝试做的事情:

[Demo Screen](http://i.stack.imgur.com/9mTjj.png)

最佳答案

使用 Screen.PrimaryScreen.Bounds 属性并设置 this.TopMost = true。这有效:

int y = Screen.PrimaryScreen.Bounds.Bottom - this.Height;
this.Location = new Point(0, y);
this.TopMost = true;

关于c# - 将winform定位在屏幕的左下角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12338199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com