コード例 #1
0
ファイル: Utils.cs プロジェクト: Tulu473/PokemonGameEngine
        public static void ForceRedraw(this ComboBox c)
        {
            IBrush old = c.Background;

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