Am very very beginner in WPF and MVVM architcture using PRISM.
如何将数据绑定到模板组合框?我有一个可观察的字符串集合,它是主数据和视图模型中类型的实体列表。observablecollection = {data1,data2,data3,data4,data5,..}实体{字符串名称;整数价格价值;} List = {{data1,13}, {data5,23} } 当观察集合与数据实体之一匹配时,应选中组合框的复选框,其值应显示在文本框中 在 xaml 标记中有一个模板化的组合框将文本框和复选框绑定到字符串的上述 observablecollection。还有另一个文本框包含实体的一个属性。必须检查模板化组合框的所有实体列表共有的字符串。
Pls help in writing up the markup and the conditions to bind the data to templated combo box and textbox.
出现错误或无法正确编码