LicenceManager 2.1e6:

- Correzione sull'estensione del TextBox Note in UpdateLicence/Key. Cliccandoci sopra ora si adatta alla lunghezza della stringa contenuta
This commit is contained in:
Renzo Lanza
2019-05-21 10:31:23 +00:00
parent 26df70338a
commit a93295c771
3 changed files with 11 additions and 2 deletions
+2 -2
View File
@@ -59,5 +59,5 @@ Imports System.Windows
' usando l'asterisco '*' come illustrato di seguito:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.1.5.5")>
<Assembly: AssemblyFileVersion("2.1.5.5")>
<Assembly: AssemblyVersion("2.1.5.6")>
<Assembly: AssemblyFileVersion("2.1.5.6")>
+5
View File
@@ -19,4 +19,9 @@
End If
End Sub
Private Sub textBoxNote_GotFocus(sender As Object, e As RoutedEventArgs) Handles textBoxNote.GotFocus
Dim ev As TextChangedEventArgs = Nothing
textBoxNote_TextChanged(sender, ev)
End Sub
End Class
@@ -19,4 +19,8 @@
End If
End Sub
Private Sub textBoxNote_GotFocus(sender As Object, e As RoutedEventArgs) Handles textBoxNote.GotFocus
Dim ev As TextChangedEventArgs = Nothing
textBoxNote_TextChanged(sender, ev)
End Sub
End Class