启动屏幕固定到任务栏,主屏幕显示其他任务栏条目

发布于 2024-11-02 06:09:59 字数 215 浏览 0 评论 0原文

在我的应用程序中,当您从“开始”菜单将已安装的应用程序固定到任务栏,然后从固定图标启动应用程序时,启动屏幕显示好像它正在从固定图标运行,但一旦主屏幕显示新图标显示在任务栏中。

就好像主窗口没有与启动画面绑定到同一个应用程序。

如果我从“开始”菜单启动应用程序,然后从任务栏中的运行图标固定它,它就可以正常工作(因为在我固定它时,主窗口已打开)。

我该如何解决这个问题?

In my application, when you pin the installed app to the Taskbar from the Start Menu, and then launch the application from the pinned icon, the splash screen shows as if it is running from the pinned icon but once the main screen shows a new icon is displayed in the taskbar.

It is as if the main window is not tied to the same app as the splash.

If I launch the app from the Start Menu and then pin it from the running icon in the taskbar, it works fine (because at the time that I pinned it, the main window was open).

How do I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳根太软 2024-11-09 06:09:59

禁止启动屏幕的 表单在任务栏中显示第一名

// before displaying the form
splashScreenForm.ShowInTaskbar = false;
splashScreenForm.Show();

Disable the Splash Screen's Form from showing in the taskbar in the first place?

// before displaying the form
splashScreenForm.ShowInTaskbar = false;
splashScreenForm.Show();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文