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

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