Componentes.Terceros.DevExp.../official/x.19/ExpressQuantumGrid 5/Demos/Delphi/ColumnsSimpleDemo/ColumnsSimpleDemoCities.dfm
2007-09-09 11:27:22 +00:00

123 lines
3.2 KiB
Plaintext

object ColumnsSimpleDemoCitiesForm: TColumnsSimpleDemoCitiesForm
Left = 435
Top = 222
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Choose a City'
ClientHeight = 232
ClientWidth = 313
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object lbDescription: TLabel
Left = 0
Top = 0
Width = 313
Height = 25
Align = alTop
AutoSize = False
Caption = 'Type city name to incremental search'
Color = 4707838
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
WordWrap = True
end
object pnlCustomize: TPanel
Left = 206
Top = 25
Width = 107
Height = 207
Align = alRight
Color = 15451300
TabOrder = 1
object btnSet: TcxButton
Left = 16
Top = 16
Width = 75
Height = 25
Caption = 'Set'
ModalResult = 1
TabOrder = 0
LookAndFeel.NativeStyle = True
end
object btnAdd: TcxButton
Left = 16
Top = 48
Width = 75
Height = 25
Caption = 'Add'
TabOrder = 1
OnClick = btnAddClick
LookAndFeel.NativeStyle = True
end
object btnDelete: TcxButton
Left = 16
Top = 80
Width = 75
Height = 25
Caption = 'Delete'
TabOrder = 2
OnClick = btnDeleteClick
LookAndFeel.NativeStyle = True
end
object btnCancel: TcxButton
Left = 16
Top = 112
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
LookAndFeel.NativeStyle = True
end
end
object GridCities: TcxGrid
Left = 0
Top = 25
Width = 206
Height = 207
Align = alClient
TabOrder = 0
LookAndFeel.NativeStyle = False
object tvCities: TcxGridDBTableView
OnKeyDown = tvCitiesKeyDown
DataController.DataSource = ColumnsSimpleDemoDataDM.dsCities
DataController.Filter.Criteria = {00000000}
DataController.KeyFieldNames = 'ID'
DataController.Summary.DefaultGroupSummaryItems = <>
DataController.Summary.FooterSummaryItems = <>
DataController.Summary.SummaryGroups = <>
OptionsBehavior.ImmediateEditor = False
OptionsBehavior.IncSearch = True
OptionsCustomize.ColumnGrouping = False
OptionsCustomize.ColumnHorzSizing = False
OptionsCustomize.ColumnMoving = False
OptionsSelection.InvertSelect = False
OptionsView.ColumnAutoWidth = True
OptionsView.GridLines = glNone
OptionsView.GroupByBox = False
Styles.StyleSheet = ColumnsSimpleDemoDataDM.GridTableViewStyleSheetDevExpress
object tvCitiesCity: TcxGridDBColumn
DataBinding.FieldName = 'City'
MinWidth = 100
SortOrder = soAscending
Width = 100
end
end
object lvCities: TcxGridLevel
GridView = tvCities
end
end
end