Responses.xaml
上传用户:jxqhsy
上传日期:2020-12-31
资源大小:1793k
文件大小:1k
- <UserControl x:Class="SFGS.Responses"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Width="960" Height="700">
- <Grid x:Name="LayoutRoot" Background="White">
- <Canvas >
- <TextBlock Canvas.Top="10" Canvas.Left="10" FontSize="20"> Thank you for taking the survery Below are the Survery results...</TextBlock>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="80" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0">
- <TextBlock x:Name="title" Canvas.Left="1" FontSize="18" Canvas.Top="10"></TextBlock>
- </StackPanel>
- <StackPanel x:Name="OptionCanvas" Orientation="Vertical" Grid.Row="1">
- </StackPanel>
- </Grid>
- </Canvas>
- </Grid>
- </UserControl>