User Luke - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:07:46Z http://stackoverflow.com/feeds/user/46304 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1895589/iphone-wsdl-service-using-http-post-and-get-bindings 0 iPhone WSDL service using HTTP POST and GET Bindings Luke 2009-12-13T04:51:48Z 2009-12-13T04:51:48Z <p>I have a WSDL service that is working fine with .NET using HTTP POST Bindings, rather than using SOAP. The HTTP Post request returns the raw XML for the objects etc. removing all the overhead of SOAP.</p> <p>I would like to use this within the iPhone. I have located the tool at wsdl2objc tool (<a href="http://code.google.com/p/wsdl2objc/" rel="nofollow">http://code.google.com/p/wsdl2objc/</a>) however it seems to only generate SOAP bindings which I don't use because I don't need the overhead.</p> <p>What would be the best option for using WSDL HTTP POST Bindings within the iPhone OS? It would be great if the wsdl2objc tool also supported the HTTP POST bindings however I don't see that happening soon. I would rather have this code automatically generated for when the service changes etc.</p> <p>Any ideas would be greatly appreciated.</p> http://stackoverflow.com/questions/1345841/why-does-the-wpf-databinding-not-update-after-the-collection-is-filtered 0 Why does the WPF Databinding not update after the collection is Filtered? Luke 2009-08-28T09:05:43Z 2009-12-11T16:00:02Z <p>Why does my WPF ContextMenu databinding not update as expected when the collection is updated, however the ItemTemplate is displaying the context menu text correctly?</p> <p>Within the code below this works when I don't try update the ObservableCollection. When the underlying ObservableCollection is updated the DataTemplate updates without problems and displays the new MenuItem text as expected. However the MenuItem.Tag is returning Nothing after the refresh occurs?</p> <p>The data bound MenuItem.Tag works when the collection is first loaded however not after I update. Any ideas on how I can locate this error? Partial XAML code is shown below:</p> <pre><code>&lt;ListBox ItemsSource="{Binding Source={StaticResource ListBoxViewSource}}"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;WrapPanel&gt; &lt;WrapPanel.ContextMenu&gt; &lt;ContextMenu&gt; &lt;Separator/&gt; &lt;MenuItem ItemsSource="{Binding Source={StaticResource ContextViewSource}}" ItemTemplate="{StaticResource DataTemplate}"&gt; &lt;MenuItem.Tag&gt; &lt;Binding Path="ID" Source="{StaticResource ContextViewSource}"/&gt; &lt;/MenuItem.Tag&gt; </code></pre> <p><strong>Update #1:</strong> The issue seems to be related to the CollectionViewSource and the Filter not updating the MenuItem.Tag binding after filtering has occurred and removed the item. I have added CollectionViewSource.View.Refresh() where the collection would be changing however this still does not fix the issue.</p> <p><strong>Update #2</strong> I have already implemented INotifyPropertyChanged which does not help with the Filtering issue. If I remove the Filter on the CollectionViewSource then the issue doesn't occur. I also added a converter to the MenuItem.Tag binding and this doesn't get called after the filtering is applied and the MenuItem.Tag is then set to Nothing.</p> http://stackoverflow.com/questions/676819/wpf-treeview-clear-selection 0 WPF TreeView Clear Selection Luke 2009-03-24T10:30:50Z 2009-12-03T17:37:19Z <p>How would I clear the TreeView selection within a WPF TreeView? I have tried looping through the TreeNodes and clearing the IsSelected property however that is a ReadOnly property. Any ideas?</p> <p>The TreeView is using XML Binding through the XMLDataProvider object.</p> http://stackoverflow.com/questions/1833264/how-do-i-load-different-images-png-gif-and-jpg-in-the-background-using-wpf 0 How do I load different images, PNG, GIF and JPG in the background using WPF? Luke 2009-12-02T14:33:01Z 2009-12-02T15:20:06Z <p>I am using WPF to load an image in the background using the answer at <a href="http://stackoverflow.com/questions/716472/how-do-i-load-images-in-the-background">Stackoverflow: How do I load images in the background?</a> </p> <p>The problem is the URL string could be PNG, GIF or JPG and I need to use either JpegBitmapDecoder, PngBitmapDecoder or GifBitmapDecoder If the correct decoder is not used then a FileFormatException occurs.</p> <p>I could use the extension on the string but errors could still occur if the user has a GIF image with a .png extension.</p> <p>Any ideas how I would resolve this issue?</p> http://stackoverflow.com/questions/1749505/what-are-the-exact-languages-supported-by-the-wpf-in-built-spell-checking 1 What are the exact languages supported by the WPF in-built spell checking? Luke 2009-11-17T15:07:36Z 2009-11-17T15:07:36Z <p>I understand only 4 languages are supported within WPF in-built spelling, English, German, French and Spanish are available. But is only en-US supported, how about en-GB?</p> <p>Documentation on this topic in MSDN docs. seems sparse at best. Where can I locate exact details on the languages supported?</p> <p>The reason I ask this is that I would like to add settings within my WPF app where you can select the language for the spell check or have an option for disabling the in-built feature. Within these options I would like to list the exact languages that are supported, whether it is en-US or en-GB etc.</p> http://stackoverflow.com/questions/1611552/how-can-i-copy-wpf-flowdocument-inlineuicontainer-contents 0 How can I copy WPF FlowDocument InlineUIContainer contents? Luke 2009-10-23T05:35:14Z 2009-11-08T12:56:49Z <p>I have a WPF FlowDocument that has a few InlineUIContainers, these are simple InlineUIContainers, that contain a styled button with some text in the Button.Content. When I copy the text and InlineUIContainer containing the button from the FlowDocument to a TextBox, the button is not copied.</p> <p>It is possible to somehow convert the inline button or convert the button to text in the pasted text data. I have tried using the FlowDocument.DataObject.Copying event, but I can't seem to find any good samples on how to use this or even if this is the right direction.</p> <p>Thank you</p> http://stackoverflow.com/questions/1098298/wpf-backgroundworker-listview-filter-issue 0 WPF BackgroundWorker ListView Filter Issue Luke 2009-07-08T14:05:14Z 2009-10-28T12:12:11Z <p>I have a WPF ListView that I am trying to filter within a BackgroundWorker. My code is shown below:</p> <pre><code>Dim Worker As New BackgroundWorker AddHandler Worker.DoWork, AddressOf Me.FilterAsync Me.TextBoxText = Me.TextBox.Text Worker.RunWorkerAsync(Me.TextBox) Private Sub FilterAsync(ByVal sender As Object, ByVal e As DoWorkEventArgs) ' Dim BackgroundWorker As BackgroundWorker = CType(sender, BackgroundWorker) Dim Text As String = e.Argument.ToString ' Dim ListView As ListCollectionView = CType(CollectionViewSource.GetDefaultView(Me.ListView.ItemsSource), ListCollectionView) If Text &lt;&gt; String.Empty Then ListView.Filter = New Predicate(Of Object)(AddressOf Me.FindItemsAsync) Else ListView.Filter = Nothing End If ' End Sub </code></pre> <p>This code runs through the filtering however it fails with an error "The calling thread cannot access this object because a different thread owns it." on the following line:</p> <pre><code>ListView.Filter = New Predicate(Of Object)(AddressOf Me.FindItemsAsync) </code></pre> <p>What would be the problem here? I can't seem to find any samples with filtering through the BackgroundWorker.</p> <p><strong>Update:</strong> Does anyone know of a sample that filters a WPF ListView using a BackgroundWorker?</p> http://stackoverflow.com/questions/1273099/how-can-i-make-xval-work-with-my-extended-html-validationimage 0 How can I make xVal work with my extended Html.ValidationImage? Luke 2009-08-13T16:28:58Z 2009-10-16T15:35:39Z <p>I have extended the ASP.NET MVC Html Helper to include my own ValidationImage that outputs an image rather than the standard tags. Details are shown within the <a href="http://ttp://stackoverflow.com/questions/1265857/how-do-i-extend-html-validationmessage-so-that-i-can-include-an-image-as-the-erro" rel="nofollow">StackOverflow Question: How do I extend Html.ValidationMessage so that I can include an image as the error?</a></p> <p>I would like this to integrate well with <a href="http://xval.codeplex.com/" rel="nofollow">xVal</a> now. What would be the best method for doing this? How would I change the <a href="http://xval.codeplex.com/sourcecontrol/changeset/view/21650?projectName=xval#279846" rel="nofollow">xVal.jquery.validate.js</a> file to work with my error images?</p> <p>Currently I have adjusted the <a href="http://xval.codeplex.com/sourcecontrol/changeset/view/21650?projectName=xval#279846" rel="nofollow">xVal.jquery.validate.js</a> file to work with the img tag rather than the standard span tag. I am receiving an error when the <a href="http://xval.codeplex.com/sourcecontrol/changeset/view/21650?projectName=xval#279846" rel="nofollow">xVal.jquery.validate.js</a> plug-in is trying to append something to the img tag. I assume it is trying to append the error text to the image tag which would cause an error.</p> <p>What would be the best way to modify the <a href="http://xval.codeplex.com/" rel="nofollow">xVal</a> plug-in so that the error is added to the title attribute and the img tag is displayed into view?</p> http://stackoverflow.com/questions/1538237/how-can-i-display-an-image-within-the-wpf-aero-glass-titlebar 1 How can I display an image within the WPF Aero Glass Titlebar? Luke 2009-10-08T14:38:23Z 2009-10-08T14:43:07Z <p>I have standard WPF Window that I have extended the Aero Glass on the top of the window around 50 pixels. I would like to keep the standard Min. Max. and Close buttons, Title Text and Window Icon. </p> <p>I would like to display a few small images (i.e. icons) in the title bar, around the middle of the title bar. How could I do this? WPF will not display the images if I place them near the title bar, I assume as the title bar is non-client area.</p> http://stackoverflow.com/questions/1529487/how-do-a-use-a-securestring-to-create-a-sha1-or-sha512-hash 0 How do a use a SecureString to create a SHA1 or SHA512 Hash? Luke 2009-10-07T04:31:50Z 2009-10-07T05:24:18Z <p>I would like to use a SecureString varible within VB.NET and convert that to a SHA1 or SHA512 hash. How would I securely convert the SecureString to the Byte array that HashAlgorithm.ComputeHash will accept?</p> http://stackoverflow.com/questions/443033/editable-div-element 0 Editable Div Element Luke 2009-01-14T13:57:17Z 2009-09-15T08:59:59Z <p>Is it possible to have an editable div element that can only contain text and images. I understand that you can use the rich controls like TinyMCE and jWYSIWYG however I do not require all this functionality and want something lightweight.</p> <p>Basically all I want is a plain text editable element where I can also add various images such as emoticons that <b>can't be resized</b> when using IE or Firefox. I am using jQuery as the framework so anything using that would be great.</p> <p><b>Update:</b> Is it possible to block the click event for images so the resize handler doesn't appear?</p> <p><b> Related Question</b> <a href="http://stackoverflow.com/questions/289433/firefox-designmode-disable-image-resizing-handles">Firefox - designMode: disable image resizing handles</a></p> http://stackoverflow.com/questions/1365778/strange-xaml-menuitem-databound-itemssource-refresh-issue-after-empty-itemssource 1 Strange XAML MenuItem DataBound ItemsSource Refresh Issue after empty ItemsSource Luke 2009-09-02T04:03:40Z 2009-09-02T04:12:18Z <p>I have a XAML MenuItem DataBound ItemsSource that is working fine however there is a small issue. When I view the MenuItem and there is no databound items the ParentMenu will be disabled and it appears fine without binding errors (as expected the ItemsSource is empty). If the ObservableCollection is modified and an item added, the binding refreshes and the MenuItem appears. However the ItemContainerStyle doesn't upodate the MenuItem.Tag property to the databound value.</p> <p>The MenuItem works fine as long as the ItemsSource never starts as empty or is never reduced to empty. Does anyone have any tips for such an issue? I would like to have the ItemsSource and ItemContainerStyle refresh correctly at all times even when the ItemsSource starts as empty</p> <p>XAML is shown below:</p> <pre><code>&lt;MenuItem x:Name="MenuItem" Header="Menu" ItemsSource="{Binding Source={StaticResource MenuItemViewSource}}" ItemTemplate="{StaticResource MenuDataTemplate}"&gt; &lt;MenuItem.ItemContainerStyle&gt; &lt;Style TargetType="{x:Type MenuItem}"&gt; &lt;Setter Property="Tag" Value="{Binding Path=ID, Source={StaticResource MenuItemViewSource}}"/&gt; &lt;Setter Property="Background" Value="Red"/&gt; &lt;Setter Property="Opacity" Value="0.5"/&gt; &lt;EventSetter Event="Click" Handler="MenuItem_Click"/&gt; &lt;/Style&gt; &lt;/MenuItem.ItemContainerStyle&gt; &lt;MenuItem.Style&gt; &lt;Style TargetType="{x:Type MenuItem}"&gt; &lt;Style.Triggers&gt; &lt;DataTrigger Binding="{Binding Path=Items.Count, RelativeSource={RelativeSource Self}}" Value="0"&gt; &lt;Setter Property="IsEnabled" Value="False"/&gt; &lt;/DataTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/MenuItem.Style&gt; &lt;/MenuItem&gt; </code></pre> http://stackoverflow.com/questions/1358181/encrypt-and-save-the-asp-net-connectionstring-within-the-web-config-using-medium 0 Encrypt and Save the ASP.NET ConnectionString within the web.config using Medium Trust? Luke 2009-08-31T16:15:00Z 2009-09-01T04:38:07Z <p>I have searched around Google and Stackoverflow but can't seen to come up with a solution for editing the web.config to encrypt and store a SQL Server connection string for an installation script. </p> <p>The link at <a href="http://our.umbraco.org/forum/ourumb-dev-forum/bugs/3569-Acessing-the-webconfig-in-Medium-trust" rel="nofollow">Accessing the web.config in Medium trust</a> seems to suggest that the following code would work instead of OpenWebConfiguration, however this is not working on the local development server (running Medium Trust) or at Rackspace Cloud (formerly Mosso).</p> <pre><code>String cfgpath = Server.MapPath(@"/web.config"); cfg = System.Configuration.ConfigurationManager.OpenExeConfiguration(cfgpath); </code></pre> <p>Rackspoace Cloud can be setup to save files using Impersonation, however I am still receiving the "An error occurred loading a configuration file: Request for the permission of type 'System.Security.Permissions.FileIOPermission" error when catching the ConfigurationErrorsException.</p> <p>Any ideas how I can edit the web.config to encrypt and store the SQL Server connection string during the installation script?</p> <p><strong>Update #1</strong> It seems both DpapiProtectedConfigurationProvider and RsaProtectedConfigurationProvider require FullTrust. Are there any other solutions to protect the Web.config file further when using MediumTrust?</p> http://stackoverflow.com/questions/1338896/trouble-with-asp-net-captcha-control-sample-with-asp-net-mvc 0 Trouble with ASP.NET CAPTCHA Control Sample with ASP.NET MVC Luke 2009-08-27T04:48:29Z 2009-08-27T05:03:29Z <p>I am trying to use the following <a href="http://www.codeproject.com/KB/custom-controls/CaptchaControl.aspx" rel="nofollow">A CAPTCHA Server Control for ASP.NET - by Jeff Atwood</a> within an ASP.NET MVC site. The custom control doesn't seem to be validating when the form is submitted.</p> <p>Is there anyone who has done any work with this sample using ASP.NET MVC?</p> <p>The basic code I am using is as follows:</p> <pre><code>&lt;% using (Html.BeginForm()) { %&gt; &lt;CaptchaControl:CaptchaControl ID="CaptchaControl" Name="Security" runat="server"&gt;&lt;/CaptchaControl:CaptchaControl&gt; &lt;input type="submit" value="Send Message" /&gt; &lt;% } %&gt; </code></pre> http://stackoverflow.com/questions/1258148/how-can-a-wcf-xelement-response-include-the-xml-declaration 0 How can a WCF XElement Response include the XML Declaration? Luke 2009-08-11T02:06:18Z 2009-08-17T12:50:24Z <p>I have a WCF service that is returning an XElement, this is working fine however I would like it to include the XML Declaration in the response:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; </code></pre> <p>The client side is not something that I can change and is reporting a "Result is not XML" The only other differences between the response of my HTTP result is the content type of my WCF service:</p> <pre><code>Content-Type: application/xml; charset=utf-8 </code></pre> <p>vs.</p> <pre><code>Content-Type: text/xml; charset=utf-8 </code></pre> <p>I assume the "Result is not XML" is being caused by the missing XML Declaration. How is it possible to add the XML Declaration to the XElement response? I thought a MessageFormatter might be able fix this, however I have no idea where to start.</p> http://stackoverflow.com/questions/1265857/how-do-i-extend-html-validationmessage-so-that-i-can-include-an-image-as-the-erro 1 How do I extend Html.ValidationMessage so that I can include an image as the error? Luke 2009-08-12T12:28:34Z 2009-08-12T14:06:40Z <p>I would like to reduce the following code. The below code works, however it is not very tidy etc.</p> <pre><code> &lt;label for="Name"&gt;Name:&lt;/label&gt;&lt;%= Html.TextBox("Name")%&gt;&lt;% if (!string.IsNullOrEmpty(Html.ValidationMessage("Name"))) { string Error = HtmlRemoval.StripTags(Html.ValidationMessage("Name")); %&gt; &lt;img src="Error.gif" alt="Error" title="&lt;%= Error %&gt;" /&gt;&lt;% } %&gt; </code></pre> <p>I have read that I need to extend the Html helper so that I can return an image instead of the text containing the default element and textual error.</p> <p>I can't seem to find any articles or general advice on how I would accomplish this. I am still very new to ASP.NET MVC. Any advice would be greatly appreciated.</p> http://stackoverflow.com/questions/1215793/observablecollection-filesystemwatcher-listbox-updating-issue 1 ObservableCollection FileSystemWatcher ListBox Updating Issue Luke 2009-08-01T03:56:02Z 2009-08-01T13:29:48Z <p>I have an ObservableCollection that is using a FileSystemWatcher to automatically add other PNG images that have been added to the directories. The ListBox has the ItemsSource databound to the Photos object using the following XAML.</p> <pre><code>&lt;ListBox ItemsSource="{Binding Source={StaticResource Photos}}" IsSynchronizedWithCurrentItem="True"/&gt; </code></pre> <p>However when a PNG file is added to the monitored directory the OnPhotoCreated event is being called (a breakpoint confirms this) however the ListBox UI is not being updated. Any ideas?</p> <pre><code>Public Class Photos Inherits Collections.ObjectModel.ObservableCollection(Of BitmapImage) ' Events Public Event ItemsUpdated As EventHandler ' Fields Private FileSystemWatchers As Dictionary(Of String, FileSystemWatcher) = New Dictionary(Of String, FileSystemWatcher) ' Methods Protected Overrides Sub ClearItems() MyBase.ClearItems() Me.FileSystemWatchers.Clear() End Sub Protected Overrides Sub InsertItem(ByVal index As Integer, ByVal item As BitmapImage) MyBase.InsertItem(index, item) Dim ImagePath As String = IO.Path.GetDirectoryName(item.UriSource.LocalPath) If Not Me.FileSystemWatchers.ContainsKey(ImagePath) Then Dim FileWatcher As New FileSystemWatcher(ImagePath, "*.png") FileWatcher.EnableRaisingEvents = True AddHandler FileWatcher.Created, New FileSystemEventHandler(AddressOf Me.OnPhotoCreated) AddHandler FileWatcher.Deleted, New FileSystemEventHandler(AddressOf Me.OnPhotoDeleted) AddHandler FileWatcher.Renamed, New RenamedEventHandler(AddressOf Me.OnPhotoRenamed) Me.FileSystemWatchers.Add(ImagePath, FileWatcher) End If End Sub Private Sub OnPhotoCreated(ByVal sender As Object, ByVal e As FileSystemEventArgs) MyBase.Items.Add(New BitmapImage(New Uri(e.FullPath))) RaiseEvent ItemsUpdated(Me, New EventArgs) End Sub Private Sub OnPhotoDeleted(ByVal sender As Object, ByVal e As FileSystemEventArgs) Dim index As Integer = -1 Dim i As Integer For i = 0 To MyBase.Items.Count - 1 If (MyBase.Items.Item(i).UriSource.AbsolutePath = e.FullPath) Then index = i Exit For End If Next i If (index &gt;= 0) Then MyBase.Items.RemoveAt(index) End If RaiseEvent ItemsUpdated(Me, New EventArgs) End Sub Private Sub OnPhotoRenamed(ByVal sender As Object, ByVal e As RenamedEventArgs) Dim index As Integer = -1 Dim i As Integer For i = 0 To MyBase.Items.Count - 1 If (MyBase.Items.Item(i).UriSource.AbsolutePath = e.OldFullPath) Then index = i Exit For End If Next i If (index &gt;= 0) Then MyBase.Items.Item(index) = New BitmapImage(New Uri(e.FullPath)) End If RaiseEvent ItemsUpdated(Me, New EventArgs) End Sub End Class </code></pre> <p><strong>Update #1:</strong> I have tried an Event as shown below. That causes a crash with InvalidOperationException, "The calling thread cannot access this object because a different thread owns it" When the new image is attempted to scroll into view. I was hoping that the Refresh method would not be needed.</p> <pre><code>Dim Photos As Photos = CType(Me.FindResource("Photos"), Photos) AddHandler Photos.ItemsUpdated, AddressOf Me.Photos_ItemsUpdated Private Sub RefreshPhotos() ' If Me.ImageListBox.Dispatcher.CheckAccess = True Then Me.ImageListBox.Items.Refresh() Else Dispatcher.BeginInvoke(DispatcherPriority.Normal, New DispatcherMethodCallback(AddressOf Me.RefreshPhotos)) End If ' End Sub Private Sub Photos_ItemsUpdated(ByVal sender As Object, ByVal e As EventArgs) ' Debug.WriteLine("PhotosUpdated") Me.RefreshPhotos() ' End Sub </code></pre> http://stackoverflow.com/questions/1175633/wpf-shell-drag-drop-sample-unsafe-code 1 WPF Shell Drag Drop Sample - Unsafe Code Luke 2009-07-24T03:38:06Z 2009-07-24T11:13:53Z <p>I have been considering using the code example shown at <a href="http://blogs.msdn.com/adamroot/pages/shell-style-drag-and-drop-in-net-part-3.aspx" rel="nofollow">Shell Style Drag and Drop in .NET - Part 3</a> within a WPF project. The sample project works fine, it is a great article so check it out! </p> <p>However when moving the code to my project I receive an error when compiling "Unsafe code may only appear if compiling with /unsafe" I understand that I could just change the compile options, however I would prefer to not have the unsafe code in there. The unsafe code is as follows. </p> <p>How can I make this code safe? I don't really have experience in this field.</p> <pre><code>/// &lt;summary&gt; /// Replaces any pixel with a zero alpha value with the specified transparency key. /// &lt;/summary&gt; /// &lt;param name="bmpData"&gt;The bitmap data in which to perform the operation.&lt;/param&gt; /// &lt;param name="transKey"&gt;The transparency color. This color is rendered transparent /// by the DragDropHelper.&lt;/param&gt; /// &lt;remarks&gt; /// This function only supports 32-bit pixel formats for now. /// &lt;/remarks&gt; private static void ReplaceTransparentPixelsWithTransparentKey(BitmapData bmpData, DrawingColor transKey) { DrawingPixelFormat pxFormat = bmpData.PixelFormat; if (DrawingPixelFormat.Format32bppArgb == pxFormat || DrawingPixelFormat.Format32bppPArgb == pxFormat) { int transKeyArgb = transKey.ToArgb(); // We will just iterate over the data... we don't care about pixel location, // just that every pixel is checked. unsafe { byte* pscan = (byte*)bmpData.Scan0.ToPointer(); { for (int y = 0; y &lt; bmpData.Height; ++y, pscan += bmpData.Stride) { int* prgb = (int*)pscan; for (int x = 0; x &lt; bmpData.Width; ++x, ++prgb) { // If the alpha value is zero, replace this pixel's color // with the transparency key. if ((*prgb &amp; 0xFF000000L) == 0L) *prgb = transKeyArgb; } } } } } else { // If it is anything else, we aren't supporting it, but we // won't throw, cause it isn't an error System.Diagnostics.Trace.TraceWarning("Not converting transparent colors to transparency key."); return; } } </code></pre> <p>The function calling this code is as follows, maybe the ReplaceTransparentPixelsWithTransparentKey function could be removed entirely by another method. Any ideas?</p> <pre><code>/// &lt;summary&gt; /// Gets a System.Drawing.Bitmap from a BitmapSource. /// &lt;/summary&gt; /// &lt;param name="source"&gt;The source image from which to create our Bitmap.&lt;/param&gt; /// &lt;param name="transparencyKey"&gt;The transparency key. This is used by the DragDropHelper /// in rendering transparent pixels.&lt;/param&gt; /// &lt;returns&gt;An instance of Bitmap which is a copy of the BitmapSource's image.&lt;/returns&gt; private static Bitmap GetBitmapFromBitmapSource(BitmapSource source, Color transparencyKey) { // Copy at full size Int32Rect sourceRect = new Int32Rect(0, 0, source.PixelWidth, source.PixelHeight); // Convert to our destination pixel format DrawingPixelFormat pxFormat = ConvertPixelFormat(source.Format); // Create the Bitmap, full size, full rez Bitmap bmp = new Bitmap(sourceRect.Width, sourceRect.Height, pxFormat); // If the format is an indexed format, copy the color palette if ((pxFormat &amp; DrawingPixelFormat.Indexed) == DrawingPixelFormat.Indexed) ConvertColorPalette(bmp.Palette, source.Palette); // Get the transparency key as a System.Drawing.Color DrawingColor transKey = transparencyKey.ToDrawingColor(); // Lock our Bitmap bits, we need to write to it BitmapData bmpData = bmp.LockBits( sourceRect.ToDrawingRectangle(), ImageLockMode.ReadWrite, pxFormat); { // Copy the source bitmap data to our new Bitmap source.CopyPixels(sourceRect, bmpData.Scan0, bmpData.Stride * sourceRect.Height, bmpData.Stride); // The drag image seems to work in full 32-bit color, except when // alpha equals zero. Then it renders those pixels at black. So // we make a pass and set all those pixels to the transparency key // color. This is only implemented for 32-bit pixel colors for now. if ((pxFormat &amp; DrawingPixelFormat.Alpha) == DrawingPixelFormat.Alpha) ReplaceTransparentPixelsWithTransparentKey(bmpData, transKey); } // Done, unlock the bits bmp.UnlockBits(bmpData); return bmp; } </code></pre> http://stackoverflow.com/questions/1102029/wpf-listview-virtualization-grouping 1 WPF ListView Virtualization Grouping Luke 2009-07-09T05:48:20Z 2009-07-09T08:56:45Z <p>Does anyone know of a ListView implementation that support UI Virtualization when grouping is enabled? By default the VirtualizingStackPanel is disabled when grouping is setup.</p> <p>It seems that Microsoft is not going to implement this within v4.0 of the .NET Framework so I am look for alternate solutions.</p> http://stackoverflow.com/questions/1102029/wpf-listview-virtualization-grouping/1102659#1102659 1 Answer by Luke for WPF ListView Virtualization Grouping Luke 2009-07-09T08:56:45Z 2009-07-09T08:56:45Z <p>I have located a sample at <a href="http://code.msdn.microsoft.com/getwpfcode/Release/ProjectReleases.aspx?ReleaseId=1142" rel="nofollow">Grouping and Virtualisation MSDN Code Sample</a> that converts the grouped ListView into a flat list which supports virtualization. However I can't work out how to imitate the expanding actions of the headers.</p> http://stackoverflow.com/questions/540954/wpf-snoop-not-working-on-windows-xp/1098595#1098595 0 Answer by Luke for WPF Snoop not working on Windows XP? Luke 2009-07-08T14:53:47Z 2009-07-08T14:53:47Z <p>Snoop will work on 64 bit systems. You just have to compile your executable to run in 32bit mode.</p> <p>If using .NET, you can use the .NET tool corflags /32bit+ [executable] to mark your executable as 32 bit w/o recompiling.</p> http://stackoverflow.com/questions/1024026/net-windows-7-jumplist-checkbox-radio-jumplist-item 1 .NET Windows 7 Jumplist - Checkbox / Radio Jumplist Item Luke 2009-06-21T14:31:45Z 2009-07-02T00:38:48Z <p>I would like to create a jumplist item that functions with a tick or round checkmark in front of the option. I am using the <a href="http://code.msdn.microsoft.com/WindowsAPICodePack" rel="nofollow">Windows API Code Pack</a> for the .NET implementation. </p> <p>I have had a look around the SDK documentation but I couldn't find anything that would enable a tick or round checkmark in front of the Jump List Item. I understand that I could just hack the icon in front of the Jumplist item, however is that the best method?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1061160/wpf-listbox-width-maxwidth 0 WPF ListBox Width / MaxWidth Luke 2009-06-29T23:59:25Z 2009-06-30T01:42:48Z <p>I have a databound ListBox with a DataTemplate setup. The DataTemplate contains a Grid control with two column widths of Auto and *. I would like this column to always fill the ListBoxItem and never extend past the LisBox control to make the horizontal scrollbar visible.</p> <p>I am able to bind the MaxWidth to the DataTemplate's grid using:</p> <pre><code>MaxWidth="{Binding RelativeSource={RelativeSource AncestorType={x:Type ListBox}}, Path=ActualWidth}" </code></pre> <p>Is this the best way to accomplish this?</p> <p>I also have the ItemContainerStyle setup to the following. The Triggers have been removed to make the code smaller and easier to read.</p> <pre><code>&lt;Style x:Key="ListBoxItemContainer" TargetType="{x:Type ListBoxItem}"&gt; &lt;Setter Property="Padding" Value="3"/&gt; &lt;Setter Property="HorizontalContentAlignment" Value="Stretch"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type ListBoxItem}"&gt; &lt;Border x:Name="Border" BorderBrush="{x:Null}" CornerRadius="4" BorderThickness="1" Margin="1"&gt; &lt;Border x:Name="InnerBorder" BorderBrush="{x:Null}" CornerRadius="4" BorderThickness="1"&gt; &lt;ContentPresenter x:Name="ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/&gt; &lt;/Border&gt; &lt;/Border&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/1033111/wcf-named-pipe-security-and-multiple-user-sessions 0 WCF Named Pipe Security and Multiple User Sessions? Luke 2009-06-23T14:59:39Z 2009-06-23T15:43:40Z <p>I have setup a WPF application that is single instance using a Mutex, this allows for the application to run within each user account if you are using user switching. The application sets up a WCF named pipe so that I can communicate to the single instance from another process (i.e. when the second process runs before it terminates due to the Mutex).</p> <p>I would like to know if anything should be done (best practices) to secure the named pipe? </p> <p>Also I would like to know if the named pipe messages would reach all running processes within the system or only within current user session. If the named pipe is sent system wide then what would be the best implmentation to restrict the communication to the current users session?</p> http://stackoverflow.com/questions/1031157/mimic-slowness-of-web-server-on-local-computer/1031282#1031282 4 Answer by Luke for Mimic 'slowness' of web server on local computer Luke 2009-06-23T08:16:30Z 2009-06-23T08:22:20Z <p>If you are using Windows, then download the Fiddler tool <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a>. </p> <p>This will setup a HTTP proxy that you can use for testing HTTP headers and view all the HTTP traffic within the PC and browser. You can then use the Rules > Performance > Simulate Modem Speeds option to slow the browser's HTTP connection.</p> <p>There is also a <a href="https://addons.mozilla.org/en-US/firefox/addon/9373" rel="nofollow">Fiddler Switch</a> plug-in for Firefox available to toggle the Fiddler proxy.</p> http://stackoverflow.com/questions/1027505/how-do-i-remember-a-wpf-xmldataprovider-bound-treeviews-isexpanded-property-when 0 How do I remember a WPF XmlDataProvider bound Treeview's IsExpanded property when refreshed? Luke 2009-06-22T14:28:29Z 2009-06-22T16:56:02Z <p>I have a WPF treeview that is databound to an XmlDataProvider - the XML source is used by many PCs. When the XmlDataProvider is refreshed all the TreeViewNodes collapse. I would like each PC to remember the status of the IsExpanded attribute.</p> <p>I understand that I could add an IsExpanded property to the XML, however then this would be updated to all PCs that use the central XML file. Is there any other solutions to remember which nodes are expanded?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1025563/wcf-named-pipes-within-wpf-application 2 WCF Named Pipes within WPF application Luke 2009-06-22T05:23:38Z 2009-06-22T15:11:32Z <p>How would you run a WCF named pipe service in the background of a WPF Windows application? I can't seem to find any samples of running the WCF server within a WPF application.</p> <p>Any ideas?</p> <p>I am currently using the following code in the Application_Startup. Does this need to run with it's own thread?</p> <pre><code> Using Host As ServiceModel.ServiceHost = New ServiceModel.ServiceHost(GetType(Service), New Uri(("net.pipe://localhost"))) ' Host.AddServiceEndpoint(GetType(IService), New ServiceModel.NetNamedPipeBinding, "Test") Host.Open() ' End Using </code></pre> http://stackoverflow.com/questions/466726/net-jump-list/1024017#1024017 3 Answer by Luke for .NET Jump List Luke 2009-06-21T14:26:01Z 2009-06-21T14:26:01Z <p>Windows 7 API Code Pack contains the official implementation for .NET, see <a href="http://code.msdn.microsoft.com/WindowsAPICodePack" rel="nofollow">http://code.msdn.microsoft.com/WindowsAPICodePack</a></p> http://stackoverflow.com/questions/987551/wpf-blurry-images-bitmap-class 1 WPF Blurry Images - Bitmap Class Luke 2009-06-12T16:08:41Z 2009-06-12T16:08:41Z <p>I am using the following sample at <a href="http://blogs.msdn.com/dwayneneed/archive/2007/10/05/blurry-bitmaps.aspx" rel="nofollow">http://blogs.msdn.com/dwayneneed/archive/2007/10/05/blurry-bitmaps.aspx</a> within VB.NET. The code is shown below.</p> <p>I am having a problem when my application loads the CPU is pegging 50-70%. I have determined that the problem is with the Bitmap class. The OnLayoutUpdated() method is calling the InvalidateVisual() continously. This is because some points are not returning as equal but rather, Point(0.0,-0.5)</p> <p>Can anyone see any bugs within this code or know a better implmentation for pixel snapping a Bitmap image so it is not blurry?</p> <p>p.s. The sample code was in C#, however I believe that it was converted correctly.</p> <pre><code>Imports System Imports System.Collections.Generic Imports System.Windows Imports System.Windows.Media Imports System.Windows.Media.Imaging Class Bitmap Inherits FrameworkElement ' Use FrameworkElement instead of UIElement so Data Binding works as expected Private _sourceDownloaded As EventHandler Private _sourceFailed As EventHandler(Of ExceptionEventArgs) Private _pixelOffset As Windows.Point Public Sub New() _sourceDownloaded = New EventHandler(AddressOf OnSourceDownloaded) _sourceFailed = New EventHandler(Of ExceptionEventArgs)(AddressOf OnSourceFailed) AddHandler LayoutUpdated, AddressOf OnLayoutUpdated End Sub Public Shared ReadOnly SourceProperty As DependencyProperty = DependencyProperty.Register("Source", GetType(BitmapSource), GetType(Bitmap), New FrameworkPropertyMetadata(Nothing, FrameworkPropertyMetadataOptions.AffectsRender Or FrameworkPropertyMetadataOptions.AffectsMeasure, New PropertyChangedCallback(AddressOf Bitmap.OnSourceChanged))) Public Property Source() As BitmapSource Get Return DirectCast(GetValue(SourceProperty), BitmapSource) End Get Set(ByVal value As BitmapSource) SetValue(SourceProperty, value) End Set End Property Public Shared Function FindParentWindow(ByVal child As DependencyObject) As Window Dim parent As DependencyObject = VisualTreeHelper.GetParent(child) 'Check if this is the end of the tree If parent Is Nothing Then Return Nothing End If Dim parentWindow As Window = TryCast(parent, Window) If parentWindow IsNot Nothing Then Return parentWindow Else ' Use recursion until it reaches a Window Return FindParentWindow(parent) End If End Function Public Event BitmapFailed As EventHandler(Of ExceptionEventArgs) ' Return our measure size to be the size needed to display the bitmap pixels. ' ' Use MeasureOverride instead of MeasureCore so Data Binding works as expected. ' Protected Overloads Overrides Function MeasureCore(ByVal availableSize As Size) As Size Protected Overloads Overrides Function MeasureOverride(ByVal availableSize As Size) As Size Dim measureSize As New Size() Dim bitmapSource As BitmapSource = Source If bitmapSource IsNot Nothing Then Dim ps As PresentationSource = PresentationSource.FromVisual(Me) If Me.VisualParent IsNot Nothing Then Dim window As Window = window.GetWindow(Me.VisualParent) If window IsNot Nothing Then ps = PresentationSource.FromVisual(window.GetWindow(Me.VisualParent)) ElseIf FindParentWindow(Me) IsNot Nothing Then ps = PresentationSource.FromVisual(FindParentWindow(Me)) End If End If ' If ps IsNot Nothing Then Dim fromDevice As Matrix = ps.CompositionTarget.TransformFromDevice Dim pixelSize As New Vector(bitmapSource.PixelWidth, bitmapSource.PixelHeight) Dim measureSizeV As Vector = fromDevice.Transform(pixelSize) measureSize = New Size(measureSizeV.X, measureSizeV.Y) Else measureSize = New Size(bitmapSource.PixelWidth, bitmapSource.PixelHeight) End If End If Return measureSize End Function Protected Overloads Overrides Sub OnRender(ByVal dc As DrawingContext) Dim bitmapSource As BitmapSource = Me.Source If bitmapSource IsNot Nothing Then _pixelOffset = GetPixelOffset() ' Render the bitmap offset by the needed amount to align to pixels. dc.DrawImage(bitmapSource, New Rect(_pixelOffset, DesiredSize)) End If End Sub Private Shared Sub OnSourceChanged(ByVal d As DependencyObject, ByVal e As DependencyPropertyChangedEventArgs) Dim bitmap As Bitmap = DirectCast(d, Bitmap) Dim oldValue As BitmapSource = DirectCast(e.OldValue, BitmapSource) Dim newValue As BitmapSource = DirectCast(e.NewValue, BitmapSource) If ((oldValue IsNot Nothing) AndAlso (bitmap._sourceDownloaded IsNot Nothing)) AndAlso (Not oldValue.IsFrozen AndAlso (TypeOf oldValue Is BitmapSource)) Then RemoveHandler DirectCast(oldValue, BitmapSource).DownloadCompleted, bitmap._sourceDownloaded RemoveHandler DirectCast(oldValue, BitmapSource).DownloadFailed, bitmap._sourceFailed ' ((BitmapSource)newValue).DecodeFailed -= bitmap._sourceFailed; // 3.5 End If If ((newValue IsNot Nothing) AndAlso (TypeOf newValue Is BitmapSource)) AndAlso Not newValue.IsFrozen Then AddHandler DirectCast(newValue, BitmapSource).DownloadCompleted, bitmap._sourceDownloaded AddHandler DirectCast(newValue, BitmapSource).DownloadFailed, bitmap._sourceFailed ' ((BitmapSource)newValue).DecodeFailed += bitmap._sourceFailed; // 3.5 End If End Sub Private Sub OnSourceDownloaded(ByVal sender As Object, ByVal e As EventArgs) InvalidateMeasure() InvalidateVisual() End Sub Private Sub OnSourceFailed(ByVal sender As Object, ByVal e As ExceptionEventArgs) Source = Nothing ' setting a local value seems scetchy... RaiseEvent BitmapFailed(Me, e) End Sub Private Sub OnLayoutUpdated(ByVal sender As Object, ByVal e As EventArgs) ' This event just means that layout happened somewhere. However, this is ' what we need since layout anywhere could affect our pixel positioning. Dim pixelOffset As Windows.Point = GetPixelOffset() If Not AreClose(pixelOffset, _pixelOffset) Then InvalidateVisual() End If End Sub ' Gets the matrix that will convert a Windows.Point from "above" the ' coordinate space of a visual into the the coordinate space ' "below" the visual. Private Function GetVisualTransform(ByVal v As Visual) As Matrix If v IsNot Nothing Then Dim m As Matrix = Matrix.Identity Dim transform As Transform = VisualTreeHelper.GetTransform(v) If transform IsNot Nothing Then Dim cm As Matrix = transform.Value m = Matrix.Multiply(m, cm) End If Dim offset As Vector = VisualTreeHelper.GetOffset(v) m.Translate(offset.X, offset.Y) Return m End If Return Matrix.Identity End Function Private Function TryApplyVisualTransform(ByVal Point As Windows.Point, ByVal v As Visual, ByVal inverse As Boolean, ByVal throwOnError As Boolean, ByRef success As Boolean) As Windows.Point success = True If v IsNot Nothing Then Dim visualTransform As Matrix = GetVisualTransform(v) If inverse Then If Not throwOnError AndAlso Not visualTransform.HasInverse Then success = False Return New Windows.Point(0, 0) End If visualTransform.Invert() End If Point = visualTransform.Transform(Point) End If Return Point End Function Private Function ApplyVisualTransform(ByVal Point As Windows.Point, ByVal v As Visual, ByVal inverse As Boolean) As Windows.Point Dim success As Boolean = True Return TryApplyVisualTransform(Point, v, inverse, True, success) End Function Private Function GetPixelOffset() As Windows.Point Dim pixelOffset As New Windows.Point() Dim ps As PresentationSource = PresentationSource.FromVisual(Me) If ps IsNot Nothing Then Dim rootVisual As Visual = ps.RootVisual ' Transform (0,0) from this element up to pixels. pixelOffset = Me.TransformToAncestor(rootVisual).Transform(pixelOffset) pixelOffset = ApplyVisualTransform(pixelOffset, rootVisual, False) pixelOffset = ps.CompositionTarget.TransformToDevice.Transform(pixelOffset) ' Round the origin to the nearest whole pixel. pixelOffset.X = Math.Round(pixelOffset.X) pixelOffset.Y = Math.Round(pixelOffset.Y) ' Transform the whole-pixel back to this element. pixelOffset = ps.CompositionTarget.TransformFromDevice.Transform(pixelOffset) pixelOffset = ApplyVisualTransform(pixelOffset, rootVisual, True) pixelOffset = rootVisual.TransformToDescendant(Me).Transform(pixelOffset) End If Return pixelOffset End Function Private Function AreClose(ByVal Point1 As Windows.Point, ByVal Point2 As Windows.Point) As Boolean Return AreClose(Point1.X, Point2.X) AndAlso AreClose(Point1.Y, Point2.Y) End Function Private Function AreClose(ByVal value1 As Double, ByVal value2 As Double) As Boolean If value1 = value2 Then Return True End If Dim delta As Double = value1 - value2 Return ((delta &lt; 0.00000153) AndAlso (delta &gt; -0.00000153)) End Function </code></pre> <p>End Class</p> http://stackoverflow.com/questions/641634/default-contextmenu-style-wpf 1 Default ContextMenu Style - WPF Luke 2009-03-13T06:13:35Z 2009-05-21T12:41:15Z <p>I am trying to modify the default style of the ContextMenu in WPF. </p> <p>Normally you can creat a copy of the default in Expression Blend using the Edit Control Parts (Template) > Edit a Copy menu option. However I can't work out how to do this with a ContextMenu. Any idea how I can get the default style to modify?</p> <p>I am trying to disable the left side of the context menu where the icons are normally shown. </p> <p>Thanks!</p> <p><strong>Update:</strong> Maybe I wasn't clear about removing the icons. For example, if you have a context menu with no icons then the whole left side of the menu is wasted space. I would like to modify the default style of the context menu background to remove this. Simply I don't know how to access this default style.</p> http://stackoverflow.com/questions/1529487/how-do-a-use-a-securestring-to-create-a-sha1-or-sha512-hash/1529530#1529530 Comment by Luke on How do a use a SecureString to create a SHA1 or SHA512 Hash? Luke 2009-10-07T05:43:10Z 2009-10-07T05:43:10Z I do have a questions though. Would Dim output As String = Marshal.PtrToStringBSTR(pBStr) expose the string and the whole point of SecureString? http://stackoverflow.com/questions/1529487/how-do-a-use-a-securestring-to-create-a-sha1-or-sha512-hash/1529530#1529530 Comment by Luke on How do a use a SecureString to create a SHA1 or SHA512 Hash? Luke 2009-10-07T05:36:09Z 2009-10-07T05:36:09Z Thank you Joe ! http://stackoverflow.com/questions/939040/when-will-c-aes-algorithm-be-fips-compliant/939106#939106 Comment by Luke on When will C# AES algorithm be FIPS compliant? Luke 2009-10-05T12:43:42Z 2009-10-05T12:43:42Z What would be the correct code for the Utils.FipsAlgorithmPolicy function? Thank you! http://stackoverflow.com/questions/1365778/strange-xaml-menuitem-databound-itemssource-refresh-issue-after-empty-itemssource/1365790#1365790 Comment by Luke on Strange XAML MenuItem DataBound ItemsSource Refresh Issue after empty ItemsSource Luke 2009-09-02T04:32:17Z 2009-09-02T04:32:17Z Do I need to set the DataContext on the MenuItem that has the ItemsSource set? http://stackoverflow.com/questions/1345841/why-does-the-wpf-databinding-not-update-after-the-collection-is-filtered/1347628#1347628 Comment by Luke on Why does the WPF Databinding not update after the collection is Filtered? Luke 2009-08-29T01:02:17Z 2009-08-29T01:02:17Z Thanks but I have already implemented INotifyPropertyChanged and this doesn't help. http://stackoverflow.com/questions/1215793/observablecollection-filesystemwatcher-listbox-updating-issue Comment by Luke on ObservableCollection FileSystemWatcher ListBox Updating Issue Luke 2009-08-01T04:37:13Z 2009-08-01T04:37:13Z See Update #1 in the code I have provided above. http://stackoverflow.com/questions/1215793/observablecollection-filesystemwatcher-listbox-updating-issue Comment by Luke on ObservableCollection FileSystemWatcher ListBox Updating Issue Luke 2009-08-01T04:36:26Z 2009-08-01T04:36:26Z I tried that event however it doesn't work as expected. I was hoping I could do something in the Photos class that would not require me to call Refresh. http://stackoverflow.com/questions/153220/are-there-any-good-free-net-network-libraries-ftp-sftp-ssh-etc/153356#153356 Comment by Luke on Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.) Luke 2009-07-29T10:35:07Z 2009-07-29T10:35:07Z Someone has been working on this at CodePlex ( <a href="http://sharpssh2.codeplex.com/" rel="nofollow">sharpssh2.codeplex.com</a> ) I haven't really used it though. Still trying to find a better solution. http://stackoverflow.com/questions/1175633/wpf-shell-drag-drop-sample-unsafe-code/1175651#1175651 Comment by Luke on WPF Shell Drag Drop Sample - Unsafe Code Luke 2009-07-24T11:14:37Z 2009-07-24T11:14:37Z Jon, I have added more source code where this function is being called. Maybe the ReplaceTransparentPixelsWithTransparentKey could be removed? http://stackoverflow.com/questions/1175633/wpf-shell-drag-drop-sample-unsafe-code/1175651#1175651 Comment by Luke on WPF Shell Drag Drop Sample - Unsafe Code Luke 2009-07-24T11:05:48Z 2009-07-24T11:05:48Z This is for Shell drag and drop (full code within the above article). The above function ReplaceTransparentPixelsWithTransparentKey to resolve: The drag image seems to work in full 32-bit color, except when alpha equals zero. Then it renders those pixels at black. So we make a pass and set all those pixels to the transparency key color. This is only implemented for 32-bit pixel colors for now. http://stackoverflow.com/questions/1175633/wpf-shell-drag-drop-sample-unsafe-code/1175651#1175651 Comment by Luke on WPF Shell Drag Drop Sample - Unsafe Code Luke 2009-07-24T04:08:53Z 2009-07-24T04:08:53Z Thanks! I am dealing with the BitmapData here so I don't quite understand how I would use the ColorMap when the function is not drawing the bitmap. http://stackoverflow.com/questions/1102029/wpf-listview-virtualization-grouping/1102098#1102098 Comment by Luke on WPF ListView Virtualization Grouping Luke 2009-07-09T07:16:59Z 2009-07-09T07:16:59Z Thanks! I had a look at the sample code in Part 3. The main difficulty I am having is how would I add the grouping item using the GroupDescriptions http://stackoverflow.com/questions/1098298/wpf-backgroundworker-listview-filter-issue/1098745#1098745 Comment by Luke on WPF BackgroundWorker ListView Filter Issue Luke 2009-07-08T23:47:47Z 2009-07-08T23:47:47Z Thanks! Okay, if I setup the Filter to be set on the UI thread then won't the predicate run on the UI thread as well and not within the BackgroundWorker thread? http://stackoverflow.com/questions/1098298/wpf-backgroundworker-listview-filter-issue Comment by Luke on WPF BackgroundWorker ListView Filter Issue Luke 2009-07-08T15:06:58Z 2009-07-08T15:06:58Z Thanks! I will try get a more complete sample together ASAP. Would be nice if Stackoverflow would accept file attachments rather than dumping a large amount of code in the question. Do you have any sample code with BackgroundWorker for filtering a WPF ListView? http://stackoverflow.com/questions/851545/wpfs-icollectionview-filter-with-large-sets-of-data/853042#853042 Comment by Luke on WPF's ICollectionView.filter with large sets of data Luke 2009-07-08T13:45:29Z 2009-07-08T13:45:29Z Could you please add some sample code to show how you would move the filtering to a different thread? I can't seem to get this working on a different Thread.