怎么查看这段代码的数据源 <StackPanel DockPanel.Dock="Left" Orientation="Horizontal"> <ComboBox MinWidth="100" Margin="5" materialDesign:HintAssist.Hint="请选择仓库" IsEditable="True" ItemsSource="{Binding WareHouseCollection, Mode=OneTime}" SelectedValue="{Binding WareHouseCode}" SelectionChanged="ComboBox_SelectionChanged" /> </StackPanel>
时间: 2024-02-14 11:33:07 浏览: 146
查看源代码的Source.Insight.3.5.0064.
这段代码中的数据源是名为“WareHouseCollection”的属性。你可以在后台代码中查找该属性的定义。这段代码中,使用了数据绑定技术,将ComboBox的ItemsSource属性绑定到该属性上。在后台代码中,当需要更新ComboBox中的选项时,只需要修改“WareHouseCollection”属性的值即可。
阅读全文