• 大小: 0.05M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: C#  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 Case08_1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private const int SW_HIDE = 0;      //隐藏任务栏
        private const int SW_RESTORE = 9;   //显示任务栏

        [DllImport(“user32.dll“)]
        public static extern int ShowWindow(int hwnd int nCmdShow);
        [DllImport(“user32.dll“)]
        public static extern int FindWindow(string lpClassName string lpWindowName);
     

        private void Form1_Load(object sender EventArgs e)
       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

               147938                    39


评论

共有 条评论