C# - Move A Rectangle Around A Canvas?

Sep 4, 2010

I have a canvas in the middle of my application with controls around it. I have a socket that recieves Points and saves them in a list.

I draw small 4x4 rectangles on the canvas for the number of points in my list.. say theres 4 points.. theres 4 rectangles.

I want to be able to move the rectangles when the points change with code.
is this possible without storyboards or any 'animation' class?

I have tried:

'cMap.Children.Remove(r)
'Dim nr As Rectangle = New Rectangle() With {.Width = 4, .Height = 4, .Name = "r" & P.Name, .Fill = Brushes.Red}

[Code].....

View 2 Replies


ADVERTISEMENT

How To Move Rectangle In Program

May 14, 2011

I am raw hand. I want a simple function, when I press a button, I change a Rectangle position and size. so the code is:

[Code]...

View 10 Replies

How To Move Rectangle Using Key Event

Jul 10, 2009

I am doing windows application in vb.net, now I want to move the rectangle using key event.

View 12 Replies

How To Draw Rectangle On Picture And Move Around

Nov 9, 2010

I want to Draw an Rectangle on a PictureBox and after that I must be able to move this Rectangle around. I have made now that I can draw a Rectangle on a Picturebox via MouseDown and MouseMove Events, but I dont know how to Move the Rectangle.

Private Sub PictureBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseDown
Try
If e.Button = MouseButtons.Left Then
cropX = e.X
cropY = e.Y
[Code] .....

View 1 Replies

Move A Rectangle Shape Using Arrow Keys

Aug 6, 2011

I am trying to move a Rectangle Shape using the arrow keys and i have done multiple codes and none of them work. Can anyone help me with the coding.[code]also I am not sure if the code goes in Form1_KeyDown or RectangleShape1_KeyDown

View 1 Replies

Resize Image [jpg, Png] Through Rectangle API With Mouse Move?

Jan 21, 2011

I using vb6.0.I want to load a image into a picture box and resize it in runtime through mouse.Image type is jpg or png.my logic is,

1. load image[jpg or png ] into picture box and draw a rectangle using rectangle API, according to image size.

2. resize rectangle through mouse and according to the size of rectangle change size of image.

View 3 Replies

Move The Rectangle To The Right By 1 Pixel Each Time The Timer1_tick Is Started?

Aug 28, 2009

Dim car As Graphics
x = 50
y = 100
'Dim myBrush As SolidBrush = New SolidBrush(myColor)

[code]....

I would like to move the rectangle to the right by 1 pixel each time the timer1_tick is started. At the same time, I would like to clear out the previous boxes after making a new one. This is to make the box looks as if it is moving to the right.

View 12 Replies

Draw A Rectangle Inside An Ellipse By Mouse Events Like Mousedown - Up - Move

Jan 2, 2010

How to draw a rectangle inside an ellipse by mouse events like mousedown,up,move

View 2 Replies

List(of Rectangle), Rectangle.offset(x,y) Doesn't Work?

Jul 26, 2010

i've got a little problem with List(on T) variables.

[code]...

It works perfectly fine. Does anyone know what the problem is?

View 2 Replies

Identify Subtriangle Within A Rectangle Given A Coordinate In That Rectangle?

Feb 22, 2010

Given a rectangle of width w and height h. and a coordinate x,y in that rectangle I would like to identify which triangle I am within.

i.e. the function should take parameters(x,y) and return a,b,c,d or a zero based number representing that triangle index i.e. (0=A,1=B,2=C,3=D) if they are in that order.

I think this would be something like >= the formula of the red line and >= the formula of the green line?

I'd like to implement this in VB.NET

View 3 Replies

Draw Rectangle Divided To Four Rectangle?

Dec 3, 2011

This code is to draw rectangle. How can I draw rectangle divided to four rectangle or more

e.Graphics.DrawRectangle(Pens.Coral, 50, 200, 30, 40)

View 11 Replies

Drawing Rectangle Inside Another Rectangle?

Jul 26, 2009

I'M creating a kind of photo viewer, and I cannot figure out how to orient the scroll buttons with the photos I want to draw because they all are different sizes.This is really hard to explain so please ask questions if you don't understand.I'M thinking if i could draw every photo on a single rectangle and then the scroll bars will position that rectangle up or down. but is there a way to make a rectangle inside another one so it only shows inside that rectangle?

View 10 Replies

C# :: WP7 : Can't Get Canvas.RenderTransform Value

Feb 6, 2012

I have about 3-4 canvas controls and each contains about 750-1200 paths.Users needs to make some transform to them and I use for that a global

