我已經實現了一個自定義的DependencyProperty並想從XAML綁定到它。由於某些原因,當綁定源(MainWindow.Test)更新時它不會更新。 綁定源不是DP,但會觸發PropertyChanged事件。綁定到來自XAML的自定義Depenendy屬性
<TextBlock Text="{Binding Test}" />
不工作:
<local:DpTest Text="{Binding Test}"/>
任何想法 更新但是用非自定義依賴項屬性
作品作品?
這裏是DP實現:
using System;
using System.Windows;
using System.Windows.Controls;
namespace WpfApplication3
{
public partial class DpTest : UserControl
{
public DpTest()
{
DataContext = this;
InitializeComponent();
}
public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, value); }
}
public static readonly DependencyProperty TextProperty = DependencyProperty.Register("Text", typeof(string), typeof(DpTest), new PropertyMetadata(string.Empty, textChangedCallBack));
static void textChangedCallBack(DependencyObject property, DependencyPropertyChangedEventArgs args)
{
int x = 5;
}
}
}
這裏是如何使用它:
<Window x:Class="WpfApplication3.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:local="clr-namespace:WpfApplication3" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib" Title="MainWindow" Height="350" Width="525">
<StackPanel>
<TextBlock Text="{Binding Test}"></TextBlock>
<local:DpTest Text="{Binding Test}"></local:DpTest>
<Button Click="Button_Click">Update</Button>
</StackPanel></Window>
後面的代碼與綁定源:
using System;
using System.Collections.Generic;
using System.Windows;
using System.ComponentModel;
namespace WpfApplication3
{
public partial class MainWindow : Window, INotifyPropertyChanged
{
public MainWindow()
{
DataContext = this;
InitializeComponent();
}
string _test;
public string Test
{
get { return _test; }
set
{
_test = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("Test"));
}
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Test = "Updatet Text";
}
public event PropertyChangedEventHandler PropertyChanged;
}
}
你檢查在輸出窗口綁定錯誤? –