TestGUI: Add Localizer Tests for LookupControl
This commit is contained in:
parent
c33d5ff340
commit
cbd861fc89
@ -1,10 +1,23 @@
|
|||||||
Imports DigitalData.Controls.LookupGrid
|
Imports System.Globalization
|
||||||
|
Imports DevExpress.XtraEditors.Controls
|
||||||
|
Imports DigitalData.Controls.LookupGrid
|
||||||
|
|
||||||
Public Class frmLookup
|
Public Class frmLookup
|
||||||
|
|
||||||
Private _Datasource As List(Of String) = New List(Of String) From {"Foo", "Bar", "Baz", "Bart", "Maggie", "Homer"}
|
Private _Datasource As List(Of String) = New List(Of String) From {"Foo", "Bar", "Baz", "Bart", "Maggie", "Homer"}
|
||||||
|
|
||||||
|
Public Sub New()
|
||||||
|
' Dieser Aufruf ist für den Designer erforderlich.
|
||||||
|
InitializeComponent()
|
||||||
|
|
||||||
|
' Fügen Sie Initialisierungen nach dem InitializeComponent()-Aufruf hinzu.
|
||||||
|
Localizer.Active = New LookupGridLocalizer()
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub frmLookup_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
Private Sub frmLookup_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
Dim oCulture = CultureInfo.CurrentCulture
|
||||||
|
Dim oUICulture = CultureInfo.CurrentUICulture
|
||||||
|
|
||||||
Dim oTable = GetDatatable(10)
|
Dim oTable = GetDatatable(10)
|
||||||
|
|
||||||
Dim LookupControl31 As New LookupControl3 With {
|
Dim LookupControl31 As New LookupControl3 With {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user