Exemplo n.º 1
0
 public DeleteEntryClient(NetworkManagerMain nmm, string nodeName)
 {
     this.nmm      = nmm;
     this.nodeName = nodeName;
     InitializeComponent();
     fillTable();
 }
Exemplo n.º 2
0
 public AddNewEntryRouter(NetworkManagerMain nmm, string nodeName)
 {
     this.nmm      = nmm;
     this.nodeName = nodeName;
     InitializeComponent();
     fillTable();
 }
Exemplo n.º 3
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            NetworkManagerMain networkManagerMain = new NetworkManagerMain();

            Application.Run(networkManagerMain);
            Environment.Exit(0);
        }