Survey.xaml
上传用户:jxqhsy
上传日期:2020-12-31
资源大小:1793k
文件大小:1k
- <UserControl x:Class="SFGS.Survey"
- xmlns:uc="clr-namespace:SFGS"
- 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="AliceBlue">
- <Canvas >
- <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>
- <TextBlock x:Name="desc" Canvas.Left="1" FontSize="14" Canvas.Top="40"></TextBlock>
- </StackPanel>
- <StackPanel x:Name="OptionCanvas" Orientation="Vertical" Grid.Row="1">
- </StackPanel>
- </Grid>
- <Button Canvas.Left="1" Canvas.Top="600" x:Name="sum" Content="submit" Click="sum_Click" > </Button>
- </Canvas>
- <TextBlock x:Name="theMessagge" Height="24" HorizontalAlignment="Left" Margin="72,0,0,76" VerticalAlignment="Bottom" Width="216" TextWrapping="Wrap" Foreground="#FFF70909"/>
- </Grid>
- </UserControl>