User Luke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:07:46Zhttp://stackoverflow.com/feeds/user/46304http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1895589/iphone-wsdl-service-using-http-post-and-get-bindings0iPhone WSDL service using HTTP POST and GET BindingsLuke2009-12-13T04:51:48Z2009-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-filtered0Why does the WPF Databinding not update after the collection is Filtered?Luke2009-08-28T09:05:43Z2009-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><ListBox ItemsSource="{Binding Source={StaticResource ListBoxViewSource}}">
<ListBox.ItemTemplate>
<DataTemplate>
<WrapPanel>
<WrapPanel.ContextMenu>
<ContextMenu>
<Separator/>
<MenuItem ItemsSource="{Binding Source={StaticResource ContextViewSource}}" ItemTemplate="{StaticResource DataTemplate}">
<MenuItem.Tag>
<Binding Path="ID" Source="{StaticResource ContextViewSource}"/>
</MenuItem.Tag>
</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-selection0WPF TreeView Clear SelectionLuke2009-03-24T10:30:50Z2009-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-wpf0How do I load different images, PNG, GIF and JPG in the background using WPF?Luke2009-12-02T14:33:01Z2009-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-checking1What are the exact languages supported by the WPF in-built spell checking?Luke2009-11-17T15:07:36Z2009-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-contents0How can I copy WPF FlowDocument InlineUIContainer contents?Luke2009-10-23T05:35:14Z2009-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-issue0WPF BackgroundWorker ListView Filter IssueLuke2009-07-08T14:05:14Z2009-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 <> 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-validationimage0How can I make xVal work with my extended Html.ValidationImage?Luke2009-08-13T16:28:58Z2009-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-titlebar1How can I display an image within the WPF Aero Glass Titlebar?Luke2009-10-08T14:38:23Z2009-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-hash0How do a use a SecureString to create a SHA1 or SHA512 Hash?Luke2009-10-07T04:31:50Z2009-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-element0Editable Div ElementLuke2009-01-14T13:57:17Z2009-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-itemssource1Strange XAML MenuItem DataBound ItemsSource Refresh Issue after empty ItemsSourceLuke2009-09-02T04:03:40Z2009-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><MenuItem x:Name="MenuItem" Header="Menu" ItemsSource="{Binding Source={StaticResource MenuItemViewSource}}" ItemTemplate="{StaticResource MenuDataTemplate}">
<MenuItem.ItemContainerStyle>
<Style TargetType="{x:Type MenuItem}">
<Setter Property="Tag" Value="{Binding Path=ID, Source={StaticResource MenuItemViewSource}}"/>
<Setter Property="Background" Value="Red"/>
<Setter Property="Opacity" Value="0.5"/>
<EventSetter Event="Click" Handler="MenuItem_Click"/>
</Style>
</MenuItem.ItemContainerStyle>
<MenuItem.Style>
<Style TargetType="{x:Type MenuItem}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Items.Count, RelativeSource={RelativeSource Self}}" Value="0">
<Setter Property="IsEnabled" Value="False"/>
</DataTrigger>
</Style.Triggers>
</Style>
</MenuItem.Style>
</MenuItem>
</code></pre>
http://stackoverflow.com/questions/1358181/encrypt-and-save-the-asp-net-connectionstring-within-the-web-config-using-medium0Encrypt and Save the ASP.NET ConnectionString within the web.config using Medium Trust?Luke2009-08-31T16:15:00Z2009-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-mvc0Trouble with ASP.NET CAPTCHA Control Sample with ASP.NET MVCLuke2009-08-27T04:48:29Z2009-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><% using (Html.BeginForm()) { %>
<CaptchaControl:CaptchaControl ID="CaptchaControl" Name="Security" runat="server"></CaptchaControl:CaptchaControl>
<input type="submit" value="Send Message" />
<% } %>
</code></pre>
http://stackoverflow.com/questions/1258148/how-can-a-wcf-xelement-response-include-the-xml-declaration0How can a WCF XElement Response include the XML Declaration?Luke2009-08-11T02:06:18Z2009-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><?xml version="1.0" encoding="utf-8"?>
</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-erro1How do I extend Html.ValidationMessage so that I can include an image as the error?Luke2009-08-12T12:28:34Z2009-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> <label for="Name">Name:</label><%= Html.TextBox("Name")%><%
if (!string.IsNullOrEmpty(Html.ValidationMessage("Name"))) {
string Error = HtmlRemoval.StripTags(Html.ValidationMessage("Name")); %>
<img src="Error.gif" alt="Error" title="<%= Error %>" /><%
}
%>
</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-issue1ObservableCollection FileSystemWatcher ListBox Updating IssueLuke2009-08-01T03:56:02Z2009-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><ListBox ItemsSource="{Binding Source={StaticResource Photos}}" IsSynchronizedWithCurrentItem="True"/>
</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 >= 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 >= 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-code1WPF Shell Drag Drop Sample - Unsafe CodeLuke2009-07-24T03:38:06Z2009-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>/// <summary>
/// Replaces any pixel with a zero alpha value with the specified transparency key.
/// </summary>
/// <param name="bmpData">The bitmap data in which to perform the operation.</param>
/// <param name="transKey">The transparency color. This color is rendered transparent
/// by the DragDropHelper.</param>
/// <remarks>
/// This function only supports 32-bit pixel formats for now.
/// </remarks>
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 < bmpData.Height; ++y, pscan += bmpData.Stride)
{
int* prgb = (int*)pscan;
for (int x = 0; x < bmpData.Width; ++x, ++prgb)
{
// If the alpha value is zero, replace this pixel's color
// with the transparency key.
if ((*prgb & 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>/// <summary>
/// Gets a System.Drawing.Bitmap from a BitmapSource.
/// </summary>
/// <param name="source">The source image from which to create our Bitmap.</param>
/// <param name="transparencyKey">The transparency key. This is used by the DragDropHelper
/// in rendering transparent pixels.</param>
/// <returns>An instance of Bitmap which is a copy of the BitmapSource's image.</returns>
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 & 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 & 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-grouping1WPF ListView Virtualization GroupingLuke2009-07-09T05:48:20Z2009-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#11026591Answer by Luke for WPF ListView Virtualization GroupingLuke2009-07-09T08:56:45Z2009-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#10985950Answer by Luke for WPF Snoop not working on Windows XP?Luke2009-07-08T14:53:47Z2009-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-item1.NET Windows 7 Jumplist - Checkbox / Radio Jumplist ItemLuke2009-06-21T14:31:45Z2009-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-maxwidth0WPF ListBox Width / MaxWidthLuke2009-06-29T23:59:25Z2009-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><Style x:Key="ListBoxItemContainer" TargetType="{x:Type ListBoxItem}">
<Setter Property="Padding" Value="3"/>
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<Border x:Name="Border" BorderBrush="{x:Null}" CornerRadius="4" BorderThickness="1" Margin="1">
<Border x:Name="InnerBorder" BorderBrush="{x:Null}" CornerRadius="4" BorderThickness="1">
<ContentPresenter x:Name="ContentPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/>
</Border>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</code></pre>
http://stackoverflow.com/questions/1033111/wcf-named-pipe-security-and-multiple-user-sessions0WCF Named Pipe Security and Multiple User Sessions?Luke2009-06-23T14:59:39Z2009-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#10312824Answer by Luke for Mimic 'slowness' of web server on local computerLuke2009-06-23T08:16:30Z2009-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-when0How do I remember a WPF XmlDataProvider bound Treeview's IsExpanded property when refreshed?Luke2009-06-22T14:28:29Z2009-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-application2WCF Named Pipes within WPF applicationLuke2009-06-22T05:23:38Z2009-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#10240173Answer by Luke for .NET Jump ListLuke2009-06-21T14:26:01Z2009-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-class1WPF Blurry Images - Bitmap ClassLuke2009-06-12T16:08:41Z2009-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 < 0.00000153) AndAlso (delta > -0.00000153))
End Function
</code></pre>
<p>End Class</p>
http://stackoverflow.com/questions/641634/default-contextmenu-style-wpf1Default ContextMenu Style - WPFLuke2009-03-13T06:13:35Z2009-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#1529530Comment by Luke on How do a use a SecureString to create a SHA1 or SHA512 Hash?Luke2009-10-07T05:43:10Z2009-10-07T05:43:10ZI 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#1529530Comment by Luke on How do a use a SecureString to create a SHA1 or SHA512 Hash?Luke2009-10-07T05:36:09Z2009-10-07T05:36:09ZThank you Joe !http://stackoverflow.com/questions/939040/when-will-c-aes-algorithm-be-fips-compliant/939106#939106Comment by Luke on When will C# AES algorithm be FIPS compliant?Luke2009-10-05T12:43:42Z2009-10-05T12:43:42ZWhat 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#1365790Comment by Luke on Strange XAML MenuItem DataBound ItemsSource Refresh Issue after empty ItemsSourceLuke2009-09-02T04:32:17Z2009-09-02T04:32:17ZDo 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#1347628Comment by Luke on Why does the WPF Databinding not update after the collection is Filtered?Luke2009-08-29T01:02:17Z2009-08-29T01:02:17ZThanks but I have already implemented INotifyPropertyChanged and this doesn't help.http://stackoverflow.com/questions/1215793/observablecollection-filesystemwatcher-listbox-updating-issueComment by Luke on ObservableCollection FileSystemWatcher ListBox Updating IssueLuke2009-08-01T04:37:13Z2009-08-01T04:37:13ZSee Update #1 in the code I have provided above.http://stackoverflow.com/questions/1215793/observablecollection-filesystemwatcher-listbox-updating-issueComment by Luke on ObservableCollection FileSystemWatcher ListBox Updating IssueLuke2009-08-01T04:36:26Z2009-08-01T04:36:26ZI 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#153356Comment by Luke on Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.)Luke2009-07-29T10:35:07Z2009-07-29T10:35:07ZSomeone 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#1175651Comment by Luke on WPF Shell Drag Drop Sample - Unsafe CodeLuke2009-07-24T11:14:37Z2009-07-24T11:14:37ZJon, 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#1175651Comment by Luke on WPF Shell Drag Drop Sample - Unsafe CodeLuke2009-07-24T11:05:48Z2009-07-24T11:05:48ZThis 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#1175651Comment by Luke on WPF Shell Drag Drop Sample - Unsafe CodeLuke2009-07-24T04:08:53Z2009-07-24T04:08:53ZThanks! 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#1102098Comment by Luke on WPF ListView Virtualization GroupingLuke2009-07-09T07:16:59Z2009-07-09T07:16:59ZThanks! 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 GroupDescriptionshttp://stackoverflow.com/questions/1098298/wpf-backgroundworker-listview-filter-issue/1098745#1098745Comment by Luke on WPF BackgroundWorker ListView Filter IssueLuke2009-07-08T23:47:47Z2009-07-08T23:47:47ZThanks! 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-issueComment by Luke on WPF BackgroundWorker ListView Filter IssueLuke2009-07-08T15:06:58Z2009-07-08T15:06:58ZThanks! 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#853042Comment by Luke on WPF's ICollectionView.filter with large sets of dataLuke2009-07-08T13:45:29Z2009-07-08T13:45:29ZCould 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.