Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
3k views

How to effectively draw on desktop in C#?

I want to draw directly on the desktop in C#. From searching a bit, I ended up using a Graphics object from the Desktop HDC (null). Then, I painted normally using this Graphics object. The problem is ...
6
votes
3answers
2k 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 ...
6
votes
3answers
2k 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 ...
4
votes
3answers
209 views

Exceptions and Access Violations in Paint events in Windows

After executing some new code, my C++ application started to behave strange (incorrect or incomplete screen updates, sometimes no screen updates at all). After a while we found out that the new code ...
4
votes
3answers
2k views

WinForms- Populating a FlowLayoutPanel with a large number of controls and painting thumbnails on demand

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 with a ...
3
votes
4answers
364 views

What is the proper way to draw a line with mouse in C#

This is my drawing code to draw a custom line with mouse onto a Chart. Can you please help me to do it proper way ? namespace Grafi { public partial class Form1 : Form { ...
3
votes
2answers
694 views

how to make a tmemo and Tedit with a transparent background?

how to make a tmemo and Tedit with a transparent background? or add image background on it's canvas. that workable in both Delphi7 up
3
votes
6answers
827 views

Why is my c# paint method running out of memory?

I'm new to c#, and trying to learn by writing some simple apps to get familiar with the syntax and .NET library. The most recent miniproject I took on is a polar clock like the one found here. One ...
3
votes
2answers
792 views

C# WinForms - Paint method questions

I am not sure what is the best way of using graphics - should I attach my classes to main form Paint event and then do the drawing, or it is better to call it from overidden OnPaint void like this? I ...
3
votes
1answer
255 views

Setting the fontsize of a Paintbox causes OnPaint to be called

I need to write some text to a paintbox, and I do it in the OnPaint event. When I set the fontsize twice in the method, the OnPaint-event is called repeatedly. To see for yourself, try this: Create ...
3
votes
1answer
400 views

visual c# - onPaint and transparency

I am making a simple form with two semi-transparent texts and i put it in a paint event. only, when I wider the form, the texts turn darker and grainy. actualy I want the darker color but not the ...
3
votes
2answers
615 views

Onpaint events (invalidated) changing execution order after a period normal operation (runtime)

I have 3 data graphs that are painted via the their paint events. When I have data that I need to insert into the graph I call the controls invalidate() command. The first control's paint event ...
3
votes
7answers
3k 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
107 views

How to add icons to TreeView control in c# using OnPaint args

How to add icons to TreeView control in c# WITHOUT the ImageList control? I think you need tp call the OnPaint event args but no idea how to do it.
2
votes
3answers
3k views

C#: Graphics DrawString to Exactly Place Text on a System.Label

I have overridden the OnPaint method of my Label control in VS2008: void Label_OnPaint(object sender, PaintEventArgs e) { base.OnPaint(e); Label lbl = sender as Label; if (lbl != null) { ...
2
votes
1answer
1k views

wxpython: StaticText on transparent background

I am trying to make a subclass of wx.StaticText that has no background. I tried setting the background's alpha component with SetBackgroundColor, or using SetTransparent on various objects with no ...
2
votes
5answers
860 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 ...
2
votes
5answers
5k 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: ...
2
votes
2answers
768 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); ...
1
vote
1answer
34 views

OnPaint doesn't draw correctly

Visual Studio 2008 SP1 C# Windows application I am writing and drawing directly to the main form and am having a problem repainting the screen. On program startup, the screen paints correctly. Two ...
1
vote
2answers
96 views

OnPaint() for Java?

All right real quick question guys. I know that C# Forms have the OnPaint() method that keeps on being called when its time to render. I know Java has a similar one but I am lost on how to implement ...
1
vote
1answer
176 views

Override datetimepicker vb.net

I would like to overrides the datetimepicker object to remove the texte when the property _clearOnDisabled is true. When _readOnly property is true, I would like to show the text in black not gray. ...
1
vote
0answers
239 views

Best practice for OnPaint, Invalidate, Clipping and Regions

I have a User Control with completely custom drawn graphics of many objects which draw themselves (called from OnPaint), with the background being a large bitmap. I have zoom and pan functionality ...
1
vote
2answers
112 views

Timer problem with GDI+

I am currently stuck at a really strange problem with GDI and timers. First the Code: class Graph : UserControl { private System.Threading.Timer timer; private int refreshRate = 25; ...
1
vote
4answers
326 views

.Net DrawString font reference changes after calling, is this a potential problem

Given the following code. Is there any potential for the first DrawString method to draw in Arial rather than Times New Roman? protected override void OnPaint(PaintEventArgs pe) { Font f = new ...
1
vote
1answer
212 views

Do I need to restore the Graphics state after painting in my OnPaint override (for a .NET Control)

Consider the following overriden OnPaint method for a .NET Control: protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); e.Graphics.RotateTransform(180); // lots of drawing ...
1
vote
2answers
433 views

GDI+ Paint Queue Problem

comrades) I've found some interesting behavior of Invalidate method in multithreaded applications. I hope you could help me with a problem... I experience troubles while trying to invalidate ...
1
vote
1answer
267 views

A problem with overriding OnPaint when DoubleBuffered set to true

I have created a custom control which derives from Panel. I use it to display an Image using BackgroundImage property. I override the OnClick method and set isSelected to true then call Invalidate ...
1
vote
1answer
516 views

Convert Windows Form OnPaint to equivalent WPF shapes

I have an existing OnPaint method which draws some shapes: protected override void OnPaintBackground(PaintEventArgs e) { Graphics g = e.Graphics; g.CompositingQuality = ...
1
vote
2answers
2k views

(C#) graphics.drawImage has a size limit? How to deal with it?

I am attempting to display a very large graphical representation of some data. I am using a bitmap for persistent storage of the image and e.Graphics.DrawImage(myBitmap, new Point(0,0)) in the ...
1
vote
2answers
274 views

Draw window with just borders

How can I create a application window that is showing just the borders of the window, but i don't want to show the contents of the window itself. I mean i want to see the rest of the desktop or the ...
1
vote
2answers
1k 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
280 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 ...
0
votes
0answers
13 views

.net update tabpage included picboxes

In my tabpage there are three picboxes and I added an image for all of them. Now when I click a button, the images are changed, so I want to update the tabpage so I can see the changed images. I call ...
0
votes
0answers
34 views

Prevent form.onPaint method when mouse hover toolstrip C#

I have a window form and onPaint method for that form, so when the window is minimized/maximized it repaints all of the objects that are drawn on the form.. But this is also called when I hover ...
0
votes
0answers
18 views

Using onPaint to Draw Graphics on TabPages

I need to draw graphics on tabpages which are created dynamically. And the data which i intend to use is coming from mainform class. I'm very regretful for avoid to make another class. But i cannot ...
0
votes
1answer
36 views

Graphics.Draw*, AutoScroll & Culling

I've implemented a custom control in C#/Winforms which does things like syntax highlighting & autocomplete. I'm using AutoScroll to manage scrolling and it works nicely. Currently I have not ...
0
votes
1answer
38 views

override OnPaint for a Windows.Forms.Control Flickering?

I create a new Control and overided the OnPaint event: protected override void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics; _ammo = PitControl.Ammo; var ...
0
votes
2answers
70 views

Is there any way to catch whole screen re-paint event? (windows, c#)

Is there any way to catch whole screen re-paint event? (windows, c#) I want to do CopyFromScreen only after screen was updated, not by timer.
0
votes
3answers
149 views

Is there something like an “OnPaint” method in Silverlight?

Is there something like an "OnPaint" method in Silverlight? Back when I was writing C++, I found that it was easy to use the OnPaint event to customize the display of a class to the screen? Is there ...
0
votes
1answer
71 views

Methods of drawing video feed in WPF

First off, I want to say hello to the community. I have been a long lurker and appreciator of this place. Now to the point, I am working on a personal motion detection program that is ...
0
votes
2answers
93 views

Overriding OnPaint: Drawing more than one rectangle

Can anyone provide me C# code to fill two rectangles in override onpaint method.Here I'm trying to create a messagebox dialog which has a message title topbar and message text.
0
votes
3answers
274 views

windows.forms.panel calling onPaint twice

I have a panel with multiple panels inside of it. I have overridden OnPaint in the master panel to the following: protected override void OnPaint(PaintEventArgs e) { Graphics graph = ...
0
votes
0answers
84 views

How to find WinForms ComboBox EditArea bounds?

How to find the Bounds of the ComboBox's edit area? Like the one handed to OnDrawItem? The problem is: I override the ComboBox's OnPaint, and as a result OnPaint overwrites OnDrawItem's DrawString ...
0
votes
0answers
272 views

C#: PrintPreviewDialog using OnPaint does not match WinForm

I've got a form that I am using as the basis for making some custom labels (see my related questions). When I call my PrintPreviewDialog, each Label control is drawn using the Document's ...
0
votes
1answer
362 views

wxpython: adding panel to wx.Frame disables/conflicts with wx.Frame's OnPaint?

I just encountered this strange situation: I found an example, where wx.Frame's OnPaint is overridden, and a circle is drawn. Funnily, as soon as I add even a single panel to the frame, the circle is ...
0
votes
2answers
94 views

Painting to Form then to Printer

I often find myself needing to create custom reports that do NOT work with Crystal Reports or Report Viewer. Often, I hack a DataTable together and dumping that into a DataGridView control. It is ...
0
votes
2answers
189 views

can't invoke paint

i created my own control and ovverwrriten the onpaint event, the problem is that the paint event stoped working any ideas why? and how to restore it?
0
votes
2answers
773 views

C#: Override DataGridView Scrollbars (custom OnPaint)?

I have a usercontrol that inherits from a DataGridView. I have overridden OnRowPrePaint, OnRowPostPaint, OnCellPaint, and some others so I can draw the entire thing as I want. Everything works ...
0
votes
1answer
187 views

How to achieve ImageAlign.MiddleCenter in the overriden OnPaint method

As the subject line explains it. I want to achieve the behaviour ImageAlign.MiddleCenter in the Image property of a Button control in .NET i am overriding the Button's OnPaint event. I use ...

1 2