Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

WxWidgets lesson 6 EVT_ERASE_BACKGROUND background erase event

2025-03-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

Description

By default, the OnEraseBackground function is responsible for rendering the background color, and the OnPaint function is responsible for rendering the foreground color. The default background color function provided by the system renders the background white, causing the control area to flicker. You can reduce flicker by overriding the background erase event handler

Examples

Void OnEraseBackground (wxEraseEvent& event)

EVT_ERASE_BACKGROUND (CDownLinkPlaybackSliderCtrl::OnEraseBackground)

Void CDownLinkPlaybackSliderCtrl::OnEraseBackground (wxEraseEvent& event)

{

WxClientDC dc (this)

WxSize size = this- > GetSize ()

Int width = size.GetWidth ()

Int height = size.GetHeight ()

Int middleHeight = height/2

Dc.SetPen (wxPen (* wxBLACK, 2))

/ / dc.DrawLine (0, middleHeight-1, width, middleHeight-1)

/ / dc.DrawLine (0, middleHeight+1, width, middleHeight+1)

Dc.SetBrush (* wxBLACK_BRUSH)

Dc.DrawRectangle (2, middleHeight-2, width-4, 4)

Int topDialHeight = middleHeight-2

Int buttonDialHeight = middleHeight+2

Int averageGap = (width-4) / 25

Int count = 0

For (int iTunes 2; I

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report