picturebox Questions
1
Is this possible to have triangular PictureBox control in windows forms instead of the rectangular one?
Streit asked 17/2, 2016 at 20:36
1
I'm using WinForms. In my form I have a picturebox I use to display image documents. The problem is when I crop the image and then print the document out the image becomes slightly distorted. If I ...
Condillac asked 1/2, 2016 at 2:23
4
Solved
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)
{
imgS...
Argentic asked 29/12, 2010 at 11:16
1
Solved
I'm using WinForms. In my Form i have a picturebox. It's sizemode is set to Zoom. If i load an image into the picturebox the image will zoom according to the picturebox dimensions.
I wanted to kn...
Strephonn asked 31/12, 2015 at 21:38
1
Solved
Note: This already works fine, but I'm trying to understand Why it works this way, but not the other.
I have a WinForm (C#) with dynamically put images, like so:
Now if you click the 'Napred' bu...
Kingfish asked 3/12, 2015 at 9:17
3
Solved
in my Winforms application which is connected to a database via Linq to SQL I am saving images (always *.png) to a table which looks like this:
CREATE TABLE [dbo].[Images] (
[Id] INT IDENTITY (1,...
Stringent asked 28/10, 2014 at 15:22
8
Solved
I need to open the bitmap image in the window form using open file dialog (I will load it from drive). The image should fit in the picture box.
Here is the code I tried:
private void button1_Cli...
Clinch asked 25/5, 2011 at 10:27
3
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...
Coomb asked 2/12, 2011 at 12:56
2
Solved
In my code I retrieve frames from a camera with a pointer to an unmanaged object, make some calculations on it and then I make it visualized on a picturebox control.
Before I go further in this app...
Documentary asked 26/4, 2015 at 17:45
6
Solved
How do I set a PictureBox image to an image from my resources?
(I tried this without success: pictuerbox.Image = "img_location";)
Dewey asked 2/7, 2011 at 23:14
2
Solved
I looking for fast way Picturebox in image Convert to byte array.
I saw this code but i don't need it. because Picture box of images is the data read from the db.
So I don't know ImageForma...
Metamer asked 10/2, 2015 at 8:0
2
Solved
I'm working on some simple viewer app for CT images.
Let's say I have array of 262144 Int16 values.
Each value represents one pixel in 512x512 image. Each pixel has value from 0 to 4096 where 0 is...
Regenerative asked 29/12, 2014 at 13:21
6
Solved
I want to load the image like this:
void info(string channel)
{
//Something like that
channelPic.Image = Properties.Resources.+channel
}
Because I don't want to do
void info(string channel)
{...
Brunei asked 27/11, 2012 at 20:5
2
Solved
There is only one picturebox in my form and I want to drawcircle with a method on this picturebox but I cant do that and not working.The method is:
private Bitmap Circle()
{
Bitmap bmp;
Graphic...
Flesh asked 6/12, 2014 at 23:38
2
Solved
I am making a winforms application. One of the features I hope to implement is a rotating gear on the home form.
When the home form is loaded, you should hover over the picture of the gear, and it...
Phenanthrene asked 19/10, 2014 at 12:57
2
Q: How can I implement zooming on current mouse position over a picturebox, something like zooming in Google Maps?
I am designing a simple GIS / map engine as my thesis work. The application is d...
Rear asked 16/5, 2012 at 8:35
1
Solved
I have a picture box in one of my programs which displays my images just fine. What's displayed consists of a chosen "BackColor" and some filled rectangles using a brush and some lines using a pen....
Diocesan asked 22/6, 2014 at 18:28
6
Solved
For a project of mine I need images to display with a transparent background. I made some .png images that have a transparent background(to check this I opened them in Photoshop). Now I have a clas...
Denton asked 2/4, 2011 at 9:24
3
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...
Sejant asked 13/2, 2011 at 11:3
6
Solved
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 hav...
Meanie asked 27/12, 2008 at 18:30
2
Solved
I need to check a picturebox for a specific image. I know you can check if the picturebox is populated with an image...
If Not pictureBox.Image is Nothing Then
Else
End If
But in my case, I ne...
Equity asked 30/1, 2013 at 14:7
1
Solved
In his answer Rick Brewster stated that "PictureBox is often misunderstood." and "You will probably almost never want to use it."
Unfortunately he didn't explain what's wrong with PictureBox. I us...
Raster asked 8/11, 2013 at 15:58
1
Solved
I have a label with a black BackColor and I have set the ForeColor to Transparent. The label is over a mostly blue PictureBox which I have set as its parent.
For some reason, the text, which shoul...
Teishateixeira asked 31/10, 2013 at 9:11
1
Solved
Is there a simple and functional way to zoom an image in a picturebox including scroll bars?
At the moment, I use a picture box in a panel with auto scroll activated. To zoom, I enlarge the pictur...
Blenheim asked 16/8, 2013 at 9:30
4
Solved
I have a Picture Box with a picture loaded and I want to read the location (as in x,y inside the Picture Box) when I click the image; is this possible ? Even more, can i read these coordinates (Poi...
Avaricious asked 4/8, 2013 at 7:56
© 2022 - 2024 — McMap. All rights reserved.