绑定不能在对象的单个属性上工作(而其他属性正在工作)

本文关键字:工作 属性 其他 不能 单个 绑定 对象 | 更新日期: 2023-09-27 18:03:28

我正在用以下代码创建一个可配置的WPF输入对话框:


InputMessageBox.xaml

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
    xmlns:local="clr-namespace:MediaManager.Forms" x:Class="MediaManager.Forms.InputMessageBox"
    Title="{Binding Title}" Height="{Binding Height}"  Width="{Binding Width}">
<Window.Background>
    <SolidColorBrush Color="{DynamicResource {x:Static SystemColors.ControlColorKey}}" />
</Window.Background>
<Grid>
    <xctk:WatermarkTextBox Watermark="{Binding Message}" Margin="10" VerticalAlignment="Top" TabIndex="0" />
    <Button Content="{Binding CancelButtonText}" Width="{Binding ButtonWidth}" Margin="10" HorizontalAlignment="Right" VerticalAlignment="Bottom" IsCancel="True" TabIndex="2" />
    <Button Content="{Binding OkButtonText}" Width="{Binding ButtonWidth}" Margin="{Binding MarginOkButton}" HorizontalAlignment="Right" VerticalAlignment="Bottom" IsDefault="True" TabIndex="1" />
</Grid>


InputMessageBox.xaml.cs

public partial class InputMessageBox : Window
{
    public InputMessageBox(inputType inputType)
    {
        InitializeComponent();
        switch (inputType)
        {
            case inputType.AdicionarConteudo:
                {
                    Properties = new InputMessageBoxProperties()
                    {
                        ButtonWidth = 75,
                        CancelButtonText = "Cancelar",
                        Height = 108,
                        Message = "Digite o nome do conteudo a ser pesquisado...",
                        OkButtonText = "Pesquisar",
                        Title = string.Format("Pesquisar - {0}", Settings.Default.AppName),
                        Width = 430
                    };
                    break;
                }
            default:
                break;
        }
        DataContext = Properties;
    }
    public InputMessageBoxProperties Properties { get; set; }
}

InputMessageBoxProperties.cs

public class InputMessageBoxProperties
{
    public int ButtonWidth { get; set; }
    public string CancelButtonText { get; set; }
    public int Height { get; set; }
    public string InputText { get; set; }
    public Thickness MarginOkButton { get { return new Thickness(10, 10, ButtonWidth + 15, 10); } }
    public string Message { get; set; }
    public string OkButtonText { get; set; }
    public string Title { get; set; }
    public int Width { get; set; }
}

当我调用它时,每个绑定都按预期工作,除了一个,Width属性。当我调试时,width属性值是430,但是帧本身的宽度要大得多。令人困惑的部分是,其余的绑定都在工作。为什么会发生这种情况?

绑定不能在对象的单个属性上工作(而其他属性正在工作)

可以将Width的Binding Mode设置为TwoWay:

 Width="{Binding Width,Mode=TwoWay}"

你不妨考虑实现INotifyPropertyChanged接口,这样在这些属性发生任何变化时,UI将自动通知:

public class InputMessageBoxProperties:INotifyPropertyChanged
{
    private int _width  ;     
    public int Width
    {
        get
        {
            return _width;
        }
        set
        {
            if (_width == value)
            {
                return;
            }
            _width = value;
            OnPropertyChanged();
        }
    }
  // add the other properties following the same pattern 
    public event PropertyChangedEventHandler PropertyChanged;
    protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }
}