我为文件“浏览”创建了一个用户控件,它基本上由一个文本框和一个按钮组成。
它有几个属性,允许我选择目录,现有(打开文件对话框)或不存在的文件(保存文件对话框),指定过滤器,...
我正在使用这样的依赖属性:
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");
}
在我看来,我有一个列表框,允许我选择要编辑的“配置”,我的所有字段(包括我的usercontrol)都绑定到CurrentConfiguration(并且CurrentConfiguration绑定到SelectedItem)。 / p>
我的问题: 第一个加载总是正常,但是如果我选择另一个配置,它就不会更新并保留旧文本。
我的绑定是这样的:
<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"/>
如果我使用简单的文本框,使用完全相同的绑定,则会正确更新!
<TextBox Grid.Row="4" Grid.Column="1"
Text="{Binding CurrentConfiguration.TagListFile,ValidatesOnDataErrors=true, NotifyOnValidationError=true}"
Margin="2"/>
我也没有在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>
uxBrowseFileControl是<UserControl>
编辑2:事实上,如果我通过userControl更改某些内容,它也不会在模型中复制:/
编辑3:我将“Mode = TwoWay”放入我的currentItem.FilePath-&gt; UserControl的绑定中,它似乎现在正常工作,但为什么呢?具有相同绑定的TextBox正在运行!
答案 0 :(得分:3)
您应该删除DependencyProperty的更改回调。您不需要任何特殊的逻辑来使Dependency Properties在更改时更新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); } }
您可能还希望默认情况下将依赖项属性设置为绑定TwoWay
,(Text
控件的TextBox
属性也会执行此操作):
public static readonly DependencyProperty FilePathProperty = DependencyProperty.Register(
"FilePath",
typeof(String),
typeof(BrowseFileControl),
new FrameworkPropertyMetadata(default(String), FrameworkPropertyMetadataOptions.BindsTwoWayByDefault)
);
这样,无论何时绑定该属性,都不必显式设置Mode=TwoWay
。