diff --git a/dvmconsole/App.xaml.cs b/dvmconsole/App.xaml.cs
index 1de69e8..abb4dc9 100644
--- a/dvmconsole/App.xaml.cs
+++ b/dvmconsole/App.xaml.cs
@@ -15,9 +15,6 @@
using System.IO;
using System.Reflection;
using System.Windows;
-using MessageBox = System.Windows.Forms.MessageBox;
-using MessageBoxButtons = System.Windows.Forms.MessageBoxButtons;
-using MessageBoxIcon = System.Windows.Forms.MessageBoxIcon;
namespace dvmconsole
{
@@ -42,7 +39,7 @@ namespace dvmconsole
if (!File.Exists(Path.Combine(new string[] { Path.GetDirectoryName(path), "libvocoder.DLL" })))
{
MessageBox.Show("libvocoder is missing or not found! The library is required for operation of the console, please see: https://github.com/DVMProject/dvmvocoder.", "Digital Voice Modem - Desktop Dispatch Console",
- MessageBoxButtons.OK, MessageBoxIcon.Error);
+ MessageBoxButton.OK, MessageBoxImage.Error);
Application.Current.Shutdown();
return;
}
diff --git a/dvmconsole/Assets/bg_main_hd.png b/dvmconsole/Assets/bg_main_hd.png
new file mode 100644
index 0000000..12168df
Binary files /dev/null and b/dvmconsole/Assets/bg_main_hd.png differ
diff --git a/dvmconsole/DVMConsole.csproj b/dvmconsole/DVMConsole.csproj
index 54a77fd..8da7544 100644
--- a/dvmconsole/DVMConsole.csproj
+++ b/dvmconsole/DVMConsole.csproj
@@ -21,6 +21,7 @@
+
@@ -58,6 +59,9 @@
Always
+
+ Always
+
diff --git a/dvmconsole/KeyStatusWindow.xaml.cs b/dvmconsole/KeyStatusWindow.xaml.cs
index 46102c1..8dc46f2 100644
--- a/dvmconsole/KeyStatusWindow.xaml.cs
+++ b/dvmconsole/KeyStatusWindow.xaml.cs
@@ -91,7 +91,7 @@ namespace dvmconsole
{
KeyStatusItems.Clear();
- foreach (var child in mainWindow.ChannelsCanvas.Children)
+ foreach (var child in mainWindow.channelsCanvas.Children)
{
if (child == null)
{
diff --git a/dvmconsole/MainWindow.xaml b/dvmconsole/MainWindow.xaml
index 0dea668..d0b9701 100644
--- a/dvmconsole/MainWindow.xaml
+++ b/dvmconsole/MainWindow.xaml
@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:dvmconsole.Controls"
- Title="Digital Voice Modem - Desktop Dispatch Console" Height="600" Width="875" MinHeight="600" MinWidth="875" Background="#FFF2F2F2" Icon="/Assets/AppIcon.ico">
+ Title="Digital Voice Modem - Desktop Dispatch Console" Height="600" Width="875" Background="#FFF2F2F2" Icon="/Assets/AppIcon.ico">
@@ -34,6 +34,7 @@
+