mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
17 lines
261 B
C#
17 lines
261 B
C#
using System;
|
|
using Gtk;
|
|
|
|
public partial class MainWindow: Gtk.Window
|
|
{
|
|
public MainWindow (): base (Gtk.WindowType.Toplevel)
|
|
{
|
|
Build ();
|
|
}
|
|
|
|
protected void OnDeleteEvent (object sender, DeleteEventArgs a)
|
|
{
|
|
Application.Quit ();
|
|
a.RetVal = true;
|
|
}
|
|
}
|