jj: rename lookupgrid to lookupControl
This commit is contained in:
parent
ff7e16d5c6
commit
8627899b32
@ -31,7 +31,7 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Config", "Config\Config.vbp
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Controls", "Controls", "{F98C0329-C004-417F-B2AB-7466E88D8220}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Controls", "Controls", "{F98C0329-C004-417F-B2AB-7466E88D8220}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "LookupGrid", "LookupGrid\LookupGrid.vbproj", "{3DCD6D1A-C830-4241-B7E4-27430E7EA483}"
|
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "LookupControl", "LookupGrid\LookupControl.vbproj", "{3DCD6D1A-C830-4241-B7E4-27430E7EA483}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Filesystem", "Filesystem\Filesystem.vbproj", "{991D0231-4623-496D-8BD0-9CA906029CBC}"
|
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Filesystem", "Filesystem\Filesystem.vbproj", "{991D0231-4623-496D-8BD0-9CA906029CBC}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||||
Partial Class Grid
|
Partial Class LookupControl
|
||||||
Inherits System.Windows.Forms.UserControl
|
Inherits System.Windows.Forms.UserControl
|
||||||
|
|
||||||
'UserControl überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
'UserControl überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||||
@ -3,7 +3,7 @@ Imports System.ComponentModel
|
|||||||
Imports DevExpress.XtraEditors
|
Imports DevExpress.XtraEditors
|
||||||
Imports DevExpress.XtraEditors.Controls
|
Imports DevExpress.XtraEditors.Controls
|
||||||
|
|
||||||
Public Class Grid
|
Public Class LookupControl
|
||||||
<Category("Einstellungen"), Description("Gibt an, ob mehrere Werte auswählbar sind"), DefaultValue(False)>
|
<Category("Einstellungen"), Description("Gibt an, ob mehrere Werte auswählbar sind"), DefaultValue(False)>
|
||||||
Public Property MultiSelect As Boolean
|
Public Property MultiSelect As Boolean
|
||||||
<Category("Einstellungen"), Description("Gibt an, ob neue Werte hinzugefügt werden können"), DefaultValue(False)>
|
<Category("Einstellungen"), Description("Gibt an, ob neue Werte hinzugefügt werden können"), DefaultValue(False)>
|
||||||
@ -105,18 +105,18 @@
|
|||||||
<Compile Include="frmLookupGrid.vb">
|
<Compile Include="frmLookupGrid.vb">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Grid.Designer.vb">
|
<Compile Include="LookupControl.Designer.vb">
|
||||||
<DependentUpon>Grid.vb</DependentUpon>
|
<DependentUpon>LookupControl.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Grid.vb">
|
<Compile Include="LookupControl.vb">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="GridHandler.vb" />
|
<Compile Include="LookupGridHandler.vb" />
|
||||||
<Compile Include="GridRegistration.vb" />
|
<Compile Include="LookupGridRegistration.vb" />
|
||||||
<Compile Include="GridView.Designer.vb">
|
<Compile Include="LookupGridView.Designer.vb">
|
||||||
<DependentUpon>GridView.vb</DependentUpon>
|
<DependentUpon>LookupGridView.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="GridView.vb">
|
<Compile Include="LookupGridView.vb">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
@ -134,10 +134,10 @@
|
|||||||
<DependentUpon>Settings.settings</DependentUpon>
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="GridControl.Designer.vb">
|
<Compile Include="LookupGridControl.Designer.vb">
|
||||||
<DependentUpon>GridControl.vb</DependentUpon>
|
<DependentUpon>LookupGridControl.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="GridControl.vb">
|
<Compile Include="LookupGridControl.vb">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -145,8 +145,8 @@
|
|||||||
<EmbeddedResource Include="frmLookupGrid.resx">
|
<EmbeddedResource Include="frmLookupGrid.resx">
|
||||||
<DependentUpon>frmLookupGrid.vb</DependentUpon>
|
<DependentUpon>frmLookupGrid.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Grid.resx">
|
<EmbeddedResource Include="LookupControl.resx">
|
||||||
<DependentUpon>Grid.vb</DependentUpon>
|
<DependentUpon>LookupControl.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="My Project\licenses.licx" />
|
<EmbeddedResource Include="My Project\licenses.licx" />
|
||||||
<EmbeddedResource Include="My Project\Resources.resx">
|
<EmbeddedResource Include="My Project\Resources.resx">
|
||||||
@ -11,7 +11,7 @@ Namespace LookupGrid
|
|||||||
End Function
|
End Function
|
||||||
Protected Overrides Sub RegisterAvailableViewsCore(ByVal collection As InfoCollection)
|
Protected Overrides Sub RegisterAvailableViewsCore(ByVal collection As InfoCollection)
|
||||||
MyBase.RegisterAvailableViewsCore(collection)
|
MyBase.RegisterAvailableViewsCore(collection)
|
||||||
collection.Add(New GridViewInfoRegistrator())
|
collection.Add(New LookupGridViewInfoRegistrator())
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
End Namespace
|
End Namespace
|
||||||
@ -2,7 +2,7 @@
|
|||||||
Imports DevExpress.XtraGrid.Views.Grid
|
Imports DevExpress.XtraGrid.Views.Grid
|
||||||
|
|
||||||
Namespace LookupGrid
|
Namespace LookupGrid
|
||||||
Public Class GridHandler
|
Public Class LookupGridHandler
|
||||||
Inherits Handler.GridHandler
|
Inherits Handler.GridHandler
|
||||||
|
|
||||||
Public Sub New(ByVal gridView As GridView)
|
Public Sub New(ByVal gridView As GridView)
|
||||||
@ -4,7 +4,7 @@ Imports DevExpress.XtraGrid.Views.Base.Handler
|
|||||||
Imports DevExpress.XtraGrid.Registrator
|
Imports DevExpress.XtraGrid.Registrator
|
||||||
|
|
||||||
Namespace LookupGrid
|
Namespace LookupGrid
|
||||||
Public Class GridViewInfoRegistrator
|
Public Class LookupGridViewInfoRegistrator
|
||||||
Inherits GridInfoRegistrator
|
Inherits GridInfoRegistrator
|
||||||
|
|
||||||
Public Overrides ReadOnly Property ViewName() As String
|
Public Overrides ReadOnly Property ViewName() As String
|
||||||
@ -16,7 +16,7 @@ Namespace LookupGrid
|
|||||||
Return New LookupGridView(TryCast(grid, GridControl))
|
Return New LookupGridView(TryCast(grid, GridControl))
|
||||||
End Function
|
End Function
|
||||||
Public Overrides Function CreateHandler(ByVal view As BaseView) As BaseViewHandler
|
Public Overrides Function CreateHandler(ByVal view As BaseView) As BaseViewHandler
|
||||||
Return New GridHandler(TryCast(view, LookupGridView))
|
Return New LookupGridHandler(TryCast(view, LookupGridView))
|
||||||
End Function
|
End Function
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
@ -143,9 +143,9 @@
|
|||||||
<WCFMetadata Include="Connected Services\" />
|
<WCFMetadata Include="Connected Services\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\LookupGrid\LookupGrid.vbproj">
|
<ProjectReference Include="..\LookupGrid\LookupControl.vbproj">
|
||||||
<Project>{3dcd6d1a-c830-4241-b7e4-27430e7ea483}</Project>
|
<Project>{3dcd6d1a-c830-4241-b7e4-27430e7ea483}</Project>
|
||||||
<Name>LookupGrid</Name>
|
<Name>LookupControl</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\Modules.Logging\Logging.vbproj">
|
<ProjectReference Include="..\Modules.Logging\Logging.vbproj">
|
||||||
<Project>{903b2d7d-3b80-4be9-8713-7447b704e1b0}</Project>
|
<Project>{903b2d7d-3b80-4be9-8713-7447b704e1b0}</Project>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user