0
名前を作成するためにバインドを一方的に行う必要がある割り当てがありますが、テキストボックスの1つがフォーカスを失うたびにフルネームが作成されます。 updateSourceTrigger = LostFocusはnog twowayバインディングのため動作しません。片道でこれを行う可能性はありますか? C#oneway要素のバインディングの更新時にフォーカスが失われました
<Window x:Class="name_binder.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:name_binder"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="575">
<Grid>
...
<StackPanel Orientation="Vertical" Grid.Column="1" Grid.Row="2">
<TextBox Name="firstNameTextBox" Margin="7.5" Height="35" FontSize="20" Text="<Enter first name>" GotFocus="TextBox_gotFocus"></TextBox>
<TextBox Name="LastNameTextBox" Margin="7.5" Height="35" FontSize="20" Text="<Enter last name>" GotFocus="TextBox_gotFocus"></TextBox>
<StackPanel Orientation="Horizontal">
<TextBox Margin="7.5" Height="35" FontSize="20" BorderThickness="0" Text="{Binding Path=Text, ElementName=firstNameTextBox, Mode=OneWay, UpdateSourceTrigger=LostFocus}"/>
<TextBox Margin="7.5" Height="35" FontSize="20" BorderThickness="0" Text="{Binding Path=Text, ElementName=LastNameTextBox, Mode=OneWay, UpdateSourceTrigger=LostFocus}"/>
</StackPanel>
</StackPanel>
</Grid>
</Window>
これはうまくいきました、ありがとうございました! –