Exemplo n.º 1
0
        /// <summary>
        /// Set the face color from the range
        /// </summary>
        protected override void UpdateFaceColor()
        {
            var c = FaceColorRange.GetColor(Value);

            if (c != null)
            {
                _colourRangeStart.Color = c.HiColor;
                _colourRangeEnd.Color   = c.LowColor;
            }
        }
Exemplo n.º 2
0
        protected override void UpdateFaceColor()
        {
            ColorPoint c = FaceColorRange.GetColor(Value);

            if (c != null)
            {
                this.faceLowColorGradientStop.Color  = c.LowColor;
                this.faceHighColorGradientStop.Color = c.HiColor;
            }
        }
Exemplo n.º 3
0
        /// <summary>
        /// Set the face color from the range
        /// </summary>
        protected override void UpdateFaceColor()
        {
            ColorPoint c = FaceColorRange.GetColor(Value);

            if (c != null)
            {
                this._colourRangeStart.Color = c.HiColor;
                this._colourRangeEnd.Color   = c.LowColor;
            }
        }