move LookupGrid to Controls.LookupGrid folder
This commit is contained in:
26
Controls.LookupGrid/LookupGridRegistration.vb
Normal file
26
Controls.LookupGrid/LookupGridRegistration.vb
Normal file
@@ -0,0 +1,26 @@
|
||||
Imports DevExpress.XtraGrid
|
||||
Imports DevExpress.XtraGrid.Views.Base
|
||||
Imports DevExpress.XtraGrid.Views.Base.Handler
|
||||
Imports DevExpress.XtraGrid.Registrator
|
||||
|
||||
Namespace LookupGrid
|
||||
Public Class LookupGridViewInfoRegistrator
|
||||
Inherits GridInfoRegistrator
|
||||
|
||||
Public Overrides ReadOnly Property ViewName() As String
|
||||
Get
|
||||
Return "GridView"
|
||||
End Get
|
||||
End Property
|
||||
Public Overrides Function CreateView(ByVal grid As GridControl) As BaseView
|
||||
Return New LookupGridView(TryCast(grid, GridControl))
|
||||
End Function
|
||||
Public Overrides Function CreateHandler(ByVal view As BaseView) As BaseViewHandler
|
||||
Return New LookupGridHandler(TryCast(view, LookupGridView))
|
||||
End Function
|
||||
End Class
|
||||
|
||||
|
||||
|
||||
End Namespace
|
||||
|
||||
Reference in New Issue
Block a user