Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
15k views

How can I detect a held down mouse button over a PictureBox?

I need to fire an event when the mouse is above a PictureBox with the mouse button already clicked and held down. Problems: The MouseDown and MouseEnter event handlers do not work together very ...
6
votes
1answer
80 views

Silverlight Programatical Drawing Question ( converting from Windows Forms to Silverlight )

I have a World ( a PictureBox and a Bitmap with is size ( rows * columns ) and create Graphics from Bitmap in Windows Forms ) the following is the code, bmp = new Bitmap(columns*32, rows*32); ...
6
votes
3answers
204 views

What is the Alternative of PictureBox in Silverlight?

i have a PictureBox in my Windows Form application and i am in the process of converting my application to Silverlight and i would like to know what is the alternative of PictureBox in Silverlight, ...
6
votes
5answers
18k views

Transparent images with C# WinForms

I am working on a Windows Forms application in VS 2008, and I want to display one image over the top of another, with the top image being a gif or something with transparent parts. Basically I have a ...
6
votes
1answer
4k views

How do you show animated gifs with .NET Compact Framework

I would like to display an animated gif on a .NET Compact Form. Currently I use a PictureBox control and toggle between .Visible = true and .Visible = false. After .Visible = true the gif is shown ...
5
votes
2answers
530 views

Clickable Image Map c#

I'm making a C# inventory application. However, I want there to be a map where the user can click several areas and interact with the inventory on that certain area. Currently I photoshopped the map ...
5
votes
3answers
669 views

Create graphic and save it as Bitmap

I have two questions: 1) I have a PictureBox and its Dock is set to Fill. When I resize the Form I cannot create a Graphic on the part of the PictureBox that is extended. What is the problem? 2) I ...
4
votes
2answers
117 views

PictureBox visible property does not work… help please

I am using window app and C#.. i have a picture which is invisible at the start of the app.. when some button is clicked, the picture box has to be shown.. i use this coding but the picture box is ...
4
votes
1answer
98 views

Why does DrawString look so crappy?

I am trying to add a text scale to a color image. The agcScale.jpg image (below) is 2 winform labels on the top and bottom and 2 winform pictureboxes on the left and right. The exact same code was ...
4
votes
2answers
870 views

Can I create a transparent background on a PictureBox in WinForms?

I want to make the background of a PictureBox control transparent. In the PictureBox (rectangular shape), I placed an icon (circular in shape). I want to make the icon transparent so that the other ...
4
votes
2answers
5k views

Right way to dispose Image/Bitmap and PictureBox

