Replies: 2 comments 4 replies
-
Yes, when adding additional labels, I need to review all items/rows and ensure I have not missed one. |
Beta Was this translation helpful? Give feedback.
0 replies
-
How would you add a control in RowSpan =2 and Column = 1? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When using a Grid in XAML we must repeat all over the Grid.Row and Grid.Column on each controls. When We need to add a row or a column in refactor process. All this setting must be reviewed one by one.
My suggestion is to add a facility to place controls on the grid like
If I need to insert Label2 / Entry2 between first and second row I can add new block between Row 1 and Row 2 and it's done. Visually the code is more readable. Un simplistic scenario like my example is seem to be more verbose than the official syntax. But in complex scenario it takes all it's sense.
to compare the official syntax. If I want to add the Label2 / Entry2 between first and second row. I need to review all items and ensure I've not missing one. On big Grid scenario it takes all sense.
The official syntax must be keep for more simplistic scenario, Because it's less verbose for these situations.
Beta Was this translation helpful? Give feedback.
All reactions