Loading
0

C#中获取系统任务栏尺寸大小的方法

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
前言:C#开发中要获取当前系统任务栏的尺寸大小,可使用如下代码实现。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace GetTaskBarSize
{
    public partial class Frm_Main : Form
    {
        public Frm_Main()
        {
            InitializeComponent();
        }

        [DllImport("user32.dll")]
        public static extern int FindWindow(string lpClassName, string lpWindowName);//声明API函数FindWindow

        [DllImport("user32.dll")]
        public static extern int GetWindowRect(int hwnd, ref Rectangle lpRect);//声明API函数GetWindowRect

        Rectangle myrect;

        private void button1_Click(object sender, EventArgs e)
        {
            if (GetWindowRect(FindWindow("Shell_TrayWnd", null), ref myrect) == 0)//获取任务栏尺寸
                return;
            else
            {
                textBox1.Text = Convert.ToString(myrect.Left);//左边界
                textBox2.Text = Convert.ToString(myrect.Top);//上边界
                textBox3.Text = Convert.ToString(myrect.Right);//右边界
                textBox4.Text = Convert.ToString(myrect.Bottom);//下边界
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }
    }
}

运行后如图:

技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-23-35896-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:C#获取系统启动后到目前为止经过的时间。
下一篇:C#中获取当前系统环境变量的简单方法