public int Width
{
get { return (int)GetValue(WidthProperty); }
set { SetValue(WidthProperty, value); }
}
// Using a DependencyProperty as the backing store for Width. This enables animation, styling, binding, etc...
public static readonly DependencyProperty WidthProperty =
DependencyProperty.Register("Width", typeof(int), typeof(ownerclass), new PropertyMetadata(0));
一、代码结构解析
- 实例属性封装层
public int Width { get { return (int)GetValue(WidthProperty); } set { SetValue(WidthProperty, value); } }
这是面向开发者的访问入口
GetValue/SetValue 是 DependencyObject 基类方法
强制类型转换保证数据类型安全
- 依赖属性注册层
public static readonly DependencyProperty WidthProperty = DependencyProperty.Register( "Width", // 属性名称 typeof(int), // 属性类型 typeof(ownerclass), // 所属类型(需替换为实际类名) new PropertyMetadata(0)); // 元数据配置
二、核心功能特性
- 扩展功能支持
- 动画系统:可通过 Storyboard 动态修改属性值
- 数据绑定:支持 {Binding Path=Width} 双向绑定
- 样式模板:允许在 ControlTemplate 中重写属性
- 资源引用:支持 StaticResource/DynamicResource
- 元数据配置详解
- 默认值机制:初始化时自动应用默认值 0
- 值继承特性:子元素可继承父容器的 Width 设置
- 验证回调:可添加 ValidateValueCallback 进行输入验证
- 变更通知:通过 PropertyChangedCallback 触发UI更新
三、实现要点说明
- 命名约定
- 依赖属性字段必须使用 Property 后缀
- 需与 CLR 属性名称严格匹配(示例中的 "Width")
- 类型系统要求
- 建议与现有控件类型保持一致(注:WPF 原生 Width 是 double 类型)
- 使用 int 类型时需要特别注意:
- 布局系统自动转换为 double 时可能丢失精度
- 建议实现 IValueConverter 进行类型转换
四、应用场景示例
- 自定义控件开发
- 创建具有特殊宽度逻辑的进度条控件
- 实现响应式布局的容器组件
- 动态样式系统
<Style TargetType="{x:Type local:ownerclass}">
<Setter Property="Width" Value="200"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Width" Value="300"/>
</Trigger>
</Style.Triggers>
</Style>
五、性能优化建议
- 元数据复用策略
- 对多个相同配置的属性共享 PropertyMetadata 实例
- 使用 FrameworkPropertyMe