Ejemplo n.º 1
0
 public UdpLoggingScreen()
 {
     InitializeComponent();
     udpService = new UdpConnectionService(false, userName);
     udpService.NewMessageLineOn += AddNewMessageLine;
     buttonSend.IsEnabled         = false;
     Closing                   += this.OnWindowClosing;
     LocalIpBox.Text            = udpService.GetLocalIPAddress();
     buttonDisconnect.IsEnabled = false;
 }