Canvas SelectedCanvas;
Initially (in the constructor) SelectedCanvas takes the value of one my canvas controls.
SelectedCanvas = canvas1;

[code].....

View 1 Replies

Wpf :: Exporting Canvas To Xps Vb?

Apr 26, 2012

I tried to export my canvas to a file. First I tried to export it to a png and it worked fine, everything looks the same as on the canvas.After that I modified my code to export to a xps file.

Dim thePack As IO.Packaging.Package = IO.Packaging.Package.Open(path.LocalPath,IO.FileMode.Create)
Dim doc As New Xps.Packaging.XpsDocument(thePack)

[code]....

View 1 Replies

C# - Canvas With Ruler Control In .NET?

Mar 2, 2012

Is there a control or something similar to a canvas with a margin(ruler), like in MS Word,in .NET WPF or WinForms?

I need to place some custom elements inside that user can modify in that canvas.

View 2 Replies

Cannot Find The Canvas Control In .NET

Jun 2, 2011

I am trying to convert some old VB6 code to VB.NET. The VB6 uses a Canvas control, simply

Dim cv as Canvas

I cannot for the life of me figure out how to use the Canvas control in VB.NET (using VS2005). MSDN says it is in the System.Windows.Controls namespace, which doesn't seem to exist? All I see is System.Windows.Forms, which doesn't include the Canvas control.

View 2 Replies

VS 2010 Drawing On A Canvas With Wpf?

Jun 30, 2010

Finally took the plunge for wpf, all was going well until i needed to do a simple drawing on a canvas control (presume this is the right surface to use). First thing i noticed is that there is no paint event in wpf so i looked at a few others (Initialized, layout updated) at this point i looked under google and found very little on this. would anyone here have or know of a tutorial to allow this functionality? My application (a testbed) will draw an archery target within the canvas along with score numbers in the correct place as follows to do this it will need to draw several filled circles with black (or white) borders and text objects in the correct position. the locations and widths of the circles will be determined using a simple algorithm so my question is on the structure of paint events within wpf, are the commands the same as in gdi+?

View 3 Replies

Drawing Multiple Lines On A Canvas?

Jun 29, 2012

So I built myself a simple program to work out the kinks of drawing in my programs. I have a button that I press that when the textbox.text reads 1 it then draws a line of a specific height, color and position, the problem is when I click that button again it will crash informing me that...
"Specified Visual is already a child of another Visual or the root of a CompositionTarget."
[code..]

I know where the problem lies, its with the Canvas1.children.add(line), cause its telling me the line variable is already been used or in use on the canvas, I'm just unsure of how to turn that into a solution that will allow me to click the button a hundred times or more without being forced to MANUALLY make a hundred or more individual variables to store the line.

View 5 Replies

Capture Part Of A Canvas To Save As BMP / GIF?

Apr 5, 2009

I have an application that generates a replay of Air Traffic and I need to allow the user to capture parts of the canvas so it can be exported as a BMP of GIF. I did this in VB6, but not sure how to do it in WPF. I plan on drawing a rectangle around the intended capture area following the mouse till the user triggers the capture.

View 1 Replies

Wpf - Get Mouse Position On Canvas (But NOT On Window)?

Apr 17, 2011

I have a project in WPF 4 and vb.net 2010.

I have a canvas inside a window. The window is full screen, but the canvas is set to a solid 640x480 in the center of the window. I need to get the mouse position inside of the canvas, but NOT inside of the window. How do I do this?

View 1 Replies

C# - How To Send Canvas Image As Email Attachment

May 24, 2012

I convert a SVG to canvas using canvg to an image and then vb.net client side I convert the image to bytearray() and saved it to a folder on my server so I can attached by email :

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
Dim path = Server.MapPath("PDFs")
Dim fileNameWithPath As String = path + DateTime.Now.ToString().Replace("/", "-").Replace(" ", "-").Replace(":", "") + ".jpeg"
Dim fs As FileStream = New FileStream(fileNameWithPath, FileMode.Create)
Dim bw As BinaryWriter = New BinaryWriter(fs)
[Code] .....

This code works fine and it send the image. Actually I don't need to save this image to my server I just wanted to send it without saving, this is what I have done so far.
Protected Sub emailSend_Click(ByVal sender As Object, ByVal e As EventArgs) Handles emailSend.Click
Dim customerChoice As String = DropDownList1.Text
Select Case customerChoice
Case "pdf"
[Code] .....

View 1 Replies

Display Canvas Element Of HTML5 In WebBrowser?

Dec 21, 2011

