如何在 C# 中设置按钮的位置?

原文:https://www . geeksforgeeks . org/如何设置 c-sharp 中按钮的位置/

按钮是应用程序、软件或网页的重要组成部分。它允许用户与应用程序或软件交互。在 windows 窗体中,您可以使用位置属性设置按钮在窗体中的位置。它由 Button 类提供,帮助我们设置 Button 控件左上角相对于其窗体左上角的坐标。您可以在两种不同的方法中使用此属性:

1。设计时间:设置按钮位置是最简单的方法。使用以下步骤:

  • 第一步:创建一个窗口窗体 a 如下图所示: Visual Studio->File->New->Project->windows formpp
  • 步骤 2: 从工具箱中拖动按钮控件,并将其放到窗口窗体上。您可以根据需要将按钮控件放置在窗口窗体的任何位置。 T3】
  • Step 3: After drag and drop you will go to the properties of the Button control to set the Location property of the Button.

    输出:

2。运行时:比上面的方法稍微复杂一点。在此方法中,您可以借助给定的语法以编程方式设置按钮的位置属性:

public System.Drawing.Point Location { get; set; }

这里,点用于表示按钮相对于其容器或窗体左上角的左上角。以下步骤用于设置按钮的位置属性:

  • 步骤 1: 使用 button 类提供的 Button()构造函数创建按钮。

    ```cs // Creating Button using Button class Button MyButton = new Button();

    ```

  • 步骤 2: 创建按钮后,设置按钮类提供的按钮的位置属性。

    ```cs // Set the location of the button Mybutton.Location = new Point(225, 198);

    ```

  • Step 3: And last add this button control to from using Add() method.

    ```cs // Add this Button to form this.Controls.Add(Mybutton);

    ```

    示例:

    ```cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;

    namespace WindowsFormsApp8 {

    public partial class Form1 : Form {

    public Form1()     {         InitializeComponent();     }

    private void Form1_Load(object sender, EventArgs e)     {

    // Creating and setting the properties of label         Label l = new Label();         l.AutoSize = true;         l.Text = "Do you want to submit this form?";         l.Location = new Point(222, 145);

    // Adding this label to form         this.Controls.Add(l);

    // Creating and setting the properties of Button         Button Mybutton = new Button();         Mybutton.Location = new Point(225, 198);         Mybutton.Text = "Submit";         Mybutton.AutoSize = true;         Mybutton.BackColor = Color.LightBlue;

    // Adding this button to form         this.Controls.Add(Mybutton);

    // Creating and setting the properties of Button         Button Mybutton1 = new Button();         Mybutton1.Location = new Point(438, 198);         Mybutton1.Text = "Cancel";         Mybutton1.AutoSize = true;         Mybutton1.BackColor = Color.LightPink;

    // Adding this button to form         this.Controls.Add(Mybutton1);     } } } ```

    输出: