This commit is contained in:
2022-05-12 07:56:25 +02:00
parent 3b316c43ef
commit 00e288055e
8 changed files with 235 additions and 162 deletions

View File

@@ -27,7 +27,6 @@ Partial Class frmStart
Me.TimerFolderWatch = New System.Windows.Forms.Timer(Me.components)
Me.TimerClose3Minutes = New System.Windows.Forms.Timer(Me.components)
Me.NotifyIcon1 = New System.Windows.Forms.NotifyIcon(Me.components)
Me.LabelControl1 = New DevExpress.XtraEditors.LabelControl()
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.LabelMachine = New DevExpress.XtraBars.BarStaticItem()
Me.LabelUser = New DevExpress.XtraBars.BarStaticItem()
@@ -49,8 +48,11 @@ Partial Class frmStart
Me.barDockControlBottom = New DevExpress.XtraBars.BarDockControl()
Me.barDockControlLeft = New DevExpress.XtraBars.BarDockControl()
Me.barDockControlRight = New DevExpress.XtraBars.BarDockControl()
Me.LabelControl1 = New DevExpress.XtraEditors.LabelControl()
Me.PictureEdit1 = New DevExpress.XtraEditors.PictureEdit()
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.BarManager1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'TimerFolderWatch
@@ -65,22 +67,6 @@ Partial Class frmStart
'
resources.ApplyResources(Me.NotifyIcon1, "NotifyIcon1")
'
'LabelControl1
'
Me.LabelControl1.AllowDrop = True
Me.LabelControl1.Appearance.BackColor = System.Drawing.Color.Transparent
Me.LabelControl1.Appearance.BackColor2 = CType(resources.GetObject("LabelControl1.Appearance.BackColor2"), System.Drawing.Color)
Me.LabelControl1.Appearance.Font = CType(resources.GetObject("LabelControl1.Appearance.Font"), System.Drawing.Font)
Me.LabelControl1.Appearance.ForeColor = System.Drawing.Color.Black
Me.LabelControl1.Appearance.Options.UseBackColor = True
Me.LabelControl1.Appearance.Options.UseFont = True
Me.LabelControl1.Appearance.Options.UseForeColor = True
resources.ApplyResources(Me.LabelControl1, "LabelControl1")
Me.LabelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter
Me.LabelControl1.ImageOptions.SvgImage = Global.Global_Indexer.My.Resources.Resources.highlight1
Me.LabelControl1.IndentBetweenImageAndText = 10
Me.LabelControl1.Name = "LabelControl1"
'
'OpenFileDialog1
'
Me.OpenFileDialog1.FileName = "OpenFileDialog1"
@@ -245,11 +231,36 @@ Partial Class frmStart
resources.ApplyResources(Me.barDockControlRight, "barDockControlRight")
Me.barDockControlRight.Manager = Me.BarManager1
'
'LabelControl1
'
Me.LabelControl1.AllowDrop = True
Me.LabelControl1.Appearance.BackColor = System.Drawing.Color.Transparent
Me.LabelControl1.Appearance.BackColor2 = CType(resources.GetObject("LabelControl1.Appearance.BackColor2"), System.Drawing.Color)
Me.LabelControl1.Appearance.Font = CType(resources.GetObject("LabelControl1.Appearance.Font"), System.Drawing.Font)
Me.LabelControl1.Appearance.ForeColor = System.Drawing.Color.Black
Me.LabelControl1.Appearance.Options.UseBackColor = True
Me.LabelControl1.Appearance.Options.UseFont = True
Me.LabelControl1.Appearance.Options.UseForeColor = True
resources.ApplyResources(Me.LabelControl1, "LabelControl1")
Me.LabelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.LeftCenter
Me.LabelControl1.ImageOptions.SvgImage = Global.Global_Indexer.My.Resources.Resources.highlight1
Me.LabelControl1.IndentBetweenImageAndText = 10
Me.LabelControl1.Name = "LabelControl1"
'
'PictureEdit1
'
Me.PictureEdit1.EditValue = Global.Global_Indexer.My.Resources.Resources.Dropitlikeitshot
resources.ApplyResources(Me.PictureEdit1, "PictureEdit1")
Me.PictureEdit1.MenuManager = Me.BarManager1
Me.PictureEdit1.Name = "PictureEdit1"
Me.PictureEdit1.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.[Auto]
'
'frmStart
'
Me.AllowDrop = True
Me.Appearance.Options.UseFont = True
resources.ApplyResources(Me, "$this")
Me.Controls.Add(Me.PictureEdit1)
Me.Controls.Add(Me.LabelControl1)
Me.Controls.Add(Me.barDockControlLeft)
Me.Controls.Add(Me.barDockControlRight)
@@ -262,6 +273,7 @@ Partial Class frmStart
Me.Name = "frmStart"
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.BarManager1, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.PictureEdit1.Properties, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
@@ -272,7 +284,6 @@ Partial Class frmStart
Friend WithEvents TimerFolderWatch As System.Windows.Forms.Timer
Friend WithEvents TimerClose3Minutes As System.Windows.Forms.Timer
Friend WithEvents NotifyIcon1 As System.Windows.Forms.NotifyIcon
Friend WithEvents LabelControl1 As DevExpress.XtraEditors.LabelControl
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
Friend WithEvents LabelMachine As DevExpress.XtraBars.BarStaticItem
Friend WithEvents LabelUser As DevExpress.XtraBars.BarStaticItem
@@ -292,4 +303,6 @@ Partial Class frmStart
Friend WithEvents barDockControlLeft As DevExpress.XtraBars.BarDockControl
Friend WithEvents barDockControlRight As DevExpress.XtraBars.BarDockControl
Friend WithEvents labelFolderwatch As DevExpress.XtraBars.BarStaticItem
Friend WithEvents PictureEdit1 As DevExpress.XtraEditors.PictureEdit
Friend WithEvents LabelControl1 As DevExpress.XtraEditors.LabelControl
End Class