I am trying to develop a Windows Mobile 6 (in WF/C#) application. There is only one form and on the form there is only a PictureBox object. On it I draw all desired controls or whatever I want. ...
4
votes
2answers
1k views

VB.NET: label vs picturebox

What is more lightweight control, a label, or a picturebox? (label can contain image too). I will have a form with 110 icons displayed in separate controls and I'm deciding if I should display them ...
4
votes
2answers
2k views

How should I translate from screen space coordinates to image space coordinates in a WinForms PictureBox?

I have an application that displays an image inside of a WinForms PictureBox control. The SizeMode of the control is set to Zoom so that the image contained in the picture box will be displayed in an ...
3
votes
5answers
119 views

How can I Change something in a Form1 from a DialogBox?

Lets say I have two forms ( Form1 And Form2 ). Form1 has a PictureBox Form2 I has an OpenFileDialog Form1 is the main form, so when I run the project I see Form1. How can I change the Image in ...
3
votes
2answers
465 views

convert cartesian coordinate to picturebox coordinates c#

The question I have is more of mathematics! I have some pair of values that reperesent points of a curve that I want to draw on a picturebox using fromImage(Bitmap). My picture box is sized at ...
3
votes
2answers
187 views

Output to a Picture Box Alternative

For a project I'm working on, a stopwatch-like timer needs to be displayed to the form. If I remember correctly in VB, text could be outputted to a picture box, but I can't find a way to do it in c#. ...
3
votes
4answers
535 views

Free file locked by new Bitmap(filePath)

I have the Image of a PictureBox pointing to a certain file "A", in execution time i want to change the Image of the PictureBox to a different one "B" but i get the following error: "A first ...
3
votes
2answers
1k views

C# Only refresh PictureBox/Panel when tell them to refresh?

I'm making a bomberman game in a C# windows form application. It has over 300 pictureboxes (walls) that are placed on a panel. The picturebox of bomberman himself is also on that panel. When the ...
3
votes
2answers
729 views

How can I get scrollbars on Picturebox

I have PictureBox picture. I use: picture.Size = bmp.Size; picture.Image = bmp; Let's say there are two integers maxWidth and maxHeigth. I want to add vertical/horizontal scrollbar to picture when ...
3
votes
2answers
2k views

How can I show scrollbars on a PictureBox control?

Sometimes, I have a picturebox lets say 100x100. But the image it will display is actually 100x400. I don't want to increase the size of the picturebox itself. Instead, I would like to create a ...
3
votes
6answers
2k views

C# display images randomly and one after another

I am creating a simple form based message display system, each message is a jpeg image, what I want to achieve is when the program loads (just after a user has logged on) one of the jpg's is randomly ...
3
votes
3answers
2k views

Delete Image from PictureBox in C#

how to delete image from picture box when user press "del" key...I dont find any keypress or keydown events for PB. private void topRight_pbx_MouseClick(object sender, MouseEventArgs e) ...
3
votes
2answers
715 views

C# Load Bitmap into PictureBox - slow and blocks UI .. any alternatives?

I am loading 640x480 Bitmaps into a picture box one after the other. When I do that my UI gets blocked. For example, if I was typing something in a text box which is on the same form where my picture ...
3
votes
5answers
737 views

A PictureBox Problem

I have a problem: I have 3 picture boxes with 3 different images as in Image what can i set to pictureBox3 so both images look same..... EDITED: I want to move pictureBox3 on pictureBox2, So ...
3
votes
3answers
821 views

VB6 PictureBox SavePicture - save picture as png?

With VB6 PictureBox, how do I save to the png format?
3
votes
2answers
1k views

picturebox image randomisation C#

i am working on a puzzle slider program and trying to randomize images inside of pictureboxes. I did some research on the internet can't find any examples i could work on. These are my code: ...
3
votes
3answers
4k views

How do I draw a circle and line in the picturebox?

How do I draw a circle and line in the picturebox?
3
votes
1answer
1k views

Resizing Controls At runtime

Does anybody know of any sample code laying around anywhere that would enable me to resize a picturebox at runtime when the mouse cursor is draging the bottom right edge of the control? Any help at ...
3
votes
1answer
2k views

How can I load a generated Bitmap into a PictureBox?

There seem to be many picturebox questions out there, but I haven't found any that deal with changing the contents of a picturebox to a bitmap that was not simply loaded from file. My application ...
3
votes
1answer
658 views

WinForms performance mystery: derived PictureBox control slower than the original?

In my .NET 2.0 project, I made an empty derived class of System.Windows.Forms.PictureBox: public class NewPictureBox : PictureBox { //absolutely nothing } Then I did the following: set both ...
3
votes
5answers
2k views

Read a picture from Access DB into PictureBox

I have been trying to read a picture saved in Access DB as a OLE object in a PictureBox in a C# windows Application. The code that does this is presented below: string connString = ...
2
votes
1answer
68 views

how to put an Iplimage on a picturebox?

is there a way to show an IplImage in a picturebox? I'd like to not save the image and reload it into the picturebox since I need my program to be quiete fast. I'm using opencv 2.1 in c++. I'm working ...
2
votes
2answers
153 views

How to stretch a Bitmap to fill a PictureBox

I need to stretch various sized bitmaps to fill a PictureBox. PictureBoxSizeMode.StretchImage sort of does what I need but can't think of a way to properly add text or lines to the image using this ...
2
votes
2answers
93 views

Rounded edges in picturebox C#

How to round edges in picturebox control. I Want to get angles like ellipse have but i dont know how to do it. I Use C#. Thanks!
2
votes
5answers
204 views

C# LockBits perfomance (int[,] to byte[])

Graphics g; using (var bmp = new Bitmap(_frame, _height, PixelFormat.Format24bppRgb)) { var data = bmp.LockBits(new Rectangle(0, 0, _frame, _height), ImageLockMode.ReadWrite, ...
2
votes
1answer
150 views

Resize GIF and save animation?

I'm using this code i wrote to resize my images to fit my PictureBox: //Creates a new Bitmap as the size of the window Bitmap bmp = new Bitmap(this.Width, this.Height); //Creates a new graphics to ...
2
votes
1answer
100 views

C# how to get a bitmap from a picturebox

I have a image in picturebox.I want to get that image as a Bitmap.My one line code is Bitmap default_image = (Bitmap)pictureBox5.Image.Clone(); But i am getting a default_image value=null; Can ...
2
votes
2answers
216 views

How to save PictureBox.Image to file?

I use the following to write jpgImage to a PictureBox.Image. var jpgImage = new Byte[jpgImageSize]; ... pictureBox.Image = new Bitmap(new MemoryStream(jpgImage)); and I can use the following to ...
2
votes
1answer
62 views

How do I tell if a PictureBox's Image has changed?

Apparently, the PictureBox class does not offer an event when its Image property is set. Is there a way to still catch such a change, possibly by subclassing?
2
votes
2answers
297 views

Images in Picturebox c#

I'm writing a program about trying different images in picturebox, but the image must correspond to the text. Plus it must come from "Resources" folder of the project. this is what i want to do if ...
2
votes
2answers
159 views

Pass PictureBox Object to Method in Class

I am trying to find information in regards to passing a picturebox to a method, I tried passing it with object, but to no avail. Could someone point me into the right direction to research the answer ...
2
votes
1answer
23 views

Iterate PictureBoxes

How can I iterate through PictureBoxes named PictureBox1, PictureBox2 ... PictureBox24 in Visual Basic 10
2
votes
2answers
132 views

PictureBox Intesect

I'm working on a simple 2d game with pictureboxes but I´m struggling with collision detection. I've been looking around and came up with this: public bool ObstacleHit() { if ...
2
votes
1answer
681 views

Scrolling the image by dragging the mouse

I have the image that scroll when i used the horizontal and vertical scroll bars. But I want to scroll the image by dragging it like in Photoshop (using hand tool and exploring through the zoomed ...
2
votes
3answers
895 views

How to change the border color of a picturebox (winform)?

I want to set the border color/style around the picturebox on and off according to different events. Are there properties or functions that help me to achieve that aim?
2
votes
2answers
398 views

How to draw on Control so drawing doesn't disappear?

I want to display graphic file in PictureBox I have: private void btnLoad_Click(object sender, EventArgs e) { if (dgOpenFile.ShowDialog() == DialogResult.OK) { Bitmap img = new ...
2
votes
2answers
441 views

c# load image into PictureBox without slowing down UI

I am trying to load 720x480 bitmaps into a picturebox very quickly and while loading the images into the picturebox, the UI of my application slows down considerably. Is there any way around it ? I ...
2
votes
1answer
242 views

Print & Print Preview a Bitmap plus a Label with Text in it in c#

I have made a function in my program that will print off bitmaps and a image from a picturebox, but now want to print a label with text in it as well. This is my current code: private void ...
2
votes
2answers
858 views

Auto Rotate Picture in Picture Box

My project have a Picture box control for loading pictures but it's worked fine my problem is... some vertical Jpg picture was shown Horizontally in windows explorer and also my picutre box control at ...
2
votes
2answers
445 views

Reverse Picturebox image in c#

I want to make a button in my program flip the backgroundimage of the picturebox by 180 degrees so its facing the other way. So please can i have some code for this. I tried using this code: ...

1 2 3 4 5 8