2023-09-20 MP

This commit is contained in:
2023-09-20 09:01:26 +02:00
parent 302a8c24ec
commit 12556e41e4
8 changed files with 87 additions and 1 deletions

View File

@@ -54,6 +54,12 @@ Partial Public Class frmEnvelopeEditor
txtMessage.EditValue = Controller.Envelope.Message
txtSubject.EditValue = Controller.Envelope.Subject
For Each docItem As EnvelopeDocument In Documents
If docItem.Thumbnail Is Nothing Then
docItem.Thumbnail = Controller.CreateThumbnail(docItem.Filepath)
End If
Next
If Envelope.Status = Constants.EnvelopeStatus.Sent Then
SetFormReadonly()
End If