예제 #1
0
        public Color RandomColor(Color FMatchHue)
        {
            Color LColor;

            do
            {
                LColor = RandomColor();
            } while (LColor.GetHue() != FMatchHue.GetHue());
            return(LColor);
        }