Merge commit 'a2a1b838889165d647b5419e61402291fca887d2' into feature/Controllo_Converter

This commit is contained in:
Demetrio Cassarino
2025-03-17 08:45:31 +01:00
36 changed files with 2230 additions and 676 deletions
@@ -14,4 +14,12 @@
Me.TextBoxFocus.Focus()
End Sub
Private Sub TextBox_PreviewKeyDown(sender As Object, e As KeyEventArgs)
If e.Key = Key.Enter And Keyboard.Modifiers = ModifierKeys.Shift Then
Txt.AcceptsReturn = True
Txt.TextWrapping = TextWrapping.Wrap
Txt.AppendText(Environment.NewLine)
End If
End Sub
End Class