How to display canvas element of HTML5 in Visual Basic .net 2010 webbrowser (I try in framework 2 and 4, WebBrowser version 2 and 4)? It seems that VS2010 not support new version of HTML. In Microsoft Web Browser - "AxWebBrowser" didn't work too. Any idea to make this thing work?

View 1 Replies

Save Canvas As Either A Jpeg, Bitmap, Or Gif File

Jun 15, 2009

I created a paint type program for signatures, and now I would like to save my canvas as either a jpeg, bitmap, or gif file, but I am unsure how to go about this. Here is my code,[CODE...]

View 4 Replies

WPF Brush Displays Negative Elements On Canvas

Apr 30, 2012

I'm making a drag and drop application and when I'm dragging an element inside the canvas the brush displays the element when the coordinates are negative this gives a weird resize in the brush witch also displays the negative elements.

How can I make the visual brush only draw the real size of the canvas, or the positive children of the canvas?

View 1 Replies

C# - How To Calculate Font Size Of TextBlock To Fill In Canvas

Feb 13, 2012

What I need is some formula to calculate font size of TextBlock for its owner - Let's say I have Canvas height 100.0 then which TextBlock font size should be to fill all space of the Canvas?

P.S. The main problem is that I scroll those TextBlocks horizontally...

View 2 Replies

Drawing A Line In Silverlight / Canvas Width Is Invalid

Mar 17, 2011

I'm trying to make a very simple Silverlight application.I want it to be full-screen, and I want to draw a line onto a Canvas.My problem is that the .Width and .Height of the canvas never seem to have a valid value. The website shows the canvas at 400x300 pixels or so, and when you click on it, it goes into Fullscreen mode.I want to use the Height and Width to find the usable space of the screen. I've tried adding events (thinking that the canvas wasn't yet ready to be used immediate after the full-screen line of code) but the LayoutChanged and Resized events don't seem to yield anything.

View 1 Replies

Wpf :: Why Canvas.SetTop Animation Doesn't Work Properly

Mar 17, 2012

I have this xaml:

<Canvas Width="75" Height="75">
<Button x:Name="button" Background="Olive" Canvas.Left="0" Canvas.Top="0" Width="75" Height="75" Click="button_Click"/>

[code].....

View 1 Replies

Creating A WPF Application To Draw A Straight Black Line On A Canvas

Aug 16, 2010

Under the MouseLeftButtonUp event handker store the first coordinates of the lines second endpoint. Then call the length method to obtain the distance between the two endpoints(the lines length). Fianlly display the line on the canvas and the line's length in the Length=Label. Below is the code I have so far. There are no errors, but when I run the application nothing happens.

Private Sub lineCanvas_MouseLeftButtonUp(ByVal sender As Object, ByVal e As System.Windows.Input.MouseButtonEventArg... Handles lineCanvas.MouseLeftButtonUp
Dim distance As Double
endPoint = e.GetPosition(lineCanvas)

[Code].....

View 2 Replies

Silverlight Project With Tabcontrol Hosting Canvas Objects : Can't Get Vertical Bar To Hide Even When Lots Of Room

Aug 11, 2011

Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my canvas.When I run my project my scrollviewer vertical bar is always showing even when there's more room vertically than needed for a scrollbar.

All I am trying to accomplish here is a min resolution of 1280x768 to be scrollable and anything bigger than that have the scrollbars hide. My laptop is only 768 tall, but my canvases were developed with 1280x1024 in mind. So I would like a way to set this up so that everyone can scroll or just see the canvas all at once depending on their resolution.

Anyone have any ideas why it is always visible? I've tried setting canvas width and height. I tried setting stretch on alignments on the outer grid. Saw both those tips while searching other issues similar to mine.

Some code:

<Grid x:Name="LayoutRoot" MinHeight="768" MaxHeight="1024" MinWidth="1024" MaxWidth="1280" Background="#FF6A6868" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.775*"/>

[code]....

....lots of child canvas items in my "Main Floor" canvas. Child canvas objects contain lots of path objects. None which are taller or wider than the main floor canvas width/height.

<sdk:TabItem Margin="0" Header="Mezzanine">
<Canvas x:Name="Upstairs" HorizontalAlignment="Left" Height="1000" UseLayoutRounding="False" VerticalAlignment="Top" Width="1280">

..another tab. Same deal with child canvas objects.

View 1 Replies

Move - Xcopy Equivlent - Copy And Move The Entire Contents Of A Directory To Another

Jan 6, 2012

how do i copy and move the entier contents of a directory to another ussing VB.net then also delete the files from there original directory?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved