Survey.xaml
上传用户:jxqhsy
上传日期:2020-12-31
资源大小:1793k
文件大小:1k
源码类别:

SilverLight

开发平台:

HTML/CSS

  1. <UserControl x:Class="SFGS.Survey"
  2.              xmlns:uc="clr-namespace:SFGS"
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
  5.     Width="960" Height="700">
  6.     <Grid x:Name="LayoutRoot" Background="AliceBlue">
  7.         <Canvas >
  8.             <Grid>
  9.                 <Grid.RowDefinitions>
  10.                     <RowDefinition Height="80" />
  11.                     <RowDefinition Height="*" />
  12.                 </Grid.RowDefinitions>
  13.                 <StackPanel Grid.Row="0">
  14.                 <TextBlock x:Name="title" Canvas.Left="1" FontSize="18" Canvas.Top="10"></TextBlock>
  15.                 <TextBlock x:Name="desc" Canvas.Left="1" FontSize="14" Canvas.Top="40"></TextBlock>
  16.                 </StackPanel>
  17.                 <StackPanel x:Name="OptionCanvas" Orientation="Vertical" Grid.Row="1">                    
  18.                 </StackPanel>
  19.             </Grid> 
  20.             <Button Canvas.Left="1" Canvas.Top="600" x:Name="sum" Content="submit" Click="sum_Click" > </Button>
  21.         </Canvas>
  22.         <TextBlock x:Name="theMessagge"  Height="24" HorizontalAlignment="Left" Margin="72,0,0,76" VerticalAlignment="Bottom" Width="216" TextWrapping="Wrap" Foreground="#FFF70909"/>
  23.     </Grid>
  24. </UserControl>