I want to be able to edit xaml in vs 2008 and be able to view the results without going crazy waiting for the wpf designer to draw the xaml.
I downloaded xamlpadx (v. 4) and kaxaml. They both look great, but it seems that they can only edit xaml without any custom namespaces. This makes it impossible for me because I'm using mvvm and am importing several namespaces in my xaml.
When I upload a typical xaml doc in kaxaml I get
like this:
<UserControl x:Class="SkipPro.View.ContactView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:m="clr-namespace:MVVMLibrary;assembly=MVVMLibrary"
xmlns:tk="http://schemas.microsoft.com/wpf/2008/toolkit"
Height="Auto" Width="Auto">
<UserControl.Resources>
<m:NotConverter x:Key="NotConverter"/>
<m:VisibilityConverter x:Key="VisibilityConverter"/>
</UserControl.Resources>
'Class' attribute does not exist in xaml namespace...
What are my choices?