如何删除 GTK# 窗口的任务栏条目?

发布于 2024-08-19 07:45:46 字数 182 浏览 4 评论 0原文

...就像 ShowInTaskBar WinForms 表单的 属性。

... Just like the ShowInTaskBar property of a WinForms form.

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

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

发布评论

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

评论(2

谈下烟灰 2024-08-26 07:45:46

我正在使用这样的窗口(没有任务栏条目)来显示通知。我通过继承的构造函数将窗口类型设置为:WindowType.Popup

public class Notificator:Window
{
    public Notificator()
        : base(WindowType.Popup)
    {

这将创建不显示任务栏的窗口

I'm using such window (without taskbar entry) to display notifcations. I'm setting the window type to: WindowType.Popup via inherited constructor.

public class Notificator:Window
{
    public Notificator()
        : base(WindowType.Popup)
    {

This creates window that is not showing taskbar

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