Last active
February 19, 2019 19:58
-
-
Save michael-hawker/9ae11941d3af521060ed44d3fb5895e1 to your computer and use it in GitHub Desktop.
Example of a Responsive UWP Form in XAML - https://docs.microsoft.com/en-us/windows/uwp/get-started/construct-form-learning-track
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d"> | |
<ScrollViewer> | |
<VisualStateManager.VisualStateGroups> | |
<VisualStateGroup> | |
<VisualState> | |
<VisualState.StateTriggers> | |
<AdaptiveTrigger MinWindowWidth="640" /> | |
</VisualState.StateTriggers> | |
<VisualState.Setters> | |
<Setter Target="Associate.(RelativePanel.RightOf)" Value="Customer"/> | |
<Setter Target="Associate.(RelativePanel.Below)" Value=""/> | |
<Setter Target="Save.(RelativePanel.Below)" Value="Customer"/> | |
</VisualState.Setters> | |
</VisualState> | |
</VisualStateGroup> | |
</VisualStateManager.VisualStateGroups> | |
<RelativePanel> | |
<StackPanel x:Name="Customer" Margin="20"> | |
<TextBox x:Name="CustomerName" Header= "Customer Name" Margin="0,24,0,0" HorizontalAlignment="Left" /> | |
<TextBox x:Name="Address" Header="Address" PlaceholderText="Address" Margin="0,24,0,0" HorizontalAlignment="Left" /> | |
<TextBox x:Name="Address2" Margin="0,24,0,0" PlaceholderText="Address 2" HorizontalAlignment="Left" /> | |
<RelativePanel> | |
<TextBox x:Name="City" PlaceholderText="City" Margin="0,24,0,0" HorizontalAlignment="Left" /> | |
<ComboBox x:Name="State" PlaceholderText="State" Margin="24,24,0,0" RelativePanel.RightOf="City"> | |
<!--List of valid states--> | |
</ComboBox> | |
</RelativePanel> | |
</StackPanel> | |
<StackPanel x:Name="Associate" Margin="20" RelativePanel.Below="Customer"> | |
<TextBox x:Name="AssociateName" Header= "Associate" Margin="0,24,0,0" HorizontalAlignment="Left" /> | |
<DatePicker x:Name="TargetInstallDate" Header="Target install Date" HorizontalAlignment="Left" Margin="0,24,0,0"></DatePicker> | |
<TimePicker x:Name="InstallTime" Header="Install Time" HorizontalAlignment="Left" Margin="0,24,0,0"></TimePicker> | |
</StackPanel> | |
<StackPanel x:Name="Save" Orientation="Horizontal" RelativePanel.Below="Associate"> | |
<Button Content="Save" Margin="24" /> | |
<Button Content="Cancel" Margin="24" /> | |
</StackPanel> | |
</RelativePanel> | |
</ScrollViewer> | |
</Page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment