User rudigrobler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:48:46Z http://stackoverflow.com/feeds/user/5147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1879830/c-try-catch-nightmare 1 C# try/catch nightmare rudigrobler 2009-12-10T09:34:57Z 2009-12-10T11:22:36Z <p>I have a application with similar code (not written by me)</p> <pre><code>try { EnumerateSomeCoolHardwareDevice(); } catch (Exception ex) { } </code></pre> <p><strong>UPDATE</strong> - This is .NET C# &amp; EnumerateSomeCoolHardwareDevice() is using SerialPort?</p> <p>I know how bad this code is but it works like this for a reason! </p> <p>My question thou: I can see that it crashes somewhere in the EnumerateSomeCoolHardwareDevice(); but it doesn't get caught by the Catch (...) - It just crashes with the send report dialog! This also currently only happen in the release build... Is their ANY reason why my exception will NOT be caught by the catch (...)?</p> http://stackoverflow.com/questions/950786/book-recommendations-about-the-business-of-software 5 Book recommendations about the business of software rudigrobler 2009-06-04T14:02:40Z 2009-12-02T00:13:02Z <p>I am evaluating my options of starting my own software company and I am wondering if anybody can recommend any good books about the subject. I am busy reading "<a href="http://rads.stackoverflow.com/amzn/click/1590596234" rel="nofollow">Eric Sink on the Business of Software</a>". Any other suggestions very welcome!</p> http://stackoverflow.com/questions/55943/how-to-profile-a-silverlight-application 2 How to profile a silverlight application? rudigrobler 2008-09-11T07:29:00Z 2009-11-24T12:26:42Z <p>Is their any profilers that support Silverlight? I have tried ANTS (Version 3.1) without any success? Does version 4 support it? Any other products I can try?</p> http://stackoverflow.com/questions/152015/net-micro-framework-on-a-arm-cortex-m3-core 0 .NET Micro Framework on a ARM Cortex-M3 Core rudigrobler 2008-09-30T06:57:44Z 2009-11-17T23:48:47Z <p>I have a <a href="http://www.luminarymicro.com/products/rdk-idm.html" rel="nofollow">RDK-IDM</a> from <a href="http://www.luminarymicro.com/" rel="nofollow">Luminary Micro</a>. This board has a 32-bit ARM® <a href="http://www.arm.com/products/CPUs/ARM_Cortex-M3.html" rel="nofollow">Cortex™-M3 core</a>. Has anybody tried to run a .NET Micro Framework application on such a device?</p> http://stackoverflow.com/questions/1572287/windows-7-desktop-gadget-silverlight-3-gdr2-issues 1 Windows 7 Desktop Gadget + Silverlight 3 (GDR2) Issues rudigrobler 2009-10-15T13:12:56Z 2009-10-15T15:33:21Z <p>I am having load of issues getting my SL-based gadgets to work! I do the following:</p> <p>Create a standard silverlight application (Silverlight 3 GDR 2 - 3.0.40818.0) and run it - it works! I then take the ClientBin folder, the test page (html) and the silverlight.js files and place them in a folder! I then double click on the html test page to run it. IE8 warns me that its a active x control. If I accept it opens fine! I then add a very basic gadget.xml file (to make it a valid gadget) and place it in the correct folder. Right click on the desktop and select add gadget - select my gadget and drag it to the desktop! The gadget show but I always get the image to install silverlight? Why?</p> <p>I also updated the params to x-gadget</p> <pre><code>&lt;param name="source" value="x-gadget://ClientBin/MyBusiness.xap"/&gt; </code></pre> <p>Is their any known issues with running it on x64? <a href="http://blogs.msdn.com/sidebar/archive/2007/01/26/embedded-activex-objects-and-x64.aspx" rel="nofollow">Here</a> is a article about flash + x64... does this somehow relate to silverlight?</p> http://stackoverflow.com/questions/1572287/windows-7-desktop-gadget-silverlight-3-gdr2-issues/1573148#1573148 0 Answer by rudigrobler for Windows 7 Desktop Gadget + Silverlight 3 (GDR2) Issues rudigrobler 2009-10-15T15:33:21Z 2009-10-15T15:33:21Z <p>Ok, found the answer!</p> <p>Because I am running Windows 7 64-bit, by default the 64-bit version of sidebar.exe is run, which in turn uses IE 64-bit! Silverlight and flash is not supported on these OS'es!</p> <p>to proof that it's the case, try the following! Close all your gadgets and run C:\Program Files (x86)\Windows Sidebar\sidebar.exe (The 32 bit version) and add your gadget! This should now work! You can add sidebar to you startup programs which should solve most of you issues but this still sucks! Would be great if the gadget.xml file asked you if you want to force 32 bit mode?</p> <p><a href="http://brandonlive.com/2008/03/11/dont-write-gadgets-with-flash-or-silverlight/" rel="nofollow">http://brandonlive.com/2008/03/11/dont-write-gadgets-with-flash-or-silverlight/</a></p> http://stackoverflow.com/questions/1548229/setting-a-bitmap-in-windows-7-thumbnail-preview-c/1566033#1566033 0 Answer by rudigrobler for Setting a Bitmap in Windows 7 thumbnail preview (C#) rudigrobler 2009-10-14T12:51:09Z 2009-10-14T12:51:09Z <p>Try creating a custom TabbedThumbnail first and the setting the image on the thumbnail...</p> <p><a href="http://dotnet.org.za/rudi/archive/2009/10/14/anatomy-of-the-windows-7-taskbar-tabbedthumbnail-part-1.aspx" rel="nofollow">Here</a> is a example of how to create your own TabbedThumbnail</p> <pre><code>preview = new TabbedThumbnail(this, this, VisualTreeHelper.GetOffset(this)); </code></pre> <p>Taken from this article!</p> http://stackoverflow.com/questions/1437282/thumbnail-toolbar-button/1566024#1566024 0 Answer by rudigrobler for Thumbnail Toolbar Button rudigrobler 2009-10-14T12:48:01Z 2009-10-14T12:48:01Z <p><a href="http://dotnet.org.za/rudi/archive/2009/10/13/anatomy-of-the-windows-7-taskbar-thumbnailtoolbarbutton.aspx" rel="nofollow">Here</a> is a article on how to do it using the managed wrappers... by having a look at the managed wrapper, you might more easily see how to do it using C++...</p> http://stackoverflow.com/questions/1458449/how-to-program-multi-tab-task-bar-preview-like-ie-on-windows-7-in-wpf/1566002#1566002 0 Answer by rudigrobler for How to program Multi Tab Task bar Preview like IE on Windows 7 in WPF? rudigrobler 2009-10-14T12:42:55Z 2009-10-14T12:42:55Z <p>Here is something to get you started! I know this doesn't cover your scenario yet but it is planned in part 2, so keep an I on these:</p> <p><a href="http://dotnet.org.za/rudi/archive/2009/10/14/anatomy-of-the-windows-7-taskbar-tabbedthumbnail-part-1.aspx" rel="nofollow">http://dotnet.org.za/rudi/archive/2009/10/14/anatomy-of-the-windows-7-taskbar-tabbedthumbnail-part-1.aspx</a></p> http://stackoverflow.com/questions/240171/launching-a-application-exe-from-c 5 Launching a Application (.EXE) from C#? rudigrobler 2008-10-27T14:55:38Z 2009-10-13T06:30:33Z <p>How can I launch a application using C#?</p> <p>Requirements: MUST work on XP and VISTA?</p> <p>I have seen a sample from DinnerNow.net sampler that only works in vista?</p> http://stackoverflow.com/questions/1553142/bitmapframe-in-wpf-combobox/1553425#1553425 0 Answer by rudigrobler for BitmapFrame in WPF ComboBox rudigrobler 2009-10-12T08:48:05Z 2009-10-12T08:48:05Z <p>You can use SelectedItem or SelectedIndex in the code behind to set the currently selected item!</p> http://stackoverflow.com/questions/1542240/svn-active-directory 1 SVN + Active Directory rudigrobler 2009-10-09T07:06:40Z 2009-10-09T07:46:42Z <p>How do I setup SVN (On a linux box - Centos 5.2) to authenticate using Active Directory? </p> <p>Also:</p> <ul> <li>Any tips or tricks?</li> <li>What should I watch out for? </li> <li>How fine grain can I set the access? This group have access to these projects, etc?</li> </ul> <p>And how does this work if I use something like tortoissvn to access my repository?</p> <p><strong>What I have learned so far:</strong></p> <p>you need the following modules installed for apache</p> <ul> <li>mod_ldap</li> <li>mod_authnz_ldap</li> <li>mod_dav</li> <li>mod_dav_svn</li> <li>mod_authz_svn?</li> </ul> http://stackoverflow.com/questions/1304527/asp-net-mvc-deployment-issues 0 ASP.NET MVC Deployment Issues... rudigrobler 2009-08-20T07:28:01Z 2009-09-18T05:07:22Z <p>HI am new to ASP.NET MVC and I am running into some issues trying to deploy a very simple site! I took the MVC Storefront (Kona), made some basic changes and now I would like to deploy it to a webserver! For testing, I just turned on IIS7 on my windows 7 desktop! I change the web projects settings to use local IIS and run it!</p> <p>The first issue I get is the "Request is not available in this context"... To fix this I had to remove the HttpContext.Current.GetSiteUrl() in the global.asx.cs file! If I now run the app it works but I have no css? If I switch back to VS development server everything works great?</p> <p>I can also swithc from integrated mode on IIS to classic which makes the css work but then I have no routing?</p> http://stackoverflow.com/questions/58739/interview-questions-wpf-developer 35 Interview questions: WPF Developer rudigrobler 2008-09-12T11:36:58Z 2009-09-17T06:25:25Z <p>What should every WPF developer know?</p> <p><strong>Entry Level</strong></p> <ul> <li>Strong .NET 2.0 Background &amp; willing to learn!</li> <li>Explain dependency properties?</li> <li>What's a style?</li> <li>What's a template?</li> <li>Binding</li> <li>Differences between base classes: Visual, UIElement, FrameworkElement, Control</li> <li>Visual vs Logical tree?</li> <li>Property Change Notification (INotifyPropertyChange and ObservableCollection) </li> <li>ResourceDictionary - Added by a7an</li> <li>UserControls - Added by a7an</li> <li>difference between bubble and tunnel routing strategies - added by Carlo</li> </ul> <p><strong>Mid-level</strong></p> <ul> <li>Routed Events &amp; Commands</li> <li>Converters - Added by Artur Carvalho</li> <li>Explain WPF's 2-pass layout engine?</li> <li>How to implement a panel?</li> <li>Interoperability (WPF/WinForms)</li> <li>Blend/Cider - Added by a7an</li> <li>animations and storyboarding</li> <li>ClickOnce Deployment</li> <li>Skinning/Themeing</li> <li>Custom Controls</li> <li>How can worker threads update the UI?</li> </ul> <p><strong>Senior</strong></p> <ul> <li>Example of attached behavior?</li> <li>What is PRISM,CAL &amp; CAG?</li> <li>How can worker threads update the UI?</li> <li>WPF 3D - Added by a7an</li> <li>Differences between Silverlight 2 and WPF</li> <li>MVVM/MVP - Added by a7an</li> <li>WPF Performance tuning</li> <li>Pixel Shaders</li> <li>Purpose of Freezables</li> </ul> <p>Any other <s>"trick"</s> questions to ask?</p> <p>Do you expect your WPF developer to know blend?</p> http://stackoverflow.com/questions/1410215/wpf-itemscontrol-command-on-viewmodel-not-firing-from-within-itemscontrol/1410440#1410440 2 Answer by rudigrobler for WPF ItemsControl - Command on ViewModel not firing from within ItemsControl rudigrobler 2009-09-11T11:55:30Z 2009-09-14T13:33:47Z <p>Have a look at the <a href="http://wpf.codeplex.com/Wiki/View.aspx?title=WPF%20Model-View-ViewModel%20Toolkit" rel="nofollow">MVVM Toolkit</a>... It has this idea of a command refrence which you can use!</p> <p>Create a CommandRefrece as a resource and then just use the StaticResource markup extension...</p> <pre><code>&lt;c:CommandRefrence x:Key="EntitySelectedCommandRef" Command="{Binding EntitySelectedCommand}" /&gt; </code></pre> <p>and then later you can use</p> <pre><code>...Command="{StaticResource EntitySelectedCommandRef}" ... </code></pre> http://stackoverflow.com/questions/1006284/changing-a-windows-ce-machines-ip-address-programatically 0 Changing a Windows CE machines IP address programatically? rudigrobler 2009-06-17T10:40:31Z 2009-09-14T12:58:01Z <p>How do I change the IP address of a Windows CE machine? </p> <p>I want to do it from .NET Compact Framework!</p> http://stackoverflow.com/questions/1409553/what-framework-for-mvvm-should-i-use/1410459#1410459 5 Answer by rudigrobler for What framework for MVVM should I use? rudigrobler 2009-09-11T12:00:28Z 2009-09-11T12:00:28Z <p>Also look at:</p> <p><a href="http://caliburn.codeplex.com/" rel="nofollow">Caliburn</a> &amp; <a href="http://wpfonyx.codeplex.com/" rel="nofollow">Onyx</a>!</p> http://stackoverflow.com/questions/207650/logging-library-for-net-compact-framework 1 Logging Library for .NET Compact Framework? rudigrobler 2008-10-16T07:08:40Z 2009-09-03T00:44:24Z <p>Any good logging libraries that support .NET compact framework?</p> http://stackoverflow.com/questions/161541/svn-vs-git 6 Svn vs Git rudigrobler 2008-10-02T09:47:05Z 2009-08-11T16:26:36Z <p>I am starting a new distributed project where some of the developers will not be in the same country... What should I use: Git or SVN?</p> <p>Why?</p> <p>PS. It is a smart client application running on windows and will be developed using Visual Studio</p> <p>[<strong>UPDATE</strong>] And does it work on MacOS (Not required but interesting to know)?</p> http://stackoverflow.com/questions/1130949/wpf-c-disable-drag-drop-for-textboxes/1130989#1130989 0 Answer by rudigrobler for WPF/C#: Disable Drag & Drop for TextBoxes? rudigrobler 2009-07-15T12:03:38Z 2009-07-15T12:11:53Z <p>You can easily wrap what this article describes into a attached property/behaviours...</p> <p>ie. TextBoxManager.AllowDrag="False" (For more information check out these 2 CodeProject articles - <a href="http://www.codeproject.com/KB/WPF/WPFDragDrop.aspx" rel="nofollow">Drag and Drop Sample</a> and Glass Effect Sample<a href="http://www.codeproject.com/KB/WPF/WPFGlass.aspx" rel="nofollow">link text</a>)</p> <p>Or try out the new Blend SDK's Behaviors</p> <p><strong>UPDATE</strong></p> <ul> <li>Also read <a href="http://wekempf.spaces.live.com/feed.rss" rel="nofollow">this</a> article by Bill Kempf about attached behaviors</li> <li>And as kek444 pointed out in the comments, you then just create a default style for textbxo whit this attached property set!</li> </ul> http://stackoverflow.com/questions/165949/mono-created-features-available-on-net 16 Mono created features available on .NET? rudigrobler 2008-10-03T06:56:15Z 2009-07-04T20:47:42Z <p>I noticed the following today: <a href="http://tirania.org/blog/archive/2008/Oct-01-1.html" rel="nofollow">Mono at the PDC 2008</a>?</p> <blockquote> <p>My talk will cover new technologies that we have created as part of Mono. Some of them are reusable on .NET (we try to make our code cross platform) and some other are features that specific to Mono's implementation of the CLI. </p> </blockquote> <p>Posted by <a href="http://tirania.org/blog/" rel="nofollow">Miguel de Icaza</a> on 01 Oct 2008 </p> <p>Does anybody know what type of new technologies he is refering too?</p> <p>Sounds like a great talk</p> <p>[<strong>UPDATE</strong>] <a href="http://channel9.msdn.com/pdc2008/PC54/" rel="nofollow">Here</a> is the video of Miguel's talk</p> <ul> <li><a href="http://tirania.org/blog/archive/2008/Nov-03.html" rel="nofollow">Mono's SIMD Support: Making Mono safe for Gaming</a></li> <li><a href="http://tirania.org/blog/archive/2008/Nov-05.html" rel="nofollow">Static Compilation in Mono</a></li> <li><a href="http://tirania.org/blog/archive/2008/Nov-14.html" rel="nofollow">Unity on Linux, First Screenshots</a></li> </ul> http://stackoverflow.com/questions/1015226/wpf-best-practice-for-the-run-of-the-mill-labelinput-control/1016632#1016632 0 Answer by rudigrobler for WPF - Best Practice for the run-of-the-mill [Label:Input] Control rudigrobler 2009-06-19T06:37:43Z 2009-06-19T06:37:43Z <p>The <a href="http://www.codeplex.com/Silverlight" rel="nofollow">silverlight toolkit</a> has a <a href="http://silverlight.codeplex.com/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%205" rel="nofollow">DataForm</a> control that works pretty cool!</p> http://stackoverflow.com/questions/1015851/setting-command-target-in-xaml/1016624#1016624 0 Answer by rudigrobler for Setting Command Target in XAML rudigrobler 2009-06-19T06:34:23Z 2009-06-19T06:34:23Z <p>Have you concidered to rather use the RelayCommand or DelegateCommand! Thy might be more suited to what you need?</p> <p>For a example of using RelayCommand, read <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">this</a> article by Josh</p> <p>Brian Noyes also have a excellent article available <a href="http://msdn.microsoft.com/magazine/cc785480.aspx?pr=blog" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1011750/what-is-the-easiest-way-to-handle-selecteditem-event-with-mvvm/1011773#1011773 1 Answer by rudigrobler for What is the easiest way to handle SelectedItem event with MVVM? rudigrobler 2009-06-18T09:38:56Z 2009-06-18T11:54:45Z <p>Have a look at <a href="http://www.codeproject.com/KB/WPF/WPFPhotoBooth.aspx" rel="nofollow">this</a> application on www.codeproject.com. Here I use the CollectionView to detect the currently selected item</p> <p><strong>Update</strong></p> <p>Using CollectionView to detect current selected item</p> <pre><code>ListCollectionView view = (ListCollectionView)CollectionViewSource.GetDefaultView(Customers); view.CurrentChanged += delegate { SelectedCustomer= (Customer)view.CurrentItem; }; </code></pre> <p>Just remember to also set IsSynchronizedWithCurrentItem="True"</p> http://stackoverflow.com/questions/943973/listbox-as-numeric-updown-control-in-wpf/944124#944124 0 Answer by rudigrobler for ListBox as Numeric UpDown control in WPF. rudigrobler 2009-06-03T10:52:09Z 2009-06-03T10:52:09Z <p>You can also attach a ScrollBar.Scroll event. This fires when you scroll. Maybe you can then change the SelectedIndex manually or set the focus?</p> http://stackoverflow.com/questions/943972/load-wpf-themes-based-on-monitor-resolution/944038#944038 1 Answer by rudigrobler for Load WPF themes based on Monitor Resolution rudigrobler 2009-06-03T10:28:01Z 2009-06-03T10:28:01Z <p>Have a look at <a href="http://dotnet.org.za/rudi/archive/2009/03/14/flexible-layout-on-steroids.aspx" rel="nofollow">this</a> article. It uses the SizeTemplateControl from PhotoSuru to show different layouts based on the screen res or window size!</p> http://stackoverflow.com/questions/897073/how-do-i-binary-serialize-a-object-using-compact-framework 1 How do I binary serialize a object using Compact Framework? rudigrobler 2009-05-22T09:32:28Z 2009-05-22T09:32:28Z <p>I have a object</p> <pre><code>struct _NETINFO { } </code></pre> <p>and I want to convert it to a Byte[] using Compact Framework, I tried the following without sucess:</p> <pre><code>_NETINFO info = new _NETINFO(); byte[] buffer = (byte[])info; </code></pre> <p>And it doesn't work! The only other sugestion I found is to use the BinaryFormatter which isn't available in CF!</p> <p>Any other sugestions?</p> http://stackoverflow.com/questions/49299/will-prism-help 0 Will PRISM help? rudigrobler 2008-09-08T08:14:33Z 2009-05-19T06:18:57Z <p>I am considering building a application using PRISM (Composite WPF Guidance/Library). The application modules will be vertically partitioned (i.e. Customers, Suppliers, Sales Orders, etc). This is still all relatively easy... I also have a Shell with a main region were all the work will happen but now I need the following behavior: I need a menu on my main Shell and when each one of the options gets clicked (like customers, suppliers, etc) I need to find the module and load it into the region (Only 1 view at a time)? </p> <p>Does anybody know of any sample applications with this type of behavior? All the samples are more focused on having all the modules loaded on the main shell? And should my menu bar also be a module?</p> <p>[<strong>UPDATE</strong>] How do I inject a module into a region based on it being selected from a menu? All the examples show that the module injects the view into the region on initialize? I need to only inject the view if the module is selected on a menu?</p> http://stackoverflow.com/questions/785927/how-to-build-dynamic-data-entry-forms-in-a-wpf-application/789306#789306 0 Answer by rudigrobler for How to build dynamic data entry forms in a WPF application? rudigrobler 2009-04-25T16:50:18Z 2009-04-25T16:50:18Z <p>Have a look at the DataForm from the Silverlight toolkit as a baseline! Most of the Silverlight stuff can actually be compiled in WPF!</p> http://stackoverflow.com/questions/786426/wpf-c-system-deployment-problem/789279#789279 1 Answer by rudigrobler for WPF C# System.Deployment Problem rudigrobler 2009-04-25T16:36:27Z 2009-04-25T16:36:27Z <p>Not sure if this is your issue but are your XBAP running in "full trust mode" or not?</p> <p>By default, XBAPs are sandboxed...</p> <p><a href="http://scorbs.com/2007/01/10/xbap-trust-levels/" rel="nofollow">Here</a> is a article on how to make your XBAP full trust</p> <p>More information</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/aa480229.aspx" rel="nofollow">Windows Presentation Foundation Security Sandbox</a></li> </ul> http://stackoverflow.com/questions/1879830/c-try-catch-nightmare Comment by rudigrobler on C# try/catch nightmare rudigrobler 2009-12-10T10:27:10Z 2009-12-10T10:27:10Z Not sure... might be either? http://stackoverflow.com/questions/1879830/c-try-catch-nightmare Comment by rudigrobler on C# try/catch nightmare rudigrobler 2009-12-10T09:51:26Z 2009-12-10T09:51:26Z Sorry, updated the question to state C# (.NET) http://stackoverflow.com/questions/1503485/is-there-any-visual-studio-like-code-editor-control/1519553#1519553 Comment by rudigrobler on Is there any Visual Studio like code editor control? rudigrobler 2009-10-08T11:52:48Z 2009-10-08T11:52:48Z Awesome article Daniel!!! http://stackoverflow.com/questions/1015851/setting-command-target-in-xaml/1016624#1016624 Comment by rudigrobler on Setting Command Target in XAML rudigrobler 2009-06-22T08:10:27Z 2009-06-22T08:10:27Z Relay/DelegateCommands are not part of the framework... Get it from Josh's article or download Prism! Relay/DelegateCommand do not rely on the Visual tree at all... You give each command a delegate to execute and that is it... http://stackoverflow.com/questions/1014881/wpf-implement-itemtemplate-for-an-itemspresenter Comment by rudigrobler on WPF - Implement ItemTemplate for an ItemsPresenter? rudigrobler 2009-06-19T06:30:19Z 2009-06-19T06:30:19Z Can you post more information? Maybe come sample xaml? http://stackoverflow.com/questions/1011750/what-is-the-easiest-way-to-handle-selecteditem-event-with-mvvm/1011767#1011767 Comment by rudigrobler on What is the easiest way to handle SelectedItem event with MVVM? rudigrobler 2009-06-18T11:49:16Z 2009-06-18T11:49:16Z Agreed... both will definetly work! The only other problem I can see is that if you want to use a deffirent view... you have to remeber to bind back to the selected item! My approach has a simillar problem because in my view you have to remeber to set the IsSyncronizedWithCurrent to true! I definetely like your sulotion and in some cases it will definetely work I just don't like to be dependent on the view... Using the CV is just a little more de-coupled! http://stackoverflow.com/questions/1011750/what-is-the-easiest-way-to-handle-selecteditem-event-with-mvvm/1011767#1011767 Comment by rudigrobler on What is the easiest way to handle SelectedItem event with MVVM? rudigrobler 2009-06-18T10:43:44Z 2009-06-18T10:43:44Z Just remember that this puts a dependency between your V/VM... If you test this code without the view, the CurrentlySelectedCustomer will never update! If you use the CollectionView... It will work even if your view do not bind back to the VM! http://stackoverflow.com/questions/672923/why-isnt-my-wpf-datagrid-showing-data Comment by rudigrobler on Why isn't my WPF Datagrid showing data? rudigrobler 2009-03-25T06:39:19Z 2009-03-25T06:39:19Z Just also move the DataContext = Customers below where you actually call Customers.Add! You are using List&lt;Customer&gt; which has now change notification! If you really need change notification, use the ObservableCollection&lt;Customer&gt; http://stackoverflow.com/questions/601826/multiple-usercontrol-instances-in-tabcontrol/601884#601884 Comment by rudigrobler on multiple userControl instances in tabControl rudigrobler 2009-03-04T06:37:03Z 2009-03-04T06:37:03Z Also look at this article (<a href="http://www.dev102.com/2009/03/02/tidy-up-your-xaml-and-code-behind-use-usercontrols-inside-templates/" rel="nofollow">dev102.com/2009/03/&hellip;</a>) I found this morning http://stackoverflow.com/questions/601826/multiple-usercontrol-instances-in-tabcontrol/601884#601884 Comment by rudigrobler on multiple userControl instances in tabControl rudigrobler 2009-03-04T06:34:16Z 2009-03-04T06:34:16Z Read this article by Josh Smith (<a href="http://joshsmithonwpf.wordpress.com/2009/01/27/my-mvvm-article-in-msdn-magazine/" rel="nofollow">joshsmithonwpf.wordpress.com/2009/01/&hellip;</a>) In this article he host multiple views (usercontrols) in a tabcontrol... http://stackoverflow.com/questions/222070/how-to-speed-up-wpf-programs/222084#222084 Comment by rudigrobler on How to speed up WPF programs? rudigrobler 2008-10-21T14:56:41Z 2008-10-21T14:56:41Z The ones you might &quot;notice&quot; first are the scrolling and binding improvements... Read more here: <a href="http://dotnet.org.za/rudi/archive/2008/05/22/scrolling-performance-in-wpf.aspx" rel="nofollow">dotnet.org.za/rudi/archive/&hellip;</a> http://stackoverflow.com/questions/211765/svn-libraries-for-net Comment by rudigrobler on SVN Libraries for .NET? rudigrobler 2008-10-17T14:06:46Z 2008-10-17T14:06:46Z the list was updated... sorry http://stackoverflow.com/questions/211765/svn-libraries-for-net/211890#211890 Comment by rudigrobler on SVN Libraries for .NET? rudigrobler 2008-10-17T13:17:19Z 2008-10-17T13:17:19Z It's a Blend addin to add source control to blend! http://stackoverflow.com/questions/207650/logging-library-for-net-compact-framework/207656#207656 Comment by rudigrobler on Logging Library for .NET Compact Framework? rudigrobler 2008-10-16T07:14:28Z 2008-10-16T07:14:28Z Have you tried it on Compact Framework... I see it is supported! Tnx!!! http://stackoverflow.com/questions/181845/in-a-wpf-listbox-with-more-than-1000-image-items-the-zoom-images-become-slow/186187#186187 Comment by rudigrobler on In a WPF ListBox with more than 1000 Image Items the Zoom Images become slow rudigrobler 2008-10-09T12:56:31Z 2008-10-09T12:56:31Z Josh's sample do not use the VirtualizingWrapPanel... The performance WILL ONLY GET BETTER IF YOU USE THE VirtualizingWrapPanel!!!