Is it possible to do a row/column span in UniformGrid?
Using Grid attached properties
Grid.RowSpan
and
Grid.ColumnSpan
doesn’t work on UniformGrid.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. There are no attached properties that will allow you to do that.
You could create a subclass of the UniformGrid and add them but you would have to handle all the arranging of the child controls.
It will be pretty hard to define what should happen to elements that span multiple columns when they have to wrap to the next line.