using System; using System.Text; namespace DevComponents.DotNetBar { internal class BarBackgroundPainter { #region Docked Background /// /// Paints background of docked bar. /// /// Context information public virtual void PaintDockedBackground(ToolbarRendererEventArgs e) { } #endregion #region Floating Background /// /// Paints background of floating bar. /// /// Context information public virtual void PaintFloatingBackground(ToolbarRendererEventArgs e) { } #endregion #region Popup Background /// /// Paints background of popup bar. /// /// Context information public virtual void PaintPopupBackground(ToolbarRendererEventArgs e) { } #endregion } }