ObservableCollection へのデータ バインディングを通じて入力されるリスト ボックスがあります。
<ListBox Height="198" HorizontalAlignment="Left" Margin="12,45,0,0" Name="listBox_users" VerticalAlignment="Top" Width="204" ItemsSource="{Binding}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding username}" Name="left" Width="50" />
<TextBlock Text="{Binding real_name}" Name="right" Width="100" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
選択されたアイテムのユーザー名だけの文字列値を取得したい。通常、私はこれを複雑なインデックス システムで行ってきましたが、listbox_users.Items または listbox_users.SelectedItem から行う方法が必要です。データバインディングのコンテキストでこれを達成する方法がわかりません。私はまだ概念に非常に慣れていません