再将TextBox绑定到ShowProperty属性上实现

时间:2022-02-11 04:22:13

再将TextBox绑定到ShowProperty属性上实现

效果:

每个数据和TextBox绑定

实现:

使用ItemsControl,设置ItemsPanel标签,数据类型是ItemsPanelTemplate。

控制ItemsControl的条目容器为WrapPanel,,Orientation="Vertical",可以竖向摆列。

分袂界说ItemsControl和TextBox的Height,则实现竖向摆列后换行。

再将TextBox绑定到ShowProperty属性上实现

注意:

ItemsSource为int[]或者List<int>时,无法绑定TextBox。

需要将int[]或者List<int>转换为List<Class>,Class带有int ShowProperty属性,再将TextBox绑定到ShowProperty属性上实现。