示例#1
0
        public static void ForceRedraw(this ComboBox c)
        {
            IBrush old = c.Background;

            c.Background = old.Equals(Brushes.AliceBlue) ? Brushes.AntiqueWhite : Brushes.AliceBlue;
            c.Background = old;
        }