User Groky - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T02:40:47Zhttp://stackoverflow.com/feeds/user/6448http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807657/wpf-usercontrol-or-datatemplate/1808222#18082221Answer by Groky for WPF, UserControl or DataTemplateGroky2009-11-27T11:32:23Z2009-11-27T11:32:23Z<p>Personally, I create a UserControl and then make a DataTemplate from that. This has to following advantages, to me:</p>
<ol>
<li>Can use across windows, only by re-defining the DataTemplate part.</li>
<li>Can use code-behind (I know, I know, but some things are just so much easier using code-behind, I don't see the point in unnecessary complicating my code based on dogma).</li>
<li>XAML designer support.</li>
</ol>
http://stackoverflow.com/questions/1756541/creating-a-com-automation-server-in-c3Creating a COM Automation Server in C#Groky2009-11-18T14:51:31Z2009-11-19T03:13:41Z
<p>I currently have a .NET class library written in C# that exposes its functionaility via COM to a C++ program (pre-.NET).</p>
<p>We now want to move the library out-of-process to free up address space in the main application (it is an image-processing application, and large images eat up address space). I remember from my VB6 days that one could create an "OLE automation server". The OS would automatically start and stop the server .exe as objects were created/destroyed. This looks like the perfect fit for us: as far as I can see nothing would change in the client except it would call CoCreateInstance with CLSCTX_LOCAL_SERVER instead of CLSCTX_INPROC_SERVER.</p>
<p>How would I create such an out-of-process server in C#? Either there is no information online about it, or my terminology is off/out of date!</p>
http://stackoverflow.com/questions/280690/alternative-to-httplistener0Alternative to HttpListener?Groky2008-11-11T11:49:23Z2009-11-13T14:11:02Z
<p>Hello,</p>
<p>I'm developing an application that is so far using HttpListener to provide a small standalone http server. However, I've recently discovered that HttpListener needs to be run as Administrator, which is not always going to be possible.</p>
<p>What would the best alternative be? I need http GET and POST, both of which are not simply reading/writing files on the filesystem, they need to run custom .Net code.</p>
<p>My research so far has brought up Cassini, but as far as I can tell, I would have to write a custom version. Is there anything else? In partiular something with the same interface as HttpListener, but that does not require Administrator privileges would be amazing!</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/63661#6366121Answer by Groky for Hidden Features of C#?Groky2008-09-15T14:58:26Z2009-11-12T01:53:37Z<p>I couldn't see this looking above - one this I didn't realise you could do until recently is call one constructor from another:</p>
<pre><code>class Example
{
public Example(int value1)
: this(value1, "Default Value")
{
}
public Example(int value1, string value2)
{
m_Value1 = value1;
m_value2 = value2;
}
int m_Value1;
string m_value2;
}
</code></pre>
http://stackoverflow.com/questions/1708428/displaying-content-only-when-listviewitem-is-selected/1709737#17097370Answer by Groky for Displaying Content only when ListViewItem is SelectedGroky2009-11-10T17:32:11Z2009-11-10T17:32:11Z<p>If you're using the MVVM pattern, you should bind your button to an ICommand such as the DelegateCommand from the <a href="http://wpf.codeplex.com/wikipage?title=WPF%20Model-View-ViewModel%20Toolkit" rel="nofollow">MVVM Toolkit</a>. That way the button will use the command's CanExecute() state to decide for itself whether it should be enabled or not.</p>
http://stackoverflow.com/questions/1701895/how-do-wpf-markup-extensions-raise-compile-errors1How do WPF Markup Extensions raise compile errors?Groky2009-11-09T15:49:01Z2009-11-09T19:12:47Z
<p>Certain markup extensions raise compile errors. For example StaticExtension (x:Static) raises a compile error if the referenced class cannot be found. Anyone know the mechanism for this? Is it baked into the XAML compiler or is such functionaility available to custom markup extensions?</p>
<p>EDIT: mfeingold below suggested that I need to look into the IVsErrorList interface, but I can't immediately see how that would help someone white a markup extension that generates a compile-time error. Any examples?</p>
http://stackoverflow.com/questions/1701759/how-to-correctly-add-action-and-func-delegate-types-to-c2-0/1701840#17018401Answer by Groky for How to correctly add Action and Func<> delegate types to C#2.0?Groky2009-11-09T15:40:56Z2009-11-09T15:46:44Z<p>If you do a "Go to Definition" in VS on an Action<> or Func<> declaraion, you will see how to declare them. For example Action is declared like this:</p>
<pre><code>public delegate void Action<T>(T obj);
</code></pre>
<p>Edit: to check the version of .NET i don't think there's anything predefined. However, you can define a build configuration for each target version and define a symbol there.</p>
http://stackoverflow.com/questions/1694626/incorrect-item-gets-selected-when-starting-a-drag-on-an-item-in-an-itemscontrol0Incorrect item gets selected when starting a drag on an item in an ItemsControlGroky2009-11-07T22:13:28Z2009-11-08T09:31:53Z
<p>I am implementing a DragDrop framework for WPF (which incidentally you can find <a href="http://code.google.com/p/gong-wpf-dragdrop/" rel="nofollow">here</a>).</p>
<p>I have a problem in that when the user MouseDowns on an ItemsControl we don't know immediately if they intended to click the item to select it, or to begin a drag. If the user clicks an item and then quickly moves the cursor, another item other than the clicked item can become selected before we determine that a drag has started (especially if clicking on the item freezes the UI for a short time to load data etc).</p>
<p>I think this problem didn't exist in WinForms as dragging the mouse with the button held down didn't cause another item to become selected - the selection was made only on the item on which the click occurred.</p>
<p>In the PreviewMouseDown event I can set the e.Handled property to prevent another item becoming selected, which works fine if the user actually <em>did</em> intend to start a drag, but then they can't actually select the item.</p>
<p>Anyone know how to handle this?</p>
http://stackoverflow.com/questions/204289/a-working-dragdrop-enabled-listview-implementation-for-wpf/1693125#16931251Answer by Groky for A working Drag&Drop enabled ListView implementation for WPF?Groky2009-11-07T14:06:26Z2009-11-07T14:06:26Z<p>I've been struggling with WPF drag and drop for a while now and decided to just bite the bullet and create a framework for it.</p>
<p>You can find the code here: <a href="http://code.google.com/p/gong-wpf-dragdrop/" rel="nofollow">http://code.google.com/p/gong-wpf-dragdrop/</a></p>
<p>I’d love to get some feedback on this, hopefully it will solve your problem!</p>
http://stackoverflow.com/questions/1689279/c-events-without-arguments-how-do-i-handle-them/1689299#16892991Answer by Groky for C# Events without arguments. How do I handle them?Groky2009-11-06T18:04:08Z2009-11-06T18:04:08Z<p>You can just write:</p>
<pre><code>public event EventHandler Selected;
</code></pre>
http://stackoverflow.com/questions/1673332/how-to-place-a-long-grid-in-a-wpf-layout-container/1673349#16733490Answer by Groky for How to place a long Grid in a WPF Layout Container?Groky2009-11-04T11:57:40Z2009-11-04T11:57:40Z<p>Make sure your Grid.ColumnDefinition or Grid.RowDefinition's Width or Height is not set to Auto. If you set it to a fixed size or a star size then the row/column should not resize.</p>
<p>If you're still having problems a code sample would be useful.</p>
http://stackoverflow.com/questions/1444472/windows-explorer-control-for-wpf/1670417#16704170Answer by Groky for Windows Explorer control for WPF?Groky2009-11-03T21:59:19Z2009-11-03T21:59:19Z<p>I have written a WinForms library that might help. It's not WPF but you can host it in a WPF application. </p>
<p>You can find the library at: <a href="http://gong-shell.sourceforge.net/" rel="nofollow">http://gong-shell.sourceforge.net/</a></p>
http://stackoverflow.com/questions/1253757/use-windows-explorer-in-net-code/1670393#16703931Answer by Groky for Use Windows Explorer in .NET code?Groky2009-11-03T21:55:20Z2009-11-03T21:55:20Z<p>I have written a library that might be able to help you. You could use the controls provided by the library, or if you don't want to do that, looking through the code may give you an answer. It's now LGPL licenced so you can use it in commercial products. It will also work on all versions of Windows since 98.</p>
<p>You can find the library at: <a href="http://gong-shell.sourceforge.net/" rel="nofollow">http://gong-shell.sourceforge.net/</a></p>
<p>Please let me know if this helped!</p>
http://stackoverflow.com/questions/1669587/sending-data-from-view-to-viewmodel-with-command-binding/1669675#16696752Answer by Groky for Sending data from view to viewmodel with command bindingGroky2009-11-03T19:40:18Z2009-11-03T20:11:54Z<p>I usually expose a CollectionView from the view model and set the IsSynchronizedWithCurrentItem property on the ItemsControl displaying the list in the view. Then when the command is executed, I can inspect the CollectionView.CurrrentItem propety to see what is currently selected.</p>
<p>EDIT: This answer addresses the first question in your, um, question. Rather than <strong>your view</strong> sending the currently selected item to the ViewModel, the <strong>ViewModel keeps track of the currently selected item</strong>. So using this technique you don't need to work out how to send that information.</p>
<p>Something like this in your view model:</p>
<pre><code>class ApplicationViewModel
{
// Exposes a list of ShipmentViewModels.
public CollectionView Shipments { get; private set; }
// A DelegateCommand or similar, that when executed calls AddPallet().
public ICommand AddPalletCommand { get; private set; }
void AddPallet()
{
ShipmentViewModel shipment = (ShipmentViewModel)Shipments.CurrentItem;
shipment.Pallets.Add(new PalletViewModel(...));
}
}
</code></pre>
<p>And then this in your xaml:</p>
<pre><code><ListBox ItemsSource="{Binding Shipments}" IsSynchronizedWithCurrentItem="True"/>
<Button Command="{Binding AddPalletCommand}>Add Pallet</Button>
</code></pre>
<p>This way you can also track the selection of the Shipments collection from your ViewModel and update the command's CanExecute state.</p>
<p>Does that help any?</p>
http://stackoverflow.com/questions/1667406/mvvm-mediator-multiple-instances/1668823#16688230Answer by Groky for MVVM Mediator multiple instancesGroky2009-11-03T17:15:12Z2009-11-03T17:15:12Z<p>I don't know how your particular implementation of the mediator pattern works, but in mine you can send more information than just strings.</p>
<p>For example:</p>
<pre><code>public MyView() {
Mediator.Register<CloseWindowMessage>(message =>
{
if (message.ViewModel == DataContext) Close();
});
}
</code></pre>
<p>and in the ViewModel:</p>
<pre><code>public SomeMethod() {
Mediator.Notify(new CloseWindowMessage(this));
}
</code></pre>
<p>In this example, the ViewModel passes itself as a parameter to the view. The view can then check that the message is being sent from its view model.</p>
http://stackoverflow.com/questions/1667888/wpf-mvvm-dialog-example/1668772#16687720Answer by Groky for WPF MVVM dialog exampleGroky2009-11-03T17:09:16Z2009-11-03T17:09:16Z<p>The way I do this is using the mediator pattern also. When the ViewModel wants to show a dialog, it sends a message which is picked up by the application's main window. The message contains an instance of the ViewModel used by the dialog.</p>
<p>The main window then constructs an instance of the dialog window, passes the view model to it and shows the dialog. The result of the dialog is passed back to the caller in the original message.</p>
<p>It looks something like this:</p>
<p>In your view model:</p>
<pre><code>DialogViewModel viewModel = new DialogViewModel(...);
ShowDialogMessage message = new ShowDialogMessage(viewModel);
_messenger.Broadcast(message);
if (message.Result == true)
{
...
}
</code></pre>
<p>In the main window codebehind:</p>
<pre><code>void RecieveShowDialogMessage(ShowDialogMessage message)
{
DialogWindow w = new DialogWindow();
w.DataContext = message.ViewModel;
message.Result = w.ShowDialog();
}
</code></pre>
<p>I hope this is enough to give you the idea...</p>
http://stackoverflow.com/questions/1667814/bind-image-source-according-to-boolean-without-a-converter/1668080#16680803Answer by Groky for Bind Image.Source according to Boolean without a converter?Groky2009-11-03T15:33:44Z2009-11-03T15:33:44Z<p>You can create a style on the Image which uses a DataTrigger to swap the image source depending on a binding. In this example the image changes depending on the value of a boolean called simply "Value". </p>
<pre><code> <Image Width="16">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Style.Triggers>
<DataTrigger Binding="{Binding Value}" Value="False">
<Setter Property="Source" Value="Resources/image1.png"/>
</DataTrigger>
<DataTrigger Binding="{Binding Value}" Value="True">
<Setter Property="Source" Value="Resources/image2.png"/>
</DataTrigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
</code></pre>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf3Missing features in WPFGroky2009-10-14T16:30:20Z2009-10-15T08:30:00Z
<p>I have been using WPF for a while now, and while I'm finding it excellent generally, I find it is still missing a number of features. I would like to use this question to compile a list of the most wanted WPF features, and hopefully provide some workarounds.</p>
<p>Please only post one feature per reply so that people can vote. Maybe MS are listening?</p>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf/1567602#15676020Answer by Groky for Missing features in WPFGroky2009-10-14T16:53:07Z2009-10-15T08:30:00Z<p>GridSplitter's behaviour is useless.</p>
<p>If you drop a GridSplitter into a Grid it's behaviour is completely useless unless you set a bunch of properties on it.</p>
<p>By default a vertical GridSplitter between two columns will make <strong>both</strong> columns smaller when dragging right, and both columns larger when dragging left. <strong>Who <em>ever</em> in the history of the GUI wanted this behaviour?</strong> </p>
<p>You'd likely want a grid splitter to do one of two things, resize rows or resize columns. That's a 50% chance of the default behaviour being right. But by default it does neither.</p>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf/1570997#15709970Answer by Groky for Missing features in WPFGroky2009-10-15T08:20:48Z2009-10-15T08:20:48Z<p>Drag and drop hasn't progressed since I started programming Windows UIs back in the day using Visual Basic 3. It would nice to have a xaml-friendly and mvvm-friendly drag and drop framework. Something similar to ICommand where the View could call into a binding on the ViewModel to handle drag and drop.</p>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf/1567550#15675500Answer by Groky for Missing features in WPFGroky2009-10-14T16:44:54Z2009-10-14T16:44:54Z<p>The Label control needs to have its Target property set explicity in order for the shortcut to work.</p>
<p>In my experience, 99% of the time the label for a control comes immediately before the control that should be focussed when the shortcut key is pressed. It would be if Label acted this way by default. Of course this could be overridden by setting the Target property, but if not set the next control in the tab order should be focussed.</p>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf/1567514#15675140Answer by Groky for Missing features in WPFGroky2009-10-14T16:38:29Z2009-10-14T16:38:29Z<p>No gaps between rows/columns in a Grid. Frequently, I'm laying out a grid of Label and TextBox/ComboBox/Checkbox controls in auto-sized rows/columns. By default these controls all appear squashed up to each other. It would be nice to be able to specify a vertical and horizontal gap between rows and columns in a grid.</p>
<p>You can workaound this problem by adding a style for each control type in your grid:</p>
<pre><code><Grid.Resources>
<Style TargetType="{x:Type TextBox}">
<Setter Property="Margin" Value="0,0,0,4" />
</Style>
<Style TargetType="{x:Type ComboBox}">
<Setter Property="Margin" Value="0,0,0,4" />
</Style>
</Grid.Resources>
</code></pre>
<p>However, this has the disadvantage of changing the TexBox and ComboBox heights away from the default, and causes problems with lining up the text in the related Label.</p>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf/1567480#15674800Answer by Groky for Missing features in WPFGroky2009-10-14T16:34:09Z2009-10-14T16:34:09Z<p>No drop-down menu button. I frequently find myself needing this control in toolbars etc. Any good open source drop-down buttons anyone could recommend? Bonus points for being able to drop down an arbitrary control, not just a menu.</p>
http://stackoverflow.com/questions/1567459/missing-features-in-wpf/1567465#15674651Answer by Groky for Missing features in WPFGroky2009-10-14T16:31:55Z2009-10-14T16:31:55Z<p>Icons in a toolbar are not greyed out by default. This is a massive oversight in my view - what toolbar anywhere in the world doesn't grey out its disabled items?</p>
<p>To workaround, you can add this style to your window resources:</p>
<pre><code> <Style TargetType="{x:Type Image}">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type UIElement}, AncestorLevel=1}, Path=IsEnabled}" Value="False">
<Setter Property="Opacity" Value="0.3"></Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</code></pre>
http://stackoverflow.com/questions/1562322/what-is-the-reasoning-behind-a-connection-string-in-a-net-application-being-read1What is the reasoning behind a connection string in a .Net application being read-onlyGroky2009-10-13T19:12:12Z2009-10-13T20:02:33Z
<p>I have come across this problem before and I have never understood the reasoning for it: in a desktop application developed in .Net the connection string is stored as a read-only value in the application's app config. </p>
<p>In <strong>every</strong> windows application I've written, the database needs to be set <strong>by the user</strong>: if I'm deploying an application to different sites it's unlikely they will be using the same database. Surely this is the common case for a desktop application? So why is the connection string made read-only in the framework? </p>
<p>Is it a case of the database framework designers thinking in terms of server applications and forgetting the desktop use-case?</p>
http://stackoverflow.com/questions/1517646/apply-a-colormatrix-making-use-of-gpu0Apply a ColorMatrix making use of GPUGroky2009-10-04T23:03:20Z2009-10-04T23:22:55Z
<p>I have a C# application that recolors an image using ColorMatrix. I understand that ColorMatrix doesn't make use of the GPU. What would be the best avenue to explore if I wanted to use the GPU to recolor the image? Pointers to where look in any suggested libraries would be appreciated, examples even more so!</p>
http://stackoverflow.com/questions/1428245/wpf-mvvm-treeview-structure-from-one-viewmodel-check-state-from-another0WPF/MVVM: TreeView structure from one ViewModel, check state from another?Groky2009-09-15T16:34:16Z2009-09-15T16:34:16Z
<p>I have a tree structure to be displayed on a WPF TreeView. The tree structure is shared between multiple parent ViewModels, but the check state will be different for each.</p>
<p>Is it possible to make the TreeView use one ViewModel to create the tree nodes, and the CheckBoxes contained therein refer to a different ViewModel/whatever to determine the check state?</p>
<p>Hope that makes sense...</p>
http://stackoverflow.com/questions/126331/specifying-a-non-net-dependency-in-visual-studio3Specifying a non-.NET dependency in Visual StudioGroky2008-09-24T10:09:09Z2009-09-04T00:20:49Z
<p>Hello,</p>
<p>I'm calling a non-.NET dll from my project using P/Invoke, meaning that the .dll must always be present in the .exe's directory. </p>
<p>Is there any way to tell Visual Studio of this dependency, so that it will automatically copy the .dll to the output directory when compiling, and will automatically include the .dll in the setup? Or do I have to do this manually?</p>
http://stackoverflow.com/questions/1319425/application-level-shortcut-keys-in-wpf/1319505#13195051Answer by Groky for Application Level shortcut keys in WPFGroky2009-08-23T20:45:01Z2009-08-24T12:50:49Z<p>You can do this in mxml - see the example in the documentation for the <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.keybinding.aspx" rel="nofollow">KeyBinding</a> class:</p>
<pre><code><Window.InputBindings>
<KeyBinding Command="ApplicationCommands.Open"
Gesture="CTRL+R" />
</Window.InputBindings>
</code></pre>
<p>Update: Looks like you can't actually bind a KeyBinding to a ViewModel using just xaml if you're using MVVM: see here <a href="http://stackoverflow.com/questions/1023960/keybinding-a-relaycommand">http://stackoverflow.com/questions/1023960/keybinding-a-relaycommand</a>.</p>
http://stackoverflow.com/questions/979317/mvvm-collectionview-in-viewmodel-or-collectionviewsource-in-xaml0MVVM: CollectionView in ViewModel or CollectionViewSource in xaml?Groky2009-06-11T04:28:42Z2009-08-06T09:47:24Z
<p>I'm developing a WPF application using the MVVM pattern and I need to display a list of items in a ListView (with filtering), with the fields of the selected item displayed in a Master/Detail view. I'm torn between the following two ways of doing this:</p>
<ol>
<li>Exposing a CollectionView in my ViewModel, and binding to this.</li>
<li>Exposing a plain IList in my ViewModel, and using CollectionViewSource to create the CollectionView in XAML.</li>
</ol>
<p>Is there an accepted way of doing this? Any thoughts on the best way?</p>
http://stackoverflow.com/questions/1756541/creating-a-com-automation-server-in-c/1760641#1760641Comment by Groky on Creating a COM Automation Server in C#Groky2009-11-20T15:47:26Z2009-11-20T15:47:26ZThank you: turns out that lifetime management wasn't an issue: we just start the out-of-process server when the main app starts and shut it down when it finishes. So the only trick was to call RegistrationServices.RegisterTypeForComClients - easy!http://stackoverflow.com/questions/1210994/names-in-the-interop-assembly-have-wrong-capitalization/1211071#1211071Comment by Groky on Names in the interop assembly have wrong capitalizationGroky2009-11-18T16:26:41Z2009-11-18T16:26:41ZThanks. I was having this problem, and your solution fixed it.http://stackoverflow.com/questions/9033/hidden-features-of-c/63661#63661Comment by Groky on Hidden Features of C#?Groky2009-11-12T01:53:27Z2009-11-12T01:53:27ZWell spotted rball! 1 year, 21 upvotes and nobody spotted my deliberate mistake ;) Fixed.http://stackoverflow.com/questions/1701895/how-do-wpf-markup-extensions-raise-compile-errors/1701988#1701988Comment by Groky on How do WPF Markup Extensions raise compile errors?Groky2009-11-09T18:23:17Z2009-11-09T18:23:17ZHmm, looked at the docs for IVsErrorList and I still don't understand how you'd implent a custom markup extension that generated a compile-time error. Updating the question to ask for an exmaple...http://stackoverflow.com/questions/1701895/how-do-wpf-markup-extensions-raise-compile-errors/1701988#1701988Comment by Groky on How do WPF Markup Extensions raise compile errors?Groky2009-11-09T16:24:08Z2009-11-09T16:24:08ZThese interfaces are new in VS2010 then? When I say "baked in" I meant does VS have specific knowledge of the individual markup extensions that can cause a compile-time error, or is this mechanism extensible though the use of an interface, attribute etc. Your answer seems to suggest that was the case for VS2008 but has been opened up for VS2010. Is that correct?http://stackoverflow.com/questions/1701759/how-to-correctly-add-action-and-func-delegate-types-to-c2-0/1701785#1701785Comment by Groky on How to correctly add Action and Func<> delegate types to C#2.0?Groky2009-11-09T15:38:44Z2009-11-09T15:38:44ZI disagree, if the conditional compilation is confined to a single file then it's far clearer to use Action<> and Func<> throughout the code then to use the 2.0 equivalents.http://stackoverflow.com/questions/1669587/sending-data-from-view-to-viewmodel-with-command-binding/1669675#1669675Comment by Groky on Sending data from view to viewmodel with command bindingGroky2009-11-09T15:34:07Z2009-11-09T15:34:07ZRe: sorting, might be best to start a new question there rather than discussing it in the comments! Re: selection not changing, are you sure you're setting IsSynchronizedWithCurrentItem on the view?http://stackoverflow.com/questions/1700219/property-binding-across-controls-in-wpfComment by Groky on Property binding across controls in WPFGroky2009-11-09T12:45:50Z2009-11-09T12:45:50ZI can't think of a reason this wouldn't work. Maybe some more code might help shed light on the problem?http://stackoverflow.com/questions/1694626/incorrect-item-gets-selected-when-starting-a-drag-on-an-item-in-an-itemscontrol/1695862#1695862Comment by Groky on Incorrect item gets selected when starting a drag on an item in an ItemsControlGroky2009-11-08T11:46:35Z2009-11-08T11:46:35ZI was doing that, but then the item being dragged doesn't match up with the item selected in the ItemsControls. Confusing for the user: which item are they actually dragging?http://stackoverflow.com/questions/726016/windows-explorer-like-folder-tree-browser/1670434#1670434Comment by Groky on Windows Explorer like folder tree browserGroky2009-11-06T20:16:30Z2009-11-06T20:16:30ZThe library is now LGPL. Thanks for reminding me I need to change the website though!http://stackoverflow.com/questions/1669587/sending-data-from-view-to-viewmodel-with-command-binding/1669675#1669675Comment by Groky on Sending data from view to viewmodel with command bindingGroky2009-11-06T15:57:06Z2009-11-06T15:57:06ZYes, that's the idea. You create your ObservableCollection the same as before, and then you construct you CollectionView with "new ListCollectionView(sourceCollection)".http://stackoverflow.com/questions/1684923/wpf-parameters-to-datatemplates/1685307#1685307Comment by Groky on WPF - Parameters to DataTemplates?Groky2009-11-06T09:57:40Z2009-11-06T09:57:40ZExpressions in XAML bindings! I've been waiting for that for a long time - really miss it from my Flex days. Looking forward to seeing it!http://stackoverflow.com/questions/1669587/sending-data-from-view-to-viewmodel-with-command-binding/1669675#1669675Comment by Groky on Sending data from view to viewmodel with command bindingGroky2009-11-06T09:31:00Z2009-11-06T09:31:00ZCollectionViews also give you filtering and sorting. In fact, your ItemsCollections is automatically creating one in the background each time you bind to an ObservableCollection anyway. There's an informative article on them here: <a href="http://www.drwpf.com/blog/Home/tabid/36/EntryID/18/Default.aspx" rel="nofollow">drwpf.com/blog/Home/…</a>http://stackoverflow.com/questions/1669587/sending-data-from-view-to-viewmodel-with-command-binding/1669675#1669675Comment by Groky on Sending data from view to viewmodel with command bindingGroky2009-11-06T09:27:27Z2009-11-06T09:27:27ZNo, but you should just be able to replace your ObservableCollection with a CollectionView. Or in many cases I expose both: Shipments and ShipmentsView where Shipments is an ObservableCollection and ShipmentsView is a CollectionView. You will often want different views on a collection anyway.http://stackoverflow.com/questions/1667406/mvvm-mediator-multiple-instances/1668823#1668823Comment by Groky on MVVM Mediator multiple instancesGroky2009-11-03T20:26:26Z2009-11-03T20:26:26ZOr you could create a separate message class for each dialog then to avoid the "opt-in"-ness.