Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
textBox を含む WPF に UserControl があります。私のユーザー コントロールは、WPF ウィンドウに配置されます。そのウィンドウには DataGrid もあります。テキスト ボックスを dataGrid で選択した項目のプロパティにバインドする必要があります。
このコードで試すことができます
<Binding ElementName="GridId" Path="SelectedItem.Content"/>
サンプル
<TextBox> <TextBlock.Text> <Binding ElementName="GridId" Path="SelectedItem.Content"/> </TextBox.Text> </TextBox>