flicker

fixed positioned element flicker in IE only, how to solve?

本小妞迷上赌 提交于 2019-11-29 17:35:49
问题 Weird problem in IE11, the fixed background of the following project flickers when using mousewheel or cursor keys only. This is a bug, for sure. website: http://gerbrandy.zitemedia.nl:88/ I use a script to resize the background proportional but this is not the problem because the resize event does not fire when scrolling, so it is not a problem of the script. It has something to do with a fixed positioned element. This script works okay for several years in all other browsers. I have no idea

Android thread controlling multiple texture views causes strange flickering

对着背影说爱祢 提交于 2019-11-29 16:17:06
I am trying to use a single thread to render three separate TextureView's off the UI thread using canvas lock/unlock. The problem observed is the consistent flickering of each of the Texture Views being drawn, with the flicker consisting of a DIFFERENT TextureView's frame. So for example, I draw frames A,B and C in that order. Frame C will appear fine, however frames A and B will flicker with occasional instances of Frame C, and frame A will occasionally flicker with instances of Frame B. I have read through the documentation describing Android Core Graphics, and have a fairly good

flicker free tab control with WS_EX_COMPOSITED

不羁岁月 提交于 2019-11-29 16:04:16
I have a VS2008 C++ application for Windows XP SP3 developed using WTL 8.1. My application contains a tab control that flickers when the application border is resized. My window hierarchy looks like this: CFrameWindowImpl CMainFrm |-CSplitterWindow Splitter |-CTabView Configuration Tabs | |-CDialogImpl Configuration View 1 | |-CDialogImpl Configuration View 2 | |-CDialogImpl Configuration View 3 |-CDialogImpl Control View The solution I'm trying is to make the CFrameWindowImpl derived class use the WS_EX_COMPOSITED style and all windows beneath it use the WS_EX_TRANSPARENT style. Unfortunately

Prevent WPF window flicker

a 夏天 提交于 2019-11-29 15:07:54
I've got a borderless WPF window that needs to be able to hide one of its controls and shrink the window at the same time. The problem is that it looks terrible. Here's what I am doing now: private void btnShowHideTopBar_Click(object sender, RoutedEventArgs e) { if (commandTopHide == true) { txtblkShowHideTopBar.Text = "Show Top Bar"; commandTopHide = false; myWindow.Left = 1100; myWindow.Width = 180; RSide.Width = new GridLength(0, GridUnitType.Pixel); } else if (commandTopHide == false) { txtblkShowHideTopBar.Text = "Hide Top Bar"; commandTopHide = true; myWindow.Left = 1030; myWindow.Width

Stopping TextBox flicker during update

我与影子孤独终老i 提交于 2019-11-29 13:29:58
My WinForms application has a TextBox that I'm using as a log file. I'm appending text without the form flickering using TextBox.AppendText(string); , however when I try to purge old text (as the control's .Text property reaches the .MaxLength limit), I get awful flicker. The code I'm using is as follows: public static void AddTextToConsoleThreadSafe(TextBox textBox, string text) { if (textBox.InvokeRequired) { textBox.Invoke(new AddTextToConsoleThreadSafeDelegate(AddTextToConsoleThreadSafe), new object[] { textBox, text }); } else { // Ensure that text is purged from the top of the textbox //

jQuery Mobile flickering screen during transitions

喜你入骨 提交于 2019-11-29 11:30:17
I am testing a mobile web application built in jQuery Mobile 1.1.0. I am testing the website application using my Galaxy Nexus running on android 4.0. There is a nasty flicker on the CSS swipe transition and i have looked around for fixes and found this: .ui-page { -webkit-backface-visibility: hidden; } However, when i use this fix, the index page which has a listview does not display. Please help me. What could be the problem? The only real way to prevent the "flickering" is to disable the jQuery Mobile page transitions altogether. In the of your document, place this code: // load your custom

how to to kill the white flickering splashscreen at the start of phonegap iOS app?

半腔热情 提交于 2019-11-29 07:48:07
How to get rid of the white splashscreen flickering at the start of a phonegap iOS application? You need to go in PhoneGap.plist and set the AutoHideSplashScreen to NO Then whenever you want in your app you can choose to hide the splashscreen with the following code : navigator.splashscreen.hide(); Hope this helps You can change the default.png and default@2x.png splash screens to something more of your liking. That gets rid of the white background. You can find these resources in the appname/appname /Resources/Splash folder in an Xcode 4x project. I have a problem with the plugins or some

During FlowLayoutPanel scrolling, background distorts + flickers

血红的双手。 提交于 2019-11-29 05:53:59
I have a windows form application that has a background. Within it, I have a flowlayoutpanel with a transparent background. When I scroll, the following happens: I also see some flickering. I've tried all the doublebuffered business, and it doesn't work. Any suggestions? Yeah, that doesn't work. Here's a class that improves it somewhat: using System; using System.Windows.Forms; class MyFlowLayoutPanel : FlowLayoutPanel { public MyFlowLayoutPanel() { this.DoubleBuffered = true; } protected override void OnScroll(ScrollEventArgs se) { this.Invalidate(); base.OnScroll(se); } } Compile and drop it

Why do my WinForms controls flicker and resize slowly?

北战南征 提交于 2019-11-29 01:30:35
问题 I'm making a program where I have a lot of panels and panels in panels. I have a few custom drawn controls in these panels. The resize function of 1 panel contains code to adjust the size and position of all controls in that panel. Now as soon as I resize the program, the resize of this panel gets actived. This results in a lot of flickering of the components in this panel. All user drawn controls are double buffered. Can some one help me solve this problem? 回答1: To get rid of the flicker

How do I force windows NOT to redraw anything in my dialog when the user is resizing my dialog?

别说谁变了你拦得住时间么 提交于 2019-11-28 16:42:10
When the user grabs a corner of a resizable window, and then moves it, windows first moves the contents of the window around, then issues a WM_SIZE to the window being resized. Thus, in a dialog where I want to control the movement of various child controls, and I want to eliminate flickering, the user first sees what windows OS thinks the window will look like (because, AFAICT, the OS uses a bitblt approach to moving things around inside the window before sending the WM_SIZE) - and only then does my dialog get to handle moving its child controls around, or resize them, etc., after which it