Skip to main content
A newer version of this page is available. .

Implement Alpha Blending Using Custom Painting

  • 3 minutes to read

You can enhance the appearance of your controls using alpha blending technology. This involves assigning a background image to a grid, and painting View elements using transparent pens and brushes. This topic describes how alpha blending can be implemented via custom painting.

Custom Painting and Alpha Blending

Grid Control provides multiple ways to customize the appearance and content of its elements. One of these ways is to paint View elements manually. For this purpose, the events designed specifically for this purpose that are listed in the Elements that can be Custom Painted document must be handled. Custom draw events provide a number of parameters that can be used to obtain the painting surface, the element’s bounding rectangle, its appearance settings, etc. Each custom painting event has a Handled parameter that specifies whether the default painting should be performed or not. These events can be handled to implement the alpha blending feature.

The following sample code handles the GridView.CustomDrawFooter event to custom paint a View’s footer. It fills the footer’s background with transparent brushes and then draws the ‘The Grid Control Suite‘ string. The image below shows the result (it is assumed that a background image has already been assigned to the grid).

AlphaBlending - Blending - CustomDrawFooter


using DevExpress.XtraGrid.Views.Base;

private void gridView1_CustomDrawFooter(object sender, RowObjectCustomDrawEventArgs e) {
   Color colorLeft = Color.FromArgb(150, Color.Gold);
   Color colorCenter = Color.FromArgb(100, Color.Blue);
   Color colorRight = Color.FromArgb(100, Color.Green);
   Rectangle leftRect = new Rectangle(e.Bounds.X, e.Bounds.Y, 
     e.Bounds.Width / 2, e.Bounds.Height);
   Rectangle rightRect = new Rectangle(e.Bounds.X + e.Bounds.Width / 2, 
     e.Bounds.Y, e.Bounds.Width / 2, e.Bounds.Height);
   // Fills the footer's background.
   using(LinearGradientBrush leftBrush = new LinearGradientBrush(leftRect, colorLeft, colorCenter, 
     LinearGradientMode.Horizontal),
            rightBrush = new LinearGradientBrush(rightRect, colorCenter, colorRight, 
              LinearGradientMode.Horizontal)) {
      e.Cache.FillRectangle(leftBrush, leftRect);
      e.Cache.FillRectangle(rightBrush, rightRect);
   }

   StringFormat sf = new StringFormat();
   sf.LineAlignment = StringAlignment.Center;
   sf.Alignment = StringAlignment.Near;
   sf.Trimming = StringTrimming.EllipsisCharacter;
   Font font = new Font("Tahoma", 8, FontStyle.Bold);
   // Draws the text.
   e.Cache.DrawString("The Grid Control Suite", font, new SolidBrush(Color.Navy), e.Bounds, sf);
   // Prohibit default painting.
   e.Handled = true;
}
See Also