从没有任务栏按钮的c++启动c#应用程序
本文关键字:c++ 启动 应用程序 按钮 任务栏 | 更新日期: 2023-09-27 18:23:50
我正在寻找一种从c++应用程序启动c#应用程序的方法,在我选择显示之前,不显示c#应用的任务栏按钮。
我有一个类可以隐藏和显示任务栏按钮,但在启动c#应用程序时,任务栏按钮会短暂显示。
有没有一种方法可以在操作系统不创建任务栏按钮的情况下启动c#应用程序,同时允许我稍后显示任务栏按钮?
这是我目前用来隐藏和显示任务栏按钮的代码。
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
class Program
{
static void Main()
{
var tb = new Taskbar();
tb.DeleteTab();
bool hidden = true;
while (true)
{
Console.WriteLine("Press any key to toggle taskbar button");
Console.ReadKey();
Console.Clear();
if (hidden)
tb.AddTab();
else
tb.DeleteTab();
hidden = !hidden;
}
}
}
class Taskbar
{
public void AddTab()
{
GetTaskbarList().AddTab(GetMainWindowHandle());
}
public void DeleteTab()
{
GetTaskbarList().DeleteTab(GetMainWindowHandle());
}
ITaskbarList GetTaskbarList()
{
var taskbarList = (ITaskbarList)new CoTaskbarList();
taskbarList.HrInit();
return taskbarList;
}
IntPtr GetMainWindowHandle()
{
return Process.GetCurrentProcess().MainWindowHandle;
}
[ComImport]
[Guid("56fdf344-fd6d-11d0-958a-006097c9a090")]
class CoTaskbarList
{
}
[ComImport,
Guid("56fdf342-fd6d-11d0-958a-006097c9a090"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface ITaskbarList
{
/// <summary>
/// Initializes the taskbar list object. This method must be called before any other ITaskbarList methods can be called.
/// </summary>
void HrInit();
/// <summary>
/// Adds an item to the taskbar.
/// </summary>
/// <param name="hWnd">A handle to the window to be added to the taskbar.</param>
void AddTab([In] IntPtr hWnd);
/// <summary>
/// Deletes an item from the taskbar.
/// </summary>
/// <param name="hWnd">A handle to the window to be deleted from the taskbar.</param>
void DeleteTab([In] IntPtr hWnd);
/// <summary>
/// Activates an item on the taskbar. The window is not actually activated; the window's item on the taskbar is merely displayed as active.
/// </summary>
/// <param name="hWnd">A handle to the window on the taskbar to be displayed as active.</param>
void ActivateTab([In] IntPtr hWnd);
/// <summary>
/// Marks a taskbar item as active but does not visually activate it.
/// </summary>
/// <param name="hWnd">A handle to the window to be marked as active.</param>
void SetActiveAlt([In] IntPtr hWnd);
}
}
设置ShowInTaskbar
(WinForms或WPF)属性。
最初将其设置为false
,应用程序将不会出现。
当您希望应用程序显示在任务栏中时,将其设置为true
。
使用:
this.ShowInTaskbar = false;
在Form
的构造函数中(或者在设计器中设置它,如果可能的话)应该确保最初没有创建任务栏按钮。我认为您应该仍然能够在必要时创建一个。