uwp - How to implement HorizontalAlignment="Stretch" in RelativePanel while creating Universal Windows Platforms 10 Apps? -
i know how implement using grid , stackpanel, can done here without that?
sure, align left , right panel! example:
horizontal stretch
<relativepanel> <textbox relativepanel.alignleftwithpanel="true" relativepanel.alignrightwithpanel="true" /> </relativepanel>
if want vertical stretch, similar thing, align top , bottom panel:
vertical stretch
<relativepanel> <textbox relativepanel.aligntopwithpanel="true" relativepanel.alignbottomwithpanel="true" /> </relativepanel>
Comments
Post a Comment