From a93295c771b4cc5bdd50dc608eb0644bbdfe9748 Mon Sep 17 00:00:00 2001 From: Renzo Lanza Date: Tue, 21 May 2019 10:31:23 +0000 Subject: [PATCH] LicenceManager 2.1e6: - Correzione sull'estensione del TextBox Note in UpdateLicence/Key. Cliccandoci sopra ora si adatta alla lunghezza della stringa contenuta --- My Project/AssemblyInfo.vb | 4 ++-- UpdateKeyPage/UpdateKeyPageV.xaml.vb | 5 +++++ UpdateLicencePage/UpdateLicencePageV.xaml.vb | 4 ++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/My Project/AssemblyInfo.vb b/My Project/AssemblyInfo.vb index 6fdc3e4..c34c8f7 100644 --- a/My Project/AssemblyInfo.vb +++ b/My Project/AssemblyInfo.vb @@ -59,5 +59,5 @@ Imports System.Windows ' usando l'asterisco '*' come illustrato di seguito: ' - - + + diff --git a/UpdateKeyPage/UpdateKeyPageV.xaml.vb b/UpdateKeyPage/UpdateKeyPageV.xaml.vb index 264d724..67028b0 100644 --- a/UpdateKeyPage/UpdateKeyPageV.xaml.vb +++ b/UpdateKeyPage/UpdateKeyPageV.xaml.vb @@ -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 diff --git a/UpdateLicencePage/UpdateLicencePageV.xaml.vb b/UpdateLicencePage/UpdateLicencePageV.xaml.vb index 5bfb2ac..44c1f8b 100644 --- a/UpdateLicencePage/UpdateLicencePageV.xaml.vb +++ b/UpdateLicencePage/UpdateLicencePageV.xaml.vb @@ -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