0
votes
2answers
51 views
Winforms Invalidate doesn’t fire up OnPaint
I'm trying to move a form smoothly using code given on question http://stackoverflow.com/questions/967968/how-to-smoothly-animate-windows-forms-location-with-different-speeds
But for some reason my …
1
vote
5answers
79 views
Efficent use of OnPaint
I am programming in Visual Studio .Net and using C#.
I am creating my own control that draws a wave based on values I get from an analog to digital converter (ADC). I take the incoming points and …
0
votes
0answers
12 views
OnPaint within WPF WindowsFormsHost
I have a System.Windows.Forms.UserControl running within a WPF application via a WindowsFormsHost. The user control overrides OnPaint to display a bitmap on the control (it is also double buffered). …
0
votes
2answers
197 views
C#, Overriding OnPaint: alpha transparency with double buffer.
Hello.
I'm developing a Windows Mobile 5.0 and above application with .Net Compact Framework 2.0 SP2 with C#.
I'm overriding OnPaint method on a custom messagebox that draw a bitmap that fills the …
0
votes
2answers
124 views
Win32 WM_PAINT and a child window
How to draw inside a child window?
I thought I should create the main window CreateWindow(WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN) with some WndProc (without WM_PAINT). On its WM_CREATE I create …
1
vote
2answers
497 views
C#: Overriding OnPaint on ProgressBar not working?
Was thinking it should be pretty easy to create a ProgressBar that drew some text upon itself. However, I am not quite sure what is happening here...
I added the following two overrides:
…
3
votes
3answers
645 views
Why is DrawString exhibiting unexpected behavior in C# Winforms?
I have subclassed a control in C# WinForms, and am custom drawing text in my OnPaint() handler.
The font is set to Courier New using the following code in my form:
FontFamily family = new …
0
votes
6answers
817 views
Windows Forms UserControl overrides not being called
I am creating a Windows Forms control derived from UserControl to be embedded in a WPF app. I have generally followed the procedures given in this link.
public ref class CTiledImgViewControl : public …
1
vote
2answers
348 views
OnPaint method is being call for every child control.
I've a UserControl (WinForms, .net 2.0), and I've this:
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
var rect = e.ClipRectangle;
var pen = new Pen(Brushes.LightGray, 1);
…
0
votes
1answer
341 views
Custom Control to show an Image: move the image inside
Hi!
I'm developing and C# app for Windows Mobile. I have a custom control with OnPaint overrided to draw an image that the user moves with the pointer. My own OnPaint method is this:
protected …
3
votes
7answers
1k views
How to avoid screen flickering when a control must be constantly repainted in C#?
I have a simple panel that is used as a drawing surface. The goal here is to draw a 4 pixel wide outline around a child ListView under certain circumstances. I would like to make the outline pulsate …
2
votes
3answers
771 views
WinForms- Populating a FlowLayoutPanel with a large number of controls and painting thumbnails on demand
Hi,
I'm trying to make an ImageListBox kind of control that will display large numbers of thumbnails, like the one that Picasa uses.
This is my design:
I have a FlowLayoutPanel that is populated …
4
votes
3answers
703 views
How to avoid screen flickering when showing form with user drawn controls?
So the transparent background problem is solved. Now, every time I show the form (or have to have it repainted), I get a lot of flickering. Is there any way I can not update the screen until the …
1
vote
2answers
652 views
Extend System.Windows.Forms.ComboBox
I would like to extend the System.Windows.Forms.ComboBox control with a ReadOnly property, which would display the selected item’s text (similar to a label) when ReadOnly = true. (I do not like the …
1
vote
2answers
154 views
User Drawn Controls are using the previous Forms Background.
I have several user drawn controls on a form, unfortunately when the form is shown the user drawn controls are showing the previous forms background rather than the current forms background.
The …
