I am making windows 8 app in c#. Are there any attributes in Xaml that makes a items in toolbox
layout_width="match_parent"
layout_height="wrap_content"
like in android xml?
Thanks in advance.
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.
In xaml, if you make a grid with rows like this:
Rows that have
AutoWidthresize to fit their contents. Rows that have*Widthequally share the available space with other*WidthColumns. To create an item that fills its container, simply put the control in a*row and column and set theHorizontalAlignmentandVerticalAlignmenton the control toStretch.To get a control that wraps to the next line, simply use a
WrapGrid.