Tagged Questions
0
votes
0answers
21 views
I can't implements DoDragDrop Operation on second dialog
Well I struggled this problem a lot.
I tried to do a simple drag and drop operation, so I did it in the main form(the one that operate from the Main thread) and it was as easy as it sounds.
the code ...
-1
votes
0answers
60 views
Drag and drop images with rotation in .NET / C#
I want to write a .NET / C# form app where i can drag and drop images from a toolbar and i should be able to rotate each image. Can anybody provide me an example or link ? or guide on how to achieve ...
2
votes
1answer
18 views
Dragging Virtual Files Into Microsoft Office Communicator 2007
I've been trying to make an application that will allow me to drag files into an IM conversation window in Microsoft Office Communicator with no luck. I implemented / tried these two articles on ...
1
vote
0answers
33 views
Touch DragDrop - Blocks all inputchanges
I'm trying to handle a touch drag and drop operation with DragDrop.DoDragDrop. As I read in this post (I, too, can't use the surface drag framework for this) I also have to implement a ...
0
votes
1answer
205 views
VB.NET How to drag a file from windows explorer to specific form? [duplicate]
In my project, user has to define few paths. By clicking a button, a window opens where you can drag and drop file/folder from windows explorer to this window. Then my application will take that path ...
0
votes
2answers
225 views
Dragging files into rich textbox to read text in file
I'm having a problem with dragging and dropping files onto a richTextBox, every time I drag a text file onto it, it turns into a picture of the text file with its name under it. Double click the file ...
1
vote
1answer
135 views
Drag and drop mouse capture
I got a Panel and inside it some drag and drop operations of custom controls, when the dragging begins I do panel.Capture = True; for the panel to fire the proper events even when the user releases ...
1
vote
2answers
110 views
Listbox Click and Drag
I have a Listbox a MainControl and 4 PreviewControls. I would like when i click an item from the listbox that the mainControl changes (This happens). But i would like to add a dragg behavior to the ...
0
votes
1answer
32 views
Drag and Drop element to new area
I'm working on a hobby project to strengthen my application development skills. There's one particular piece that's giving me some trouble.
My project is a character generator for D&D. Within ...
0
votes
0answers
23 views
How to pass object through DragandDrop knowing only interface?
There are many objects
Implement one interface
How to pass object through DragandDrop knowing only the user interface?
Public Class test_1
Implements I_NAME
Public Property Name As String ...
0
votes
0answers
279 views
Drag drop items from one listbox to another listbox and saving its state
I am using MVC4 with Razor view. I've created a view with two ListBoxes. I am displaying data in first ListBox. I am able to drag & drop items between both ListBoxes but i want to save its state ...
0
votes
1answer
84 views
TransformToVisual to element in a different visual tree within the same window
This is related to some custom drag and drop functionality I am implementing.
Everything was working very well until I threw a ContentPresenter into the mix.
I have a Window which contains a ...
0
votes
1answer
134 views
Add drag behavior to a form with FormBorderStyle set to None [duplicate]
Possible Duplicate:
C# - Make a borderless form movable?
If I set my form's FormBorderStyle to None, I lose the drag behavior of the form, as expected.
I've added a custom bar to the top ...
0
votes
1answer
177 views
Implement Window Drag and Drop WPF
I had to create a new Window from scratch using MahApps.Metro like this. This creates for you a borderlesss Window without the standard Window buttons (Close, Restore or Minimze).
I implemented these ...
0
votes
1answer
237 views
Drag and Drop Multiple Items from ListBox
I have a ListBox and I want to be able to click on multiple items and then drag the string from each of the selecteded items. I can get it working fine for a single object. I just can't get it working ...
0
votes
1answer
53 views
How to find the origin of a DragDrop event
I have found this CodeProject article on how to get data when dragging attached files from Microsoft Outlook into a .net control.
When dragging other types of data into the control, however, the code ...
2
votes
0answers
141 views
how to drag and drop PanelControl to another PanelControl on XtraForm in devexpress
I have my application in c#(Visual Studio 2010) using devexpress 12.1 . I have one XtraForm containing Two Panel. In first ControlPanel (Panel1) there are some components like edit text, check box, ...
1
vote
1answer
94 views
Compare winfroms control positions when dragging
I have a small program that contains one button called button1and one panel called panel1which has a color green. So far the program allows you to drag button1 around the form. I am trying to expand ...
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
93 views
A Generic Drag and Drop Handler for .net WinForms
I have an application that I inherited and would like to improve. One area that I can cut a lot of code is Drag and Drop handling. In that, the application handles drag and drop of same type of ...
0
votes
1answer
448 views
Dragging and Dropping in WPF
I've got a TreeView and Canvas in my WPF application. I'm trying to implement functionality whereby users can drag a TreeViewItem and a method should be called when the user drops on the canvas, ...
0
votes
1answer
109 views
Dragging a dynamically created TreeViewItem to a canvas
I've got a TreeView in my WPF application, with a canvas right next to it.
I would like to implement functionality whereby the user is able to drag a TreeViewItem, and drop it in the canvas (where a ...
0
votes
0answers
208 views
implementing DragEventArgs with Windows Forms Drag and Drop
I have a container control that holds multiple child control containers for module-based drag-and-drop functionality within a Windows Forms application. I need to deliver some custom serialized ...
0
votes
0answers
105 views
Dragging and dropping a row from DataGrid to a Frame/StackPanel
I have a DataGrid that contains a single text column and there is a Frame next to it. This is the XAML:
<DataGrid AutoGenerateColumns="False" Height="330" MouseMove="Row_Move" ...
0
votes
0answers
29 views
Need some help implementing Drag&Drop [duplicate]
Possible Duplicate:
Drag and drop example?
I have a problem implementing drag and drop operations. I searched this site and more, but couldn't find a good example how to implement it.
My ...
1
vote
2answers
94 views
Drag threshold aware dragging in Windows Forms
Dragging from list and tree views has the nice property that it won't start dragging before you have moved the mouse a minimum distance - the drag threshold. The drag threshold is controlled by the ...
0
votes
0answers
66 views
MMC How to dragdrop from result pane custom view to scope node
My application is installed in MMC. It was originally developed in C++, now I have extended one of the nodes with a MMC 3.0 C# node. However I am not able to drag drop items from the winforms listview ...
1
vote
1answer
462 views
DragDrop between 2 listboxes which contain objects (Winforms)
I have 2 listboxes which contain items of a specific class( with the usage of DisplayMember).
Now I want to implement Drag and Drop between these 2 listboxes.
At the moment I have no idea, how to ...
1
vote
1answer
190 views
Drag images from Firefox to my application
I can drag and drop images from Firefox to Windows Explorer and by that save the image. Can I somehow do the same in my own application, that is drag an image from Firefox to some part of my ...
1
vote
0answers
82 views
.net drag file from device and copy to local hd
im using this code to capture dragged files into my form and copy them to a specific folder(i have left the copy process out but im using - FileSystem.CopyDirectory(copyFileDetails.Dir.FullName, ...
4
votes
1answer
325 views
Retrieving contents of DragDrop EventArgs for an Embedded MSG attachment from Outlook is dragged onto a control
I have an application where files from the file system, emails from Outlook, or attachments from Outlook are dragged and dropped and the code then saves these in file system folders for uploading into ...
5
votes
1answer
1k views
How to do Drag and Drop in WPF in my “Metro Style” app?
I'm trying to create some primitive imitation of the Windows Metro style application. What I've done so far is adding new tiles to the window in ObservableCollection, I can change their color and ...
0
votes
1answer
436 views
Drag and Drop into WebBrowser
I'm using .Net 4.0 and I have a TreeView from which I want to drag items into embedded WebBrowser control, but WebBrowser does not support events like DragEnter and DragDrop.
I've tried to listen to ...
0
votes
1answer
201 views
DragMove() and MouseDragElementBehaviour won't work in the same window?
I am creating a WPF/xaml application with
WindowStyle="None"
So because of this I am having to use
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
{
...
0
votes
1answer
494 views
How can I drag and drop a picture from Explorer onto a WPF control?
I searched far and wide looking for the answer to this but nothing seems to give a clear example of how to do it!
I just want to be able to grab a picture from the desktop/explorer and drag and drop ...
0
votes
1answer
52 views
WindowsExplorer Drop Get Files and Files From Folders
From what I can tell there is not way of telling if the drop was a file or a folder.
if (fi.Extension == "") is not sufficient as that matches a directory and also a file with no extension.
The only ...
1
vote
1answer
164 views
How do make a manually arrangeable listview in WinForms?
In my application's main window I'd like to have an interface very similar to that of Windows Desktop. There would be a bunch of icons with texts and you can drag them around and position them as you ...
2
votes
1answer
421 views
.NET - UserControl Drag & Drop - Child Controls
I have FlowLayoutPanel and UserControl's on it with drag & drop reordering. This sort of works. But the problem is that child controls prevent dragging of the actual parent UserControl.
So my ...
1
vote
1answer
330 views
Obtain Mail Item details from .MSG attachment
Is it possible to obtain Outlook Mail Item details by dragging and dropping a single attachment from a .MSG file onto a C# application? My application currently separates the contents of a .MSG when ...
0
votes
1answer
177 views
How to drag remote item from WPF onto desktop?
In FileZilla, I can select a file on a remote site and drag it onto my desktop. After I 'drop' the file on my desktop, FileZilla starts streaming the file.
I want to achieve similar functionality ...
4
votes
2answers
626 views
Drag'n'drop to a Windows form issue
I have, what should be, a simple question on drag'n'drop. I have a fresh Win Form project where the form has set to allow drops using AllowDrop = true. Should also mention that I am running Windows 7 ...
1
vote
1answer
286 views
How to avoid deselecting text on Winforms TextBox when clicking on selected text?
I would like to implement a drag&drop operation from TextBox to another control.
The problem is that when you select some part of text and then click on the TextBox text is deselected. Therefore ...
1
vote
3answers
75 views
What would be a good design to avoid methods with large number of parameters?
I am having a bit of a design issue. What I am working on is a drag and drop in a C# desktop app. I am using the .NET treeview control and a third party grid (not important). I am using this drag ...
0
votes
1answer
103 views
Unusual dragging issue in C# WinForm
I've got a PictureBox which can be dragged by the user. When the dragging is done, the component appears to move continuously from side to side, like vibrating.
6
votes
1answer
494 views
Receiving an image dragged from Web Page to WPF window
I want my WPF application to be a drop target, and I want to be able to drag an image from any web page.
When an image is dragged from a web page, apparently it is in the "DragImageBits" format, ...
0
votes
0answers
135 views
.Net Drag and Drop Table
Does anyone have a .NET equivalent of this: http://www.redips.net/javascript/drag-and-drop-table-content/ ? I'm trying to port this code over, but I can't seem to get it to work. The project I'm ...
2
votes
2answers
561 views
Event fired in dragdrop source when dragdrop is completed or cancelled
I know that there is usually a DoDragDrop method that starts a drag and drop operation. And that there are events (such as DragEnter, DragOver, DragDrop, DragLeave) that can be handled on the target ...
1
vote
1answer
109 views
Best approach drag drop upload .NET
I have been trying to figure out a reliable solution in provide a drag-drop-upload section on web application utilizing .NET. I've experimented with Silverlight 4, but it's not possible to use this ...
2
votes
1answer
431 views
IDataObject drag/drop issue, casting from __ComObject
I'm having an issue involving the following scenario, Application A has a DataGridView, from which objects are selected. They are dragged into a DataGridView inside Application B, and the objects are ...
0
votes
1answer
204 views
HotTracking in TreeView is not working with Drag&Drop
I have a simple TreeView with HotTracking Property set to True. It works when I move the mouse over an item. But it doesn't work when I use Drag&Drop and Drag something over a TreeView Item. Is ...



