Improve Search, clean up

This commit is contained in:
Jonathan Jenne
2022-04-28 15:02:31 +02:00
parent ee90c3c96c
commit a15259166d
41 changed files with 277 additions and 2988 deletions

View File

@@ -71,8 +71,8 @@ Partial Class frmFlowForm
Me.GridControl1 = New DevExpress.XtraGrid.GridControl()
Me.RecentFilesView = New DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView()
Me.GridBand1 = New DevExpress.XtraGrid.Views.BandedGrid.GridBand()
Me.colSecondary = New DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn()
Me.colPrimary = New DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn()
Me.colSecondary = New DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn()
Me.AdornerUIManager1 = New DevExpress.Utils.VisualEffects.AdornerUIManager(Me.components)
Me.TaskBadge = New DevExpress.Utils.VisualEffects.Badge()
Me.ContextMenuSystray.SuspendLayout()
@@ -273,7 +273,7 @@ Partial Class frmFlowForm
'
'btnGlobixConfig
'
Me.btnGlobixConfig.Caption = "Grundeinstellungen Globix"
Me.btnGlobixConfig.Caption = "Grundeinstellungen FileFlow"
Me.btnGlobixConfig.Id = 10
Me.btnGlobixConfig.ImageOptions.SvgImage = CType(resources.GetObject("btnGlobixConfig.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
Me.btnGlobixConfig.Name = "btnGlobixConfig"
@@ -425,23 +425,26 @@ Partial Class frmFlowForm
'GridControl1
'
Me.GridControl1.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.GridControl1.Location = New System.Drawing.Point(3, 84)
Me.GridControl1.Location = New System.Drawing.Point(21, 84)
Me.GridControl1.MainView = Me.RecentFilesView
Me.GridControl1.MenuManager = Me.BarManager1
Me.GridControl1.Name = "GridControl1"
Me.GridControl1.Size = New System.Drawing.Size(196, 182)
Me.GridControl1.Size = New System.Drawing.Size(158, 182)
Me.GridControl1.TabIndex = 18
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.RecentFilesView})
'
'AdvBandedGridView1
'RecentFilesView
'
Me.RecentFilesView.Bands.AddRange(New DevExpress.XtraGrid.Views.BandedGrid.GridBand() {Me.GridBand1})
Me.RecentFilesView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple
Me.RecentFilesView.Columns.AddRange(New DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn() {Me.colPrimary, Me.colSecondary})
Me.RecentFilesView.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None
Me.RecentFilesView.GridControl = Me.GridControl1
Me.RecentFilesView.Name = "AdvBandedGridView1"
Me.RecentFilesView.Name = "RecentFilesView"
Me.RecentFilesView.OptionsBehavior.Editable = False
Me.RecentFilesView.OptionsBehavior.ReadOnly = True
Me.RecentFilesView.OptionsSelection.EnableAppearanceFocusedCell = False
Me.RecentFilesView.OptionsSelection.EnableAppearanceHideSelection = False
Me.RecentFilesView.OptionsView.ColumnAutoWidth = True
Me.RecentFilesView.OptionsView.ShowBands = False
Me.RecentFilesView.OptionsView.ShowColumnHeaders = False
@@ -453,27 +456,29 @@ Partial Class frmFlowForm
'GridBand1
'
Me.GridBand1.Caption = "GridBand1"
Me.GridBand1.Columns.Add(Me.colSecondary)
Me.GridBand1.Columns.Add(Me.colPrimary)
Me.GridBand1.Columns.Add(Me.colSecondary)
Me.GridBand1.Name = "GridBand1"
Me.GridBand1.VisibleIndex = 0
Me.GridBand1.Width = 75
'
'colSecondary
'
Me.colSecondary.Caption = "Secondary"
Me.colSecondary.FieldName = "Secondary"
Me.colSecondary.Name = "colSecondary"
Me.colSecondary.Visible = True
'
'colPrimary
'
Me.colPrimary.Caption = "Primary"
Me.colPrimary.FieldName = "Primary"
Me.colPrimary.Name = "colPrimary"
Me.colPrimary.RowIndex = 1
Me.colPrimary.Visible = True
'
'colSecondary
'
Me.colSecondary.AppearanceCell.ForeColor = System.Drawing.Color.FromArgb(CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(64, Byte), Integer))
Me.colSecondary.AppearanceCell.Options.UseForeColor = True
Me.colSecondary.Caption = "Secondary"
Me.colSecondary.FieldName = "Secondary"
Me.colSecondary.Name = "colSecondary"
Me.colSecondary.RowIndex = 1
Me.colSecondary.Visible = True
'
'AdornerUIManager1
'
Me.AdornerUIManager1.Elements.Add(Me.TaskBadge)
@@ -574,7 +579,7 @@ Partial Class frmFlowForm
Friend WithEvents SucheEntwurfToolStripMenuItem As ToolStripMenuItem
Friend WithEvents GridControl1 As DevExpress.XtraGrid.GridControl
Friend WithEvents RecentFilesView As DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView
Friend WithEvents GridBand1 As DevExpress.XtraGrid.Views.BandedGrid.GridBand
Friend WithEvents colSecondary As DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn
Friend WithEvents colPrimary As DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn
Friend WithEvents GridBand1 As DevExpress.XtraGrid.Views.BandedGrid.GridBand
End Class