User rudigrobler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T04:48:46Zhttp://stackoverflow.com/feeds/user/5147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1879830/c-try-catch-nightmare1C# try/catch nightmarerudigrobler2009-12-10T09:34:57Z2009-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# & 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-software5Book recommendations about the business of softwarerudigrobler2009-06-04T14:02:40Z2009-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-application2How to profile a silverlight application?rudigrobler2008-09-11T07:29:00Z2009-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-core0.NET Micro Framework on a ARM Cortex-M3 Corerudigrobler2008-09-30T06:57:44Z2009-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-issues1Windows 7 Desktop Gadget + Silverlight 3 (GDR2) Issuesrudigrobler2009-10-15T13:12:56Z2009-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><param name="source" value="x-gadget://ClientBin/MyBusiness.xap"/>
</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#15731480Answer by rudigrobler for Windows 7 Desktop Gadget + Silverlight 3 (GDR2) Issuesrudigrobler2009-10-15T15:33:21Z2009-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#15660330Answer by rudigrobler for Setting a Bitmap in Windows 7 thumbnail preview (C#)rudigrobler2009-10-14T12:51:09Z2009-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#15660240Answer by rudigrobler for Thumbnail Toolbar Buttonrudigrobler2009-10-14T12:48:01Z2009-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#15660020Answer by rudigrobler for How to program Multi Tab Task bar Preview like IE on Windows 7 in WPF?rudigrobler2009-10-14T12:42:55Z2009-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-c5Launching a Application (.EXE) from C#?rudigrobler2008-10-27T14:55:38Z2009-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#15534250Answer by rudigrobler for BitmapFrame in WPF ComboBoxrudigrobler2009-10-12T08:48:05Z2009-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-directory1SVN + Active Directoryrudigrobler2009-10-09T07:06:40Z2009-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-issues0ASP.NET MVC Deployment Issues...rudigrobler2009-08-20T07:28:01Z2009-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-developer35Interview questions: WPF Developerrudigrobler2008-09-12T11:36:58Z2009-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 & 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 & 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 & 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#14104402Answer by rudigrobler for WPF ItemsControl - Command on ViewModel not firing from within ItemsControlrudigrobler2009-09-11T11:55:30Z2009-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><c:CommandRefrence x:Key="EntitySelectedCommandRef" Command="{Binding EntitySelectedCommand}" />
</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-programatically0Changing a Windows CE machines IP address programatically?rudigrobler2009-06-17T10:40:31Z2009-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#14104595Answer by rudigrobler for What framework for MVVM should I use?rudigrobler2009-09-11T12:00:28Z2009-09-11T12:00:28Z<p>Also look at:</p>
<p><a href="http://caliburn.codeplex.com/" rel="nofollow">Caliburn</a> & <a href="http://wpfonyx.codeplex.com/" rel="nofollow">Onyx</a>!</p>
http://stackoverflow.com/questions/207650/logging-library-for-net-compact-framework1Logging Library for .NET Compact Framework?rudigrobler2008-10-16T07:08:40Z2009-09-03T00:44:24Z
<p>Any good logging libraries that support .NET compact framework?</p>
http://stackoverflow.com/questions/161541/svn-vs-git6Svn vs Gitrudigrobler2008-10-02T09:47:05Z2009-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#11309890Answer by rudigrobler for WPF/C#: Disable Drag & Drop for TextBoxes?rudigrobler2009-07-15T12:03:38Z2009-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-net16Mono created features available on .NET?rudigrobler2008-10-03T06:56:15Z2009-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#10166320Answer by rudigrobler for WPF - Best Practice for the run-of-the-mill [Label:Input] Controlrudigrobler2009-06-19T06:37:43Z2009-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#10166240Answer by rudigrobler for Setting Command Target in XAMLrudigrobler2009-06-19T06:34:23Z2009-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#10117731Answer by rudigrobler for What is the easiest way to handle SelectedItem event with MVVM?rudigrobler2009-06-18T09:38:56Z2009-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#9441240Answer by rudigrobler for ListBox as Numeric UpDown control in WPF.rudigrobler2009-06-03T10:52:09Z2009-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#9440381Answer by rudigrobler for Load WPF themes based on Monitor Resolutionrudigrobler2009-06-03T10:28:01Z2009-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-framework1How do I binary serialize a object using Compact Framework?rudigrobler2009-05-22T09:32:28Z2009-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-help0Will PRISM help?rudigrobler2008-09-08T08:14:33Z2009-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#7893060Answer by rudigrobler for How to build dynamic data entry forms in a WPF application?rudigrobler2009-04-25T16:50:18Z2009-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#7892791Answer by rudigrobler for WPF C# System.Deployment Problemrudigrobler2009-04-25T16:36:27Z2009-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-nightmareComment by rudigrobler on C# try/catch nightmarerudigrobler2009-12-10T10:27:10Z2009-12-10T10:27:10ZNot sure... might be either?http://stackoverflow.com/questions/1879830/c-try-catch-nightmareComment by rudigrobler on C# try/catch nightmarerudigrobler2009-12-10T09:51:26Z2009-12-10T09:51:26ZSorry, updated the question to state C# (.NET)http://stackoverflow.com/questions/1503485/is-there-any-visual-studio-like-code-editor-control/1519553#1519553Comment by rudigrobler on Is there any Visual Studio like code editor control?rudigrobler2009-10-08T11:52:48Z2009-10-08T11:52:48ZAwesome article Daniel!!!http://stackoverflow.com/questions/1015851/setting-command-target-in-xaml/1016624#1016624Comment by rudigrobler on Setting Command Target in XAMLrudigrobler2009-06-22T08:10:27Z2009-06-22T08:10:27ZRelay/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-itemspresenterComment by rudigrobler on WPF - Implement ItemTemplate for an ItemsPresenter?rudigrobler2009-06-19T06:30:19Z2009-06-19T06:30:19ZCan 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#1011767Comment by rudigrobler on What is the easiest way to handle SelectedItem event with MVVM?rudigrobler2009-06-18T11:49:16Z2009-06-18T11:49:16ZAgreed... 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#1011767Comment by rudigrobler on What is the easiest way to handle SelectedItem event with MVVM?rudigrobler2009-06-18T10:43:44Z2009-06-18T10:43:44ZJust 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-dataComment by rudigrobler on Why isn't my WPF Datagrid showing data?rudigrobler2009-03-25T06:39:19Z2009-03-25T06:39:19ZJust also move the DataContext = Customers below where you actually call Customers.Add! You are using List<Customer> which has now change notification! If you really need change notification, use the ObservableCollection<Customer>http://stackoverflow.com/questions/601826/multiple-usercontrol-instances-in-tabcontrol/601884#601884Comment by rudigrobler on multiple userControl instances in tabControlrudigrobler2009-03-04T06:37:03Z2009-03-04T06:37:03ZAlso 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/…</a>) I found this morninghttp://stackoverflow.com/questions/601826/multiple-usercontrol-instances-in-tabcontrol/601884#601884Comment by rudigrobler on multiple userControl instances in tabControlrudigrobler2009-03-04T06:34:16Z2009-03-04T06:34:16ZRead 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/…</a>) In this article he host multiple views (usercontrols) in a tabcontrol...http://stackoverflow.com/questions/222070/how-to-speed-up-wpf-programs/222084#222084Comment by rudigrobler on How to speed up WPF programs?rudigrobler2008-10-21T14:56:41Z2008-10-21T14:56:41ZThe ones you might "notice" 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/…</a>
http://stackoverflow.com/questions/211765/svn-libraries-for-netComment by rudigrobler on SVN Libraries for .NET?rudigrobler2008-10-17T14:06:46Z2008-10-17T14:06:46Zthe list was updated... sorryhttp://stackoverflow.com/questions/211765/svn-libraries-for-net/211890#211890Comment by rudigrobler on SVN Libraries for .NET?rudigrobler2008-10-17T13:17:19Z2008-10-17T13:17:19ZIt's a Blend addin to add source control to blend!http://stackoverflow.com/questions/207650/logging-library-for-net-compact-framework/207656#207656Comment by rudigrobler on Logging Library for .NET Compact Framework?rudigrobler2008-10-16T07:14:28Z2008-10-16T07:14:28ZHave 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#186187Comment by rudigrobler on In a WPF ListBox with more than 1000 Image Items the Zoom Images become slowrudigrobler2008-10-09T12:56:31Z2008-10-09T12:56:31ZJosh's sample do not use the VirtualizingWrapPanel... The performance WILL ONLY GET BETTER IF YOU USE THE VirtualizingWrapPanel!!!