Compare commits

...

4 Commits

Author SHA1 Message Date
Jonathan Jenne
cb2e3eb955 merge 2023-12-06 14:03:31 +01:00
Jonathan Jenne
538b6d4bcd zentrierte fenster 2023-12-06 13:50:55 +01:00
Jonathan Jenne
70e4842a39 fix grid colors 2023-12-06 13:49:48 +01:00
Jonathan Jenne
c45939b89b annotation -> signatur 2023-12-06 13:49:38 +01:00
4 changed files with 13 additions and 4 deletions

View File

@@ -810,6 +810,9 @@
b3ciIC8+DQogIDwvZz4NCjwvc3ZnPgs=
</value>
</data>
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
<value>CenterScreen</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>Sign Flow - Umschlag-Editor</value>
</data>

View File

@@ -471,6 +471,9 @@
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>1125, 658</value>
</data>
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
<value>CenterScreen</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>Sign Flow - Signatur-Editor</value>
</data>

View File

@@ -234,7 +234,7 @@ Partial Public Class frmFieldEditor
Exit Sub
End If
If MsgBox("Wollen Sie die Annotation löschen?", MsgBoxStyle.YesNo Or MsgBoxStyle.Question, Text) = DialogResult.Yes Then
If MsgBox("Wollen Sie die Signatur löschen?", MsgBoxStyle.YesNo Or MsgBoxStyle.Question, Text) = DialogResult.Yes Then
Dim oAnnotation = GDViewer.GetAnnotationFromIdx(oSelected)
Dim oElement = Controller.GetElement(oAnnotation)

View File

@@ -91,20 +91,23 @@ Public Class frmMain
txtRefreshLabel.Caption = String.Format(txtRefreshLabel.Tag, Now)
End Sub
Private Sub LoadEnvelopes()
GridBuilder = New GridBuilder(ViewEnvelopes)
GridBuilder.SetDefaults(ViewEnvelopes)
GridBuilder.SetReadOnlyOptions(ViewEnvelopes)
GridBuilder.SetReadOnlyOptions(ViewHistory)
GridBuilder.SetDefaults(ViewHistory)
GridEnvelopes.DataSource = Controller.ListEnvelopes()
End Sub
Private Sub LoadCompletedEnvelopes()
GridBuilder = New GridBuilder(ViewCompleted)
GridBuilder.SetDefaults(ViewCompleted)
GridBuilder.SetReadOnlyOptions(ViewCompleted)
GridBuilder.SetReadOnlyOptions(ViewHistoryCompleted)
GridBuilder.SetDefaults(ViewHistoryCompleted)
GridCompleted.DataSource = Controller.ListCompleted()
End Sub