active questions tagged gof - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T21:00:02Zhttp://stackoverflow.com/feeds/tag/gofhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1770391/patterns-used-in-wpf2Patterns used in WPFThorsten Lorenz2009-11-20T13:21:50Z2009-11-20T21:06:33Z
<p>I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it.</p>
<p>At the same time I am rereading the GOF Design Patterns book. </p>
<p>A few times I would stop in the middle because I would realize that a certain pattern is the very one used in some WPF functionality. Whenever such a realization hits me, I feel like my understanding of the related WPF principle just took a big leap. It's kind of like an aha-effect.</p>
<p>I also realized that I had a much easier time understanding Prism for example because the documentation does such a great job at explaining the patterns involved.</p>
<p>So here is my "question" (more like an effort):</p>
<blockquote>
<p>In order to help us all to understand
WPF better it would be great if anyone
who also "spotted" a design pattern in
WPF could give a short explanation.</p>
</blockquote>
<p>One pretty obvious example that I found is the Routed Event:</p>
<blockquote>
<p>If an event is detected by a child
control and no handler has been
specified, it passes it along to its
parent and so on until it is finally
handled or no parent is found anymore.</p>
<p>Lets say we have an image on a button
that is inside a StackPanel that is
inside a window. If the user clicks
the image, the event will either be
handled by it (if handling code has
been specified) or "bubble" up until
one of the controls handles it. So
each control will get a chance to
react in this order.</p>
<ol>
<li>Image</li>
<li>Button</li>
<li>StackPanel</li>
<li>Window </li>
</ol>
<p>Once a control handles it, the
bubbling will stop.</p>
<p>This is the short explanation, for a
more precise one consult the WPF
literature.</p>
<p>This kind of functionality represents
the "<a href="http://en.wikipedia.org/wiki/Chain-of-responsibility%5Fpattern" rel="nofollow">Chain of Responsibility</a>
Design Pattern" which states, that if
their is a request, it gets passed
along a responsibility chain to give
each object in it a chance to handle
it. The sender of the request has no
idea who will handle it which ensures
decoupling. For a more thorough
explanation follow the link.</p>
</blockquote>
<p>The purpose here is merely to show how this (seemingly old 10+ years) idea found its way into our current technology and to offer another way of looking at it.</p>
<p>I think this is enough for a start and hope more parallels will be collected here.</p>
<p>Cheers, Thorsten</p>
http://stackoverflow.com/questions/557742/dependency-injection-vs-factory-pattern17Dependency Injection vs Factory PatternBinoj Antony2009-02-17T17:03:45Z2009-10-28T01:22:39Z
<p>Most of the examples quoted for usage of Dependency Injection, we can solve using the factory pattern as well. Looks like when it comes to usage/design the difference between dependency injection and factory is blurred or thin.</p>
<p>Once someone told me that its how you use it that makes a difference! </p>
<p>I once used <a href="http://structuremap.sourceforge.net/Default.htm" rel="nofollow">StructureMap</a> a DI container to solve a problem, later on I redesigned it to work with a simple factory and removed references to StructureMap.</p>
<p>Can anyone tell me what is the difference between them and where to use what, whats the best practice here?</p>
http://stackoverflow.com/questions/1343465/net-patterns-vs-gof2.Net patterns vs. GOFpsasik2009-08-27T20:01:39Z2009-08-27T20:23:09Z
<p>Since the GOF book was put together well before .Net came into being, are there any specific patterns described in GOF that are not appropriate for .Net? And if so, for what reason?</p>
<p>This is a question relating to a recent bounty <a href="http://stackoverflow.com/questions/1316743/are-there-any-design-patterns-used-in-net-library">discussion</a>.</p>
http://stackoverflow.com/questions/889429/command-pattern-client-and-invoker1Command Pattern: Client and InvokerIDreamOf3622009-05-20T18:17:24Z2009-05-20T18:24:47Z
<p>In the command pattern:</p>
<p>Why shouldn't the client participant be the same class as the invoker participant? Is there possible scenarios when the client participant and the invoker participant can be the same class?</p>
http://stackoverflow.com/questions/535481/classic-singleton-implementation-in-ocaml1Classic Singleton implementation in OCamlMat2009-02-11T04:55:13Z2009-02-19T05:23:10Z
<p>I am attempting to conceptualize the Singleton design pattern (qua Java) in OCaml and have seen ever instance allude to functors or modules, neither of which I am using in a proof of concept of GoF's work. Basically, I would like to recreate the following functionality using OCaml:</p>
<pre><code>public class Singleton
{
private static Singleton UniqueInstance;
private Singleton(){}
public static Singleton getInstance()
{
if(UniqueInstance==null)UniqueInstance=new Singleton();
return UniqueInstance;
}
}
</code></pre>
<p>Is this possible without modules or functors?</p>
http://stackoverflow.com/questions/136337/does-a-definitive-list-of-design-patterns-exist6Does a definitive list of design patterns exist?David Arno2008-09-25T21:38:03Z2008-09-26T23:31:25Z
<p>Where did the idea of design patterns come from, who decided what is and isn't a pattern and gave them their names? Is there an official organisation that defines them, or do they exist through some community consensus?</p>