using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using NetMonitorUtils; using BlubbFish.Utils; namespace NetMonitorTray.Controller { public class Window : OwnController { private static View.Window window; /// /// Tray Controller /// public Window() { } override protected void init() { window = new View.Window(); } public static void FormClosed(object sender, FormClosedEventArgs e) { window.Dispose(); } internal static void NetworkSelected(object sender, EventArgs e) { MessageBox.Show("Angeklickt!"); } } }