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.
我在 WPF 中有一个包含文本框的用户控件。我的用户控件放置在 WPF 窗口上。我在那个窗口上也有一个 DataGrid。我需要将文本框绑定到 dataGrid 中所选项目的属性。
您可以尝试使用此代码
<Binding ElementName="GridId" Path="SelectedItem.Content"/>
样本
<TextBox> <TextBlock.Text> <Binding ElementName="GridId" Path="SelectedItem.Content"/> </TextBox.Text> </TextBox>