B
Brian
In VB.NET you can display colors with a routine such as below. Is there a
way to do this in the compact framework?
Thanks!
Private Sub ShowColors()
Dim color As System.Drawing.Color
For Each color In _
System.ComponentModel.TypeDescriptor.GetConverter(GetType(Color)).GetStandar
dValues
Me.ListBox1.Items.Add(color.ToKnownColor)
Next
End Sub
way to do this in the compact framework?
Thanks!
Private Sub ShowColors()
Dim color As System.Drawing.Color
For Each color In _
System.ComponentModel.TypeDescriptor.GetConverter(GetType(Color)).GetStandar
dValues
Me.ListBox1.Items.Add(color.ToKnownColor)
Next
End Sub