Two-way-binding: editing passed value from XAML control in the model setter does not update control
问题 This is for a Windows 10 Universal App. XAML: <RelativePanel Padding="4" Margin="4,12,0,0"> <TextBlock x:Name="Label" Text="Class Name" Margin="12,0,0,4"/> <ListView x:Name="ClassTextBoxes" ItemsSource="{Binding TextBoxList}" SelectionMode="None" RelativePanel.Below="Label"> <ListView.ItemTemplate> <DataTemplate > <RelativePanel> <TextBox x:Name="tbox" PlaceholderText="{Binding PlaceHolder}" Text="{Binding BoxText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Padding="4" Width="200"