小5聊C# Winform窗体,程序点击运行第二次自动判断显示,解决不重复打开两个相同窗体

Posted 小5聊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小5聊C# Winform窗体,程序点击运行第二次自动判断显示,解决不重复打开两个相同窗体相关的知识,希望对你有一定的参考价值。

C# Winform窗体,程序运行后最小化到任务栏,当再次点击程序,能够自动将隐藏在任务栏的程序显示出来

默认情况下,如果不作处理,点击多次exe会运行多个窗体,具体看业务需求!

比如:QQ程序可以运行多个窗体,酷狗音乐运行一次后再次点击不会创建新窗体会直接显示

1、Main主方法代码

using mikeypet_common;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MyWinform
{
    static class Program
    {
        [DllImport("user32.dll")]
        private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);
        private const int Value_HIDE = 0;              //常量,隐藏
        private const int Value_SHOWNORMAL = 1;        //常量,显示,标准状态
        private const int Value_SHOWMINIMIZED = 2;     //常量,显示,最小化
        private const int Valu

以上是关于小5聊C# Winform窗体,程序点击运行第二次自动判断显示,解决不重复打开两个相同窗体的主要内容,如果未能解决你的问题,请参考以下文章

c#中让Windows窗体只运行一次,并在第二次启动窗体时激活该窗体

小5聊Winform窗体开发基础知识积累

小5聊Winform窗体开发基础之报错提示未能找到文件

c#的winform窗体中如何嵌套exe应用程序

C#窗口切换问题:如何切换回主窗体

C# winform 跨线程操作winform程序窗体