A ContentControl
не имеет свойств c1
и c2
. Если вы создадите пользовательский элемент управления и определите их как свойства зависимостей, он будет работать:
public class MyControl : ContentControl
{
public string C1
{
get { return (string)GetValue(C1Property); }
set { SetValue(C1Property, value); }
}
public static readonly DependencyProperty C1Property = DependencyProperty.Register(nameof(C1), typeof(string), typeof(MyControl));
public string C2
{
get { return (string)GetValue(C2Property); }
set { SetValue(C2Property, value); }
}
public static readonly DependencyProperty C2Property = DependencyProperty.Register(nameof(C2), typeof(string), typeof(MyControl));
}
XAML:
<ControlTemplate x:Key="FieldTemplate" TargetType="local:MyControl">
<Border Background="LightGray" >
<DockPanel >
<TextBlock DockPanel.Dock="Left" Text="{TemplateBinding C1}" />
<TextBlock DockPanel.Dock="Left" Text="{TemplateBinding C2}" />
<TextBox />
</DockPanel>
</Border>
</ControlTemplate>
...
<local:MyControl C1="hello" C2="olleh" Template="{StaticResource FieldTemplate}" x:Name="NameControl"/>