WPF:绑定到我的自定义控件不会更新

J4N*_*J4N 3 data-binding wpf binding user-controls dependency-properties

我创建了一个用户控件来“浏览”文件,它基本上由一个文本框和一个按钮组成。

它有几个属性,允许我选择一个目录、一个现有的(打开文件对话框)或一个不存在的文件(保存文件对话框)、指定过滤器、...

我正在使用这样的依赖属性:

    public static readonly DependencyProperty FilePathProperty = DependencyProperty.Register(
        "FilePath",
        typeof(String),
        typeof(BrowseFileControl),
        new PropertyMetadata(default(String), InvokeFilePathChanged)
    );
    public String FilePath { get { return (String)GetValue(FilePathProperty); } set { SetValue(FilePathProperty, value); } }

    private static void InvokeFilePathChanged(DependencyObject property, DependencyPropertyChangedEventArgs args)
    {
        BrowseFileControl view = (BrowseFileControl)property;
        view.InvokeFilePathChanged((String)args.OldValue, (String)args.NewValue);
    }
    protected virtual void InvokeFilePathChanged(String oldValue, String newValue)
    {
        InvokePropertyChanged("FilePath");
    }
Run Code Online (Sandbox Code Playgroud)

在我看来,我有一个列表框,允许我选择要编辑的“配置”,并且我的所有字段(包括我的用户控件)都绑定到 CurrentConfiguration(并且 CurrentConfiguration 绑定到 SelectedItem)。

我的问题:第一次加载总是可以的,但如果我选择其他配置,它只是不会更新并保留旧文本。

我的绑定是这样的:

<userContols:BrowseFileControl  Grid.Row="4" Grid.Column="1" 
    Margin="2" FilePath="{Binding CurrentConfiguration.TagListFile, 
    ValidatesOnDataErrors=true, NotifyOnValidationError=true}"
    IsFolder="False" Filter="All files (*.*)|*.*" CanBeInexistantFile="False"/>
Run Code Online (Sandbox Code Playgroud)

如果我使用一个简单的文本框,具有完全相同的绑定,它会正确更新!

<TextBox Grid.Row="4" Grid.Column="1" 
    Text="{Binding CurrentConfiguration.TagListFile,ValidatesOnDataErrors=true, NotifyOnValidationError=true}" 
    Margin="2"/>
Run Code Online (Sandbox Code Playgroud)

我在 Visual Studio 的输出窗口中也没有看到任何绑定错误。

那么我的绑定可能有什么问题呢?

编辑:UserControl 的 xaml:

<Grid DataContext="{Binding ElementName=uxBrowseFileControl}">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="Auto"/>
    </Grid.ColumnDefinitions>
    <TextBox Padding="2" Text="{Binding FilePath, ValidatesOnDataErrors=true, NotifyOnValidationError=true}"/>
    <Button Content="Browse" Grid.Column="1" Padding="2" Command="{Binding BrowseCommand}"/>
</Grid>
Run Code Online (Sandbox Code Playgroud)

uxBrowseFileControl 是<UserControl>

编辑2:事实上,如果我通过 userControl 更改某些内容,它也不会复制到模型中:/

Edit3:我将“Mode=TwoWay”放入我的 currentItem.FilePath->UserControl 的绑定中,它现在似乎可以工作,但为什么?具有相同绑定的文本框正在工作!

Adi*_*ter 5

您应该删除 DependencyProperty 的更改回调。您不需要任何特殊的逻辑来使依赖属性在更改时更新 UI - 这已经内置到依赖属性中。

这就是您所需要的:

public static readonly DependencyProperty FilePathProperty = DependencyProperty.Register(
    "FilePath",
    typeof(String),
    typeof(BrowseFileControl),
    new PropertyMetadata(default(String))
);

public String FilePath { get { return (String)GetValue(FilePathProperty); } set { SetValue(FilePathProperty, value); } }
Run Code Online (Sandbox Code Playgroud)

您可能还想将依赖属性设置为TwoWay默认绑定(控件Text的属性TextBox也执行此操作):

public static readonly DependencyProperty FilePathProperty = DependencyProperty.Register(
    "FilePath",
    typeof(String),
    typeof(BrowseFileControl),
    new FrameworkPropertyMetadata(default(String), FrameworkPropertyMetadataOptions.BindsTwoWayByDefault)
);
Run Code Online (Sandbox Code Playgroud)

Mode=TwoWay这样,每当绑定该属性时,您就不必显式设置。