Repeat Feature on RowsDefinitions (Grid) #99
Replies: 2 comments 1 reply
-
A I'm not sure this helps in the future maintainability of the code. If I want to insert a new 4th row with a fixed height, changing from Given the example of using an enum to create named rows, (such as below,) is there any way to combine the use of named row definitions and wanting to simplify giving them all (or some of them) the same value? enum Row { Title, Description, BottomPadding }
RowDefinitions = Rows.Define(
(Row.Title, 20),
(Row.Description, 20),
(Row.BottomPadding, 1)), Has this been considered by anyone? |
Beta Was this translation helpful? Give feedback.
-
Closed and answered |
Beta Was this translation helpful? Give feedback.
-
maybe the RowDefinitions can have feature like Css Grid:
at the css grid, there is "repeat" function, can this library have this feature too ? maybe? ;p
just asking.
maybe like:
RowDefinitions = Rows.Define(Repeat(Auto, 9), 35, Auto),
Beta Was this translation helpful? Give feedback.
All reactions