mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* add how to article * Fix lint * Fix the code example * Add missing code * Update how-to-bind-to-an-enumeration.md * Update dotnet-desktop-guide/net/wpf/data/how-to-bind-to-an-enumeration.md Co-authored-by: Tom Dykstra <[email protected]> Co-authored-by: Tom Dykstra <[email protected]>
8 lines
210 B
VB.net
8 lines
210 B
VB.net
Class MainWindow
|
|
Public Sub Method1()
|
|
'<EnumGetValues>
|
|
Dim enumValues = System.Enum.GetValues(GetType(System.Windows.HorizontalAlignment))
|
|
'</EnumGetValues>
|
|
End Sub
|
|
End Class
|