User cplotts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:39:12Z http://stackoverflow.com/feeds/user/22294 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1656764/wpf-control-over-blending-between-semi-transparent-layers/1890656#1890656 0 Answer by cplotts for WPF - Control over blending between semi-transparent layers cplotts 2009-12-11T20:25:26Z 2009-12-11T20:25:26Z <p>Just ran into this question ... <strong>but you can use my blend mode library to do this in certain situations</strong> (unfortunately there are some limitations ... we really need this capability burned into the WPF API).</p> <p>bitbonk references the beginning post in my blog series ... but every post has source code and binaries attached for the blend mode library itself.</p> <p>Here is the series so-far (in chronological order). I do want to write one more post on how these blend modes can be used ... and what value they bring to the table.</p> <ul> <li><a href="http://www.cplotts.com/2009/06/16/blend-modes-part-i/" rel="nofollow">Blend Modes, Part I</a></li> <li><a href="http://www.cplotts.com/2009/06/16/blend-modes-part-ii/" rel="nofollow">Blend Modes, Part II</a></li> <li><a href="http://www.cplotts.com/2009/06/17/blend-modes-for-silverlight/" rel="nofollow">Blend Modes for Silverlight</a></li> <li><a href="http://www.cplotts.com/2009/06/30/blend-modes-part-iii/" rel="nofollow">Blend Modes, Part III</a></li> <li><a href="http://www.cplotts.com/2009/11/06/blend-modes-now-opacity-aware/" rel="nofollow">Blend Modes: Now Opacity Aware</a></li> <li><a href="http://www.cplotts.com/2009/11/29/blend-modes-hue-saturation-color-and-luminosity-with-wpf-4-0/" rel="nofollow">Blend Modes: Hue, Saturation, Color, and Luminosity with WPF 4.0</a></li> </ul> <p>If I could point you to one set of source code/binaries to use, it would be the <a href="http://www.cplotts.com/2009/11/06/blend-modes-now-opacity-aware/" rel="nofollow">one</a> where I make the blend mode library opacity aware. This is the latest and greatest bits that work on both WPF and Silverlight. The final <a href="http://www.cplotts.com/2009/11/29/blend-modes-hue-saturation-color-and-luminosity-with-wpf-4-0/" rel="nofollow">post</a> which has the hue, saturation, color, and luminosity effects is a WPF only version of the library, as Pixel Shader 3.0 is required for these effects and currently only WPF 4.0 supports that.</p> <p>Good luck and let me know if you use my library!</p> http://stackoverflow.com/questions/1799404/how-can-i-use-the-visual-state-manager-in-blend-for-wpf-applications 1 How Can I Use the Visual State Manager in Blend for WPF Applications? cplotts 2009-11-25T19:28:49Z 2009-11-26T09:28:32Z <p>When creating a control style &amp; template in Blend for a <strong>WPF</strong> application, I want to take advantage of the Visual State Manager. How do I do this?</p> <p>Whenever I right-click over the button and select Edit Template, Create Empty ... nothing shows up in the States panel.</p> <p>When I do the same for <strong>Silverlight</strong> application, the typical states show up in the States panel.</p> <p>Is this possible in Blend somehow? Or do I have to add all of this xaml manually?</p> http://stackoverflow.com/questions/1799404/how-can-i-use-the-visual-state-manager-in-blend-for-wpf-applications/1799450#1799450 1 Answer by cplotts for How Can I Use the Visual State Manager in Blend for WPF Applications? cplotts 2009-11-25T19:37:03Z 2009-11-25T19:56:58Z <p>The answer depends on what version of Blend you are using.</p> <p>In Blend v2.0 with SP1 installed (and the WPFToolkit installed), you needed a registry key to even enable the Visual State Manager (VSM). See this <a href="http://stackoverflow.com/questions/249618/wpf-visual-state-manager-in-blend-2-sp1">post</a> for more info. But the States panel was empty when creating a new template.</p> <p>In Blend v3.0, you didn't need the tricky registry key, but once again, the States panel is still empty. Here is a Blend forum <a href="http://social.expression.microsoft.com/Forums/en-US/blend/thread/3d11add2-0559-4b4f-a9d5-8934e24ff2b7" rel="nofollow">post</a> that confirms this is how it works.</p> <p><strong>In Blend v4.0 (go download the preview <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6806e466-dd25-482b-a9b3-3f93d2599699&amp;displaylang=en" rel="nofollow">here</a>) ... the good news is that they fixed this!</strong> The states show up in the States panel and the necessary xaml gets spit out ... if you modify any of the states.</p> <p>Note:</p> <p>Blend 4 creates Visual Studio 2010 solutions &amp; projects and targets WPF 4.0. You can always retarget to an older version of WPF, if that is what you are after, or simply copy/paste the xaml out.</p> http://stackoverflow.com/questions/1066337/wpf-and-vsm-list-of-states/1799338#1799338 0 Answer by cplotts for WPF and VSM - List of States? cplotts 2009-11-25T19:18:58Z 2009-11-25T19:18:58Z <p><a href="http://blogs.msdn.com/jeetenk/archive/2009/07/10/hey-wpf-button-where-are-your-states.aspx" rel="nofollow">Here</a> is another resource on this.</p> <p>In it, Jeetu lists out the state groups and the states in each group ... for each of the basic controls. I'll list them out here too for convenience.</p> <pre><code>Button, GridViewColumnHeader, RepeatButton: CommonStates: Normal, MouseOver, Pressed, Disabled FocusStates: Unfocused, Focused CheckBox, RadioButton: CommonStates: Normal, MouseOver, Pressed, Disabled CheckStates: Unchecked, Checked, Indeterminate FocusStates: Unfocused, Focused ListBoxItem: CommonStates: Normal, MouseOver SelectionStates: Unselected, Selected FocusStates: Unfocused, Focused ProgressBar: CommonStates: Determinate, Indeterminate FocusStates: Unfocused, Focused TextBox, RichTextBox: CommonStates: Normal, MouseOver, Disabled, ReadOnly FocusStates: Unfocused, Focused </code></pre> http://stackoverflow.com/questions/545676/save-wpf-image-with-shader-effects-applied/1690168#1690168 1 Answer by cplotts for Save WPF image with Shader effects applied cplotts 2009-11-06T20:28:06Z 2009-11-06T20:28:06Z <p>I know this is an old question ... but I thought I would point people to Jamie Rodriguez's post (<a href="http://blogs.msdn.com/jaimer/archive/2009/07/03/rendertargetbitmap-tips.aspx" rel="nofollow">http://blogs.msdn.com/jaimer/archive/2009/07/03/rendertargetbitmap-tips.aspx</a>) on this subject.</p> <p>I had a situation where using RenderTargetBitmap was resulting in an empty image ... and Jamie's post was the answer for me.</p> <p>Hope it helps someone else too.</p> http://stackoverflow.com/questions/173009/how-do-you-make-a-wpf-slider-snap-only-to-discrete-integer-positions 5 How do you make a WPF slider snap only to discrete integer positions? cplotts 2008-10-06T01:56:26Z 2009-11-05T09:47:26Z <p>The title says it all. All too often I want a WPF slider that behaves like the System.Windows.Forms.TrackBar of old. That is, I want a slider that goes from X to Y but only allows the user to move it in discrete integer positions.</p> <p>How does one do this in WPF since the Value property on the Slider is double?</p> http://stackoverflow.com/questions/952657/most-performant-way-to-graph-thousands-of-data-points-with-wpf/1580967#1580967 0 Answer by cplotts for Most performant way to graph thousands of data points with WPF? cplotts 2009-10-17T00:00:14Z 2009-10-17T00:00:14Z <p><strong>Another idea would be to use the Image control with the Source property set to a DrawingImage that you've dynamically created.</strong></p> <p>According to <a href="http://blog.pixelingene.com/" rel="nofollow">Pavan Podila</a> in <a href="http://rads.stackoverflow.com/amzn/click/0672330334" rel="nofollow">WPF Control Development Unleashed</a>, this approach can be very helpful when you have thousands and thousands of visuals that don't need any interactivity. Check out page 25 of his book for more info.</p> http://stackoverflow.com/questions/982841/can-wpf-render-a-line-path-with-300-000-points-on-it-in-a-performance-sensitive-e/1478490#1478490 1 Answer by cplotts for Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? cplotts 2009-09-25T17:07:08Z 2009-10-13T20:57:47Z <p>I just stumbled upon this post and am building a line graph control myself that needs to be very performant as we update the points on our lines in a real-time manner.</p> <p>If performance and number of Visual(s) are what you are after ... <strong>I doubt you will find a more performant approach than programming directly against WPF's Visual layer</strong> (links: <a href="http://msdn.microsoft.com/en-us/library/ms753209.aspx" rel="nofollow">1</a>, <a href="http://msdn.microsoft.com/en-us/library/ms742254.aspx" rel="nofollow">2</a>). My initial results from using this approach have been very positive.</p> <p>This will be even more performant than overriding OnRender as it will encourage you to take advantage of WPF's retained mode drawing subsystem (where all the drawing instructions are cached).</p> <p>That is, if all you have to update is a point on the line, then updating the point will force the line Visual to update but won't force the rest of the graph (axes, gridlines, ...) to update ... as the drawing instructions for these are retained and will be reused (since they aren't updating).</p> <p>Chapter 14 in <em><a href="http://rads.stackoverflow.com/amzn/click/1590599551" rel="nofollow">Pro WPF in C# 2008</a></em> by Matthew MacDonald has a great section (titled 'Visuals') on programming against WPF's Visual layer. Chapter 2 of <em><a href="http://rads.stackoverflow.com/amzn/click/0672330334" rel="nofollow">WPF Control Development Unleashed</a></em> also has section on page 13 where he discusses how a DrawingVisual approach would be perfect for a charting component. Finally, <a href="http://www.charlespetzold.com" rel="nofollow">Charles Petzold</a> wrote a MSDN Magazine <a href="http://msdn.microsoft.com/en-us/magazine/dd483292.aspx" rel="nofollow">article</a> where the best overall solution to a scatter plot was a DrawingVisual approach.</p> <p>(<em>Now, I know that your question mentioned the axes will also be updating ... and so my answer is really for the general case ... but I still think that this approach will be the most performant ... as only the things that need updating ... will update.)</em></p> http://stackoverflow.com/questions/952657/most-performant-way-to-graph-thousands-of-data-points-with-wpf/1478730#1478730 0 Answer by cplotts for Most performant way to graph thousands of data points with WPF? cplotts 2009-09-25T17:55:48Z 2009-10-13T20:53:25Z <p>Just ran into this question, but as I mentioned in <a href="http://stackoverflow.com/questions/982841/can-wpf-render-a-line-path-with-300-000-points-on-it-in-a-performance-sensitive-e">this</a> thread, <strong>the most performant approach might be to program against WPF's Visual layer</strong>.</p> <p>Everything Visual in WPF eventually goes against this layer ... and so it is the most lightweight approach of them all.</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/ms753209.aspx" rel="nofollow">this</a> and <a href="http://msdn.microsoft.com/en-us/library/ms742254.aspx" rel="nofollow">this</a> for more info. Chapter 14 of Matthew MacDonald's <em><a href="http://rads.stackoverflow.com/amzn/click/1590599551" rel="nofollow">Pro WPF in C# 2008</a></em> book also has a good section on it.</p> <p>As another reference ... see Chapter 2 of Pavan Podila's book <em><a href="http://rads.stackoverflow.com/amzn/click/0672330334" rel="nofollow">WPF Control Development Unleashed</a></em>. On page 13, he discusses how DrawingVisuals would be an excellent choice for a charting component.</p> <p>Finally, I just noticed that <a href="http://www.charlespetzold.com/" rel="nofollow">Charles Petzold</a> wrote an MSDN Magazine <a href="http://msdn.microsoft.com/en-us/magazine/dd483292.aspx" rel="nofollow">article</a> where the best overall (performant anyway) solution (to a scatter plot) was a DrawingVisual approach.</p> http://stackoverflow.com/questions/1526150/good-resources-for-learning-wpf/1528018#1528018 1 Answer by cplotts for Good resources for learning WPF cplotts 2009-10-06T20:47:02Z 2009-10-06T20:59:53Z <p>I would search StackOverflow ... as there is already a lot of good stuff on this topic.</p> <p><strong>In particular, check out: <a href="http://stackoverflow.com/questions/244786/wpf-sample-applications">WPF Sample Applications</a></strong></p> <p>But here are some additional links to get you started in WPF:</p> <ul> <li><a href="http://stackoverflow.com/questions/183315/what-are-the-best-resources-for-learning-wpf-net">What are the best resources for learning WPF?</a></li> <li><a href="http://stackoverflow.com/questions/1445114/what-did-you-find-hardest-to-understand-when-learning-wpf">What did you find hardest to understand when learning WPF?</a></li> <li><a href="http://stackoverflow.com/questions/129772/how-to-begin-wpf-development">How to begin WPF development?</a></li> <li><a href="http://stackoverflow.com/questions/9591/what-wpf-books-would-you-recommend">What WPF books would you recommend?</a></li> <li><a href="http://stackoverflow.com/questions/275098/what-applications-could-i-study-to-understand-datamodel-view-viewmodel">What applications could I study to understand DataModel-View-ViewModel?</a></li> </ul> <p>Good luck!</p> http://stackoverflow.com/questions/224155/when-clearing-an-observablecollection-there-are-no-items-in-e-olditems 7 When Clearing an ObservableCollection, There are No Items in e.OldItems cplotts 2008-10-22T01:22:13Z 2009-10-01T19:10:11Z <p>I have something here that is really catching me off guard.</p> <p>I have an ObservableCollection of T that is filled with items. I also have an event handler attached to the CollectionChanged event.</p> <p>When you <strong>Clear</strong> the collection it causes an CollectionChanged event with e.Action set to NotifyCollectionChangedAction.Reset. Ok, that's normal. But what is weird is that neither e.OldItems or e.NewItems has anything in it. <strong>I would expect e.OldItems to be filled with all items that were removed from the collection.</strong></p> <p>Has anyone else seen this? And if so, how have they gotten around it?</p> <p>Some background: I am using the CollectionChanged event to attach and detach from another event and thus if I don't get any items in e.OldItems ... I won't be able to detach from that event.</p> <p><br></p> <p><strong>CLARIFICATION:</strong> I do know that the documentation doesn't <em>outright</em> state that it has to behave this way. But for every other action, it is notifying me of what it has done. So, my assumption is that it would tell me ... in the case of Clear/Reset as well.</p> <p><br></p> <p>Below is the sample code if you wish to reproduce it yourself. First off the xaml:</p> <pre><code>&lt;Window x:Class="ObservableCollection.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" &gt; &lt;StackPanel&gt; &lt;Button x:Name="addButton" Content="Add" Width="100" Height="25" Margin="10" Click="addButton_Click"/&gt; &lt;Button x:Name="moveButton" Content="Move" Width="100" Height="25" Margin="10" Click="moveButton_Click"/&gt; &lt;Button x:Name="removeButton" Content="Remove" Width="100" Height="25" Margin="10" Click="removeButton_Click"/&gt; &lt;Button x:Name="replaceButton" Content="Replace" Width="100" Height="25" Margin="10" Click="replaceButton_Click"/&gt; &lt;Button x:Name="resetButton" Content="Reset" Width="100" Height="25" Margin="10" Click="resetButton_Click"/&gt; &lt;/StackPanel&gt; &lt;/Window&gt; </code></pre> <p>Next, the code behind:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Collections.ObjectModel; namespace ObservableCollection { /// &lt;summary&gt; /// Interaction logic for Window1.xaml /// &lt;/summary&gt; public partial class Window1 : Window { public Window1() { InitializeComponent(); _integerObservableCollection.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(_integerObservableCollection_CollectionChanged); } private void _integerObservableCollection_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { switch (e.Action) { case System.Collections.Specialized.NotifyCollectionChangedAction.Add: break; case System.Collections.Specialized.NotifyCollectionChangedAction.Move: break; case System.Collections.Specialized.NotifyCollectionChangedAction.Remove: break; case System.Collections.Specialized.NotifyCollectionChangedAction.Replace: break; case System.Collections.Specialized.NotifyCollectionChangedAction.Reset: break; default: break; } } private void addButton_Click(object sender, RoutedEventArgs e) { _integerObservableCollection.Add(25); } private void moveButton_Click(object sender, RoutedEventArgs e) { _integerObservableCollection.Move(0, 19); } private void removeButton_Click(object sender, RoutedEventArgs e) { _integerObservableCollection.RemoveAt(0); } private void replaceButton_Click(object sender, RoutedEventArgs e) { _integerObservableCollection[0] = 50; } private void resetButton_Click(object sender, RoutedEventArgs e) { _integerObservableCollection.Clear(); } private ObservableCollection&lt;int&gt; _integerObservableCollection = new ObservableCollection&lt;int&gt; { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }; } } </code></pre> http://stackoverflow.com/questions/1465087/expression-blend-tutorials/1480073#1480073 0 Answer by cplotts for Expression blend tutorials? cplotts 2009-09-26T00:26:19Z 2009-09-26T00:47:59Z <p>They have a <a href="http://expression.microsoft.com/en-us/cc197141.aspx" rel="nofollow">video series</a> out at the Expression community site that you might want to check out. <a href="http://expression.microsoft.com/en-us/cc136536.aspx" rel="nofollow">Here's</a> another. Heck, I would just recommend getting familiar with the community site ... there are a lot of goodies there, including the forums in the case you get stuck or have a question or two.</p> <p>Also, a little outdated now, but I went through and really liked the free <a href="http://www.lynda.com/home/DisplayCourse.aspx?lpk2=384" rel="nofollow">lynda.com video series</a> by Lee Brimelow. In fact, the overview of Silverlight talks about the original version of Silverlight, v1.0. Ha! Even given that, I still think you could get a lot of the series as a lot of the concepts would be the same.</p> <p><a href="http://www.totaltraining.com/prod/microsoft/expression.asp?utm%5Fsource=msft&amp;utm%5Fmedium=inbox%5Fdvd&amp;utm%5Fcampaign=expression2" rel="nofollow">Total Training</a> has some that you can pay for.</p> http://stackoverflow.com/questions/1479665/easiest-way-to-draw-a-sequence-of-points-in-wpf-from-code/1480003#1480003 3 Answer by cplotts for Easiest way to draw a sequence of points in WPF from code cplotts 2009-09-25T23:47:26Z 2009-09-25T23:47:26Z <p>What about just using Polyline?</p> <p>Here's the xaml:</p> <pre><code>&lt;Window x:Class="CursorLine.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" &gt; &lt;Canvas x:Name="canvas" Background="#00FFFFFF" MouseMove="Canvas_MouseMove"&gt; &lt;Polyline x:Name="polyline" Stroke="DarkGreen" StrokeThickness="3"/&gt; &lt;/Canvas&gt; &lt;/Window&gt; </code></pre> <p>Here's the code behind:</p> <pre><code>private void Canvas_MouseMove(object sender, MouseEventArgs e) { polyline.Points.Add(e.GetPosition(canvas)); } </code></pre> http://stackoverflow.com/questions/1478065/drawingimage-always-draws-in-upper-left-regardless-of-coordinates-supplied/1479019#1479019 0 Answer by cplotts for DrawingImage always draws in upper left, regardless of coordinates supplied cplotts 2009-09-25T18:59:11Z 2009-09-25T18:59:11Z <p>Is there any reason you can't use the Canvas.Left and Canvas.Top attached properties on the Image control? Like this:</p> <pre><code>&lt;Canvas Name="Canvas" Grid.Column="1"&gt; &lt;Image Canvas.Left="-5" Canvas.Top="-10" Name="imgLevel"&gt; &lt;Image.Source&gt; &lt;/Image.Source&gt; &lt;/Image&gt; &lt;/Canvas&gt; </code></pre> http://stackoverflow.com/questions/1471086/wpf-axis-system/1471467#1471467 1 Answer by cplotts for WPF. Axis system cplotts 2009-09-24T12:44:59Z 2009-09-24T12:44:59Z <p><a href="http://www.charlespetzold.com/" rel="nofollow">Charles Petzold</a> shows how you can do this with a render transform in his great book <a href="http://rads.stackoverflow.com/amzn/click/0735619573" rel="nofollow">Applications = Code + Markup</a>.</p> <p>On page 844 and following, there is a nice little sample application that he has titled Canvas Modes that illustrates how to do it. But basically, you will want to use a ScaleTransform and a TranslateTransform.</p> <p>To make the origin the center of the Canvas with Y values going down:</p> <pre><code>&lt;Canvas&gt; &lt;Canvas.RenderTransform&gt; &lt;TranslateTransform X="ActualWidth/2" Y="ActualHeight/2"/&gt; &lt;/Canvas.RenderTransform&gt; &lt;/Canvas&gt; </code></pre> <p>To make the origin the center of the Canvas but with Y values going up:</p> <pre><code>&lt;Canvas&gt; &lt;Canvas.RenderTransform&gt; &lt;TransformGroup&gt; &lt;ScaleTransform ScaleX="1" ScaleY="-1"/&gt; &lt;TranslateTransform X="ActualWidth/2" Y="ActualHeight/2"/&gt; &lt;/TransformGroup&gt; &lt;/Canvas.RenderTransform&gt; &lt;/Canvas&gt; </code></pre> <p>Of course, I'm using a little bit of pseudo code here for ActualWidth and ActualHeight ...</p> http://stackoverflow.com/questions/9591/what-wpf-books-would-you-recommend/1471315#1471315 0 Answer by cplotts for What WPF books would you recommend? cplotts 2009-09-24T12:16:06Z 2009-09-24T12:16:06Z <p>A new book just came out by notable WPF expert, <a href="http://blog.pixelingene.com/" rel="nofollow">Pavan Podila</a> (with a little help from <a href="http://dotnetaddict.dotnetdevelopersjournal.com/read/poster/87984.htm" rel="nofollow">Kevin Hoffman</a>). It's all about building controls in WPF and is aptly called:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0672330334" rel="nofollow"><strong>WPF Control Development Unleashed</strong></a></p> <p>If you're going to be building visuals, elements, or controls in WPF, you will want this book on your shelf. Getting to the point where you understand enough of the WPF API and concepts to write a decent control, takes enough time ... this book will ease your journey!</p> http://stackoverflow.com/questions/1466047/how-to-change-color-of-border-in-a-usercontrol-using-trigger-with-its-custom-prop/1468862#1468862 0 Answer by cplotts for How to change color of border in a usercontrol using trigger with its custom property? cplotts 2009-09-23T22:27:56Z 2009-09-23T22:27:56Z <p>I'm not quite sure what you are asking. :) But, if I could guess what you are after ... <strong>you could use a simple property trigger in a style</strong> like this:</p> <pre><code>&lt;Style x:Key="userControlStyle" TargetType="{x:Type local:UserControl1}"&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="WarningLevel" Value="AllClear"&gt; &lt;Setter Property="BorderBrush" Value="DarkGreen"/&gt; &lt;/Trigger&gt; &lt;Trigger Property="WarningLevel" Value="Warning"&gt; &lt;Setter Property="BorderBrush" Value="Yellow"/&gt; &lt;/Trigger&gt; &lt;Trigger Property="WarningLevel" Value="Danger"&gt; &lt;Setter Property="BorderBrush" Value="DarkRed"/&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; </code></pre> <p>The above assumes, of course, a enum dependency property, WarningLevel on UserControl1.</p> http://stackoverflow.com/questions/1458046/how-to-use-path-in-a-drawingimage/1468212#1468212 0 Answer by cplotts for How to use Path in a DrawingImage? cplotts 2009-09-23T19:53:41Z 2009-09-23T19:53:41Z <p>I quite don't know what you want to do ... given your comment to Thomas' answer.</p> <p>However, Expression Design can export in two different WPF ways:</p> <ol> <li>To a ResourceDictionary where the artwork turns into DrawingBrush(es), or</li> <li>To a Canvas where the artwork turns into Path(s) and Shape(s).</li> </ol> <p>The ResourceDictionary/DrawingBrush approach is very similar to the suggested answer you gave in the question and that Thomas answered with.</p> <p><strong>What I would suggest is to design your artwork with Expression Design and then keep a hold of the .design file so that you can export to whatever format you wish ... especially at a later point in time.</strong></p> <p>Now, I know a lot of artwork gets done in Adobe Illustrator and then is converted using Expression Design. If that is the case, I would keep both the .ai file and the .design file so that you can always modify your artwork and export again.</p> <p>Of course, this is all to get around the issue that you can't import xaml into Expression Design (i.e. it doesn't support a round-trip scenario).</p> <p>One thing I would mention is that sometimes it isn't as easy as just copying the mini-path language from the Path.Data property to the GeometryDrawing.Geometry property ... because of resizing scenarios (meaning that DrawingBrush(es) are typically set to a Fill somewhere and then they typically fill whatever space there is). So, watch out for that!</p> http://stackoverflow.com/questions/1445114/what-did-you-find-hardest-to-understand-when-learning-wpf/1446230#1446230 18 Answer by cplotts for What did you find hardest to understand when learning WPF cplotts 2009-09-18T18:38:40Z 2009-09-18T19:40:21Z <p><em>Sorry this got so long ... hopefully it is helpful! One thing I would mention is that these are the concepts/things that tripped me up, I'm not sure if I would use it as an itemized list of what to study if you are just starting out. I would dive in on some <a href="http://stackoverflow.com/questions/9591/what-wpf-books-would-you-recommend">books</a>, read through a lot of blogs (<a href="http://joshsmithonwpf.wordpress.com/" rel="nofollow">Josh Smith</a>, <a href="http://www.drwpf.com/blog/" rel="nofollow">Dr. WPF</a>), and just in general, dive in and try things out in little projects.</em></p> <p><strong>Core Concepts</strong></p> <ul> <li><p>The Logical and Visual Trees (links: <a href="http://msdn.microsoft.com/en-us/library/ms753391.aspx" rel="nofollow">1</a>)</p> <p>Understanding the different trees in WPF. In particular, understanding the logical tree versus the visual tree and how elements in the logical tree gets expanded into the visual tree by way of data templates, control templates, etc.</p></li> <li><p>The Dependency Property System (links: <a href="http://msdn.microsoft.com/en-us/library/ms752914.aspx" rel="nofollow">1</a>, <a href="http://msdn.microsoft.com/en-us/library/ms749011.aspx" rel="nofollow">2</a>)</p> <p>Understanding the whole dependency property system in WPF is much bigger than it first looks. Sure, it is easy to create a quick dependency property and then use it to empower other WPF concepts like data binding and animation, but then it begins.</p> <p>There are normal dependency properties and then there are attached dependency properties. There are a bunch of different ways to register them all and a bunch of different metadata options that you can set.</p> <p>Understanding why it is called a dependency property, for that matter, took me some time. That is, understanding that the value of property comes from many different sources (the property depends on these value providers) and that there is an order of precedence/algorithm for how the final property value at any given time gets set.</p></li> <li><p>Routed Events (links: <a href="http://msdn.microsoft.com/en-us/library/ms742806.aspx" rel="nofollow">1</a>, <a href="http://msdn.microsoft.com/en-us/library/bb613550.aspx" rel="nofollow">2</a>)</p> <p>Understanding how they can be bubbling, routing, or direct. Understanding that you can also have attached routed events (versus just attaching an event handler to an event that has routed up the visual tree).</p> <p><strong>Tips</strong></p> <p>Chapter 3 in Adam Nathan's <em>WPF Unleashed</em> is an awesome chapter that covers these important new concepts and one that you should read, work on a project, and then read again.</p> <p>Dr. WPF's <a href="http://drwpf.com/Blog/Default.aspx?tabid=36&amp;EntryID=22" rel="nofollow">snippets</a> are a great way to learn about dependency properties, routed events, and commands.</p></li> </ul> <p><strong>Graphical Concepts</strong> (links: <a href="http://msdn.microsoft.com/en-us/library/ms748373.aspx" rel="nofollow">1</a>)</p> <ul> <li><p>Resolution Independence (links: <a href="http://msdn.microsoft.com/en-us/library/aa970908.aspx" rel="nofollow">1</a>, <a href="http://www.wpftutorial.net/DrawOnPhysicalDevicePixels.html" rel="nofollow">2</a>)</p> <p>WPF brings all the benefits of resoultion independence (you specify everything with device indepenent pixels) but this also brings some headaches that you need to solve. Most notably, is getting things to look sharp when you want them to by taking advantage of pixel snapping, by setting guidelines, etc.</p></li> <li><p>Retained Mode vs. Immediate Mode</p> <p>WPF has a retained mode drawing subsystem, meaning that it keeps track of the drawing instructions and caches them for later use. This can be a performance problem if you are trying to build something that has a lot of visuals that are all updating at once.</p></li> <li><p>Controls, Elements, Visuals (links: <a href="http://msdn.microsoft.com/en-us/library/ms750441%28VS.85%29.aspx" rel="nofollow">1</a>)</p> <p>Understanding what each thing in the WPF hierarchy does for you and understanding the weight it brings in performance. In particular, do you use a Control that you can retemplate, restyle, and more ... or do you need something ultra-light (like programing against the Visual layer) so that you can drive it hard and fast.</p> <p><strong>Tips</strong></p> <p>Chris Sells and Ian Griffiths have a great appendix at the back of their <em>Programming WPF book</em> that talks about the different types in the WPF API, where they fit in the hierarchy, and what value they bring.</p></li> </ul> <p><strong>WPF Patterns</strong></p> <ul> <li><p>Model-View-ViewModel (MVVM) Pattern (links: <a href="http://stackoverflow.com/questions/275098/what-applications-could-i-study-to-understand-datamodel-view-viewmodel">1</a>)</p> <p>The MVVM pattern has already been mentioned as helping one to start doing things the WPF way. I can't agree more. Instead of filling controls with data, you start transforming data into visuals (through data templates).</p></li> <li><p>Attached Property Behavior Pattern (links: <a href="http://blogs.msdn.com/johngossman/archive/2008/05/07/the-attached-behavior-pattern.aspx" rel="nofollow">1</a>, <a href="http://blogs.msdn.com/johngossman/archive/2008/05/16/attachedbehavior-pattern-sample.aspx" rel="nofollow">2</a>, <a href="http://www.codeproject.com/KB/WPF/AttachedBehaviors.aspx" rel="nofollow">3</a>)</p> <p>WPF is extensible like no other API. Utilizing attached properties, you can build in additional behavior in a very elegant manner and where you thought you might have been stuck.</p></li> </ul> <p><strong>WPF != Windows Forms</strong></p> <p>I know someone already mentioned this but I want to agree emphatically. There are so many new and different concepts, you really do have to unlearn quite a few things and approach solving problems from a completely different angle. As an example, Windows Forms is an immediate mode drawing subsystem while WPF is a retained mode one (above).</p> <p><strong>The Many, Many Ways To Do Things in WPF</strong></p> <p>This is a funny thing to bring up, but because there is so many ways to do something in WPF, it is almost paralyzing. Which way is the right way to do things? Is it this? Is it that? I have had to get over a fear of doing it the wrong way, to just jump in, and learn from my mistakes.</p> http://stackoverflow.com/questions/182707/what-design-patterns-have-you-used-in-your-wpf-efforts-and-which-do-you-like 3 What design patterns have you used in your WPF efforts and which do you like? cplotts 2008-10-08T13:19:33Z 2009-09-18T17:13:43Z <p>I have been looking at the Model-View-ViewModel pattern that is suggested by several people out there (especially John Gossman, take a look at this <a href="http://blogs.msdn.com/johngossman/archive/2005/10/08/478683.aspx" rel="nofollow">post</a> and this <a href="http://pixel8.infragistics.com/#Episode:9071" rel="nofollow">podcast</a>), but <strong>what other patterns (if any) have people used and liked ... and where do they add value?</strong></p> <p>I have also stumbled across:</p> <ul> <li>Model-View-ViewModel</li> <li><a href="http://blogs.southworks.net/jdominguez/2008/04/using-the-presentation-model-in-wpf/" rel="nofollow">Presentation Model</a></li> <li><a href="http://blogs.msdn.com/dancre/archive/2006/10/11/datamodel-view-viewmodel-pattern-series.aspx" rel="nofollow">DataModel-View-ViewModel</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/cc707841.aspx" rel="nofollow">Patterns in Prism</a> (now known as the Composite Application Guidance for WPF)</li> </ul> <p>I would love an active discussion on these above and those I may not have discovered yet.</p> http://stackoverflow.com/questions/1428734/where-can-i-find-one-of-these-devigners-or-developer-designers/1428922#1428922 6 Answer by cplotts for Where can I find one of these "devigners" or "developer designers"? cplotts 2009-09-15T18:32:50Z 2009-09-15T19:00:01Z <p>Even though it is getting easier to find these guys, it is still fairly hard as the skill sets are kind of mutually exclusive (as already noted) ... and because there is a training gap (most designers know only the Adobe suite of products (this is the part that is getting better).</p> <p><strong>I personally think you will find that you <em>have to</em> cultivate this blend of skills and that it may not be found in just one person.</strong></p> <p>One thing I would encourage you to watch is part 2 of the <a href="http://videos.visitmix.com/MIX09/06W" rel="nofollow">Hiking Mt. Avalon</a> workshop. This part covers collaboration between the developer and the designer ... and also describes the developer/designer/integrator workflow ... which is a workflow that allows you to cultivate these types of people ... and to just deal with this difficult situation.</p> <p>I personally think that it is easier to bring a developer closer to the designer world (in order to perform as your integrator/devigner ... because one of the main roles of this person is to understand the platform (i.e. WPF/Silverlight) and how to leverage it to make the designs into real live software ... without harming the design/artistic integrity.</p> <p>In fact, I am an example of a developer with designer tendencies and often perform the role of integrator. I find myself spending a lot of time with our graphics artists/designers, trying to instill knowledge of the platform into them slowly but surely.</p> <p>For example, showing them the slider isn't just a static graphic but a living, dynamic thing that can be restyled, retemplated, and have behavior. This is an example of trying to cultivate a designer so that he or she can perform more and more as an integrator/devigner ... and lessening the work the actual integrator has to do ... to the point where the role of the integrator may not even be needed anymore ... or looking at it another way ... having just cultivated a new integrator/devigner.</p> <p>For the record, I can't stand the term 'devigner' either. I think integrator is a much better description of what the person finds themselves doing (i.e. crossing the chasm between development and design).</p> <p>See these posts (<a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/bf4247fa-dd70-4075-9ea6-569e33765839/#f4017207-85d3-46b9-8889-de2d5110719b" rel="nofollow">1</a>, <a href="http://stackoverflow.com/questions/187252/finding-expression-blend-designers">2</a>, <a href="http://stackoverflow.com/questions/51624/designers-and-developers-working-together">3</a>) for more info.</p> <p>Hope that helps! You're not alone in your desire to find these types of people!</p> http://stackoverflow.com/questions/181953/wpf-where-do-you-draw-the-line-between-code-and-xaml/182074#182074 10 Answer by cplotts for WPF -- Where do you draw the line between code and XAML? cplotts 2008-10-08T10:40:18Z 2009-09-14T14:29:53Z <p>One thing that I would look at is the model-view-view model pattern. It is a very elegant pattern which naturally separates everything into nice buckets ... including your xaml.</p> <p>For example, it helps you keep a clear boundary between the developer and the designer and even allows for test driven development.</p> <p>There is a whole bunch of info out there on it, but I would start with John Gossman's blog posts:</p> <ul> <li><a href="http://blogs.msdn.com/johngossman/archive/2005/10/08/478683.aspx" rel="nofollow">http://blogs.msdn.com/johngossman/archive/2005/10/08/478683.aspx</a></li> <li><a href="http://blogs.msdn.com/johngossman/archive/2005/10/09/478894.aspx" rel="nofollow">http://blogs.msdn.com/johngossman/archive/2005/10/09/478894.aspx</a></li> <li><a href="http://blogs.msdn.com/johngossman/archive/2006/02/26/539598.aspx" rel="nofollow">http://blogs.msdn.com/johngossman/archive/2006/02/26/539598.aspx</a></li> <li><a href="http://blogs.msdn.com/johngossman/archive/2006/02/27/540304.aspx" rel="nofollow">http://blogs.msdn.com/johngossman/archive/2006/02/27/540304.aspx</a></li> <li><a href="http://blogs.msdn.com/johngossman/archive/2006/03/04/543695.aspx" rel="nofollow">http://blogs.msdn.com/johngossman/archive/2006/03/04/543695.aspx</a></li> <li><a href="http://blogs.msdn.com/johngossman/archive/2006/04/13/576163.aspx" rel="nofollow">http://blogs.msdn.com/johngossman/archive/2006/04/13/576163.aspx</a></li> </ul> <p><strong>Update:</strong> Just want to point people to another StackOverflow <a href="http://stackoverflow.com/questions/275098/what-applications-could-i-study-to-understand-datamodel-view-viewmodel">post</a> with lots of good info on M-V-VM in it.</p> http://stackoverflow.com/questions/224155/when-clearing-an-observablecollection-there-are-no-items-in-e-olditems/1138654#1138654 0 Answer by cplotts for When Clearing an ObservableCollection, There are No Items in e.OldItems cplotts 2009-07-16T16:05:57Z 2009-07-16T16:05:57Z <p>I was just going through some of the charting code in the Silverlight and WPF toolkits and noticed that they also solved this problem (in a kind of similar way) ... and I thought I would go ahead and post their solution.</p> <p>Basically, they also created a derived ObservableCollection and overrode ClearItems, calling Remove on each item being cleared.</p> <p>Here is the code:</p> <pre><code>/// &lt;summary&gt; /// An observable collection that cannot be reset. When clear is called /// items are removed individually, giving listeners the chance to detect /// each remove event and perform operations such as unhooking event /// handlers. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type of item in the collection.&lt;/typeparam&gt; public class NoResetObservableCollection&lt;T&gt; : ObservableCollection&lt;T&gt; { public NoResetObservableCollection() { } /// &lt;summary&gt; /// Clears all items in the collection by removing them individually. /// &lt;/summary&gt; protected override void ClearItems() { IList&lt;T&gt; items = new List&lt;T&gt;(this); foreach (T item in items) { Remove(item); } } } </code></pre> http://stackoverflow.com/questions/275098/what-applications-could-i-study-to-understand-datamodel-view-viewmodel/275357#275357 22 Answer by cplotts for What applications could I study to understand (Data)Model-View-ViewModel? cplotts 2008-11-08T23:16:10Z 2009-06-16T18:10:30Z <p>I am still exploring these patterns myself, but <strong>I would point you to the Stock Trader reference implementation inside of <a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">Prism</a></strong> (aka the Composite Application Guidance for WPF).</p> <p>Prism calls the pattern 'Presentation Model'. You can find more info about Prism from Glenn Block's <a href="http://blogs.msdn.com/gblock/archive/2008/07/03/composite-application-guidance-is-live.aspx" rel="nofollow">blog</a> and Brian Noyes' <a href="http://www.softinsight.com/bnoyes/2008/07/03/CompositeApplicationGuidanceForWPFAkaPrismShips.aspx" rel="nofollow">blog</a>. Here also, is the MSDN link to the <a href="http://msdn.microsoft.com/en-us/library/cc707885.aspx" rel="nofollow">Presentation Model in Prism</a>.</p> <p>I know that Blend also uses the M-V-VM pattern extensively. It is too bad that the Blend source code isn't open to all.</p> <p>Finally, don't miss this blog <a href="http://blog.lab49.com/archives/2650" rel="nofollow">post</a> which points to a video done by Jason Dolinger on M-V-VM. It's excellent and highly recommended. My <a href="http://www.cplotts.com/2009/06/16/code-to-work-along-with-while-watching-jason-dolingers-m-v-vm-video/" rel="nofollow">blog</a> also has sample code to follow along the video with.</p> <h3>Update</h3> <p>I just wanted to add to this post all the links/posts that I have discovered on this topic:</p> <ol> <li>Dan Crevier's <a href="http://blogs.msdn.com/dancre/archive/2006/10/11/datamodel-view-viewmodel-pattern-series.aspx" rel="nofollow">series</a> on Data Model-View-View Model</li> <li>John Gossman's series on Model-View-View Model: <a href="http://blogs.msdn.com/johngossman/archive/2005/10/08/478683.aspx" rel="nofollow">1</a>, <a href="http://blogs.msdn.com/johngossman/archive/2005/10/09/478894.aspx" rel="nofollow">2</a>, <a href="http://blogs.msdn.com/johngossman/archive/2006/02/26/539598.aspx" rel="nofollow">3</a>, <a href="http://blogs.msdn.com/johngossman/archive/2006/02/27/540304.aspx" rel="nofollow">4</a>, <a href="http://blogs.msdn.com/johngossman/archive/2006/03/04/543695.aspx" rel="nofollow">5</a>, <a href="http://blogs.msdn.com/johngossman/archive/2006/04/13/576163.aspx" rel="nofollow">6</a></li> <li>Julian Dominguez (from the Prism team) has three posts of interest: <a href="http://blogs.southworks.net/jdominguez/2008/04/using-the-presentation-model-in-wpf/" rel="nofollow">1</a>, <a href="http://blogs.southworks.net/jdominguez/2008/05/first-approach-to-presentation-model-with-datatemplates/" rel="nofollow">2</a>, <a href="http://blogs.southworks.net/jdominguez/2008/09/presentation-model-with-datatemplates-in-compositewpf-prism-sample/" rel="nofollow">3</a><br> In the third post, he has a little sample application that shows off Presentation Model with DataTemplate(s).</li> </ol> <h3>Update #2</h3> <p>Josh Smith just published an excellent <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">article</a> on M-V-VM for MSDN Magazine. It comes with some sample code too!</p> http://stackoverflow.com/questions/628386/usage-of-dynamicresource-to-an-application-level-resource-can-cause-leaks 1 Usage of DynamicResource to an Application Level Resource Can Cause Leaks cplotts 2009-03-09T23:07:04Z 2009-03-24T14:19:22Z <p>It seems that using a DynamicResource to refer to an application level resource can cause memory leaks to occur.</p> <p>Please see this WPF forum <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b97a5f83-5394-430e-9a78-9d3a957e3537" rel="nofollow">post</a> for more info, how to reproduce it, and some workarounds.</p> <p>My question is: has anyone else run into it? If so, how have you worked around it?</p> <p>By the way, there seem to be many situations where this leak does not occur, and maybe the best question is: what exactly are the situations where this leak occurs and does not occur?</p> <p>For convenience here is the code that reproduces it:</p> <p><strong>App.xaml</strong></p> <pre><code>&lt;Application x:Class="WeakReferences.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml" &gt; &lt;Application.Resources&gt; &lt;SolidColorBrush x:Key="MyBrush" Color="SkyBlue"/&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p><strong>Window1.xaml</strong></p> <pre><code>&lt;Window x:Class="WeakReferences.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" &gt; &lt;Grid&gt; &lt;Button Name="ReleaseButton" Content="Release Reference" Click="Button_Click" /&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p><strong>Window1.xaml.cs</strong></p> <pre><code>public partial class Window1 : Window { object p; public Window1() { InitializeComponent(); p = new Page1(); } private void Button_Click(object sender, RoutedEventArgs e) { p = null; GC.Collect(); } } </code></pre> <p><strong>Page1.xaml</strong></p> <pre><code>&lt;Page x:Class="WeakReferences.Page1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Page1" Background="{DynamicResource MyBrush}" &gt; &lt;Grid&gt; &lt;/Grid&gt; &lt;/Page&gt; </code></pre> <p><strong>Page1.xaml.cs</strong></p> <pre><code>public partial class Page1 : Page { public Page1() { InitializeComponent(); } ~Page1() { Trace.TraceInformation("Page1 Finalized."); } } </code></pre> http://stackoverflow.com/questions/628386/usage-of-dynamicresource-to-an-application-level-resource-can-cause-leaks/677612#677612 0 Answer by cplotts for Usage of DynamicResource to an Application Level Resource Can Cause Leaks cplotts 2009-03-24T14:19:22Z 2009-03-24T14:19:22Z <p>Microsoft has <a href="https://connect.microsoft.com/feedback/ViewFeedback.aspx?FeedbackID=422659&amp;SiteID=212&amp;wa=wsignin1.0" rel="nofollow">confirmed</a> that this is a bug and that it is fixed in .NET 4.0.</p> <p>As far as I can tell, this bug only reproduces if the object that is using DynamicResource to refer to an application level resource ... is never made part of the visual tree. Would love to see some counter-evidence to that ... or further clarification on when this leak does occur.</p> http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem/644328#644328 0 Answer by cplotts for What's your "ceremony" after finishing your project or solving a hard problem? cplotts 2009-03-13T19:47:10Z 2009-03-13T19:47:10Z <p>I jump up and raise my arms in the air ... and yell, 'Superstar' ... like Molly Shannon in that Saturday Night Live skit!</p> http://stackoverflow.com/questions/470846/winforms-wpf-interop-wpf-content-fails-to-paint/597055#597055 2 Answer by cplotts for Winforms WPF Interop - WPF content fails to paint cplotts 2009-02-27T23:19:23Z 2009-03-07T14:30:26Z <p>We have fought these types of issues before. See this WPF forum <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/a8a5eebc-3d9e-44bb-abe3-8ce0d4e48263/" rel="nofollow">post</a> for more info on our particular flavor (I don't know if it is the same issue or not).</p> <p>The only thing that we found to work was to <strong>change the size of the ElementHost</strong>.</p> <pre><code>_elementHost.Width++; </code></pre> <p>It's a complete hack, ugly, and I'm embarrassed to even post it. But nothing else ever worked for us. So, it is definitely a workaround. (Grin)</p> <p>We tried Invalidate, Refresh and everything we could think of ... on the ElementHost. We also tried InvalidateMeasure, InvalidateArrange, and InvalidateVisual on the WPF hosted content. No luck.</p> <p>If you find another way to fix your issue, I would love to hear about it.</p> <p>Good luck, I know I have lost some hair on this one.</p> <p><strong>Update 1:</strong> I have submitted another WPF forum <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/c221382e-82f1-4736-956a-806dc2a8cb37" rel="nofollow">post</a> on this. Maybe we can get a response from Microsoft. Sure seems like a bug to me.</p> <p><strong>Update 2:</strong> After I fixed the refresh issue with the above hack ... I still had another problem to solve that I thought worth mentioning here. That is: there was a definite delay until the screen refreshed. This made it seem like the user was navigating to another screen (it wasn't ... it was just the contents of the double buffering buffer). I ended up having to manually call System.Windows.Forms.Control.Refresh() on the Control that was hosting the ElementHost. In this way, even though the pause was still there ... at least the screen was blank ... and it didn't look like the user was navigating somewhere ...</p> http://stackoverflow.com/questions/271686/c-transition-between-gdi-and-wpf/275008#275008 7 Answer by cplotts for C# Transition between GDI+ and WPF cplotts 2008-11-08T18:14:24Z 2008-11-08T23:54:38Z <p><em>(I apologize in advance for the long post ... there was just so much I wanted to convey ... I hope it helps you.)</em></p> <p>This is what we are doing now (migrating a Windows Forms application with heavy use of custom (GDI+) drawn controls to WPF). In fact, my role on the team was to build these GDI+ controls ... and now to build the WPF ones.</p> <p>I agree with Bijington that making your application completely 100% WPF from the ground up is the way to go ... if you can convince the powers that be to go that route. However, we ourselves are converting our Windows Forms application in-place, taking advantage of the <a href="http://msdn.microsoft.com/en-us/library/ms742522.aspx" rel="nofollow">WPF interop</a> capabilities. There are some limitations, but overall it has been an effective approach (and not as frustrating as I would have expected).</p> <p><strong>What I would suggest is that you take one of your GDI+ controls and build the same control in WPF.</strong> And then, when you are finished, throw it away and do it again. You will invariably learn something during the first effort ... and discover that there is a better way to do it instead. I would start with something small ... a custom button is a good place to begin.</p> <p>Doing the above will give you a taste for what is going to be required for everything else you want to do.</p> <p>One thing I would warn you about is WPF's learning curve, especially if you are coming from a Windows Forms background ... and especially if you are going to be building custom looking controls. As Abe has mentioned, it is a completely different world. WPF definitely brings a lot of power, but that power comes at a cost of learning how to use it. Abe mentions how custom controls in WPF are 'lookless' and that their 'look' can be provided with a ControlTemplate. This is just one of many ways in WPF to provide custom looking pieces of your user interface.</p> <p>Let me enumerate some of those additional ways:</p> <ol> <li>Style an existing control using the styling capabilities of WPF.</li> <li>Take advantage of WPF's content model and/or controls derived from ContentControl. This allow you to stick arbitrary looking 'content' into visuals of a control (e.g. maybe sticking a custom drawn shape into the middle of a button).</li> <li>Compose a control out of other controls/elements by taking advantage of UserControl.</li> <li>Derive from an existing control/class in WPF, extending it's behavior and providing a different default set of visuals.</li> <li>Derive from FrameworkElement, creating a custom WPF element, by overriding some or all of the MeasureOverride, ArrangeOverride, and OnRender methods.</li> <li>And more .... if you can believe it.</li> </ol> <p>In Windows Forms, it was like they gave you a hammer (UserControl) and a screwdriver (Control). However, in WPF ... they have given you the whole toolbox with all 100 tools. And this is part of the reason for the bigger than normal learning curve. However, now you can take that saw that you never had before and use it to saw off the end of a 2x4 instead of using the hammer and/or screwdriver to try and do the same thing.</p> <h3>Resources</h3> <p><em>(The good news is that there are a lot out of resources out there to help you.)</em></p> <ol> <li><strong>Books</strong> <ul> <li>Programming WPF by Chris Sells &amp; Ian Griffiths (in particular, chapter 18)</li> <li>Pro WPF by Matthew MacDonald (in particular, chapter 24)</li> <li>WPF Unleashed by Adam Nathan (in particular, chapter 16)</li> <li>Applications = Code + Markup by Charles Petzold (in particular, chapters 10, 11, &amp; 12)</li> <li>Essential WPF by Chris Anderson (in particular, chapter 3)<br><br> My favorite books are Charles Petzold's book and Adam Nathan's book. However, chapter 18 of Programming WPF by Sells &amp; Griffiths is really great overview of the subject, and in particular coverage of the question: Do I really need a custom control?</li> </ul></li> <li><strong>Forums</strong> <ul> <li>The <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/threads/" rel="nofollow">WPF Forum</a></li> <li>StackOverflow<br> Here are two posts in particular that you will want to take a look at (<a href="http://stackoverflow.com/questions/183315/what-are-the-best-resources-for-learning-wpf-net" rel="nofollow">one</a>, <a href="http://stackoverflow.com/questions/129772/how-to-begin-wpf-development" rel="nofollow">two</a>).</li> </ul></li> <li><p><strong>MSDN</strong><br> I agree with Bijington that the <a href="http://msdn.microsoft.com/en-us/library/ms754130.aspx" rel="nofollow">MSDN documentation</a> excellent.</p></li> <li><p><strong>Blogs</strong><br> In <a href="http://stackoverflow.com/questions/129772/how-to-begin-wpf-development#154252" rel="nofollow">one</a> of the two StackOverflow posts that I reference in the Forums section above, I point to a set of blogs on my 'must read' list. In particular, I would especially point to the blogs of <a href="http://blog.pixelingene.com/" rel="nofollow">Pavan Podila</a> and <a href="http://work.j832.com/" rel="nofollow">Kevin Moore</a>. Kevin Moore used to be the WPF program manger for the WPF controls and he has a nice set of controls called the <a href="http://j832.com/bagotricks/" rel="nofollow">WPF Bag-o-Tricks</a> that are useful, but more importantly, controls that you can learn from.</p></li> <li><p><strong>Samples, Samples, and more Samples</strong><br> There are just a ton of samples out there. Almost too many! I would point to <a href="http://www.codeplex.com/familyshow" rel="nofollow">Family.Show</a> (it was created as an end-to-end reference sample for WPF) and I would point to the <a href="http://msdn.microsoft.com/en-us/library/ms771633.aspx" rel="nofollow">WPF SDK samples</a> and in particular to the <a href="http://msdn.microsoft.com/en-us/library/ms771268.aspx" rel="nofollow">Control Customization samples</a> within that section.</p></li> </ol> http://stackoverflow.com/questions/275222/relative-merits-of-gdi-and-wpf/275285#275285 4 Answer by cplotts for Relative merits of GDI+ and WPF cplotts 2008-11-08T22:13:49Z 2008-11-08T22:18:59Z <p><strong>GDI+ vs. WPF</strong><br> What are the benefits of WPF graphics subsystem? Let's see:</p> <ol> <li>Retained Mode Drawing/Composition</li> <li>Vector Graphics</li> <li>True Transparency</li> <li>And more ...</li> </ol> <p>What are the benefits of GDI+? Hmm. That's harder, because I love WPF so much. However, if you were in the position to have to be constantly recreating the geometry of the objects that you are trying to render, then you might need the immediate mode API that GDI+ offers.</p> <p>Here are two (<a href="http://blogs.msdn.com/timothyc/archive/2006/06/16/634638.aspx" rel="nofollow">one</a>, <a href="http://www.fernicola.org/loquitor/index.php?/archives/19-When-to-use-WPF-and-when-to-use-other-technologies.html#extended" rel="nofollow">two</a>) really great blog posts on this matter.</p> <p>(<em>Note that the above blog posts are rather old. They still contain great information, but also be aware that the WPF team has made significant advances in performance and graphics capabilities since the original version of WPF (.NET 3.0)).</em></p> <p><strong>System Requirements</strong><br> <strong>They're are really no minimum system requirements for WPF applications other than that the operating system must be at Windows XP SP 2 or greater and that .NET 3.0 (at least) must be installed</strong>. However, that being said, the better quality graphics card in the machine the WPF application is running on the better.</p> <p>What we have noticed ourselves is that WPF performs quite well even on older hardware, especially if you aren't doing anything too tricky or fancy.</p> <p>What does that mean? Well, in my own experience, watch your performance more closely if you start doing anything with <strong>WPF 3D and/or bitmap effects</strong>. In fact, I would encourage you to monitor your performance throughout the development of the application.</p> <p>One final thing I would add ... is that we have seen some very weird graphics issues (<a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/f88e6a8a-0b83-4c27-bdc5-229a16a62059" rel="nofollow">this</a> and <a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/7382637b-b4bc-4a46-8bed-f36250a65385" rel="nofollow">this</a>) with certain video solutions and in particular with Intel integrated video.</p> <p>Please check out this other StackOverflow <a href="http://stackoverflow.com/questions/239697/hardware-recommendationslimits-when-using-wpf">post</a> for more info on hardware limitations, and in particular, check out the information on <a href="http://msdn.microsoft.com/en-gb/library/ms742196.aspx" rel="nofollow">Rendering Tiers</a>.</p> http://stackoverflow.com/questions/1656764/wpf-control-over-blending-between-semi-transparent-layers/1656907#1656907 Comment by cplotts on WPF - Control over blending between semi-transparent layers cplotts 2009-12-11T20:30:47Z 2009-12-11T20:30:47Z Thanks for the compliment Drew! The series now has 6 posts with one more planned in my head. http://stackoverflow.com/questions/1799404/how-can-i-use-the-visual-state-manager-in-blend-for-wpf-applications/1802576#1802576 Comment by cplotts on How Can I Use the Visual State Manager in Blend for WPF Applications? cplotts 2009-11-26T16:59:05Z 2009-11-26T16:59:05Z Good point! I had forgotten to mention that (about also needing the WPF toolkit for Blend 3). I also love using VSM with UserControl(s) ... and I agree ... totally useful! http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888246#888246 Comment by cplotts on What is your longest-held programming assumption that turned out to be incorrect? cplotts 2009-10-22T23:08:15Z 2009-10-22T23:08:15Z I learn this and then forget it ... and then learn it and then forget it ... http://stackoverflow.com/questions/982841/can-wpf-render-a-line-path-with-300-000-points-on-it-in-a-performance-sensitive-e/1478490#1478490 Comment by cplotts on Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? cplotts 2009-10-17T00:09:30Z 2009-10-17T00:09:30Z If this approach doesn't work for you, try using an Image control with a dynamically generated DrawingImage. As I mention in <a href="http://stackoverflow.com/questions/952657/most-performant-way-to-graph-thousands-of-data-points-with-wpf" rel="nofollow" title="most performant way to graph thousands of data points with wpf">stackoverflow.com/questions/952657/&hellip;</a>, Pavan Podila mentions that this approach scales quite well ... and might help you out if you don't have to interact with the points ... and even then you can get smart about it. See page 25 of his WPF Control Development Unleashed book for more info. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/670395#670395 Comment by cplotts on What is your best programmer joke? cplotts 2009-09-27T22:48:49Z 2009-09-27T22:48:49Z Ok, I hurt myself. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/798476#798476 Comment by cplotts on What is your best programmer joke? cplotts 2009-09-27T22:45:40Z 2009-09-27T22:45:40Z I'm sorry, this one should be be near the top. +1. Hahahaha. http://stackoverflow.com/questions/982841/can-wpf-render-a-line-path-with-300-000-points-on-it-in-a-performance-sensitive-e/982875#982875 Comment by cplotts on Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? cplotts 2009-09-27T00:05:53Z 2009-09-27T00:05:53Z I wasn't suggesting the use of bitmap effects and neither was AgileJon (in my understanding). He was just pointing out that they can be a source of performance problems ... since they can at times force software rendering to occur http://stackoverflow.com/questions/982841/can-wpf-render-a-line-path-with-300-000-points-on-it-in-a-performance-sensitive-e/982875#982875 Comment by cplotts on Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? cplotts 2009-09-26T19:34:07Z 2009-09-26T19:34:07Z Bitmap effects (prior to .NET 3.5 SP1) were the source of performance problems ... since .NET 3.5 SP1 thunks bitmap effects down into actual GPU effects (in most cases) it is less of a problem now ... but then only 2 bitmap effects were offered as baked in GPU effects (drop shadow and blur). http://stackoverflow.com/questions/982841/can-wpf-render-a-line-path-with-300-000-points-on-it-in-a-performance-sensitive-e/1478490#1478490 Comment by cplotts on Can WPF render a line path with 300,000 points on it in a performance-sensitive environment? cplotts 2009-09-26T19:31:27Z 2009-09-26T19:31:27Z Wonderful! Glad to hear it! http://stackoverflow.com/questions/1479665/easiest-way-to-draw-a-sequence-of-points-in-wpf-from-code/1480003#1480003 Comment by cplotts on Easiest way to draw a sequence of points in WPF from code cplotts 2009-09-26T15:17:50Z 2009-09-26T15:17:50Z Thanks ... glad it was what you were looking for. http://stackoverflow.com/questions/952657/most-performant-way-to-graph-thousands-of-data-points-with-wpf/1478730#1478730 Comment by cplotts on Most performant way to graph thousands of data points with WPF? cplotts 2009-09-26T15:05:43Z 2009-09-26T15:05:43Z You're using DrawingVisual? That's odd that should have given a huge performance boost ... http://stackoverflow.com/questions/1479665/easiest-way-to-draw-a-sequence-of-points-in-wpf-from-code Comment by cplotts on Easiest way to draw a sequence of points in WPF from code cplotts 2009-09-25T23:54:05Z 2009-09-25T23:54:05Z I don't quite what you are trying to do ... but don't forget about InkCanvas which allows you to 'ink' on top of something ... in a relatively easy way. But InkCanvas doesn't answer your question, so I thought I would comment instead. http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/80393#80393 Comment by cplotts on What do you use to keep notes as a developer? cplotts 2009-09-25T22:12:40Z 2009-09-25T22:12:40Z I use this too ... and I have work notes going back 15 years. http://stackoverflow.com/questions/952657/most-performant-way-to-graph-thousands-of-data-points-with-wpf/952753#952753 Comment by cplotts on Most performant way to graph thousands of data points with WPF? cplotts 2009-09-25T18:01:18Z 2009-09-25T18:01:18Z +1 for pointing to more performant ways of doing it. http://stackoverflow.com/questions/952657/most-performant-way-to-graph-thousands-of-data-points-with-wpf/952753#952753 Comment by cplotts on Most performant way to graph thousands of data points with WPF? cplotts 2009-09-25T17:59:39Z 2009-09-25T17:59:39Z In overriding OnRender, be careful of trying to drive WPF like an immediate mode drawing system versus the retained mode system that it is. You will lose performance that way.