我试图通过XAML绑定依赖属性到我的自定义WPF控件.
这是我如何注册依赖属性:
public static readonly DependencyProperty AltNamesProperty =
DependencyProperty.Register ("AltNames", typeof(string), typeof(DefectImages));
public string AltNames
{
get { return (string) GetValue(AltNamesProperty); }
set { SetValue(AltNamesProperty, value); }
}
Run Code Online (Sandbox Code Playgroud)
以下是我在XAML中调用它的方式:
<DataGrid.Columns>
<DataGridTemplateColumn IsReadOnly="True">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel Name="StackPanel1" Grid.Column="0" Width="950">
<TextBlock FontSize="16" TextDecorations="None" Text="{BindingPath=StandardName}" Foreground="Black" FontWeight="Bold" Padding="5,10,0,0"></TextBlock>
<TextBlock Text="{Binding Path=AltNames}"TextWrapping="WrapWithOverflow" Padding="5,0,0,10"></TextBlock>
<!-- this part should be magic!! -->
<controls:DefectImages AltNames="{Binding Path=AltNames}"></controls:DefectImages>
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
Run Code Online (Sandbox Code Playgroud)
我知道AltNames我试图绑定的属性是一个有效的属性,因为我可以在文本块中显示它就好了.我是否错误地注册了Dependency属性?
我需要做什么才能AltNames在我的代码中分配正确的值?
jac*_*eon 15
感谢@Danko让我入门.我注册了一个回调来设置属性更改时的值.
这是我最终得到的结果:
private static void OnDefectIdChanged(DependencyObject defectImageControl, DependencyPropertyChangedEventArgs eventArgs)
{
var control = (DefectImages) defectImageControl;
control.DefectID = (Guid)eventArgs.NewValue;
}
/// <summary>
/// Registers a dependency property, enables us to bind to it via XAML
/// </summary>
public static readonly DependencyProperty DefectIdProperty = DependencyProperty.Register(
"DefectID",
typeof (Guid),
typeof (DefectImages),
new FrameworkPropertyMetadata(
// use an empty Guid as default value
Guid.Empty,
// tell the binding system that this property affects how the control gets rendered
FrameworkPropertyMetadataOptions.AffectsRender,
// run this callback when the property changes
OnDefectIdChanged
)
);
/// <summary>
/// DefectId accessor for for each instance of this control
/// Gets and sets the underlying dependency property value
/// </summary>
public Guid DefectID
{
get { return (Guid) GetValue(DefectIdProperty); }
set { SetValue(DefectIdProperty, value); }
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
11408 次 |
| 最近记录: |