Hi,
Please look into this question.
http://stackoverflow.com/questions/3795737/issue-with-mvvm-view-first-approach
But I'm unable to find "x:Shared" attribute.
Please help.
Hi,
Please look into this question.
http://stackoverflow.com/questions/3795737/issue-with-mvvm-view-first-approach
But I'm unable to find "x:Shared" attribute.
Please help.
here is the msdn link. it works in 3.5 also see below.
From the Book WPF Unleased: Assuming the Conventional x Namespace Prefix. x:Shared --> Attribute on any element in a ResourceDictionary, but only works if XAML is compiled!
//ResourceDictionary
<ResourceDictionary xmlns:x="http://schema.microsoft.con/winfx/2006/xaml>
<Image x:Shared="False" x:Key="zoom" Height="21" Source="zoom.png" />
...