39 lines
862 B
C#
39 lines
862 B
C#
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;
|
|
/// <summary>
|
|
/// Tray Controller
|
|
/// </summary>
|
|
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!");
|
|
}
|
|
}
|
|
}
|