Har presic börjat med WPF (.Net 3) och skrivet lite XAML men när jag skall köra det får jag följande fel. Fick det tillslut att funka fick instalera om .NET 3 och WPF och skapa ett nytt project så gick det fint fintWPF Ger mig felmedelande
<code>
An unhandled exception of type 'System.Windows.Markup.XamlParseException' occurred in Unknown Module.
Additional information: Cannot create instance of 'Page1' defined in assembly 'XAMLBrowserApplication1,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. Ett undantagsfel har inträffat i målet för en aktivering. Error in markup file 'Page1.xaml' Line 1 Position 7.
</code>
XAML filen ser ut så här:
<code>
Page x:Class="Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Hello">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock FontSize="10" Grid.Row="0"> Hello</TextBlock>
<ListBox Grid.Row="1">
<Border BorderThickness="10" BorderBrush="Black" HorizontalAlignment="Center" VerticalAlignment="Center" CornerRadius="10">
<Border.LayoutTransform>
<RotateTransform Angle="10" />
</Border.LayoutTransform>
<Image Source="c:\leeds\P1010011.JPG" Height="256" Width="392" Stretch="UniformToFill" />
</Border>
</ListBox>
</Grid>
</Page>
</code>Sv: WPF Ger mig felmedelande