Sto cercando di ottenere il modello specifico nel mio dizionario delle risorse. Questo è il mio dizionario risorseSilverlight 4.0: Errore DataTemplate
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:view="clr-namespace:Test.Layout.View"
xmlns:toolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"><DataTemplate x:Key="LeftRightLayout">
<toolkit:DockPanel>
<view:SharedContainerView toolkit:DockPanel.Dock="Left"/>
<view:SingleContainerView toolkit:DockPanel.Dock="Right"/>
</toolkit:DockPanel>
</DataTemplate>
Tuttavia quando si arriva a XamlReader.Load
private static ResourceDictionary GetResource(string resourceName)
{
ResourceDictionary resource = null;
XDocument xDoc = XDocument.Load(resourceName);
resource = (ResourceDictionary)XamlReader.Load(xDoc.ToString(SaveOptions.None));
return resource;
}
Il tipo 'SharedContainerView' non è stato trovato perché 'clr-namespace : Test.Layout.View 'è uno spazio dei nomi sconosciuto. [Riga: 4 Posizione: 56]
Ho lo stesso problema. Hai trovato un modo per risolvere questo problema? – Gaby
@Gaby non ancora .. – xscape