User Drew Noakes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:20:24Z http://stackoverflow.com/feeds/user/24874 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796936/wpf-keeping-an-object-running/1796957#1796957 0 Answer by Drew Noakes for WPF: Keeping an object running? Drew Noakes 2009-11-25T13:37:37Z 2009-11-25T13:37:37Z <p>Check the <code>StartupUri</code> property of the <code>App.xaml</code> file. It links in a Window's XAML file within your project to be launched at startup.</p> <p>If you want to avoid this, then I believe you can override a method in <code>App.xaml.cs</code> to launch the window explicitly via your controller.</p> <p>You should understand that the compiler makes a class called 'App' that overrides <a href="http://msdn.microsoft.com/en-us/library/system.windows.application.aspx" rel="nofollow"><code>System.Windows.Application</code></a> by compiling your <code>App.xaml</code> and <code>App.xaml.cs</code> files. Check the <a href="http://msdn.microsoft.com/en-us/library/system.windows.application.aspx" rel="nofollow">documentation for that class</a> to learn more about the lifecycle management of your WPF application.</p> http://stackoverflow.com/questions/1176623/wpf-how-to-stop-an-itemscontrol-psuedo-grids-columns-from-dancing-jumping-arou 2 WPF - How to stop an ItemsControl psuedo-grid's columns from dancing/jumping around during layout Drew Noakes 2009-07-24T09:34:30Z 2009-11-22T18:42:30Z <p><a href="http://stackoverflow.com/questions/957771/displaying-a-data-bound-stackpanel-inside-a-datatemplate">Several</a> <a href="http://stackoverflow.com/questions/1036831/synchronizing-wpf-control-widths-in-a-wrappanel">other</a> <a href="http://stackoverflow.com/questions/539174/wpf-grid-column-maxwidth-not-enforced">questions</a> <a href="http://stackoverflow.com/questions/1032035/showing-a-dynamic-size-list-in-xaml-readonly">on</a> <a href="http://stackoverflow.com/questions/691339/wpf-gridviewrowpresenter-in-an-itemscontrol">SO</a> have come to the same conclusion I have -- using an <code>ItemsControl</code> with a <code>DataTemplate</code> for each item constructed to position items such that they resemble a grid is much simpler (especially to format) than using a <code>ListView</code>.</p> <p>The code resembles:</p> <pre><code>&lt;StackPanel Grid.IsSharedSizeScope="True"&gt; &lt;!-- Header --&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" SharedSizeGroup="Column1" /&gt; &lt;ColumnDefinition Width="Auto" SharedSizeGroup="Column2" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;TextBlock Grid.Column="0" Text="Column Header 1" /&gt; &lt;TextBlock Grid.Column="1" Text="Column Header 2" /&gt; &lt;/Grid&gt; &lt;!-- Items --&gt; &lt;ItemsControl ItemsSource="{Binding Path=Values, Mode=OneWay}"&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" SharedSizeGroup="Column1" /&gt; &lt;ColumnDefinition Width="Auto" SharedSizeGroup="Column2" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;TextBlock Grid.Column="0" Text="{Binding ColumnProperty1}" /&gt; &lt;TextBlock Grid.Column="1" Text="{Binding ColumnProperty2}" /&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; &lt;/StackPanel&gt; </code></pre> <p>The problem I'm seeing is that whenever I swap the object to which the <code>ItemsSource</code> is bound (it's an <code>ObservableCollection</code> that I replace the reference to, rather than clear and re-add), the entire 'grid' dances about for a few seconds.</p> <p>Presumably it is making a few layout passes to get all the <code>Auto</code>-width columns to match up.</p> <p>This is very distracting for my users and I'd like to get it sorted out. Has anyone else seen this?</p> http://stackoverflow.com/questions/1722216/how-to-disable-wpf-menus-transparency-when-show-menu/1722301#1722301 0 Answer by Drew Noakes for How to disable WPF Menu's transparency when show menu? Drew Noakes 2009-11-12T13:48:34Z 2009-11-12T13:48:34Z <p>Is the issue because the menu fades in when clicked, but displays immediately when using a shortcut key, and the fading is slow? When I've seen problems like this, I've updated the video drivers and it's usually helped.</p> <p>If you want to disable fading altogether, you could override the menu control templates and specify that the popup doesn't use any animation.</p> http://stackoverflow.com/questions/726765/cruise-control-net-statistic-publishers/1707045#1707045 1 Answer by Drew Noakes for Cruise Control .Net Statistic Publishers Drew Noakes 2009-11-10T10:44:22Z 2009-11-10T10:44:22Z <p>I use:</p> <ul> <li>NCover to generate coverage statistics</li> <li>SourceMonitor to generate numbers such as: <ul> <li>lines of code</li> <li>statement count</li> <li>% comment lines</li> <li>% documentation lines</li> <li>type count</li> <li>avg methods per class</li> <li>avg statements per method</li> <li>avg block depth</li> </ul></li> <li>NDepend generates several stats, of which I capture <ul> <li>IL count</li> <li>% of types that are public</li> </ul></li> </ul> <p>I also wrote custom NAnt tasks that</p> <ul> <li>Run regular expressions over the source code to find things such as TODO, BUG and NotImplementedException. This creates a separate report with full details, but I also report the counts of each on the build summary and track the numbers of each in charts.</li> <li>Summarises the resulting binaries, providing <ul> <li>output file count</li> <li>output total size (bytes)</li> <li>min output file size</li> <li>max output file size</li> </ul></li> </ul> http://stackoverflow.com/questions/1679391/wpf-how-to-combine-datatrigger-and-eventtrigger 0 WPF - How to combine DataTrigger and EventTrigger? Drew Noakes 2009-11-05T09:35:38Z 2009-11-09T17:53:50Z <blockquote> <p><strong>NOTE</strong> I have asked the related question: <a href="http://stackoverflow.com/questions/602517/wpf-how-to-combine-datatrigger-and-trigger">How to combine DataTrigger and Trigger?</a></p> </blockquote> <p>I think I need to combine an <code>EventTrigger</code> and a <code>DataTrigger</code> to achieve what I'm after:</p> <ul> <li>when an item appears in my ListBox, it should flash for a few moments</li> <li>if the item is 'Critical' then it should remain highlighted</li> </ul> <p>Currently I have a DataTemplate that looks like this:</p> <pre><code>&lt;DataTemplate DataType="{x:Type Notifications:NotificationViewModel}"&gt; &lt;Grid HorizontalAlignment="Stretch"&gt; &lt;Border Name="Background" CornerRadius="8" Background="#80c0c0c0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" /&gt; &lt;Border Name="Highlight" CornerRadius="8" Background="Red" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" /&gt; &lt;!-- snip actual visual stuff --&gt; &lt;Grid.Triggers&gt; &lt;EventTrigger RoutedEvent="Grid.Loaded"&gt; &lt;EventTrigger.Actions&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;DoubleAnimation x:Name="LoadedAnimation" Storyboard.TargetName="Highlight" Storyboard.TargetProperty="Opacity" From="0" To="1" RepeatBehavior="5x" Duration="0:00:0.2" AutoReverse="True" /&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger.Actions&gt; &lt;/EventTrigger&gt; &lt;/Grid.Triggers&gt; &lt;/Grid&gt; &lt;DataTemplate.Triggers&gt; &lt;DataTrigger Binding="{Binding Path=IsCritical}" Value="True"&gt; &lt;Setter TargetName="LoadedAnimation" Property="RepeatBehavior" Value="5.5x" /&gt; &lt;/DataTrigger&gt; &lt;/DataTemplate.Triggers&gt; &lt;/DataTemplate&gt; </code></pre> <p>The idea is that an EventTrigger animates the <code>Highlight</code> border's opacity between 0 and 1 and back again repeatedly when the item is first loaded, drawing the user's attention to it. The <code>DataTrigger</code> determines the number of times to animate. If the view model reports that the item <code>IsCritical</code> then the animation occurs 5.5 times (such that it ends at opacity 1), otherwise it occurs 5 times (ending at opacity 0.)</p> <p>However the above XAML doesn't work because the DataTrigger's setter fails with:</p> <blockquote> <p>Child with Name 'LoadedAnimation' not found in VisualTree.</p> </blockquote> <p>Fair enough. So, shy of using a custom value converter or putting the animation count on the view model and binding to it, what are my options?</p> http://stackoverflow.com/questions/602517/wpf-how-to-combine-datatrigger-and-trigger 2 WPF - How to combine DataTrigger and Trigger? Drew Noakes 2009-03-02T14:25:47Z 2009-11-05T09:37:34Z <blockquote> <p><strong>NOTE</strong> I have asked the related question: <a href="http://stackoverflow.com/questions/1679391/wpf-how-to-combine-datatrigger-and-eventtrigger">How to combine DataTrigger and EventTrigger?</a></p> </blockquote> <p>I have a list box containing several items. The item's class implements <code>INotifyPropertyChanged</code> and has a property <code>IsAvailable</code>. I use that property to indicate unavailable options in the list using a different colour.</p> <p>However, if a selected item is not available, then the foreground colour should be red.</p> <pre><code>&lt;ListBox&gt; &lt;ListBox.Resources&gt; &lt;DataTemplate DataType="{x:Type local:InstitutionViewModel}"&gt; &lt;TextBlock Name="Name" Text="{Binding Name}"/&gt; &lt;DataTemplate.Triggers&gt; &lt;DataTrigger Binding="{Binding IsAvailable}" Value="False"&gt; &lt;Setter TargetName="Name" Property="Foreground" Value="#888"/&gt; &lt;/DataTrigger&gt; &lt;/DataTemplate.Triggers&gt; &lt;/DataTemplate&gt; &lt;/ListBox.Resources&gt; &lt;/ListBox&gt; </code></pre> <p>I use the above data trigger to grey out unavailable items.</p> <p>The problem I'm facing is that the fact that the item is selected has nothing to do with the underlying data to which the template is bound. What I really want is some kind of multi-trigger that supports both a regular <code>Trigger</code> on a dependency property (<code>ListBoxItem.IsSelected</code>) along with a <code>DataTrigger</code> on the bound data item.</p> <p>Can this be done without introducing the concept of selection into my view model?</p> <p><em>For anyone wondering why I do not disable unavailable items, understand that it is a requirement of the application that unavailable options may be selected. There are actually a few list boxes, and selection in one effects what's available in the others. I cannot disable the items as the user would not be able to change their minds or explore different combinations if items were disabled based upon earlier selections.</em></p> http://stackoverflow.com/questions/1666137/windbg-showing-different-call-stacks-when-attached-to-process-when-compared-to-cr 0 WinDbg showing different call stacks when attached to process when compared to crash dump Drew Noakes 2009-11-03T09:10:33Z 2009-11-03T09:30:17Z <p>I'm analysing a deadlock that's occurring when using a native library alongside managed code. I'm using WinDbg to debug the problem with the intention of saving a dump such that the vendor might observe the issue on their premises.</p> <p>When attaching to the problematic process I see the following message before any call stacks:</p> <blockquote> <p>WARNING: Stack unwind information not available. Following frames may be wrong.</p> </blockquote> <p>The frames actually look correct when attached directly to the process. However, when I take a dump of this file and then open the dump in WinDbg on another machine, one of the stack frames is different (the above error is displayed too.) This originally had the vendor stumped, as the code path seemed impossible.</p> <p>I took the dump using:</p> <pre><code>.dump /ma filename.dmp </code></pre> <p>What would cause this discrepancy, and is there anything I can do to reliably analyse a dump file's call stacks? Might there be any other misrepresented data I should be aware of?</p> http://stackoverflow.com/questions/1656764/wpf-control-over-blending-between-semi-transparent-layers 0 WPF - Control over blending between semi-transparent layers Drew Noakes 2009-11-01T09:51:31Z 2009-11-01T22:43:00Z <p>In digital imaging, when overlaying two visual layers there are multiple ways you can calculate the image that results when light from a lower layer shines through an obstructing layer in some way. This can offer effects that do not occur as natural phenomenon, such as multiplying colours.</p> <p>Here's an example of the layer blending mode menu provided in Photoshop:</p> <p><img src="http://www.psdtop.com/blog/wp-content/images/020_Blending-Modes/blending-mode.jpg" /></p> <p>I recommend visiting the article <a href="http://www.psdtop.com/blog/basic/understanding-blending-modes/" rel="nofollow">Understanding Blending Modes</a> if this topic isn't something you're familiar with. It provides a great showcase of the results of each option against two layers.</p> <p>As far as I can tell, WPF only provides the 'Normal' option. That is, the following UI just blends colours as though they were coloured gels:</p> <pre><code>&lt;Grid&gt; &lt;Ellipse Width="40" Height="40" Fill="#80FF0000" Margin="16,0,0,0" /&gt; &lt;Ellipse Width="40" Height="40" Fill="#8000FF00" Margin="32,32,0,0" /&gt; &lt;Ellipse Width="40" Height="40" Fill="#800000FF" Margin="0,32,0,0" /&gt; &lt;/Grid&gt; </code></pre> <p>Which looks like this:</p> <p><img src="http://img4.imageshack.us/img4/5541/temprx.png" /></p> <p>I'd like to know if there's any way to control the way in which layers blend.</p> http://stackoverflow.com/questions/1648512/help-needed-for-optimizing-linq-data-extraction/1648525#1648525 1 Answer by Drew Noakes for Help needed for optimizing linq data extraction Drew Noakes 2009-10-30T07:57:55Z 2009-10-30T07:57:55Z <p>You're using <code>IEnumerable</code> in the foreach loop. Implementations only have to prepare data when it's asked for. In this way, I'd suggest that the above code is accessing your data lazily -- that is, only when you enumerate the items (which actually happens when you call <code>Count()</code>.)</p> <p>Put a <code>System.Diagnostics.Stopwatch</code> around the call to <code>Count()</code> and see whether that's taking the bulk of the time you're seeing.</p> <p>I can't comment further here because you don't specify the type of <code>ent</code> in your code sample.</p> http://stackoverflow.com/questions/1643476/wcf-closing-a-duplex-servicehost-blocks-for-closetimeout-duration-if-closed-whe 0 WCF - Closing a duplex ServiceHost blocks for CloseTimeout duration if closed when client(s) connected Drew Noakes 2009-10-29T12:47:56Z 2009-10-29T12:47:56Z <p>I have a Windows Service that hosts three different duplex WCF channels. Clients can connect to have updates sent to them via their callback contract. Essentially there are three pub-sub channels.</p> <p>This service takes a long time to bounce when clients are connected. The call to <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.servicehost.close.aspx" rel="nofollow"><code>ServiceHost.Close</code></a> takes 10 seconds to return (so the service takes 30+ seconds to stop.) It turns out that my <code>closeTimeout</code> in config is 10 seconds. Changing this value indicates that this is the cause of the problem.</p> <p>What do I have to do to close the channel promptly? I don't like the idea that something is timing out. I could call <code>Abort</code>, but it seems that there must be a better way. I haven't seen this on non-duplex channels before, so assume it's something to do with it being duplex.</p> <p>Ideally the client would be notified immediately that the channel had faulted, so that the user could see straight away that updates have halted.</p> http://stackoverflow.com/questions/1316518/how-did-microsoft-create-assemblies-that-have-circular-references 38 How did Microsoft create assemblies that have circular references? Drew Noakes 2009-08-22T17:26:06Z 2009-10-27T15:17:32Z <p>In the .NET BCL there are circular references between:</p> <ul> <li><code>System.dll</code> and <code>System.Xml.dll</code></li> <li><code>System.dll</code> and <code>System.Configuration.dll</code></li> <li><code>System.Xml.dll</code> and <code>System.Configuration.dll</code></li> </ul> <p>Here's a screenshot from .NET Reflector that shows what I mean:</p> <p><img src="http://img35.imageshack.us/img35/1259/circulardependencies.png" /></p> <p>How Microsoft created these assemblies is a mystery to me. Is a special compilation process required to allow this? I imagine something interesting is going on here.</p> http://stackoverflow.com/questions/1626368/difference-between-clr-2-0-and-clr-4-0/1626391#1626391 2 Answer by Drew Noakes for Difference between CLR 2.0 and CLR 4.0 Drew Noakes 2009-10-26T18:10:44Z 2009-10-26T18:10:44Z <p>I don't believe there are any new IL instructions. The new CLR has improvements to things like inlining and garbage collection which do the same job as the 2.0 CLR, but better. A virtual machine (such as the CLR or JVM) is an abstract concept with multiple possible implementations. I believe CLR 4.0 is the same abstract machine as in CLR 2.0, just with an improved implementation.</p> <p>Even the new dynamic stuff is just a compiler trick with new APIs (unlike in <a href="http://stackoverflow.com/questions/1594430/different-approaches-to-dynamic-typing-in-the-clr-and-jvm">Java where it's being proposed as a new opcode</a>.)</p> <p>If I'm wrong about this, I'd love to know!</p> http://stackoverflow.com/questions/1597622/setting-canvas-to-a-control-template/1597789#1597789 1 Answer by Drew Noakes for Setting Canvas to a control template? Drew Noakes 2009-10-20T23:05:07Z 2009-10-22T22:56:06Z <p>When you create a type such as canvas as a resource, then you are creating <strong>ONE</strong> instance of the type. This means that you cannot place that resource in more than one location in your application (an element can only be in one place at a time). You should look at using control templates, I think.</p> <p>You don't need any code behind for this.</p> <p>Something like this:</p> <pre><code>&lt;ControlTemplate x:Key="Icon"&gt; &lt;Canvas&gt; &lt;Path ... /&gt; &lt;Path ... /&gt; &lt;/Canvas&gt; &lt;/ControlTemplate&gt; </code></pre> <p>Then elsewhere you do something like this:</p> <pre><code>&lt;Button&gt; &lt;Control Template="{StaticResource Icon}" /&gt; &lt;/Button&gt; </code></pre> <p>This constructs a regular looking button with your icon as it's content. The content of that button is your icon.</p> <p>If, however, you want to completely redefine the template of your button, then you would do so </p> <pre><code>&lt;ControlTemplate x:Key="Icon" TargetType="Button"&gt; &lt;Canvas&gt; &lt;Path ... /&gt; &lt;Path ... /&gt; &lt;/Canvas&gt; &lt;/ControlTemplate&gt; </code></pre> <p>Then elsewhere you do something like this:</p> <pre><code>&lt;Button Template="{StaticResource Icon}" /&gt; </code></pre> <p>Note that this isn't a great style for a button. Look at <a href="http://msdn.microsoft.com/en-us/library/ms753328.aspx" rel="nofollow">this example from Microsoft</a> for an example of a more fully featured button template.</p> <p><strong>EDIT</strong></p> <p>Unless you have a <code>ContentPresenter</code> in your <code>ControlTemplate</code>, then there's no need to assign the template to a content control. Note that any class derived from <code>Control</code> can be templated, including <code>Control</code> itself. So in order to place an item into your view, then you can just use:</p> <pre><code>&lt;Control Template="{StaticResource Icon}" /&gt; </code></pre> <p>This uses the widest applicable type in the hierarchy, which is also the lightest.</p> http://stackoverflow.com/questions/1594430/different-approaches-to-dynamic-typing-in-the-clr-and-jvm 3 Different approaches to dynamic typing in the CLR and JVM Drew Noakes 2009-10-20T12:58:01Z 2009-10-20T13:40:12Z <p>.NET 4.0 introduces new support for dispatching invocations on dynamically typed objects. As far as I can make out, this involves:</p> <ul> <li>no change to the CLR</li> <li>new types in the BCL</li> <li>new compilers that convert new syntax into usages of the new types</li> </ul> <p>In the Java space, folks are discussing <a href="http://jcp.org/en/jsr/detail?id=292" rel="nofollow">adding a new <code>dynamicinvoke</code> bytecode to the JVM</a> such that the dispatch is handled by the JIT, behind the abstraction of the intermediate language.</p> <p>The Java approach has support from <a href="http://jcp.org/en/jsr/results?id=3659" rel="nofollow">many significant parties</a>.</p> <p>These seem like two fundamentally different approaches. What are the merits of each, and why did both camps choose to take different paths? I'm especially interested in the flexibility and runtime performance of both solutions. Are both VMs ultimately trying to achieve the same thing?</p> http://stackoverflow.com/questions/1589510/visual-studio-runtime-impact-of-conditional-and-disabled-breakpoints 0 Visual Studio - Runtime impact of conditional and disabled breakpoints Drew Noakes 2009-10-19T15:50:32Z 2009-10-19T16:13:55Z <p>After spending a little time wondering why my app was running a particular scenario very slowly with the debugger attached, I discovered that this was due to having a conditional breakpoint (whose condition was never being met). This seems reasonable, as the CPU would signal the breakpoint and VS would need to evaluate the condition before allowing execution to continue. These transitions must be costly.</p> <p>I assume that a breakpoint in a code path that is not executed has no runtime impact.</p> <p>So my question is twofold:</p> <ol> <li>Are there any resources that can quantify the cost associated with conditional breakpoints, and if so is there anything one can do to reduce their runtime evaluation cost?</li> <li>Is there any cost associated with a 'disabled' breakpoint? By disabled I mean that VS displays the breakpoint marker in the gutter with a hollow circle.</li> </ol> <p>Of course if anything I've mentioned above doesn't make sense, then please point me in the right direction.</p> http://stackoverflow.com/questions/1435705/wpf-expander-still-shows-validation-error-adorner-when-shrunk/1587938#1587938 1 Answer by Drew Noakes for WPF Expander still shows Validation Error adorner when shrunk Drew Noakes 2009-10-19T10:23:29Z 2009-10-19T10:23:29Z <p>Check <a href="http://stackoverflow.com/questions/1471451/wpf-error-template-red-box-still-visible-on-collapse-of-an-expander/1471733#1471733">this answer</a> or <a href="http://stackoverflow.com/questions/321327/how-do-i-get-rid-of-the-red-rectangle-when-my-wpf-binding-validation-has-failed-a/321987#321987">this answer</a> for potential solutions. Either of these two will work for you.</p> http://stackoverflow.com/questions/160391/listbox-with-grid-as-itemspaneltemplate-produces-weird-binding-errors/1578969#1578969 0 Answer by Drew Noakes for ListBox with Grid as ItemsPanelTemplate produces weird binding errors Drew Noakes 2009-10-16T16:06:38Z 2009-10-16T16:06:38Z <p>If you want to completely replace the <code>ListBoxItem</code> template such that no selection is visible (perhaps you want the look of <code>ItemsControl</code> with the grouping/etc behaviour of <code>ListBox</code>) then you can use this style:</p> <pre><code>&lt;Style TargetType="ListBoxItem"&gt; &lt;Setter Property="Margin" Value="2" /&gt; &lt;Setter Property="FocusVisualStyle" Value="{x:Null}" /&gt; &lt;Setter Property="OverridesDefaultStyle" Value="True" /&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type ListBoxItem}"&gt; &lt;ContentPresenter Content="{TemplateBinding ContentControl.Content}" HorizontalAlignment="Stretch" VerticalAlignment="{TemplateBinding Control.VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>This template also excludes the standard <code>Border</code> wrapper. If you need that, you can use replace the template with this:</p> <pre><code>&lt;Border BorderThickness="{TemplateBinding Border.BorderThickness}" Padding="{TemplateBinding Control.Padding}" BorderBrush="{TemplateBinding Border.BorderBrush}" Background="{TemplateBinding Panel.Background}" SnapsToDevicePixels="True"&gt; &lt;ContentPresenter Content="{TemplateBinding ContentControl.Content}" ContentTemplate="{TemplateBinding ContentControl.ContentTemplate}" HorizontalAlignment="{TemplateBinding Control.HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding Control.VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" /&gt; &lt;/Border&gt; </code></pre> <p>If you don't need all these <code>TemplateBinding</code> values then you can remove some for performance.</p> http://stackoverflow.com/questions/1577240/wpf-layoutupdated-event-firing-repeatedly 0 WPF - LayoutUpdated event firing repeatedly Drew Noakes 2009-10-16T10:12:01Z 2009-10-16T10:28:28Z <p>I've been adding a bit of animation to my WPF application.</p> <p>Thanks to <a href="http://blogs.msdn.com/dancre/archive/2006/03/04/attaching-behavior-to-an-avalon-element-in-xaml.aspx" rel="nofollow">Dan Crevier's unique solution to animating the children of a panel</a> combined with the <a href="http://code.google.com/p/wpf-animation/" rel="nofollow">awesome WPF Penner animations</a> it turned out to be fairly straightforward to make one of my controls look great and have its children move about with some nice animation.</p> <p>Unfortunately this all comes with a performance overhead. I'm happy to have the performance hit when items are added/removed or the control is resized, but it seems that this perf hit occurs consistently throughout the application's lifetime, even when items are completely static.</p> <p>The <code>PanelLayoutAnimator</code> class uses an attached property to hook the <a href="http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.layoutupdated%28VS.95" rel="nofollow"><code>UIElement.LayoutUpdated</code></a>.aspx) event. When this event fires, render transforms are animated to cause the children to glide to their new positions.</p> <p>Unfortunately it seems that the <code>LayoutUpdated</code> event fires every second or so, even when nothing is happening in the application (at least I don't think my code's doing anything -- the app doesn't have focus and the mouse is steady.) As the reason for the event is not immediately apparent to the event handler, all children of the control have to be reevaluated. This event is being called about once a second when idle. The frequency increases when actually using the app.</p> <p>So my question is, how can I improve the performance here? Any answer that assists would be appreciated, but I'm currently stuck on these sub-questions:</p> <ol> <li><p>What causes the <code>LayoutUpdated</code> event to fire so frequently? Is this supposed to happen, and if not, how can I find out why it's firing and curtail it?</p></li> <li><p>Is there a more convenient way within the handler to know whether something has happened that might have moved children? If so, I could bail out early and avoid the overhead of looping each child.</p></li> </ol> <p>For now I will work around this issue by disabling animation when there are more than <em>N</em> children in the panel.</p> http://stackoverflow.com/questions/1574826/when-if-is-best-over-switch-or-vice-versa/1574889#1574889 1 Answer by Drew Noakes for When IF is best over Switch or vice versa Drew Noakes 2009-10-15T20:38:14Z 2009-10-15T20:38:14Z <p>If you are switching on strings, then the C# compiler emits chained <code>if</code>s anyway, so just do whatever is more readable for you.</p> <p>Switching on numeric values works slightly differently. If you have large enough sets of values that are close together, then the C# compiler creates a jump table in the IL. This jump table does a binary search within the values in question in order to determine which exact instruction to jump to. This can be very fast as binary search has O(log N) complexity. The OpCode that performs this is, unsurprisingly, <a href="http://msdn.microsoft.com/en-us/library/system.reflection.emit.opcodes.switch.aspx" rel="nofollow"><code>Switch</code></a>.</p> <p>Interestingly, if the values that you provide case statements for fall into two consecutive groups (eg. 0,1,2,3,10,11,12,13) then the compiler will put an outer if statement around two jump tables. Similarly, if you have a mostly-populated series (1,2,3,5,6,8) then the missing indexes are populated with labels that jump to the <code>default</code> branch.</p> <p>If you don't have loads of items (personally I would say more than 10 or so), then you should just go with whatever is easier to read.</p> http://stackoverflow.com/questions/1573589/can-making-a-method-static-improve-performance-and-under-what-circumstances 6 Can making a method static improve performance, and under what circumstances? Drew Noakes 2009-10-15T16:40:12Z 2009-10-15T19:00:27Z <p>When, if ever, is it faster to pass arguments as arguments to a static method rather than have the method be non-static and access the same values via instance members. Assume the method accesses these members in a read-only fashion.</p> <p>All other things being equal, calling a static method is <a href="http://msdn.microsoft.com/en-us/library/ms973852.aspx#fastmanagedcode%5Ftopic3" rel="nofollow">slightly faster</a> than calling an instance method.</p> <p>All other things being equal, calling a method with no arguments is slightly faster than calling one with arguments.</p> <p>Consider:</p> <pre><code>private Thing _thing; void DoTheThing() { _thing.DoIt(); } </code></pre> <p>Versus this equivalent code:</p> <pre><code>private Thing _thing; // caller's responsibility to pass "_thing" static void DoTheThing(Thing thing) { thing.DoIt(); } </code></pre> <p>I can't think of a real-world situation where this kind of optimisation would really add any value, but as a thought experiment (for those who like to discuss this kind of thing), is there really a benefit, and if so then how many arguments (of what types etc) tip the balance the other way?</p> <p>Would any other factors play into the consideration of this? The static method accesses <code>_thing</code> as a local variable rather than a field, for example.</p> http://stackoverflow.com/questions/1563191/c-cleanest-way-to-write-retry-logic/1563222#1563222 4 Answer by Drew Noakes for C# cleanest way to write retry logic? Drew Noakes 2009-10-13T22:08:22Z 2009-10-13T22:08:22Z <pre><code>public void TryThreeTimes(Action action) { int retries = 3; while(true) { try { action(); break; // success! } catch { if(--retries == 0) throw; else Thread.Sleep(1000); } } } </code></pre> <p>Then you would call:</p> <pre><code>TryThreeTimes(DoSomething); </code></pre> <p>...or alternatively...</p> <pre><code>TryThreeTimes(() =&gt; DoSomethingElse(withLocalVariable)); </code></pre> <p>You might like to extract the magic number '3' and the timeout period as arguments.</p> http://stackoverflow.com/questions/1562540/why-does-stylecop-recommend-prefixing-method-or-property-calls-with-this/1562635#1562635 4 Answer by Drew Noakes for Why does StyleCop recommend prefixing method or property calls with "this"? Drew Noakes 2009-10-13T20:06:25Z 2009-10-13T20:06:25Z <p>Note that the compiler doesn't care whether you prefix references with <code>this</code> or not (unless there's a name collision with a local variable and a field or you want to call an extension method on the current instance.)</p> <p>It's up to your style. Personally I remove <code>this.</code> from code as I think it decreases the signal to noise ratio.</p> <p>Just because Microsoft uses this style internally doesn't mean you have to. StyleCop seems to be a MS-internal tool gone public. I'm all for adhering to the Microsoft conventions around public things, such as:</p> <ul> <li>type names are in PascalCase</li> <li>parameter names are in camelCase</li> <li>interfaces should be prefixed with the letter I</li> <li>use singular names for enums, except for when they're [Flags]</li> </ul> <p>...but what happens in the private realms of your code is, well, private. Do whatever your team agrees upon. </p> <p>Consistency is also important. It reduces cognitive load when reading code, especially if the code style is as you expect it. But even when dealing with a foreign coding style, if it's consistent then it won't take long to become used to it. Use tools like ReSharper and StyleCop to ensure consistency where you think it's important.</p> <p>Using .NET Reflector suggests that Microsoft isn't that great at adhering to the StyleCop coding standards in the BCL anyway.</p> http://stackoverflow.com/questions/612651/how-can-you-force-stylecop-for-resharper-to-ignore-files/1562569#1562569 2 Answer by Drew Noakes for How can you force StyleCop for ReSharper to ignore files? Drew Noakes 2009-10-13T19:56:17Z 2009-10-13T19:56:17Z <p>You can completely disable ReSharper for a particular file by pressing <kbd>CTRL</kbd> + <kbd>8</kbd>. You'll see the little 'eye' in the top right of the code window (at the top of the gutter) go grey, indicating it's disabled.</p> <p>Press the keystroke again to re-enable it.</p> http://stackoverflow.com/questions/1559261/control-template-for-existing-controls-in-wpf/1559443#1559443 1 Answer by Drew Noakes for Control template for existing controls in WPF Drew Noakes 2009-10-13T10:42:57Z 2009-10-13T10:42:57Z <p>Check out <a href="http://blog.wpfwonderland.com/2007/01/02/wpf-tools-stylesnooper/" rel="nofollow">StyleSnooper</a>:</p> <p><img src="http://dotnet-gui.com/blogs/wpf_tools_blog/WindowsLiveWriter/StyleSnooperDenStandardStylesaufderSpur_F211/image_2.png" /></p> <p>It will dump out the standard syltes (and therefore templates too) for the built in controls. You can also load in a specific DLL that contains WPF controls and view the default styles for those too.</p> http://stackoverflow.com/questions/1551420/wpf-animation-pause-continue/1551591#1551591 3 Answer by Drew Noakes for WPF Animation Pause/Continue Drew Noakes 2009-10-11T19:54:15Z 2009-10-11T19:54:15Z <p>Here's some XAML that shows how to do what you're after (you can paste the entire thing into <a href="http://kaxaml.com" rel="nofollow">Kaxaml</a> to try it out:</p> <pre><code>&lt;Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid Background="Red"&gt; &lt;Grid.Triggers&gt; &lt;EventTrigger RoutedEvent="Grid.Loaded"&gt; &lt;EventTrigger.Actions&gt; &lt;BeginStoryboard&gt; &lt;Storyboard RepeatBehavior="Forever"&gt; &lt;DoubleAnimation Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:00:02" BeginTime="0:00:02" /&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger.Actions&gt; &lt;/EventTrigger&gt; &lt;/Grid.Triggers&gt; &lt;/Grid&gt; &lt;/Page&gt; </code></pre> <p>The trick is to use the <code>BeginTime</code> propertly of the <code>DoubleAnimation</code> class.</p> http://stackoverflow.com/questions/1533334/datagridviewrow-not-being-garbage-collected/1533621#1533621 0 Answer by Drew Noakes for DataGridViewRow not being Garbage Collected Drew Noakes 2009-10-07T19:19:23Z 2009-10-07T19:19:23Z <p>If you don't dispose your objects, then they will not have finalisation suppressed.</p> http://stackoverflow.com/questions/1532573/customizing-the-toggle-state-of-a-toggle-button-in-wpf/1532607#1532607 0 Answer by Drew Noakes for Customizing the toggle state of a toggle button in wpf Drew Noakes 2009-10-07T16:09:23Z 2009-10-07T16:09:23Z <p>The issue here is because you are using <code>Image</code> resources. The <code>Image</code> in your resources is a concrete instance of a control. It can only be in one place at a time. So when you have more than one item in your list...</p> <p>This should work for you:</p> <pre><code>&lt;Style x:Key="OnOffToggleImageStyle" TargetType="ToggleButton"&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="IsChecked" Value="True"&gt; &lt;Setter Property="Content"&gt; &lt;Setter.Value&gt; &lt;Image Source="C:\ON.jpg" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Trigger&gt; &lt;Trigger Property="IsChecked" Value="False"&gt; &lt;Setter Property="Content"&gt; &lt;Setter.Value&gt; &lt;Image Source="C:\OFF.jpg" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; </code></pre> <p>Note that you can improve the performance of this by using an <code>ImageSource</code> for each image file in your resources, then referencing this in the <code>Image</code>. This effectively means that each image is only loaded once from disk, rather than 2*N times (where N is the number of items in your list.)</p> http://stackoverflow.com/questions/1528371/hiding-unwanted-properties-in-custom-controls/1528424#1528424 2 Answer by Drew Noakes for Hiding unwanted properties in custom controls Drew Noakes 2009-10-06T22:26:33Z 2009-10-06T22:26:33Z <p>You can use the <code>[EditorBrowsable]</code> attribute, as <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx" rel="nofollow">documented here</a>.</p> <pre><code>[EditorBrowsable(EditorBrowsableState.Never)] public bool HideMeInIntellisense { // ... </code></pre> <p>From the documentation:</p> <blockquote> <p>...the IntelliSense engine in Visual Studio uses this attribute to determine whether to show a property or method.</p> </blockquote> <p>However, users can override this in VS settings. ReSharper also has a setting that controls whether this attribute is honoured in its IntelliSense.</p> <p>Out of curiousity, why do you want to hide something from users? Just because a member is hidden in the way described above doesn't mean you couldn't use it in code and compile it successfully. It just inhibits the discoverability of the member.</p> http://stackoverflow.com/questions/1526612/regex-match-constant/1526640#1526640 0 Answer by Drew Noakes for Regex Match Constant Drew Noakes 2009-10-06T16:24:06Z 2009-10-06T16:24:06Z <p>If you're using .NET, you can escape the string:</p> <pre><code>var matchMe = "&lt;img src=\"http://www.domain.com/test.asp\" width=\"1\" height=\"1\" /&gt;"; var pattern = Regex.Escape(matchMe); </code></pre> <p>It doesn't look like you're using .NET though. I don't think you have to escape quotes like that. In fact, in your pattern, the only characters I know you should escape are the period <code>.</code> and forward slash <code>/</code>.</p> http://stackoverflow.com/questions/1525514/where-are-these-dots-coming-from-how-to-get-rid-of-them/1525523#1525523 6 Answer by Drew Noakes for Where are these dots coming from? How to get rid of them? Drew Noakes 2009-10-06T13:16:55Z 2009-10-06T13:16:55Z <p>Those dots represent space characters. You will also see little arrows for tabs, and little hooked arrows for carriage returns.</p> <p>Press <kbd>CTRL</kbd> + <kbd>R</kbd> + <kbd>W</kbd> to toggle the dots you're seeing.</p> <p>BTW this is a standard Visual Studio feature. It has nothing to do with CodeRush or any other plugin.</p> <p><strong>EDIT</strong> As Martin points out, you could press <kbd>CTRL</kbd> + <kbd>R</kbd>, then <kbd>CTRL</kbd> + <kbd>W</kbd>. Personally I press CTRL then hold it down for the R &amp; W keystrokes. It's less typing.</p> http://stackoverflow.com/questions/1176623/wpf-how-to-stop-an-itemscontrol-psuedo-grids-columns-from-dancing-jumping-arou/1779556#1779556 Comment by Drew Noakes on WPF - How to stop an ItemsControl psuedo-grid's columns from dancing/jumping around during layout Drew Noakes 2009-11-25T10:38:20Z 2009-11-25T10:38:20Z @Archimed, thanks for trying this. I've seen it happen in a few different places in my UI with as few as 5 rows, and have had to go for fixed width columns without IsSharedSizeScope to avoid the jiggling. I wonder whether it's related to hosting my elements within WinForms ElementHosts... http://stackoverflow.com/questions/42519/how-do-you-rotate-a-two-dimensional-array/193942#193942 Comment by Drew Noakes on How do you rotate a two dimensional array? Drew Noakes 2009-11-25T10:34:45Z 2009-11-25T10:34:45Z @Sesh, yes it still works because (A,B) is the same as (B,A) when A==B. http://stackoverflow.com/questions/1721414/wpf-binding-tow-binding-on-the-same-dependency-property Comment by Drew Noakes on Wpf Binding tow binding on the same Dependency property Drew Noakes 2009-11-12T13:59:52Z 2009-11-12T13:59:52Z I find this question a bit confusing. Could you provide some more information? perhaps some code samples? http://stackoverflow.com/questions/726765/cruise-control-net-statistic-publishers/1707045#1707045 Comment by Drew Noakes on Cruise Control .Net Statistic Publishers Drew Noakes 2009-11-11T09:26:16Z 2009-11-11T09:26:16Z Mostly I just look at the statistics charts occasionally to check trends. It's useful to compare projects. We have about 100 builds going through this system and it's useful to have a quick glance at the reports generated about a project before starting work on one you haven't seen before. It's also useful to know whether you've added or removed a file from the build output (perhaps inadvertantly.) I try to avoid having code with NotImplementedException (R# uses this on templated code) and I like to keep the number of TODO comments down. http://stackoverflow.com/questions/1702141/difference-between-value-attribute-and-explicit-datatrigger-value-in-resourcedict/1702618#1702618 Comment by Drew Noakes on Difference Between Value attribute and explicit DataTrigger.Value in ResourceDictionary? Drew Noakes 2009-11-09T18:00:35Z 2009-11-09T18:00:35Z +1. This is because <code>Type</code> is marked as a <code>[ConstructorArgument]</code> property. But in this case, the behaviour should be identical. http://stackoverflow.com/questions/1679391/wpf-how-to-combine-datatrigger-and-eventtrigger/1702619#1702619 Comment by Drew Noakes on WPF - How to combine DataTrigger and EventTrigger? Drew Noakes 2009-11-09T17:54:32Z 2009-11-09T17:54:32Z Have you tried this? It's my experience that you can't have a style that sets a style. http://stackoverflow.com/questions/1122177/what-is-the-best-way-to-start-an-animation-when-a-bound-value-changes/1127116#1127116 Comment by Drew Noakes on What is the best way to start an animation when a bound value changes? Drew Noakes 2009-11-09T14:49:33Z 2009-11-09T14:49:33Z Where does <code>&lt;i:Interaction.Triggers&gt;</code> come from? I'm guessing it ships with Blend. Is it available to us non-Blend users? I want to achieve the same thing in my code, though am hoping that a solution exists that's less verbose as I have many such instances that require this. Maybe it's possible via a Style... http://stackoverflow.com/questions/1122177/what-is-the-best-way-to-start-an-animation-when-a-bound-value-changes/1122722#1122722 Comment by Drew Noakes on What is the best way to start an animation when a bound value changes? Drew Noakes 2009-11-09T14:47:59Z 2009-11-09T14:47:59Z How would a value converter know that the value had changed, unless you created a value converter for each individual binding? http://stackoverflow.com/questions/1316518/how-did-microsoft-create-assemblies-that-have-circular-references/1316587#1316587 Comment by Drew Noakes on How did Microsoft create assemblies that have circular references? Drew Noakes 2009-11-09T13:33:51Z 2009-11-09T13:33:51Z But these are strongly signed assemblies. These dehydrated metadata-only assemblies would have a different cryptographic hashes. Perhaps the compiler doesn't check this, instead it's a runtime concept only. Or maybe it's a special compiler too. http://stackoverflow.com/questions/1316518/how-did-microsoft-create-assemblies-that-have-circular-references Comment by Drew Noakes on How did Microsoft create assemblies that have circular references? Drew Noakes 2009-11-09T13:30:42Z 2009-11-09T13:30:42Z @Andreas Petersson -- my guess is that assemblies are loaded lazily, so there's a chance that something using <code>mscorlib</code> might not necessarily use the configuration or XML APIs, in which case less memory is devoted to storing the IL. http://stackoverflow.com/questions/987224/why-is-dialogresult-a-nullable-bool-in-wpf/987277#987277 Comment by Drew Noakes on Why is DialogResult a nullable bool in WPF? Drew Noakes 2009-11-06T16:44:27Z 2009-11-06T16:44:27Z @Max, if you call <code>Show</code> then the call returns to you (ie. it's a non-blocking call), so you're free to interrogate the <code>DialogResult</code> value straight away. It's only if you call <code>ShowDialog</code> that the call blocks until the dialog is dismissed. However in the latter case, you're still free to interrogate the object from another thread, as you point out. http://stackoverflow.com/questions/898708/cant-set-dialogresult-in-wpf Comment by Drew Noakes on Can't set DialogResult in WPF Drew Noakes 2009-11-06T16:36:26Z 2009-11-06T16:36:26Z Can you post the contents of your <code>&lt;Window ... /&gt;</code> definition here? Maybe it's something particular to the way you're initialising the window. http://stackoverflow.com/questions/502250/bind-to-a-method-in-wpf/502766#502766 Comment by Drew Noakes on Bind to a method in WPF? Drew Noakes 2009-11-05T10:21:33Z 2009-11-05T10:21:33Z I take Cameron's comment to mean that he is binding to a type that he can not add a property to. http://stackoverflow.com/questions/42519/how-do-you-rotate-a-two-dimensional-array/193942#193942 Comment by Drew Noakes on How do you rotate a two dimensional array? Drew Noakes 2009-11-03T21:35:24Z 2009-11-03T21:35:24Z @jeffamaphone, the memory isn't changing. I guess you could think of it as aliasing, yes. http://stackoverflow.com/questions/1666137/windbg-showing-different-call-stacks-when-attached-to-process-when-compared-to-cr/1666226#1666226 Comment by Drew Noakes on WinDbg showing different call stacks when attached to process when compared to crash dump Drew Noakes 2009-11-03T11:35:43Z 2009-11-03T11:35:43Z I'm debugging a mixture of .NET and native code via interop. I'll provide some more info when I'm able to repro the issue. Thanks again.