我正在做一些與Vb.Net Forms應用程序的UI工作,在我需要匹配一些顏色並根據它更改UI的地方,此刻我很少被絞死以匹配顏色值,如何比較vb.net中的顏色
像A_Control.Background = B_Control.Background
我有越來越的顏色爲字符串,然後進行匹配,但這不是有效的在某些情況下,我想實現一個功能,即工作直接使用Colors變量。
像:
Dim somecolor As New Color()
somecolor = Color.FromArgb(255, 98, 153, 192)
Dim str As String = somecolor.R.ToString() + somecolor.G.ToString() + somecolor.B.ToString()
通過這樣做,我可以在字符串RGB值,然後我可以轉換成整數,以匹配任何其他顏色,有沒有更好的方式來做到這一點?