update ui

This commit is contained in:
Jonathan Jenne
2019-10-29 12:22:05 +01:00
parent c54830c4a3
commit 24e1fa2e04
6 changed files with 77 additions and 23 deletions

View File

@@ -34,6 +34,7 @@ Partial Class frmStart
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
Me.labelUser = New System.Windows.Forms.ToolStripStatusLabel()
Me.lblrefresh = New System.Windows.Forms.ToolStripStatusLabel()
Me.labelVersion = New System.Windows.Forms.ToolStripStatusLabel()
Me.TimerClose = New System.Windows.Forms.Timer(Me.components)
Me.ContextMenuStripForm = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.MinimierenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
@@ -45,11 +46,14 @@ Partial Class frmStart
Me.btnAdminConfig = New System.Windows.Forms.Button()
Me.ImageList1 = New System.Windows.Forms.ImageList(Me.components)
Me.TimerRefresh = New System.Windows.Forms.Timer(Me.components)
Me.labelVersion = New System.Windows.Forms.ToolStripStatusLabel()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.labelRefresh = New System.Windows.Forms.Label()
Me.labelStatus = New System.Windows.Forms.Label()
Me.cmstrpNotifyIcon.SuspendLayout()
Me.StatusStrip1.SuspendLayout()
Me.ContextMenuStripForm.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.GroupBox2.SuspendLayout()
Me.SuspendLayout()
'
'NotifyIconMain
@@ -105,8 +109,8 @@ Partial Class frmStart
'
'StatusStrip1
'
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.labelUser, Me.lblrefresh, Me.labelVersion})
Me.StatusStrip1.Location = New System.Drawing.Point(0, 154)
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.labelUser, Me.labelVersion, Me.lblrefresh})
Me.StatusStrip1.Location = New System.Drawing.Point(0, 232)
Me.StatusStrip1.Name = "StatusStrip1"
Me.StatusStrip1.Size = New System.Drawing.Size(345, 22)
Me.StatusStrip1.SizingGrip = False
@@ -123,7 +127,14 @@ Partial Class frmStart
'lblrefresh
'
Me.lblrefresh.Name = "lblrefresh"
Me.lblrefresh.Size = New System.Drawing.Size(0, 17)
Me.lblrefresh.Size = New System.Drawing.Size(59, 17)
Me.lblrefresh.Text = "lblRefresh"
'
'labelVersion
'
Me.labelVersion.Name = "labelVersion"
Me.labelVersion.Size = New System.Drawing.Size(62, 17)
Me.labelVersion.Text = "Version {0}"
'
'TimerClose
'
@@ -227,19 +238,43 @@ Partial Class frmStart
'
Me.TimerRefresh.Interval = 120000
'
'labelVersion
'GroupBox2
'
Me.labelVersion.Name = "labelVersion"
Me.labelVersion.Size = New System.Drawing.Size(62, 17)
Me.labelVersion.Text = "Version {0}"
Me.GroupBox2.Controls.Add(Me.labelStatus)
Me.GroupBox2.Controls.Add(Me.labelRefresh)
Me.GroupBox2.Location = New System.Drawing.Point(15, 157)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(318, 64)
Me.GroupBox2.TabIndex = 14
Me.GroupBox2.TabStop = False
Me.GroupBox2.Text = "Informationen"
'
'labelRefresh
'
Me.labelRefresh.AutoSize = True
Me.labelRefresh.Location = New System.Drawing.Point(8, 21)
Me.labelRefresh.Name = "labelRefresh"
Me.labelRefresh.Size = New System.Drawing.Size(132, 13)
Me.labelRefresh.TabIndex = 0
Me.labelRefresh.Text = "Aktualisierung erfolgreich."
'
'labelStatus
'
Me.labelStatus.AutoSize = True
Me.labelStatus.Location = New System.Drawing.Point(8, 34)
Me.labelStatus.Name = "labelStatus"
Me.labelStatus.Size = New System.Drawing.Size(38, 13)
Me.labelStatus.TabIndex = 0
Me.labelStatus.Text = "Label3"
'
'frmStart
'
Me.Appearance.Options.UseFont = True
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(345, 176)
Me.ClientSize = New System.Drawing.Size(345, 254)
Me.ContextMenuStrip = Me.ContextMenuStripForm
Me.Controls.Add(Me.GroupBox2)
Me.Controls.Add(Me.btnAdminConfig)
Me.Controls.Add(Me.btnUserConfig)
Me.Controls.Add(Me.GroupBox1)
@@ -249,8 +284,8 @@ Partial Class frmStart
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.KeyPreview = True
Me.MaximizeBox = False
Me.MaximumSize = New System.Drawing.Size(361, 215)
Me.MinimumSize = New System.Drawing.Size(361, 215)
Me.MaximumSize = New System.Drawing.Size(361, 293)
Me.MinimumSize = New System.Drawing.Size(361, 293)
Me.Name = "frmStart"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Clipboard Watcher"
@@ -259,6 +294,8 @@ Partial Class frmStart
Me.StatusStrip1.PerformLayout()
Me.ContextMenuStripForm.ResumeLayout(False)
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox2.ResumeLayout(False)
Me.GroupBox2.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
@@ -285,4 +322,7 @@ Partial Class frmStart
Friend WithEvents AblaufAnzeigenToolStripMenuItem As ToolStripMenuItem
Friend WithEvents BisherigenAblaufAnzeigenToolStripMenuItem As ToolStripMenuItem
Friend WithEvents labelVersion As ToolStripStatusLabel
Friend WithEvents GroupBox2 As GroupBox
Friend WithEvents labelRefresh As Label
Friend WithEvents labelStatus As Label
End Class