We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using complex row and column spans in table form, RowSpan does not work properly.
We have fixed the issue by modifying the following source code:
In PerformLayout ()
cellCount + = (ColumnDefinitions.Count! = 0)? Grid.GetColumnSpan (child): Grid.GetRowSpan (child); cellCount + = (ColumnDefinitions.Count! = 0)? Grid.GetRowSpan (child) - 1: Grid.GetColumnSpan (child) - 1; // added (add RowSpan to cellCount)
...
Enumerable.Range (1, rowSpan) .ToList () ... // before Enumerable.Range (1, rowSpan - 1) .ToList () ... // after
Enumerable.Range (1, columnSpan) .ToList () ... // before Enumerable.Range (1, columnSpan - 1) .ToList () ... // after
This change works well.
I usually write well. Thank you.
The text was updated successfully, but these errors were encountered:
I'll have to write a test around this scenario. Can you describe your layout in more detail?
Sorry, something went wrong.
kmcginnes
No branches or pull requests
When using complex row and column spans in table form,
RowSpan does not work properly.
We have fixed the issue by modifying the following source code:
In PerformLayout ()
cellCount + = (ColumnDefinitions.Count! = 0)? Grid.GetColumnSpan (child): Grid.GetRowSpan (child);
cellCount + = (ColumnDefinitions.Count! = 0)? Grid.GetRowSpan (child) - 1: Grid.GetColumnSpan (child) - 1; // added (add RowSpan to cellCount)
...
Enumerable.Range (1, rowSpan) .ToList () ... // before
Enumerable.Range (1, rowSpan - 1) .ToList () ... // after
...
Enumerable.Range (1, columnSpan) .ToList () ... // before
Enumerable.Range (1, columnSpan - 1) .ToList () ... // after
...
This change works well.
I usually write well. Thank you.
The text was updated successfully, but these errors were encountered: