0
votes
1answer
21 views

Drag treeview item to canvas in silverlight

In my application, I would like to allow user to drag item from a treeview to a canvas a generate a control for the dragged item. I have tried to use the PanelDragDropTarget to do that, but the canvas ...
0
votes
1answer
27 views

Drag and copy text from panel to canvas in silverlight

I am trying to drag item from treeview to a panel. The treeview item is a StackPanel consisting of an Image and a Label. How should i get the text in the Label when drag the treeview item into the ...
0
votes
1answer
30 views

Silverlight 5 - designing an editor (drag and drop)?

I am currently looking to build a workflow editor in Silverlight that will allow user to drag and drop couple of objects from toolbox and draw them on canvas, connect it with connectors - pretty much ...
0
votes
1answer
39 views

Silverlight application not funcitoning

I have made a silverlight application for drag and drop uploading. Now, this application works fine when I deploy it from local server. But whenever I deploy it from QA server (machine on the same LAN ...
0
votes
0answers
27 views

Cancel Drag Event when Mouse leaves window - Silverlight 5

When dragging an element arround a window everything's OK. but if I dragg an element and move the mouse outside the browser's window - release the LeftMouseButton and then re-enter with the mouse, the ...
0
votes
2answers
22 views

Adding items to below gridview when dropped on top gridview

On my main page, I have a button and telerik mainRadGridView. When I click my button, I get a popup which is divided it into two regions left and right. On left, I have a RadTreeView and on right, I ...
0
votes
0answers
88 views

Silverlight DragDropTarget: replace “drag shadow” with other element?

When using the Silverlight Toolkit's DragDropTarget, a snapshot of the item being dragged is shown under the cursor. Is it possible to replace this snapshot/drag shadow or disable it? Background: ...
1
vote
1answer
188 views

ItemDroppedOnTarget in DragDropTarget should have target element

I'm using DragDropListBoxTarget control from Silverlight Toolkit to support the drag and drop behavior. But I'm facing with a problem with this control. It's hard to get hold of target element on ...
0
votes
0answers
102 views

What is wrong with my Drag-Drop code … (Silverlight 4)

I have a drag/drop behavior for my RichTextBox in Silverlight 4, but i'm having a small snapping problem. I would like the user to be able to "grab" any border of the RichTextBox and drag/drop it. ...
1
vote
0answers
262 views

Silverlight ListBox Drag and Drop

I'm trying to implement drag and drop functionality between two telerik list boxes. I've done it using the following code Listbox 1 : <telerik:RadListBox x:Name="name1" SelectionMode="Multiple" ...
0
votes
0answers
134 views

Silverlight Accordion Item DragDrop

I have an accordion in which I have placed a treeview as content template. I need to do functionality of Drag-Drop in this control. Actually I need to drop treeview item( which I placed as content ...
1
vote
1answer
402 views

Drop event not firing for canvas/StackPanel in Silverlight

XAML <Grid x:Name="LayoutRoot" Background="White"> <Canvas x:Name="VideoCanvas" Width="800" Height="600" AllowDrop="True" Background="RosyBrown" HorizontalAlignment="Center"> ...
0
votes
0answers
61 views

How to initiate dragObject in WP7 silverlight?

I use this for dragging and dropping an image: MouseDragElementBehavior dragObject = new MouseDragElementBehavior(); When I make some operation during the runtime before dragging the image, I don't ...
0
votes
0answers
100 views

Disable dragging for some time in WP7 Silverlight?

I'm using MouseDragElementBehavior to drag and drop an image. I need to stop dragging for some time so I'm using dragObject.Detach(); for that purpose. But I get an error when that statement is ...
0
votes
0answers
76 views

Silverlight - Telerik : e.RelativeDragPoint returns wrong values sometimes

I'm working on a Drag/Drop application that is supporting Telerik, on the OnDragInfo method, I do the following : private void OnDragInfo(object sender, DragDropEventArgs e) { ...
0
votes
1answer
120 views

Folder/files interface in XAML, proper control choice?

Here is interface that I want to achieve: Basically, this is 1 level deep structure with folders and files inside folders. Screenshot that you see is my attempt doing this with ItemsControl and ...
4
votes
1answer
322 views

Wrap-Panel reording items using drag and drops

I need to change position of items in WrapPanel (or stack-panel with horizontal orientation) using dragging when user touches with it. I tried MouseDragElementBehavior, but it changes position for ...
0
votes
0answers
267 views

Drag Drop an Image in a Canvase in WP7?

I use the following code to drag-drop an image in WP7 Silverlight: using Microsoft.Expression.Interactivity.Layout; using System.Windows.Media.Imaging; namespace MapTest { public partial class ...
2
votes
1answer
365 views

Drag & drop folders in Silverlight App

I have a silverlight upload control. It handles drag&drop for files, quite good. Users can drag multiple files to the control, and it will upload them. BUT, I cannot get this to work with ...
0
votes
0answers
80 views

drag more many elements in Silverlight - Telerik

I'm working on a tree of nodes on Silverlight, and I'm trying to make a selection area to select multiple nodes and move (drag) them around at once, I'm using Telerik To apply the Drag-Drop thingy, ...
0
votes
1answer
218 views

Drag from one user control and drop into another user control in Windows Phone 7

I am trying to create two user controls in Silverlight using the Windows Phone SDK 7.1. I would like to be able to drag from one control and drop into the other control (or at least receive the event ...
1
vote
1answer
362 views

Dragging item from DataGridDragDropTarget to Label

I'm using the ListBoxDragDropTarget from the Silverlight Toolkit (April 2010) with SL 4. I want to drag items from the list box onto a Label and handle the drop event there. However it seems a bit ...
0
votes
2answers
259 views

Best method to find controls under a dropped usercontrol

I'm trying to implement a drag-drop function to a usercontrol. I've managed to get this working properly with the use of google, however, when dropping a control I wish to find every similar type ...
1
vote
0answers
1k views

Drag and Drop functionality for Canvas in Silverlight 5

i'm working on a project in Silverlight 5, which i have implemented in WPF some months ago. I thought "huh, i will port it in some days..". Wrong :) To my problem: I have a listbox and 2-3 ...
1
vote
1answer
173 views

suggestions on technology choice for a specific rich/thick client app

I have a django site where I'm thinking about making a rich/thick client app to allow the user to do operations that would otherwise be really difficult to otherwise. some of the requirements would ...
0
votes
1answer
231 views

How to make a Silverlight control that can be dragged and clicked?

I have a user control which can be reduced to a small icon (e.g. a small rectangle). Then I want that icon to be draggable and I also want my control to be maximized if I click on the icon. I tried ...
0
votes
0answers
144 views

Make an object follow another object

I am trying to create some kind of a window or a toolbox which can be dragged by its header part, just like any window. For some reason, it doesn't seem to work for me. The header moves but the body ...
0
votes
0answers
225 views

file drop does not work on MacOSX safari silverlight 4 / dragenter and dragleave, however, do

When I drag a file into the application (on my macbook air) the silverlight function gets fired. However when I release the file in the application the application crashes. Here's the javascript code: ...
2
votes
1answer
292 views

Silverlight 4 drag-drop not working in OOB mode (under SL5 RC)

I added basic file drag drop to a Silverlight 4 OOB app and found it always gave the no-drop cursor. If I turn off OOB mode on the same app and found drag drop of files works fine in the browser. ...
0
votes
0answers
217 views

silverlight TreeView

Hi I would like use TreeView control in my app but IÂŽam not satisfied with silverlight toolkit treeview. I can find any valuable example how handle Drag&Drop files from desktop and between each ...
1
vote
0answers
459 views

Datagrid column header click and drag-and-drop

I want to be able to run a command when a datagrid column header is clicked. The classic way is to set column header style with a button. But doing it so causes loosing ability to reorder columns. ...
7
votes
3answers
831 views

I want to drag an image from a Silverlight UIElement and drop it on the users Desktop or Windows Explorer

I have a Silverlight control containing an image. I want the user to be able to drag the image out of the Silverlight application and drop it anywhere they would be able to drop an image. For ...
2
votes
1answer
159 views

Silverlight toolkit - intercepting drag start

I can't find a way to intercept the beginning of the drag operation in SLToolkit; I need that in order for my custom controls to indicate the regions where the item could be dropped. Unfortunately, ...
0
votes
1answer
111 views

Is it possible to export Silverlight canvas to HTML with scripts

In one of our application we have to implement item drag/drop functionality on the page and later export that page to HTML along with JQuery and CSS. I would like to use Silverlight as my ...
0
votes
1answer
330 views

Creating a Silverlight, drag & drag enabled query builder

what would be the best components to create a query builder? I imagine I'll need some sort of grid control. 30x30 cells perhaps. I would also love to have a snap-to-grid functionality as well. I'll be ...
2
votes
2answers
1k views

How to make PanelDragDropTarget act only as a target and not as a source?

I created a new solution. I added a link to System.Windows.Controls.Toolkit to my Silverlight project and wrote this code: XAML: <UserControl x:Class="SilverlightApplication4.MainPage" ...
0
votes
1answer
615 views

Silverlight DragDropTarget - just copy, not move

I'd like to ask, how can I in Silverlight just copy an item with drag&drop, not move, if I'm using the DragDropTargets? I've fount that: Silverlight Toolkit Drag Drop (Part 2): Customizing Drag ...
1
vote
1answer
479 views

TreeViewDragDropTarget doesn't work

Silverlight, toolkit I'm using the TreeViewDragDropTarget. Usually, when you drag an item and move it over an another item, the selected item's up-down arrow changes to right arrow. In my case it ...
0
votes
1answer
534 views

Silverlight Toolkit - DragDrop StackedColumnSeries Chart

I have a Stacked Column Chart from the Silverlight Toolkit from April 2011. I wish to select and drag one layer from a stack into a regular column chart for details. Is this possible? I can handle ...
2
votes
1answer
167 views

Multiple ListBoxDragDropTargets on a page causes poor performance

I'm working on a Silverlight application in which a user needs to be able to drag an item from a single source ListBox and drop it into any of a significant number of target list boxes. I have this ...
0
votes
1answer
176 views

Implementing Drag and Drop similar

[Situation] I have a custom userControl (Basicly a iamge with some text beneath it). In my program I add two of these and implement a drag method by public partial class CustomItem : UserControl { ...
2
votes
1answer
1k views

Drag and drop in WP7 for silverlight

I would like to have a way to drag some images that are displayed on my silvelight phone page to a specific location (for example a rectangle) on the same page. How can I do this ? Thanks in advance ...
0
votes
0answers
531 views

Silverlight/XAML - How to get parent name of element after MouseLeftButtonUp event?

I setup simple chessboard (i have Hardcoded it in XAML) like this: <Border Name="s0" Grid.Column="0" Grid.Row="7" Background="Black"> <Image ...
0
votes
1answer
148 views

Creating a Drag n Drop Designer so users can create a Form?

I'd like to create a way for my users to create Forms so they won't have to ask me to do it. Unfortunately, I am in dark, unknown territory. I envisioned it as the following:User can drag pre-made ...
5
votes
2answers
1k views

How to reorder items by Drag and Drop inside a big vertical list while maintaining vertical scrollability?

There are lots of tips around Drag and Drop on the Windows Phone, but I am currently unable to put everything together. So I hope you can give me some advice to reach my goal: Display a scrollable ...
1
vote
2answers
3k views

Silverlight 4 ListBoxDragDropTarget drop onto ListBoxItem

I have 2 list boxes (ListA and ListB) that display data from different entities (EntityA, EntityB). These entities are related - EntityA has a property of a collection of EntityB. I want to be able ...
1
vote
1answer
360 views

Drag-Drop a Control between multiple canvas

Greetings, I need to be able to drag and drop items that's contained in a Border. So far I managed to find the border on the MouseLeftButtonDown event. Now I wish for the item to move with the mouse ...
1
vote
1answer
558 views

AllowDrop of *DragDropTarget not available in latest Silverlight toolkit 4

I know this has been discussed a number of times but I've been through all posts on the internet and nothing helped solve my problem. I am making use of PanelDragDropTarget but can't get it to build ...
1
vote
1answer
426 views

Silverlight drag n drop element hides when outside of ListBox

I implemented a drag and drop of an image from a Grid to another Grid using built-in MouseDragElementBehavior class. Then I needed to use a bit more complex layout for the source items so used ListBox ...
1
vote
1answer
431 views

TreeViewDragDropTarget and Silverlight bounds problem

When using TreeViewDragDropTarget when user drags an item outside of browser window and releases button outside of the appliaction and after it returns to application the drag indicator is still ...

1 2