0
我正在處理這種情況。我有一個項目控件,作爲項目模板我有一個Windows窗體用戶控件,並在代碼後面我設置ItemsSource,但我不知道在userControl中設置一些數據。如何通過綁定爲XAML中的Windows窗體用戶控件設置值?
其中UserControl我有一些具有特定結構的datagridview,並且WPF網格視圖對我無用。所以我不能改變這個用戶控件。
<ItemsControl x:Name="itemsControl">
<ItemsControl.ItemTemplate>
<DataTemplate>
<WindowsFormsHost x:Name="wfh" Grid.Column="2" Margin="10,0,0,10" />
<local:StudentHistoryUserControl />
</WindowsFormsHost>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
我能做些什麼來訪問該usercontrol並設置一些值?