Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ShowInTaskBar... WinForms フォームのプロパティと同じです。
ShowInTaskBar
Gtk.Window.SkipTaskbarHint
このようなウィンドウ (タスクバー エントリなし) を使用して通知を表示しています。ウィンドウタイプを次のように設定しています:継承されたコンストラクターを介したWindowType.Popup。
public class Notificator:Window { public Notificator() : base(WindowType.Popup) {
これにより、タスクバーが表示されていないウィンドウが作成されます