如何在C#Windows窗体的左上角放置开头窗体?

前端之家收集整理的这篇文章主要介绍了如何在C#Windows窗体的左上角放置开头窗体?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
表单中的位置属性设置为0,0(属性窗口).但是,窗体在任何位置都会打开,但屏幕的左上角.我应该尝试什么代码,我应该放在哪里?

我是C#的新手,任何帮助都非常感激.

解决方法

您需要将StartPosition设置为手动,以使表单设置开始位置为“位置属性”中的值.
public Form1()
{
    InitializeComponent();
    this.StartPosition = FormStartPosition.Manual;
    this.Location = new Point(0,0);
}

FormStartPosition.Manual的Intelisense总结

FormStartPosition FormStartPosition.Manual

The position of the form is determined by the System.Windows.Forms.Control.Location property.

原文链接:https://www.f2er.com/csharp/93439.html

猜你在找的C#相关文章