TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Pata
NA
7
0
Flickering
Apr 6 2010 5:14 AM
For graphic drawing I use double buffering and when I draw graphics on form there is no flickering on form resize.
private void Form1_Paint(object sender, PaintEventArgs e)
{
myGDI.DrawImage(e.Graphics);
}
protected override void OnPaintBackground(PaintEventArgs pevent)
{
}
I tried the same thing with panel, but I don't know how to remove flickering on form resize event ...
private void panel1_Paint(object sender, PaintEventArgs e)
{
myGDI.DrawImage(e.Graphics);
}
Reply
Answers (
0
)
How to get data from database (sql sever 2005) in asp.net C# in particulars textboxes only...
How to handle selectedIndex changed throws an exception?