0
votes
0answers
21 views

convert image to canvas in c#?

I am drawing line and circle in canvas in wpf c# and I save this canvas after drawing an image .jpg after that I want to add another line to the previous canvas how I can restore this image after ...
0
votes
0answers
21 views

How to use Rectangle as an opacity mask

I'm trying to make a Layer Mask for black area in my image,I have an image like this: I draw an rectangle on it: how can i make a mask that show following image(White area 100% transparent and ...
0
votes
1answer
31 views

Adding Image to Grid C#

My problem is that the image that I am setting to my grid is not appearing, the only thing appearing is the black background, so I know the grid is working. I am a noob, and I am very confused. Thanks ...
0
votes
1answer
59 views

WPF Image to string and string to image

I have a data driven application and one of the entities is supposed to have an image attached to it. Now, since I'm putting the images in a sub-folder of my project directory I don't need to ...
-1
votes
1answer
24 views

Set Background Image for RectangleGeometry in WPF?

I have this code: <Path Fill="Brown"> <Path.Data> <RectangleGeometry x:Name="rec" RadiusX="0" RadiusY="20" Rect="410,135,60,25"></RectangleGeometry> ...
0
votes
3answers
39 views

EMGU with C# WPF

I'm trying to follow the following tutorial but using WPF instead of Win Forms: A Basic Program WPF doesn't use PictureBox, instead it uses Image. So here goes trying to load an Image. XAML ...
0
votes
1answer
32 views

Why it is impossible to change 'Build action' resource's property in WPF solution?

Just like on the screen below. For some raeson, I can't change 'build action' property. I'm trying to change window's background using this code: <Window.Background> <ImageBrush ...
0
votes
3answers
49 views

Show alternating images for changing ViewModel states

For different user interfaces I want to show an image depending on a state of a ViewModel object. For example: I have a database connection, if connected, I want to show a green database image, if ...
1
vote
0answers
39 views

WPF ZoomControl and Adorners

This my first post on stack overflow, I hope I get it right. I am using the ZoomControl from WPF Extensions to display an image with pan and zoom support: <DockPanel Grid.Row="1" ...
0
votes
3answers
39 views

WPF: Revert changes after transforming an Image

I am using this code to zoom & pan my Image control. I want to know how can I revert back the control to it's original state. After The user decided to change the picture, the Image box has to ...
0
votes
1answer
43 views

WPF: ListView with Images from a folder

I'm sort of new to WPF, but I have to do this and it's taking a lot of my time. I've searched for a solution but there are many alternative solutions and I honestly don't understand most of this. I ...
0
votes
1answer
35 views

convert IntPtr to bitmapimage

I use twain_32 for the scan and in twainLib.TransferPictures use DibToBitmap.FormHDib(hbitmap) to get a bitmapsource from IntPtr but I want a bitmapimage. I want to convert the IntPtr bitmapsource ...
0
votes
0answers
32 views

Can't set border background as image when use a usercontrol

I Have a WPF window that uses a usercontrol as shown in the following code : <Window x:Class="WpfBorderUserControlTest.MainWindow" ...
1
vote
3answers
98 views

Creating Image Dynamically

I am having a problem while making a Whack a Mole type game, I am trying to create the images where the mole will appear dynamically, yet there is only a blank white screen where the stack panel is. ...
6
votes
4answers
152 views

Pack URI to image embedded in a resx file

How do I construct a pack URI to an image that is in a resource file? I have an assembly called MyAssembly.Resources.dll, it has a folder called Images, then in there is a resource file called ...
0
votes
1answer
58 views

How to Print Invoice from WPF Controls

I am creating a point-of-sale system in WPF. I want to print an invoice during completion of an order. Data will be provided from a TextBox for Invoice: txtinvoices, txtQty, txtTotalPrice, ...
2
votes
1answer
75 views

Change button background image when clicked

I have created a Button and set its background Image. What I want is when the Button is clicked, I want to replace the background Image with another one How can I accomplish this? Here is my code ...
0
votes
0answers
25 views

