User Jeffrey Knight - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:18:44Z http://stackoverflow.com/feeds/user/83418 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1544736/file-readallbytes-code-refactoring 3 File.ReadAllBytes Code Refactoring Jeffrey Knight 2009-10-09T16:13:31Z 2009-10-09T16:16:15Z <p>I came across this piece of code today:</p> <pre><code>public static byte[] ReadContentFromFile(String filePath) { FileInfo fi = new FileInfo(filePath); long numBytes = fi.Length; byte[] buffer = null; if (numBytes &gt; 0) { try { FileStream fs = new FileStream(filePath, FileMode.Open); BinaryReader br = new BinaryReader(fs); buffer = br.ReadBytes((int)numBytes); br.Close(); fs.Close(); } catch (Exception e) { System.Console.WriteLine(e.StackTrace); } } return buffer; } </code></pre> <p>My first thought is to refactor it down to this:</p> <pre><code>public static byte[] ReadContentFromFile(String filePath) { return File.ReadAllBytes(filePath); } </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/system.io.file.readallbytes.aspx" rel="nofollow">System.IO.File.ReadAllBytes</a> is documented as:</p> <blockquote> <p>Opens a binary file, reads the contents of the file into a byte array, and then closes the file.</p> </blockquote> <p>... but am I missing some key difference? </p> http://stackoverflow.com/questions/1541712/remove-xa-from-string-in-net/1541723#1541723 0 Answer by Jeffrey Knight for Remove &#xA; from String in .net Jeffrey Knight 2009-10-09T03:59:56Z 2009-10-09T03:59:56Z <p>Escape the ampersand in your regex</p> <pre><code>string s = "hello &amp;#xA there"; Console.WriteLine(Regex.Replace(s, @"\&amp;#xA", "")); //or more simply: Console.WriteLine(s.Replace("&amp;#xA", "")); </code></pre> http://stackoverflow.com/questions/844653/wfp-mvvm-good-reasons-not-to-place-vms-in-separate-assembly 1 WFP MVVM: Good reasons *not* to place VM's in separate assembly? Jeffrey Knight 2009-05-10T03:53:09Z 2009-10-02T16:46:58Z <p>I'm developing a project using the MVVM pattern in WPF.</p> <p>One of the key benefits to MVVM is maintaining clear separation between business logic and presentation. </p> <p>As a test to see how well separated everything actually was, over the weekend I spiked moving all ViewModels, Models, and business logic to a separate .dll. The .exe was left as a thin presentation layer.</p> <p>This worked, seamlessly, <i>first try</i>. </p> <p>I've already seen benefits to keeping views (xaml, presentation) in the .exe and core logic in its own dll. For example, there's no longer <a href="http://www.google.com/search?q=wpf+mvvm+no+code+behind" rel="nofollow">any</a> <a href="http://stackoverflow.com/search?q=wpf+mvvm+code+behind">dilemma</a> in my mind about whether code-behind in Xaml is an issue: I'm comfortable with it if it becomes necessary, since I know it's presentation specific.</p> <p>So far this exe/dll separation has worked so well that my question is: Has anyone experienced any <b>downside</b> to this approach? </p> <p>Related question: <a href="http://stackoverflow.com/questions/503329/implementing-mvvm-in-wpf-without-using-system-windows-input-icommand">Implementing MVVM in WPF without using System.Windows.Input.ICommand</a></p> http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name 2 Find a jar file given the class name? Jeffrey Knight 2009-09-30T19:21:15Z 2009-09-30T20:40:41Z <p>This must be a very basic question for Java developers, but what is the best way to find the appropriate <b>jar file</b> given a <b>class name</b>?</p> <p>For example, given "<a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.wbifz.doc/info/wbifz/javadoc/ae/com/ibm/websphere/security/auth/WSSubject.html" rel="nofollow">com.ibm.websphere.security.auth.WSSubject</a>", how do you track down the appropriate jar file? ("google" is not the answer I'm looking for!)</p> <p>The <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.wbifz.doc/info/wbifz/javadoc/ae/com/ibm/websphere/security/auth/WSSubject.html" rel="nofollow">java docs</a> do not give any hint of the jar file, and obviously the names of the jar files themselves offer no clue.</p> <p>There must be a 'search local jars', or some sort of 'auto-resolve dependencies', trick in the java world. Ideally, I'm looking for the 'official' way to do this. I happen to be on a windows machine without cygwin.</p> http://stackoverflow.com/questions/1209763/doctypes-role-in-general-xml/1209793#1209793 -2 Answer by Jeffrey Knight for DOCTYPE's role in general XML Jeffrey Knight 2009-07-30T22:39:37Z 2009-07-30T22:39:37Z <p>This isn't an answer, but it reminds me of Joel's article <a href="http://www.joelonsoftware.com/items/2008/03/17.html" rel="nofollow">Martian Headsets</a> :</p> <blockquote> <p>DOCTYPE is a myth.</p> <p>A mortal web designer who attaches a DOCTYPE tag to their web page saying, “this is standard HTML,” is committing an act of hubris. There is no way they know that. All they are really saying is that the page was meant to be standard HTML. All they really know is that they tested it with IE, Firefox, maybe Opera and Safari, and it seems to work. Or, they copied the DOCTYPE tag out of a book and don’t know what it means.</p> </blockquote> http://stackoverflow.com/questions/1113518/how-to-disable-keyboard-and-mouse-events-in-a-part-of-the-visual-tree-without-usi/1209736#1209736 0 Answer by Jeffrey Knight for How to disable keyboard and mouse events in a part of the visual tree without using IsEnabled? Jeffrey Knight 2009-07-30T22:23:04Z 2009-07-30T22:23:04Z <p>I've been struggling with the same issue (also MVVM). I'm also using a UserControl overlay instead of a modal popup. (In my case, I dislike IsEnabled=false not because of the disabled style, but because toggling IsEnabled makes it hard to get keyboard focus back.)</p> <p>I'm using the overlay solution (above) for blocking mouse action. And for the "other half of the solution" - -disabling keyboard input -- I'm handing this in the main window:</p> <pre> Window +----------------+ private void Window_PreviewKeyDown(object sender, | | KeyEventArgs e){ | Transparent | if (this.myDialog.Visibility == Visibility.Visible){ | | e.Handled = true; | +----------+ | } | | myDialog | | } | | content | | | +----------+ | | | +----------------+ </pre> http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies/941318#941318 0 Answer by Jeffrey Knight for StructureMap and scanning assemblies Jeffrey Knight 2009-06-02T19:02:58Z 2009-06-02T19:02:58Z <p><a href="http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#816376">http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#816376</a></p> http://stackoverflow.com/questions/921601/how-can-i-handle-a-validation-error-in-my-viewmodel-instead-of-my-views-code-beh/927811#927811 0 Answer by Jeffrey Knight for How can I handle a Validation.Error in my ViewModel instead of my View's code behind? Jeffrey Knight 2009-05-29T19:49:06Z 2009-05-29T19:49:06Z <p>I gave up on the built-in error validation and opted for a just exposing an error property in my ViewModel. </p> <p><a href="http://www.rootsilver.com/2009/05/wpf-mvvm-simple-error-validation" rel="nofollow">Here's</a> an example of simple error validation in WPF MVVM, similar to <a href="#922818" rel="nofollow">Matt Brunell's answer</a>. You can download a simple project using this technique at <a href="http://www.rootsilver.com/2009/05/wpf-mvvm-simple-error-validation" rel="nofollow">the link above</a></p> http://stackoverflow.com/questions/925912/storing-real-time-data-into-1000-files/926674#926674 1 Answer by Jeffrey Knight for Storing Real Time data into 1000 files Jeffrey Knight 2009-05-29T15:42:05Z 2009-05-29T15:42:05Z <p>Perhaps you don't want the overhead of a DB install? </p> <p>In that case, you could try <a href="http://www.sqlite.org/" rel="nofollow">a filesystem-based database like sqlite</a>:</p> <blockquote> <p>SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world. The source code for SQLite is in the public domain.</p> </blockquote> http://stackoverflow.com/questions/920172/how-do-i-pass-the-information-from-view-to-viewmodel-with-delegatecommand/922337#922337 0 Answer by Jeffrey Knight for How do I pass the information from View to ViewModel with DelegateCommand? Jeffrey Knight 2009-05-28T17:59:25Z 2009-05-28T18:05:40Z <p>You're asking about passing data via the button Command. </p> <p>What you actually want, I think, is to <strong>bind</strong> your Textbox's text to a <strong>public property</strong> in your ViewModel:</p> <pre><code>&lt;!-- View: TextBox's text is bound to the FirstName property in your ViewModel --&gt; &lt;TextBox Text="{Binding Path=FirstName}" /&gt; &lt;Button Command="{Binding SaveCommand}"/&gt; &lt;!-- ViewModel: Expose a property for the TextBox to bind to --&gt; public string FirstName{ get; set; } ... private void Save() { //textBox's text is bound to --&gt; this.FirstName; } </code></pre> http://stackoverflow.com/questions/922207/how-can-i-make-a-program-thats-impossible-to-be-killed-in-windows/922225#922225 2 Answer by Jeffrey Knight for How can I make a program that's impossible to be killed in Windows? Jeffrey Knight 2009-05-28T17:39:44Z 2009-05-28T18:01:56Z <p>Control it with a Windows Service. Easy to do in C#. Lock down permissions to stop the service.</p> <p>Note: I think the answers of "this is impossible/horrible/evil" are perhaps missing your point. A service is specifically designed 'keep going', which is what you're asking about.</p> http://stackoverflow.com/questions/905392/how-to-bind-a-view-with-multiple-observablecollection/905470#905470 0 Answer by Jeffrey Knight for How to bind a view with multiple ObservableCollection Jeffrey Knight 2009-05-25T05:44:50Z 2009-05-25T06:17:16Z <p>It sounds like you're using MVVM. You can certainly bind to multiple ObservableCollections. The question really is: <strong>do you need to</strong>? You should reserve binding to ObserableCollections for cases where your ViewModel is changing and you need to keep your View updated with the changes. </p> <p>Here's an example I whipped up for you of a View bound to two ObservableCollections and one List in a ViewModel. So -- yes -- you can certainly bind to whatever you want. In this example, the two ObservableCollections will alternate updating. Does that help?</p> <p>I posted the code for this <a href="http://www.rootsilver.com/files/905392.zip" rel="nofollow">here</a> if it helps to have the whole vs project.</p> <p>View:</p> <pre><code>&lt;Window x:Class="WpfApplication1.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 Orientation="Vertical"&gt; &lt;TextBlock&gt;Bind to List:&lt;/TextBlock&gt; &lt;ListView ItemsSource="{Binding Path=Users}" Height="20"/&gt; &lt;TextBlock&gt;Bind to ObservableCollection1:&lt;/TextBlock&gt; &lt;ListView ItemsSource="{Binding Path=ObservableCollection1}" Height="100"/&gt; &lt;TextBlock&gt;Bind to ObservableCollection2:&lt;/TextBlock&gt; &lt;ListView ItemsSource="{Binding Path=ObservableCollection2}" Height="100"/&gt; &lt;/StackPanel&gt; &lt;/Window&gt; </code></pre> <p>ViewModel (View is bound to this ViewModel)</p> <pre><code>using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Timers; using System.Windows; using System.Windows.Threading; namespace WpfApplication1 { public class Class1 { public List&lt;string&gt; Users{get;set;} public ObservableCollection&lt;string&gt; ObservableCollection1 { get; set; } public ObservableCollection&lt;string&gt; ObservableCollection2 { get; set; } public Class1() { this.Users = new List&lt;string&gt;{ "bob", "mary" }; this.ObservableCollection1 = new ObservableCollection&lt;string&gt;(); this.ObservableCollection2 = new ObservableCollection&lt;string&gt;(); int counter = 0; Timer t1 = new Timer(); t1.Enabled = true; t1.Interval = 1000; t1.Elapsed += delegate { Application.Current.Dispatcher.Invoke( DispatcherPriority.Send, new Action(delegate { if(counter % 2 == 1) this.ObservableCollection1.Add(DateTime.Now.ToString()); else this.ObservableCollection2.Add(DateTime.Now.ToString()); ++counter; })); }; } } } </code></pre> http://stackoverflow.com/questions/844653/wfp-mvvm-good-reasons-not-to-place-vms-in-separate-assembly/878908#878908 0 Answer by Jeffrey Knight for WFP MVVM: Good reasons *not* to place VM's in separate assembly? Jeffrey Knight 2009-05-18T17:37:41Z 2009-05-18T17:37:41Z <p>2 weeks now with my Model &amp; View Models in a dll, my xaml in an exe and no problems whatsoever.</p> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/858729#858729 0 Answer by Jeffrey Knight for How do I get the name of a property from a property in C# (2.0) Jeffrey Knight 2009-05-13T15:45:11Z 2009-05-13T15:45:11Z <p>See <a href="http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type">http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type</a></p> http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type 4 Referring to the property itself in C#. Reflection? Generic? Type? Jeffrey Knight 2009-05-12T23:09:42Z 2009-05-12T23:28:11Z <p>Please bear with me if this question isn't well formulated. Not knowing is part of the problem.</p> <p>An example of what I'd like to accomplish can be found in PropertyChangedEventArgs in WPF. If you want to flag that a property has changed in WPF, you do it like this:</p> <pre><code>PropertyChanged(this, new PropertyChangedEventArgs("propertyName")); </code></pre> <p>You pass a <b>string</b> to PropertyChangedEventArgs that refers to the <b>property name</b> that changed.</p> <p>You can imagine that I don't really want hard coded strings for property names all over my code. Refactor-rename misses it, of course, which makes it not only aesthetically unappealing but error prone as well.</p> <p>I'd much rather <b>refer to the property itself</b> ... somehow. </p> <pre><code>PropertyChanged(this, new PropertyChangedEventArgs(?SomeClass.PropertyName?)); </code></pre> <p>It seems like I should be able to wrap this in a short method that lets me say something like the above.</p> <pre><code>private void MyPropertyChanged(??) { PropertyChanged(this, new PropertyChangedEventArgs(??.ToString()??)); } ... so I can say something like: MyPropertyChanged(Person.Name); //where I'm interested in the property *itself* </code></pre> <p>So far I'm drawing a blank.</p> http://stackoverflow.com/questions/454868/handling-dialogs-in-wpf-with-mvvm/840720#840720 3 Answer by Jeffrey Knight for Handling Dialogs in WPF with MVVM Jeffrey Knight 2009-05-08T16:36:40Z 2009-05-09T02:35:56Z <p>I suggest foregoing the 1990's modal dialogs and instead implementing a control as an overlay (canvas+absolute positioning) with visibility tied to a boolean back in the VM. Closer to an ajax type control.</p> <p>This is very useful:</p> <p><code>&lt;BooleanToVisibilityConverter x:Key="booltoVis" /&gt;</code></p> <p>as in:</p> <p><code>&lt;my:ErrorControl Visibility="{Binding Path=ThereWasAnError, Mode=TwoWay, Converter={StaticResource booltoVis}, UpdateSourceTrigger=PropertyChanged}"/&gt;</code></p> <p>Here's how I have one implemented as a user control. Clicking on the 'x' closes the control in a line of code in the usercontrol's code behind. (Since I have my Views in an .exe and ViewModels in a dll, I don't feel bad about code that manipulates UI.)</p> <p><img src="http://img4.imageshack.us/img4/9564/wpfdialog.jpg" alt="Wpf dialog" /></p> http://stackoverflow.com/questions/823294/two-c-naming-conventions-what-do-you-think 0 Two C# naming conventions: What do you think? Jeffrey Knight 2009-05-05T04:08:34Z 2009-05-05T06:15:44Z <p>I have two <em>specific</em> C# coding conventions I've been practicing with mixed feelings. I'd be curious to hear what people think. They are:</p> <p><strong>#1. Name instances after the class it's an instance of, camelCased</strong></p> <p><strong>#2: "Matching property names"</strong></p> <p>Here's the rationale:</p> <p><strong>#1. Name instances after the class it's an instance of, camelCased</strong></p> <p>I use this as my default setting for naming convention. Of course, there are exceptions. But used consistently it <em>dramatically</em> improves code clarity and maintainability. The code looks like this:</p> <pre><code>var dataConnection = new DataConnection(); //not: var dataConn, dbConn, sqlConn, myDbPickOfTheDay etc. FileInfo fileInfo = new FileInfo(); Timer timer = new Timer(); //etc. </code></pre> <p>I'm at the point where code like this causes me physical pain:</p> <pre><code>DataConnection dbConn = new DataConnection(); </code></pre> <p>I can't stress enough how this convention has taken away the pain and anger of the variable name game. </p> <p>This convention is in sharp contrast to attempting to name things in ways that try to indicate what the instance is doing, which amounts to trying to creatively embed the business case in code. Code has a way of getting refactored to the point where those original names are misleading at best. </p> <p>To me this convention is gold. It also prevents the horrible practice of slightly tweaked variable names for the same thing. </p> <p>An example of this convention in practice is:</p> <pre><code>class Person { ... public string FirstName { get; set; } //and then var person = new Person(); person.FirstName = firstName; //where firstName comes from somewhere else. </code></pre> <p>Very easy to read. Very boring. Boring is good when it comes to maintaining code.</p> <p><em>However</em>, this convention leads me to #2:</p> <p><strong>#2 "Matching property names"</strong> ( for lack of a better title )</p> <p>Here's an example:</p> <pre><code>public class ShoppingCart { .. private Item item; public Item Item { //&lt;---- ? get { return this.item; } ... </code></pre> <p>The compiler is perfectly happy with this. And, in fact, it exposes a very nice interface:</p> <pre><code>//notice how tempting it is to just say "ShoppingCart cart ... " ShoppingCart shoppingCart = new ShoppingCart(); shoppingCart.Item = item; </code></pre> <p>Now, the alternative is to be creative -- You actually need to drum up two good variable names for Item: the public property name and the private member variable name. </p> <p>How many times have you seen this and just want to retire immediately?</p> <pre><code> public class ShoppingCart { .. private Item cartItem; public Item ShoppingCartItem { get { return this.cartItem; } .. ///.... ShoppingCart userShoppingCart = new ShoppingCart(); userShoppingCart.ShoppingCartItem = userSelection; </code></pre> <p>I feel strongly enough about convention #1 that I think I can live with #2.</p> <p>What do you think ?</p> http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/816376#816376 1 Answer by Jeffrey Knight for IoC, Dll References, and Assembly Scanning Jeffrey Knight 2009-05-03T05:04:14Z 2009-05-03T05:10:22Z <p>I finally got this sorted out. It looks like this:</p> <p><img src="http://img396.imageshack.us/img396/1343/iocuml.jpg" alt="IoC Uml" /></p> <p>with the assemblies</p> <ul> <li>Core.exe <li>PersonBase.dll (references by Core.exe) <li>Bob.dll (loaded up run time via StructureMap Scan) <li>Betty.dll (loaded up run time via StructureMap Scan) </ul> <p>To get it with StructureMap, I needed a custom "ITypeScanner" to support scanning for assemblies:</p> <pre><code>public class MyScanner : ITypeScanner { public void Process(Type type, PluginGraph graph) { if(type.BaseType == null) return; if(type.BaseType.Equals(typeof(PersonBase))) { graph.Configure(x =&gt; x.ForRequestedType&lt;PersonBase&gt;() .TheDefault.Is.OfConcreteType(type)); } } } </code></pre> <p>So my main code looks like:</p> <pre><code>ObjectFactory.Configure(x =&gt; x.Scan ( scan =&gt; { scan.AssembliesFromPath(Environment.CurrentDirectory /*, filter=&gt;filter.You.Could.Filter.Here*/); //scan.WithDefaultConventions(); //doesn't do it scan.With&lt;MyScanner&gt;(); } )); ObjectFactory.GetAllInstances&lt;PersonBase&gt;() .ToList() .ForEach(p =&gt; { Console.WriteLine(p.FirstName); } ); </code></pre> http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning 3 IoC, Dll References, and Assembly Scanning Jeffrey Knight 2009-04-30T21:00:20Z 2009-05-03T05:10:22Z <p>Although this question is related to StructureMap, my <i>general</i> question is: </p> <blockquote> <p>When wiring up components with an IoC container <b>in code</b> (as opposed to configuring via <b>xml</b>) do you generally need explicit project/build references to all assemblies?</p> </blockquote> <p>Why the separate assemblies? Because:</p> <p><hr /></p> <blockquote> <p>"Abstract classes residing in a separate assembly from their concrete implementations are a great way to achieve such separation." -<b>Framework Design Guidelines p.91</b></p> </blockquote> <p><hr /></p> <p>Example:</p> <p>Let's say I have <em>PersonBase.dll</em> and <em>Bob.dll</em></p> <p><em>Bob</em> inherits from the abstract class <em>PersonBase</em>. They're both in the <em>Person</em> namespace. <b>But in different assemblies</b>.</p> <p>I'm programming to <em>PersonBase</em>, not <em>Bob</em>.</p> <p>Back in my main code, I need a person. StructureMap can scan assemblies. Great, I'll ask StructureMap for one!</p> <p>Now, in my main code, I am of course referring only to <em>PersonBase</em>, not to <em>Bob</em>. I actually don't want my code to know <em>anything</em> about <em>Bob</em>. No project references, no nuthin. That's the whole point.</p> <p>So I want to say:</p> <pre><code>//Reference: PersonBase.dll (only) using Person; ... //this is as much as we'll ever be specific about Bob: Scan( x=&gt; { x.Assembly("Bob.dll"); } //Ok, I should now have something that's a PersonBase (Bob). But no ? ObjectFactory.GetAllInstances&lt;PersonBase&gt;().Count == 0 </code></pre> <p>No luck. What does work is being explicit that I want Bob:</p> <pre><code>//Reference: PersonBase.dll and Bob.dll using Person; ... Scan( x =&gt; {x.Assembly("Bob.dll"); } //If I'm explicit, it works. But Bob's just a PersonBase, what gives? ObjectFactory.GetAllInstances&lt;Bob&gt;().Count == 1 //there he is! </code></pre> <p>But now I've had to reference <em>Bob.dll</em> in my project which is exactly what I didn't want. </p> <p>I can avoid this situation using Spring + Xml configuration. But then I'm back to Spring + Xml configuration ... !</p> <blockquote> <p>Am I missing something with using StructureMap, or as a general principle, do (fluent) IoC configurations need explict references to all assemblies?</p> </blockquote> <p>Possibly related question: <a href="http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies">http://stackoverflow.com/questions/508399/structuremap-and-scanning-assemblies</a></p> http://stackoverflow.com/questions/768304/wpf-mvvm-convention-over-configuration-for-resourcedictionary 2 WPF MVVM: Convention over Configuration for ResourceDictionary ? Jeffrey Knight 2009-04-20T13:40:26Z 2009-05-01T19:01:11Z <p><hr /></p> <p><b>Update</b></p> <p>In the wiki spirit of StackOverflow, here's an update: </p> <p>I spiked Joe White's IValueConverter suggestion below. It works like a charm. </p> <p>I've written a "quickstart" example of this that automates the mapping of ViewModels->Views using some cheap string replacement. If no View is found to represent the ViewModel, it defaults to an "Under Construction" page. I'm dubbing this approach "WPF MVVM White" since it was Joe White's idea. Here are a couple screenshots.</p> <p>The first image is a case of "[SomeControlName]ViewModel" has a corresponding "[SomeControlName]View", based on <b>pure naming convention</b>. The second is a case where the ModelView doesn't have any views to represent it. No more ResourceDictionaries with long ViewModel to View mappings. It's pure naming convention now.</p> <p><img src="http://img14.imageshack.us/img14/4292/mvvmwhite3.jpg" alt="Wpf Mvvm White"></p> <p>I'm hosting a download of the project here: <a href="http://rootsilver.com/files/Mvvm.White.Quickstart.zip" rel="nofollow">http://rootsilver.com/files/Mvvm.White.Quickstart.zip</a></p> <p>I'll follow up with a longer blog post walk through.</p> <p><hr /></p> <p><b>Original Post</b></p> <p>I read Josh Smith's <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">fantastic MSDN article</a> on WPF MVVM over the weekend. It's destined to be a cult classic.</p> <p>It took me a while to wrap my head around the magic of asking WPF to render the <b>ViewModel</b>. </p> <p>It's like saying "Here's a class, WPF. Go figure out which UI to use to present it."</p> <p>For those who missed this magic, WPF can do this by looking up the <b>View</b> for <b>ModelView</b> in the ResourceDictionary mapping and pulling out the corresponding <b>View</b>. (Scroll down to <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">Figure 10 Supplying a View </a>). </p> <p>The first thing that jumps out at me immediately is that there's already a strong naming convention of:</p> <pre><code>classNameView ("View" suffix) classNameViewModel ("ViewModel" suffix) </code></pre> <p>My question is:</p> <p>Since the <a href="http://msdn.microsoft.com/en-us/library/system.windows.resourcedictionary.aspx" rel="nofollow">ResourceDictionary</a> can be manipulated programatically, I"m wondering if anyone has managed to Regex.Replace the whole thing away, <b>so the lookup is automatic</b>, and any new View/ViewModels get resolved by virtue of their naming convention?</p> <p>[Edit] What I'm imagining is a hook/interception into ResourceDictionary. </p> <p>... Also considering a method at startup that uses interop to pull out <code>*View$</code> and <code>*ViewModel$</code> class names to build the DataTemplate dictionary in code:</p> <pre><code>//build list foreach .... String.Format("&lt;DataTemplate DataType=\"{x:Type vm:{0} }\"&gt;&lt;v:{1} /&gt;&lt;/DataTemplate&gt;", ...) </code></pre> http://stackoverflow.com/questions/807998/how-do-i-create-a-c-app-that-decides-itself-whether-to-show-as-a-console-or-wind/809161#809161 2 Answer by Jeffrey Knight for How do I create a C# app that decides itself whether to show as a console or windowed app? Jeffrey Knight 2009-04-30T21:22:58Z 2009-04-30T21:22:58Z <p>I blogged about this a while back <a href="http://www.rootsilver.com/2007/08/how-to-create-a-consolewindow" rel="nofollow">How To Create a Console/Window Hybrid Application in C#</a></p> http://stackoverflow.com/questions/794882/wpf-event-bitmapimage-propertychanged-calling-thread-cannot-access 0 WPF Event: BitmapImage PropertyChanged: "Calling Thread Cannot access" Jeffrey Knight 2009-04-27T19:13:34Z 2009-04-27T20:16:24Z <p>I'm trying to understand what it is about the following code that <b>is</b> perfectly happy with loading a text file and displaying its contents, but <b>isn't</b> happy with loading a BitmapImage and displaying it on a timer.Elapsed event handler. </p> <p>I understand it has to do with the UI thread. </p> <p>But why is this not a problem for the textfile example?</p> <p>First, the XAML:</p> <pre><code>&lt;Window x:Class="WpfApplication7.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 Orientation="Vertical"&gt; &lt;TextBlock Text="{Binding Path=Message, UpdateSourceTrigger=PropertyChanged}" FontSize="20" Height="40" Width="300" Background="AliceBlue" /&gt; &lt;Image Source="{Binding Path=Image,UpdateSourceTrigger=PropertyChanged}" Height="100" Width="100"/&gt; &lt;/StackPanel&gt; &lt;/Window&gt; </code></pre> <p>and the C#, which raises a PropertyChangedEventHandler on a timer:</p> <pre><code>using System; using System.ComponentModel; using System.Timers; using System.Windows; using System.IO; using System.Windows.Threading; using System.Windows.Media.Imaging; </code></pre> <p>and</p> <pre><code>namespace WpfApplication7 { public partial class Window1 : Window, INotifyPropertyChanged { public BitmapImage Image { get; private set; } public string Message { get; set; } public event PropertyChangedEventHandler PropertyChanged = delegate { }; private Timer timer; public Window1() { InitializeComponent(); this.DataContext = this; this.timer = new Timer { Enabled = true, Interval = 100 }; this.timer.Elapsed += (s, e) =&gt; { //---happy loading from text file. UI updates :) this.Message = File.ReadAllText(@"c:\windows\win.ini").Substring(0, 20); PropertyChanged(this, new PropertyChangedEventArgs("Message")); //---not happy loading a BitmapImage. PropertyChanged unhappy :( // (Don't make me have to: ! ) //Application.Current.Dispatcher.Invoke( //DispatcherPriority.Send, new Action(delegate //{ this.Image = new BitmapImage(new Uri(@"C:\WINDOWS\Web\Wallpaper\Ascent.jpg")); //Edit --Ah hah, thanks Daniel ! // DependencyObject-&gt; Freezable-&gt; Animatable-&gt; // ImageSource-&gt; BitmapSource-&gt; BitmapImage this.Image.Freeze(); //&lt;--- this will fix it, no need for Dispatcher //Without Dispatcher or Freeze() ... right here: //"The calling thread cannot access this object because a different thread owns it." PropertyChanged(this, new PropertyChangedEventArgs("Image")); //})); }; } } } </code></pre> <p>I know I can fix this with a "Application.Current.Dispatcher.Invoke". So fixing it isn't the problem. Not understanding why I should have to is the problem :)</p> <p><i>Similar</i> questions</p> <ul> <li><p><a href="http://stackoverflow.com/questions/36748/asynchronously-loading-a-bitmapimage-in-c-using-wpf">http://stackoverflow.com/questions/36748/asynchronously-loading-a-bitmapimage-in-c-using-wpf</a></p></li> <li><p><a href="http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app">http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app</a></p></li> </ul> http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app/790236#790236 0 Answer by Jeffrey Knight for Making sure OnPropertyChanged() is called on UI thread in MVVM WPF app Jeffrey Knight 2009-04-26T04:30:50Z 2009-04-26T04:53:08Z <p>I had a similar scenario just this week (MVVM here too). I had a separate class doing its thing, reporting back status on an event handler. The event handler <i>was being called as expected, and I could see the results coming back right on time with Debug.WriteLine's</i>.</p> <p>But with WPF, no matter what I did, the UI would not update until the process was complete. As soon as the process finished, the UI would update as expected. It was as if it was getting PropertyChanged, but waiting for the thread to complete before doing the UI updates all at once. </p> <p>(Much to my dismay, the same code in Windows.Forms with a DoEvents and .Refresh() worked like a charm.)</p> <p>So far, I've resolved this by starting the process on its own thread:</p> <pre><code>//hook up event handler myProcess.MyEvent += new EventHandler&lt;MyEventArgs&gt;(MyEventHandler); //start it on a thread ... ThreadStart threadStart = new ThreadStart(myProcess.Start); Thread thread = new Thread(threadStart); thread.Start(); </code></pre> <p>and then in the event handler:</p> <pre><code>private void MyEventHandler(object sender, MyEventArgs e) { .... Application.Current.Dispatcher.Invoke( DispatcherPriority.Send, (DispatcherOperationCallback)(arg =&gt; { //do UI updating here ... }), null); </code></pre> <p>I'm not recommending this code, since I'm still trying to understand the WPF thread model, how Dispatcher works, and why in my case the UI wouldn't update until the process was complete even with event handler getting called as expected (by design?). But this has worked for me so far.</p> <p>I found these two links helpful:</p> <p><a href="http://www.nbdtech.com/blog/archive/2007/08/01/Passing-Wpf-Objects-Between-Threads-With-Source-Code.aspx" rel="nofollow">http://www.nbdtech.com/blog/archive/2007/08/01/Passing-Wpf-Objects-Between-Threads-With-Source-Code.aspx</a></p> <p><a href="http://srtsolutions.com/blogs/mikewoelmer/archive/2009/04/17/dealing-with-unhandled-exceptions-in-wpf.aspx" rel="nofollow">http://srtsolutions.com/blogs/mikewoelmer/archive/2009/04/17/dealing-with-unhandled-exceptions-in-wpf.aspx</a></p> http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/790218#790218 46 Answer by Jeffrey Knight for What are the dark corners of Vim your mom never told you about? Jeffrey Knight 2009-04-26T04:03:04Z 2009-04-26T04:03:04Z <p><b>:! [command]</b> executes an external command while you're in vim.</p> <p>But add a dot after the colon -- :.! [command] -- and it'll dump the output of the command into your current window. That's <b>: . !</b> </p> <p>For example:</p> <pre><code>:.! ls </code></pre> <p>I use this a lot for things like adding the current date into a document I'm typing:</p> <pre><code>:.! date </code></pre> http://stackoverflow.com/questions/746366/best-method-for-debugging-a-called-webservice-in-php/786739#786739 1 Answer by Jeffrey Knight for Best method for debugging a called webservice in php? Jeffrey Knight 2009-04-24T16:56:52Z 2009-04-24T17:53:42Z <p>I don't know much about PHP <i>debugging</i>, and I'm not sure I follow 'push of the environment onto some kind of stack', but I wonder if netcat + some shell scripting could be useful here for <i>troubleshooting</i> ?</p> <p>You can use netcat to:</p> <ul> <li>Spoof an HTTP Request <li>Act like a webserver (listen on a port - pick a port, any port!) </ul> <p><a href="http://www.plenz.com/netcat-tips" rel="nofollow">http://www.plenz.com/netcat-tips</a></p> <p>You could use it to stub out a fake webservice on the one end:</p> <pre><code>echo "&lt;xml .. &lt;node&gt;hello php!&lt;/node&gt;" | netcat -lp 80 ... etc </code></pre> <p>... and you can certainly use it listening on a port to very clearly see what the incoming requests to the webservice look like. </p> <p>Could you use a shell script with netcat as middle man that acts like your webservice, immediately returns something generic to make your PHP happy, then passes the request on to your actual appserver and logs the results?</p> <p>Super simple. </p> <p><img src="http://img240.imageshack.us/img240/791/netcat.jpg" alt="netcat webserver" /></p> http://stackoverflow.com/questions/762909/wpf-ioc-specified-visual-is-already-a-child-of-another-visual-or-the-root-of 0 WPF + IoC: "Specified Visual is already a child of another Visual or the root of a CompositionTarget." Jeffrey Knight 2009-04-18T04:41:21Z 2009-04-23T16:10:46Z <p>[Edit: Rethinking architecture along mvvm lines made this problem largely fall away - thanks <a href="http://stackoverflow.com/users/5380/kent-boogaart">@kent</a>]</p> <p>Using Spring.NET + WPF.</p> <p>Load two WPF buttons in the config:</p> <pre><code>&lt;object name="Button1" type="System.Windows.Controls.Button, PresentationFramework" &gt; &lt;property name="Name" value="Next" /&gt; &lt;property name="Width" value="200"/&gt; &lt;property name="Content" value="Next"/&gt; &lt;/object&gt; &lt;object name="Button2" type="System.Windows.Controls.Button, PresentationFramework" &gt; &lt;property name="Name" value="Back" /&gt; &lt;property name="Width" value="200"/&gt; &lt;property name="Content" value="Back"/&gt; &lt;/object&gt; </code></pre> <p>and pass them into the constructor of a xaml class ("code behind")</p> <pre><code>&lt;object name="MyNewScreen" type="MyControls.MyUserControl&gt; &lt;constructor-arg name="buttons"&gt; &lt;list&gt; &lt;ref object="Button1"/&gt; &lt;ref object="Button2"/&gt; &lt;/list&gt; &lt;/object&gt; </code></pre> <p>where the class constructor has:</p> <pre><code>public DataGridControl(ArrayList buttons) { //(yes this should be a List&lt;Button&gt; but I can't make spring happy with that) foreach(var b in buttons) this.stackPanel.Children.Add(b); ... </code></pre> <p>Throws a:</p> <p><code>Specified Visual is already a child of another Visual or the root of a CompositionTarget.</code></p> <p>Now, I see the .GetHashCode() is the same for both buttons coming from Spring. So I can understand what WPF doesn't like. </p> <p>But I can't do a <code>XamlReader.Load(new XmlNodeReader(document));</code> as <a href="http://www.google.com/search?q=XamlReader.Load(new+XmlNodeReader(document))%3B" rel="nofollow">some have suggested</a>, without losing my event wiring.</p> <p>Any ideas how to get around this?</p> <p>[Edit] I am wiring up events. Event wiring is not a problem, but it does explain why I'd want to do this in the first place. I'd left this out of the original post for the sake of brevity:</p> <pre><code>&lt;object id="eventListener2" type="MyEventListener"&gt; &lt;listener event="Click" method="b_Click"&gt; &lt;ref object="Button2" /&gt; &lt;/listener&gt; &lt;/object&gt; </code></pre> http://stackoverflow.com/questions/770517/representing-application-navigation 0 Representing application navigation Jeffrey Knight 2009-04-20T23:48:10Z 2009-04-21T16:34:35Z <p>I have a complex application with many pages. </p> <p>Each page can have many possible routes to other pages: 'A' can go to 'B' or 'C', 'B' can go to 'A' but not 'C'. etc.</p> <p>Rather than embed this "where to go to next" logic in each page (horror!) I of course want to encapsulate it in a main point of control. 'A' doesn't need to know about 'B' or 'C'.</p> <p>Even better, I'd like to reduce the problem to a matter of configuration.</p> <p>This isn't a language/framework specific question -- it's a matter of how best (simple, pragmatic) to represent and interpret Workflow logic.</p> <p><b>Has anyone had experience representing a complex flow between points in an application as a configurable setting?</b></p> http://stackoverflow.com/questions/756541/enforcing-dependencies-in-ioc-via-a-constructor 3 Enforcing dependencies in IoC via a constructor? Jeffrey Knight 2009-04-16T15:00:30Z 2009-04-16T23:27:48Z <p>I'm trying to come to terms with using IoC/Dependency Injection while at the same time programming to contracts rather than specific classes. The dilemma I'm having is the tension between:</p> <ol> <li><p><strong>Do program to interfaces for IoC</strong>: I started out with IoC relying heavily on interfaces. Judging by Spring's sample projects, interfaces are the way to go when programing to a contract with IoC. </p></li> <li><p>( <strong>... although abstract classes generally preferred</strong>: <a href="http://en.csharp-online.net/.NET_Type_Design_Guidelines%E2%80%94Choosing_Between_Class_and_Interface" rel="nofollow">the main drawback of interfaces is that they are much less flexible than classes when it comes to allowing for evolution of APIs</a> )</p></li> <li><p><strong>Do make class dependencies explicit via constructor</strong> My gut feeling is that it's good programming practice to pass dependencies in to a class's constructor. Indeed, this <em>is</em> dependency injection.</p></li> <li><p><strong>... except you can't enforce constructor signature in interfaces/abstract clases</strong>: Neither interfaces or nor abstract classes allow for defining a constructor signature <a href="http://stackoverflow.com/questions/619856/interface-defining-a-constructor-signature">( easily / elegantly )</a>. See also <a href="http://msdn.microsoft.com/en-us/library/ms229047.aspx" rel="nofollow">Framework Design Guidelines section 4.4:</a> <strong>DO NOT</strong> define public or protected internal constructors in abstract types. ... Constructors should be public only if users will need to create instances of the type.</p></li> </ol> <p>This question is related to a previous stackoverflow question: <a href="http://stackoverflow.com/questions/619856/interface-defining-a-constructor-signature">Interface defining a constructor signature?</a> </p> <p>But my question is: </p> <p>Since you can't define a constructor in a C# interface/abstract class, as the question above asks, on a practical level:</p> <p><b>How do you reconcile this with the sensible practice of <a href="http://msdn.microsoft.com/en-us/library/ms229060.aspx" rel="nofollow">passing dependencies in via a constructor</a></b>?</p> <p>Edit: Thank you for the answers. I'm hoping for some insight on what I <em>should</em> do in this case. Just not use contructor args? Use some sort of Init() method that does take the dependencies? Edit2: Thanks for the great answers, very helpful.</p> http://stackoverflow.com/questions/176850/nunit-assembly-not-found/688174#688174 2 Answer by Jeffrey Knight for NUnit assembly not found Jeffrey Knight 2009-03-27T01:20:58Z 2009-04-16T23:11:22Z <p>I had the same problem and I had installed using NUnit-2.4.8-net-2.0.msi. Expanding on the "add to the gac" comment above, here's what I did:</p> <ul> <li><p>Open your "visual sudio command prompt (generally: make sure gacutil is in your path) and: cd "C:\Program Files\NUnit 2.4.8\bin"</p></li> <li><p>Unregister your nunit entries from the gac. You can do this by finding the nunit entries registered in the gac:</p></li> </ul> <p>gacutil /l | find /i "nunit" > temp.bat &amp;&amp; notepad temp.bat</p> <ul> <li>Prepend the nunit.core and nunit.framework lines with "gacutil /uf", i.e.:</li> </ul> <p>gacutil /uf nunit.core,Version=2.4.2.0,Culture=neutral,PublicKeyToken=96d09a1eb7f44a77</p> <p>gacutil /uf nunit.framework,Version=2.4.2.0,Culture=neutral,PublicKeyToken=96d09a1eb7f44a77</p> <ul> <li><p>Run your bat file to remove them: temp.bat</p></li> <li><p>Register the nunit dlls you need: gacutil /i nunit.core.dll</p></li> </ul> <p>gacutil /i nunit.framework.dll</p> http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500307#1500307 Comment by Jeffrey Knight on Find a jar file given the class name? Jeffrey Knight 2009-10-01T05:11:32Z 2009-10-01T05:11:32Z I'm not sure if you or Dave Costa answered first, but this does the trick and I can use this script going forward. Thanks! http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500166#1500166 Comment by Jeffrey Knight on Find a jar file given the class name? Jeffrey Knight 2009-09-30T19:33:06Z 2009-09-30T19:33:06Z I'm hoping for an offline option. I often find myself dealing with somewhat obscure jar's from 3rd party vendors. http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500166#1500166 Comment by Jeffrey Knight on Find a jar file given the class name? Jeffrey Knight 2009-09-30T19:31:22Z 2009-09-30T19:31:22Z - jarhoo costs money - docjar doesn't find &quot;WSSubject&quot; from my example (<a href="http://www.docjar.com/docs2web/s.jsp?q=WSSubject&amp;t=q&amp;start=0" rel="nofollow">docjar.com/docs2web/&hellip;</a>). There must be a 'search local jars' approach typically used by java devs .. ? http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500169#1500169 Comment by Jeffrey Knight on Find a jar file given the class name? Jeffrey Knight 2009-09-30T19:30:16Z 2009-09-30T19:30:16Z Fair enough, but what's the standard approach for a java developer on a windows machine that doesn't involve installing cygwin? http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name Comment by Jeffrey Knight on Find a jar file given the class name? Jeffrey Knight 2009-09-30T19:24:21Z 2009-09-30T19:24:21Z Yes, that is exactly what I am trying to do. http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type Comment by Jeffrey Knight on Referring to the property itself in C#. Reflection? Generic? Type? Jeffrey Knight 2009-05-13T15:43:23Z 2009-05-13T15:43:23Z see also <a href="http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0" rel="nofollow" title="how do i get the name of a property from a property in c 2 0">stackoverflow.com/questions/388775/&hellip;</a> http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type/855352#855352 Comment by Jeffrey Knight on Referring to the property itself in C#. Reflection? Generic? Type? Jeffrey Knight 2009-05-12T23:32:17Z 2009-05-12T23:32:17Z thanks -- great insight http://stackoverflow.com/questions/844653/wfp-mvvm-good-reasons-not-to-place-vms-in-separate-assembly Comment by Jeffrey Knight on WFP MVVM: Good reasons *not* to place VM's in separate assembly? Jeffrey Knight 2009-05-11T14:29:14Z 2009-05-11T14:29:14Z &quot;Why would the split not have worked&quot; - that's exactly my question. Are there any technical gotchas here ? http://stackoverflow.com/questions/823294/two-c-naming-conventions-what-do-you-think Comment by Jeffrey Knight on Two C# naming conventions: What do you think? Jeffrey Knight 2009-05-05T14:50:56Z 2009-05-05T14:50:56Z I've read and re-read the standard document - <a href="http://msdn.microsoft.com/en-us/library/xzf533w0(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> It's a great reference and I use it. I don't, however, see any advice on convention for instance names, which leave much to the imagination (think of 3rd parties delivering code). So this is all within the standard coding guidelines, not a counter suggestion. Clearly, there are cases with more than one instance of a given type. This is more by way of default/rule of thumb. Thanks for the feedback. http://stackoverflow.com/questions/823294/two-c-naming-conventions-what-do-you-think/823321#823321 Comment by Jeffrey Knight on Two C# naming conventions: What do you think? Jeffrey Knight 2009-05-05T04:33:49Z 2009-05-05T04:33:49Z IDesign has a good one too: <a href="http://www.idesign.net/idesign/DesktopDefault.aspx" rel="nofollow">idesign.net/idesign/DesktopDefault.aspx/&hellip;</a> Also interesting as a guideline to C# is Mono's Coding Guidelines: <a href="http://mono-project.com/Coding_Guidelines" rel="nofollow">mono-project.com/Coding_Guidelines</a> Maybe they should both pull theirs since MS offers one? ;) http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809172#809172 Comment by Jeffrey Knight on IoC, Dll References, and Assembly Scanning Jeffrey Knight 2009-05-03T05:11:02Z 2009-05-03T05:11:02Z got this sorted out-- see answer below http://stackoverflow.com/questions/768304/wpf-mvvm-convention-over-configuration-for-resourcedictionary/789315#789315 Comment by Jeffrey Knight on WPF MVVM: Convention over Configuration for ResourceDictionary ? Jeffrey Knight 2009-05-01T18:58:01Z 2009-05-01T18:58:01Z Thanks Joe -- I updated this question based on your feedback. http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809172#809172 Comment by Jeffrey Knight on IoC, Dll References, and Assembly Scanning Jeffrey Knight 2009-05-01T14:11:15Z 2009-05-01T14:11:15Z [...] .Is.OfConcreteType&lt;Bob&gt;() //&lt;-- you need a dll reference to Bob.dll for that http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/790218#790218 Comment by Jeffrey Knight on What are the dark corners of Vim your mom never told you about? Jeffrey Knight 2009-05-01T03:43:32Z 2009-05-01T03:43:32Z One other command -- I don't want to open a separate reply: If you have a split window (:sp [filename] or :vert split [filename) you can swap window panes with ^w r http://stackoverflow.com/questions/809051/ioc-dll-references-and-assembly-scanning/809107#809107 Comment by Jeffrey Knight on IoC, Dll References, and Assembly Scanning Jeffrey Knight 2009-05-01T02:17:58Z 2009-05-01T02:17:58Z Thanks for the response Chris :) If I have to go back to Xml wiring, I'll stick with Spring. I think what I have above is structurally/conceptually sound. My problem is that it seems like Ioc-configured-in-code consistently requires dll references I specifically want to avoid.