gpt4 book ai didi

c# - 将颜色淡化为白色(增加亮度)

转载 作者:太空狗 更新时间:2023-10-29 20:12:19 24 4
gpt4 key购买 nike

我想使 .NET 中的文本框“发光”为黄色,然后“淡化”为白色(基本上,通过逐渐增加亮度)。我认为 Stackoverflow 在您发布答案后会执行此操作。我知道增加亮度并不是那么简单(它不仅仅是均匀地增加/减少 RGB),但我不确定如何做到这一点。

完美的色彩准确性对此并不重要。我正在使用 C#,尽管 VB 示例也很好。

编辑:这是针对 Winforms 的。

最佳答案

这可能比您需要的要多,这是我使用的类的代码:

public class ControlColorAnimator
{
private const int INTERVAL = 100;

private readonly decimal _alphaIncrement;
private readonly decimal _blueIncrement;
private readonly Color _endColor;
private readonly decimal _greenIncrement;
private readonly int _iterations;
private readonly decimal _redIncrement;
private readonly Color _startColor;

private decimal _currentAlpha;
private decimal _currentBlueValue;
private decimal _currentGreenValue;
private decimal _currentRedValue;

private Timer _timer;

public ControlColorAnimator(TimeSpan duration, Color startColor, Color endColor)
{
_startColor = startColor;
_endColor = endColor;
resetColor();

_iterations = duration.Milliseconds / INTERVAL;
_alphaIncrement = ((decimal) startColor.A - endColor.A) / _iterations;
_redIncrement = ((decimal) startColor.R - endColor.R) / _iterations;
_greenIncrement = ((decimal) startColor.G - endColor.G) / _iterations;
_blueIncrement = ((decimal) startColor.B - endColor.B) / _iterations;
}

public Color CurrentColor
{
get
{
int alpha = Convert.ToInt32(_currentAlpha);
int red = Convert.ToInt32(_currentRedValue);
int green = Convert.ToInt32(_currentGreenValue);
int blue = Convert.ToInt32(_currentBlueValue);

return Color.FromArgb(alpha, red, green, blue);
}
}

public event EventHandler<DataEventArgs<Color>> ColorChanged;

public void Go()
{
disposeOfTheTimer();
OnColorChanged(_startColor);

resetColor();

int currentIteration = 0;
_timer = new Timer(delegate
{
if (currentIteration++ >= _iterations)
{
Stop();
return;
}
_currentAlpha -= _alphaIncrement;
_currentRedValue -= _redIncrement;
_currentGreenValue -= _greenIncrement;
_currentBlueValue -= _blueIncrement;
OnColorChanged(CurrentColor);
}, null, TimeSpan.FromMilliseconds(INTERVAL), TimeSpan.FromMilliseconds(INTERVAL));
}

public void Stop()
{
disposeOfTheTimer();
OnColorChanged(_endColor);
}

protected virtual void OnColorChanged(Color color)
{
if (ColorChanged == null) return;
ColorChanged(this, color);
}

private void disposeOfTheTimer()
{
Timer timer = _timer;
_timer = null;

if (timer != null) timer.Dispose();
}

private void resetColor()
{
_currentAlpha = _startColor.A;
_currentRedValue = _startColor.R;
_currentGreenValue = _startColor.G;
_currentBlueValue = _startColor.B;
}
}

这使用 DataEventArgs<T> (如下图)

/// <summary>
/// Generic implementation of <see cref="EventArgs"/> that allows for a data element to be passed.
/// </summary>
/// <typeparam name="T">The type of data to contain.</typeparam>
[DebuggerDisplay("{Data}")]
public class DataEventArgs<T> : EventArgs
{
private T _data;

/// <summary>
/// Constructs a <see cref="DataEventArgs{T}"/>.
/// </summary>
/// <param name="data">The data to contain in the <see cref="DataEventArgs{T}"/></param>
[DebuggerHidden]
public DataEventArgs(T data)
{
_data = data;
}

/// <summary>
/// Gets the data for this <see cref="DataEventArgs{T}"/>.
/// </summary>
public virtual T Data
{
[DebuggerHidden]
get { return _data; }
[DebuggerHidden]
protected set { _data = value; }
}

[DebuggerHidden]
public static implicit operator DataEventArgs<T>(T data)
{
return new DataEventArgs<T>(data);
}

[DebuggerHidden]
public static implicit operator T(DataEventArgs<T> e)
{
return e.Data;
}
}

像这样在你的表单中使用:

private ControlColorAnimator _animator;

private void runColorLoop()
{
endCurrentAnimation();
startNewAnimation();
}

private void endCurrentAnimation()
{
ControlColorAnimator animator = _animator;
_animator = null;
if (animator != null)
{
animator.ColorChanged -= _animator_ColorChanged;
animator.Stop();
}
}

private void startNewAnimation()
{
_animator = new ControlColorAnimator(TimeSpan.FromSeconds(.6), Color.Yellow, BackColor);
_animator.ColorChanged += _animator_ColorChanged;
_animator.Go();
}

private void _animator_ColorChanged(object sender, DataEventArgs<Color> e)
{
invokeOnFormThread(delegate { setColor(e); });
}

private void setColor(Color color)
{
// code to set color of the controls goes here
}

private void invokeOnFormThread(MethodInvoker method)
{
if (IsHandleCreated)
Invoke(method);
else
method();
}

关于c# - 将颜色淡化为白色(增加亮度),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/710902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com