Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
798 views

Clearing DrawRectangle in Windows Forms

I am drawing a rectangle, sleeping for a few milliseconds--then I want to clear the rectangle, but I can't figure out how. (The rectangle is sitting over a graphic so I can't simply cover it up with ...
2
votes
3answers
775 views

C#, GDI+ - Why are my rectangles truncated?

When I run the following code: private void button1_Click(object sender, EventArgs e) { Bitmap b = new Bitmap(300, 400); using (Graphics g = Graphics.FromImage(b)) { ...
1
vote
2answers
303 views

Draw a User Defined Rectangle

My current code allows me to draw rectangles from a user defined spot but not in the way in whihc i desire. I need it to be like you would do it in paint, here is my current code: namespace ...
1
vote
2answers
1k views

Tweening a Rounded Rectangle in Actionscript 3

I would like to tween between a short rounded rectangle and a tall rounded rectangle. (I only want deal with the height - no other parameters). I am programming with actionscript 3. My tweening ...
0
votes
1answer
29 views

Is there any easy way to create an angled rectangle in php?

I wonder if there is rather an easy way to draw an angled rectangle using GD in php? I know I can use the imagefilledpolygon function but that's a bit tricky considering you should calculate all the ...
0
votes
1answer
70 views

Loading an image in the PictureBox and draw a rectangle

I wrote this code: private void ResizeImage() { SetImage(Image); } private void SetPen() { CreatePen(10,10,20,60); } private void CreatePen(int x, int y, int width, int height) { ...
0
votes
0answers
127 views

select items in GridView after onClick

I have simple GridView with simple base adapter. All buttons have a clicklistener. I need to select the image I clicked on: if(condition1){selection color = color1}; if(condition2){selection ...
0
votes
1answer
84 views

Performance difference between different ways to draw rectangles from textures in xna?

I am trying to developing p a JRPG/dungeon crawler as a summer project and I am atm cleaning up in my code. In the combat it exists "healthbars" and one healthbar consists of 3 rectangles that need to ...
0
votes
1answer
322 views

Create rectangle on image using mouseDown C++/CLI

I am having difficulty debugging this program. I am trying to imitate the function on microsoft desktop that you can drag into a rectangle. We want to make it so that it: 1. in order to start ...
0
votes
3answers
688 views

Draw rectangle with dashed border in flex?

Draw rectangle with dashed border in flex ?
0
votes
2answers
89 views

IB builder or programmaticaly draw?

quick question to the gurus of coding! What do you advise? should i programmatically draw my textfields, labels, images or should i use IB? would it make any difference? i have scrolling issues ...
0
votes
1answer
468 views

VB.NET DrawRectangle For A Table

I want to draw a table in my print output using the System.Drawing.Printing's Graphics object. I'm trying to use the DrawRectangle to draw my table cells. This requires drawing several rectangles in a ...
0
votes
1answer
253 views

How to draw a rectangle in C# using a mouse

I want to draw a rectangle on a form in C#. I read and found this article. Are there any samples or tutorials available ? The article was not very helpful.
0
votes
1answer
66 views

Painted Border Runs In Certain Situations

In my tool I use a a panel to change pages. Each page has it's own panel and when I change a page I send the panel with the controls. On the panel I use as the canvas I have the following paint ...