例如,使用CustomClass的ObservableCollection,我希望拥有以下xaml。
<Label Content="Some bound property value of item 1 (CustomClass)" />
<TextBox Text="Also bound to some property of item 1" />
<Label Content="For item 2" />
<TextBox Text="For item 2" />
等等。因此,这是该集合的查看者/编辑者。 可能会出现其他控件,例如编辑Enum类型属性的ComboBox。 当然,当删除集合项时,相应的控件将会消失。
虽然如果用代码隐藏编写它会很容易,但我想以xaml方式尝试它。
你会怎么做?或者,这种方法是无用的吗?