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

SilverLight

开发平台:

HTML/CSS

  1. <UserControl x:Class="SFGS.Responses"
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
  4.     Width="960" Height="700">
  5.     <Grid x:Name="LayoutRoot" Background="White">
  6.         <Canvas >
  7.             <TextBlock Canvas.Top="10" Canvas.Left="10"   FontSize="20"> Thank you for taking the survery Below are the Survery results...</TextBlock>
  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.                     </StackPanel>
  16.                 <StackPanel x:Name="OptionCanvas" Orientation="Vertical" Grid.Row="1">
  17.                 </StackPanel>
  18.             </Grid> 
  19.         </Canvas>
  20.     </Grid>
  21. </UserControl>