本文整理汇总了C#中System.Drawing.Color.Reverse方法的典型用法代码示例。如果您正苦于以下问题:C# Color.Reverse方法的具体用法?C# Color.Reverse怎么用?C# Color.Reverse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Drawing.Color
的用法示例。
在下文中一共展示了Color.Reverse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ColorSlider
public ColorSlider(VisualDirection direction, float knobWidth, float minVisualLength,
float minValue, float maxValue, float value, Color[] colors, Reaction<float> changed)
: base(direction, knobWidth, minVisualLength, minValue, maxValue, value, changed)
{
Colors = direction == VisualDirection.Horizontal ? colors : colors.Reverse ().ToArray ();
}
示例2: btnPalette_Click
private void btnPalette_Click(object sender, EventArgs e)
{
if (pluginHost.Get_Palette().Loaded)
palette = pluginHost.Get_Palette().Palette[0];
int depth = Convert.ToByte(new String('1', font.plgc.depth), 2);
Color[] palette2 = new System.Drawing.Color[depth + 1];
Array.Copy(palette, 0, palette2, 0, palette2.Length);
palette2 = palette2.Reverse().ToArray();
palette = palette2;
picFont.Image = NFTR.Get_Chars(font, MAX_WIDTH, palette);
txtBox_TextChanged(txtBox, null);
}