private void Display()
        {
            UIItemDisplayProperties display = m_group.GetDisplayProperties();

            System.Diagnostics.Debug.Assert(display.ImageLabel != null, "need an image for this menu");
            Image i = m_images.GetImage(display.ImageLabel);

            this.Style.BackgroundImage = i;
        }
        private void Display()
        {
            UIItemDisplayProperties display = m_group.GetDisplayProperties();

            System.Diagnostics.Debug.Assert(display.ImageLabel != null, "need an image for this menu");
            Image i = m_images.GetImage(display.ImageLabel);

#if USE_DOTNETBAR
            this.Style.BackgroundImage = i;
#else
            this.BackgroundImage       = i;
            this.BackgroundImageLayout = ImageLayout.Center;
#endif
        }