|
|
|
@ -300,6 +300,7 @@ namespace dvmconsole
|
|
|
|
Trace.WriteLine("FNE Peer connected");
|
|
|
|
Trace.WriteLine("FNE Peer connected");
|
|
|
|
Dispatcher.Invoke(() =>
|
|
|
|
Dispatcher.Invoke(() =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
EnableCommandControls();
|
|
|
|
systemStatusBox.Background = ChannelBox.GREEN_GRADIENT;
|
|
|
|
systemStatusBox.Background = ChannelBox.GREEN_GRADIENT;
|
|
|
|
systemStatusBox.ConnectionState = "Connected";
|
|
|
|
systemStatusBox.ConnectionState = "Connected";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
@ -310,6 +311,7 @@ namespace dvmconsole
|
|
|
|
Trace.WriteLine("FNE Peer disconnected");
|
|
|
|
Trace.WriteLine("FNE Peer disconnected");
|
|
|
|
Dispatcher.Invoke(() =>
|
|
|
|
Dispatcher.Invoke(() =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
DisableCommandControls();
|
|
|
|
systemStatusBox.Background = ChannelBox.RED_GRADIENT;
|
|
|
|
systemStatusBox.Background = ChannelBox.RED_GRADIENT;
|
|
|
|
systemStatusBox.ConnectionState = "Disconnected";
|
|
|
|
systemStatusBox.ConnectionState = "Disconnected";
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|