70-354 · Question #30
Drag and Drop Question You are developing a Universal Windows Platform (UWP) app. The app will display a text box named TextBox1 and a button named Button2. If a user types in the text box, you need…
The solution involves arranging 'Code Elements' within a RelativePanel in the 'Answer Area' to achieve dynamic resizing and alignment. The visual solution indicates the following XAML-like structure and element placement: <TextBox x:Name="Home" Text="TextBox1" /> <Button…
Question
Explanation
The solution involves arranging 'Code Elements' within a RelativePanel in the 'Answer Area' to achieve dynamic resizing and alignment. The visual solution indicates the following XAML-like structure and element placement:
<TextBox x:Name="Home" Text="TextBox1" />
<Button x:Name="Button2" Content="Button2" RelativePanel.RightOf="TextBox1" RelativePanel.AlignBottomWith="TextBox1" />
<Button x:Name="Button3" Content="Button3" RelativePanel.RightOf="Button2" RelativePanel.AlignBottomWith="Button2" />
Topics
Community Discussion
No community discussion yet for this question.