WPF app, images won't load when editing config file

I'm making a wpf application where I can edit my connection string in the config file: vConnection = @"metadata=res://*/MC_PLC.csdl|res://*/MC_PLC.ssdl|res://*/MC_PLC.msl; ...
0
votes
1answer
40 views

Show EmguCV Image in WPF form

I am building a program that needs to capture the image from a webam and show it to the user. I am using EmguCV to capture the image from the webcam and make some computer vision processing and then i ...
0
votes
0answers
23 views

Getting “FileFormatException” when trying to Resize Image with metadata using JpegBitmapDecoder

Im using WPF in order to resize image, and create copy of it while reserving the image metadata. However when I am trying to save the image, I keep getting the following exception: ...
1
vote
2answers
22 views

Change Image Source when the Parent Button change its enabled state

I have this XAML code: <Button x:Name="ButtonUpdate" IsEnabled="False"> <Image Source="Images/update gray.png" Name="ImgUpdate" > <Image.Style> <Style ...
0
votes
0answers
23 views

convert bitmap to bitmapimage

I want to convert bitmap (GDI) to bitmapImage (wpf). I have the following code: BitmapSource bitSrc = null; var hBitmap = source.GetHbitmap(); try { bitSrc = ...
0
votes
1answer
44 views

WPF UserControls: Image disappears even with 'x:Shared=“False”'

I defined a style in a ResourceDictionary for a button with an image: <Style x:Key="BotonIrAInicioStyle" TargetType="Button"> <Setter Property="Margin" Value="0"/> <Setter ...
0
votes
0answers
61 views

How to convert large canvas to image in WPF?

My problem is that. If width is less than 6000 not problem, everything is okay, but if greater, then appears my problem. Image is distorted. Some shapes are not shown, white shape turn into black etc. ...
-1
votes
1answer
80 views

WPF imagecontrol and media element

I wanna put a media element to inside a image control . For example like this ; <Image> <MediaElement </Image> And after do this I wanna save this image to my computer ...
0
votes
0answers
81 views

To save Image selected from the application to local folder using c# wpf

I'm new to WPF... I want to save a selected image to a local folder in my system. I tried doing this by saving to a memory stream and system,drawing,image.save concept .....the problem here is I ...
2
votes
4answers
91 views

WPF Show each image x seconds how?

I'm trying to make a slideshow with a mediaElement that shows each image in listbox x seconds. How do I make my code play each image x seconds before continuing? This code adds all images to a ...
2
votes
2answers
106 views

WPF fast method to draw image in UI

I have a project where i need to perform fast image rendering. Currently, i use image control with stretch disabled. update is made by timer, by setting Source property. WriteableBitmap frame = ...
1
vote
0answers
34 views

Bitmap file Integrity/Validity checking to confirm completion of Save Progress

Heyo, I'm trying to find out if the Save-Progress of a bitmap file is completed, can't use the lock state or UNC Journal for it.. And heres why: Running a FileSystemWatcher i detect file creations ...
0
votes
1answer
66 views

If image open with… else open with?

I was just wondering if there is anyone out here that knows how to write a code how to check if item is an image then open with Windows image preview else open With Build in Media player. Code is ...
0
votes
1answer
67 views

Wrap ImageSource for Base64 image serialization

I have a WPF control that contains panels with images. I'm trying to serialize this so that it can be loaded standalone without having to have images in a local folder. I know that I can store the ...
1
vote
2answers
81 views

C# WPF Load images from the exe folder

i want to move my program from a pc to another but the problem is the images are not loaded on any other pc (Source problem) . So i was wondering if i could just create a folder where the exe is ...
1
vote
3answers
111 views

Make WPF Image load async

I would like to load Gravatar-Images and set them from code behind to a WPF Image-Control. So the code looks like imgGravatar.Source = GetGravatarImage(email); Where GetGravatarImage looks like: ...
1
vote
1answer
63 views

WPF: Image in ListView is not be shown

I have a ListView which should contain per line an image and text. The binding of the text works fine, but the image is not be shown. My XAML-Markup: <ListView Name="lvUpgrade"> ...
3
votes
2answers
84 views

best way for clickable image map in wpf

I have an image with many parts in c# WPF I want make each part click make think I have tried to split the image to parts and make event on each image but the problem is the nested part of images ...
0
votes
1answer
57 views

How can I force an image to maintain aspect ratio in WPF?

I have an image in a WPF window. When I resize the window the image resizes with it. Is it possible to preserve the aspect ratio when the image is resizing, so it doesn't look squashed if the window ...
0
votes
2answers
726 views

How to change\set button background image in C# WPF code?

Hi i'm trying to change my button image background to some other image and i encountered some errors. this is the code i have on my xaml: <Button x:Name="Button1" Width="200" Height="200" ...
0
votes
0answers
79 views

WPF Print text and images in one document

I want to print a document that has text and images in it. I'm using a FlowDocument with tables and BlockUIContainers. In visual studio the image shows up but when I want to print the image section at ...
1
vote
1answer
102 views

Loading a large image to a WPF app - Scrolling and Drawing both needed

I have an idea of how to do only one of these req's, not both of them. For loading a large image and be able to scroll to see all its parts, I added the image inside a <ScrollViewer/> and got ...
0
votes
2answers
117 views

WPF add image to cell in column

Afternoon all, Using C#.NET4.5, Visual Studio 2012, WPF. Well here's how far I got with a lot of help from great people and advice! Set up a new column for images: DataGridTemplateColumn p1 = new ...
0
votes
1answer
70 views

TransformedBitmap Scaling Mode

I'm using a TransformedBitmap class to draw scaled images to a Bitmap using TransformedBitmap.CopyPixels. Is there a way to specify the scaling mode that is used? RenderOptions.SetBitmapScalingMode ...
0
votes
1answer
34 views

Variable Image Source inside a Button Template

How can I transfer the Source attribute from a button template to an Image inside that template ? This is how my XAML looks like: <Page x:Class="TallShip.MainGallery" ...
0
votes
1answer
67 views

JPG ImageBrush ImageSource Value does not fall within the expected range

I have been srtuggling on this one for quite some time, looking everywhere I could on SO and Google without success. I want to display a background image in some simple window (How Ambitious!) ...
1
vote
1answer
317 views

Resize image in WPF

i have a image and i want to re size it and need to save in my temp folder. what i have tried is as below : UIElement uie = CanvasHost.Child; int width = 800; int height = (int)((width / ...
0
votes
1answer
54 views

WPF image tooltip edge detection

I'm a bit new to WPF but I'm having an issue were I'm trying to place a tooltip over an image or button with a background image. Basically what I'm trying to do is I want the tooltip to only show up ...
1
vote
1answer
32 views

Image doesn't appear during debugging

Following problem: I just have an Image box on my window with following XAML Code: <Image x:Name="image1" HorizontalAlignment="Left" Height="100" Margin="261,161,0,0" VerticalAlignment="Top" ...
1
vote
0answers
80 views

Image doesn't display at runtime

Throughout the execution of my program, i download images to the debug location. I then set them to the source of images in my WPF form, but they don't show up. I noticed when I assigned the relative ...
0
votes
1answer
55 views

WPF: put an icon on a radWindow programatically

I want to put an icon on the top left of a radWindow programatically my code is like this RadWindow radWindow = new RadWindow(); radWindow.Header = "The header"; radWindow.Icon = new Image() ...
0
votes
1answer
75 views

Set an Image Source during Runtime

I'm a student - and we have a project to create a little game. What I'd like to make is a bar of 10 images (img0 .. img1 ... img9) (optional in an array containing images - not a must..). Anyway - ...
0
votes
1answer
106 views

How to read image dimensions at C# wpf - there is no dispose method for BitmapImage

With the way below i am able to read. But there is no dispose method so i am not able to delete the file later. So the below method is getting failed. I could not come up with a proper solution. ...

1 2 3 4 5 18