0

我使用了属性“UpdateSourceTrigger = PropertChanged”。我绑定了一个双重。但是,我不能做一个'。再说了,这只是被过滤掉/删除了。我怎样才能解决这个问题并继续使用该物业?

我的财产:

private double textBoxZahl;
public double TextBoxZahl 
{ 
    get => textBoxZahl; 
    set
    {
        textBoxZahl = value;
        OnPropertyChanged();
    }
}

我的文本框:

<TextBox Margin="1,1,1,1" BorderThickness="1" Grid.ColumnSpan="2" Grid.Column="1" Grid.Row="0" Width="auto" x:Name="_NameBox" Background="WhiteSmoke" Text="{Binding ElementName=MaterialList, Path=SelectedItem.TextBoxZahl, UpdateSourceTrigger=PropertyChanged}"/>

我的绑定工作正常,但如果我尝试使用点则不行。

4

0 回答 0