ホームページのカテゴリ名として SVG ロゴを挿入する必要があります。各カテゴリにはロゴがあります。それらは app.xaml で次のように定義されており、適切なロゴを表示するDataTemplates
ためにホームページに a を含めていますContentControl
(DataTemplateSelector
テンプレートセレクターなしでロゴを含めることはできますが、動的に含める必要があります)。
ホームページの xaml は次のとおりです。
<GroupStyle>
<GroupStyle.HeaderTemplate>
<DataTemplate>
<Grid Margin="1,0,0,6" Name="CategoryName">
<Button AutomationProperties.Name="Group Title" Click="Category_Click" Style="{StaticResource TextPrimaryButtonStyle}">
<ContentControl Name="CategoryLogo" Content="{Binding Category.Name}" ContentTemplateSelector="{StaticResource LogoTemplateSelector}" IsHitTestVisible="True" Margin="3,-7,10,10"/>
</Button>
</Grid>
</DataTemplate>
</GroupStyle.HeaderTemplate>
</GroupStyle>
そして、ここに私のものがありますDataTemplateSelector
:
public class LogoTemplateSelector : DataTemplateSelector
{
public string DefaultTemplateKey { get; set; }
protected override DataTemplate SelectTemplateCore(object item, Windows.UI.Xaml.DependencyObject container)
{
var category = item as String;
DataTemplate dt = null;
switch (category)
{
case "Category1": dt = FindTemplate(App.Current.Resources, "Logo1");
break;
case "Category2": dt = FindTemplate(App.Current.Resources, "Logo2");
break;
case "Category3": dt = FindTemplate(App.Current.Resources, "Logo3");
break;
case "Category4": dt = FindTemplate(App.Current.Resources, "Logo4");
break;
default: dt = FindTemplate(App.Current.Resources, "Logo1");
break;
}
return dt;
}
private static DataTemplate FindTemplate(object source, string key)
{
var fe = source as FrameworkElement;
object obj;
ResourceDictionary rd = fe != null ? fe.Resources : App.Current.Resources;
if (rd.TryGetValue(key, out obj))
{
DataTemplate dt = obj as DataTemplate;
if (dt != null)
{
return dt;
}
}
return null;
}
}
私の問題は、私が取得したが nullであるContent="{Binding Category.Name}"
ため、 が機能していないように見えることです。object item
DataTemplateSelector
TextBlock
最初は同じバインディングがあり、カテゴリ名が正しく表示されていたので、うまくいくと確信しています。
のスタイルを使用してバインディングも試しましたContentControl
が、何も変わりませんでした。
私は何か間違ったことをしましたか?
ありがとう