代码背后的绑定(转换器)

时间:2015-11-02 15:58:00

标签: c# wpf xaml datatemplate staticresource

<local:LabelTemp x:Key="labelTemplate"/>
        <DataTemplate x:Key="labelTemp">
            <TextBlock Text="{Binding Converter={StaticResource labelTemplate},Path=Item.Items}"/>
        </DataTemplate>

任何人都可以帮我解决如何将上述Xaml代码编写到C#的Code Behind中。 我将此代码用于饼图LabelTemplate。

1 个答案:

答案 0 :(得分:12)

我不知道什么是绑定源,或者饼图LabelTemplate(转换器)是什么样的。我能想出的最好的信息如下:

public class LabelTemplate : IValueConverter
{

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        //...
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        //...
    }
}
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        LabelTemplate labelTemplateConverter = new LabelTemplate();
        Binding binding = new Binding("Item.Items");
        binding.Converter = labelTemplateConverter;
        txtBlock.SetBinding(TextBlock.TextProperty, binding);
    }
}

并且您的文本块具有名称txtBlock

我希望这会有所帮助。