2023-09-25

This commit is contained in:
2023-09-25 14:27:47 +02:00
parent 0533ccef63
commit d7b3cae218
14 changed files with 368 additions and 381 deletions

View File

@@ -61,7 +61,8 @@ Partial Public Class frmEnvelopeEditor
Next
If Envelope.Status = Constants.EnvelopeStatus.Sent Then
SetFormReadonly()
' TODO - Nach Testen
' SetFormReadonly()
End If
End If
@@ -223,7 +224,11 @@ Partial Public Class frmEnvelopeEditor
.EnvelopeTitle = Controller.Envelope.Title,
.EnvelopeContractType = Controller.Envelope.ContractType
}
oForm.ShowDialog()
If oForm.ShowDialog() = DialogResult.OK Then
Controller.Envelope.Title = oForm.EnvelopeTitle
Controller.Envelope.ContractType = oForm.EnvelopeContractType
End If
End Sub
Private Sub GridReceivers_PaintEx(sender As Object, e As DevExpress.XtraGrid.PaintExEventArgs) Handles GridReceivers.PaintEx