using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace HDSProject.Control { /// <summary> /// CustomFont.xaml 的交互逻辑 /// </summary> public partial class CustomFont : ItemsControl { public CustomFont() { InitializeComponent(); } private string title2 = "测试字体间距zjis"; public string Title2 { get { return title2; } set { title2 = value; OnPropertyChanged("Title2"); } } public event PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged(string propertyName) { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } } }
时间: 2024-02-15 08:06:56 浏览: 179
详解java Collections.sort的两种用法
这是一个自定义字体控件 CustomFont 的代码。其中包含一个 Title2 属性,可以用于绑定到控件内部的某个元素,例如 TextBlock 的 Text 属性。同时,这个控件还实现了 INotifyPropertyChanged 接口,用于在属性值发生变化时通知 UI 进行更新。
如果你想将 Title2 属性绑定到控件内部的某个元素,可以在 XAML 中这样写:
```xml
<CustomFont Title2="Hello World!" />
```
然后,在 CustomFont 的 XAML 中,就可以通过 Binding 来绑定 Title2 属性,例如:
```xml
<TextBlock Text="{Binding Path=Title2, RelativeSource={RelativeSource AncestorType={x:Type local:CustomFont}}}" />
```
这里的 Path 属性指定要绑定的属性名,RelativeSource 属性指定要找到的控件类型,即 CustomFont。这样,就可以将 Title2 属性的值绑定到 TextBlock 的 Text 属性上了。
阅读全文