diff --git a/AboutBoxWD.xaml b/AboutBoxWD.xaml
index a78b25c..fee3522 100644
--- a/AboutBoxWD.xaml
+++ b/AboutBoxWD.xaml
@@ -30,7 +30,8 @@
-
+
-
-
-
-
-
+
diff --git a/MissingKeyWD.xaml b/MissingKeyWD.xaml
index 1834219..0efe6f3 100644
--- a/MissingKeyWD.xaml
+++ b/MissingKeyWD.xaml
@@ -1,35 +1,41 @@
+ Title="MissingKeyWD" Height="256" Width="409.2" Initialized="MissingKeyWD_Initialized" WindowStyle="None" ShowInTaskbar="False" ResizeMode="NoResize">
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+
+
diff --git a/NumericKeyboardWD.xaml b/NumericKeyboardWD.xaml
index e6439ad..4996ab8 100644
--- a/NumericKeyboardWD.xaml
+++ b/NumericKeyboardWD.xaml
@@ -1,85 +1,73 @@
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
+
+
+
diff --git a/NumericKeyboardWD.xaml.vb b/NumericKeyboardWD.xaml.vb
index 1dee404..d941f68 100644
--- a/NumericKeyboardWD.xaml.vb
+++ b/NumericKeyboardWD.xaml.vb
@@ -17,6 +17,8 @@ Public Class NumericKeyboardWD
If Me.IsVisible Then
NumericKeyboardWDTextBox.Text = m_CurrentTxBx.Text
NumericKeyboardWDTitle.Text = m_CurrentLbl
+ Else
+ NumericKeyboardWDTitle.Foreground = Brushes.Black
End If
End Sub
@@ -105,12 +107,19 @@ Public Class NumericKeyboardWD
End Sub
Private Sub BtnCancelWD_Click(sender As Object, e As RoutedEventArgs)
- NumericKeyboardWDTextBox.Text = String.Empty
+ If m_bErrorState Then
+ NumericKeyboardWDTextBox.Text = String.Empty
+ NumericKeyboardWDTitle.Foreground = Brushes.Black
+ NumericKeyboardWDTitle.Text = m_CurrentLbl
+ m_bErrorState = False
+ Else
+ NumericKeyboardWDTextBox.Text = String.Empty
+ End If
End Sub
Private Sub BtnExitWD_Click(sender As Object, e As RoutedEventArgs)
- NumericKeyboardWDTextBox.Text = String.Empty
Visibility = Windows.Visibility.Hidden
+ NumericKeyboardWDTextBox.Text = String.Empty
End Sub
Private Sub BtnApplyWD_Click(sender As Object, e As RoutedEventArgs)
@@ -140,4 +149,4 @@ Public Class NumericKeyboardWD
End If
End Sub
-End Class
+End Class
\ No newline at end of file
diff --git a/PlacePageUC.xaml b/PlacePageUC.xaml
index bed1c74..4fd2d74 100644
--- a/PlacePageUC.xaml
+++ b/PlacePageUC.xaml
@@ -34,9 +34,10 @@
+
-
+
-
+
-
+
diff --git a/Resources/AboutBoxImage.png b/Resources/AboutBoxImage.png
index 3e1ef76..a11230b 100644
Binary files a/Resources/AboutBoxImage.png and b/Resources/AboutBoxImage.png differ
diff --git a/Resources/NumericKeyboardArrow.png b/Resources/NumericKeyboardArrow.png
index 1ea130f..071f1c1 100644
Binary files a/Resources/NumericKeyboardArrow.png and b/Resources/NumericKeyboardArrow.png differ
diff --git a/SarmaxWallDictionary.xaml.vb b/SarmaxWallDictionary.xaml.vb
index 4960c0a..4b80297 100644
--- a/SarmaxWallDictionary.xaml.vb
+++ b/SarmaxWallDictionary.xaml.vb
@@ -12,10 +12,10 @@
If (Not IsNothing(AssocLabel)) Then
m_NumericKeyboardWD.m_CurrentLbl = AssocLabel.Content
End If
- m_NumericKeyboardWD.Top = m_MainWindowUC.Top
+ m_NumericKeyboardWD.Top = m_MainWindowUC.Top + (m_MainWindowUC.Height / 12)
m_NumericKeyboardWD.Left = m_MainWindowUC.Left
- m_NumericKeyboardWD.Height = m_MainWindowUC.Height
- m_NumericKeyboardWD.Width = m_MainWindowUC.Width
+ m_NumericKeyboardWD.Height = m_MainWindowUC.Height / 12 * 5
+ m_NumericKeyboardWD.Width = m_MainWindowUC.Width / 15 * 5
m_NumericKeyboardWD.Visibility = Visibility.Visible
End Sub