WorldGlobe.xaml
上传用户:huazai0421
上传日期:2008-05-30
资源大小:405k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. <UserControl x:Class="SilverGlobe.WorldGlobe"
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
  4.     xmlns:local="clr-namespace:SilverGlobe" Width="160" Height="160">
  5. <Grid>
  6. <local:Globe x:Name="_globe" ZDistance="1.5" Margin="0" />
  7. <Canvas x:Name="GlobeCrossHair" Opacity=".8" Width="11" Height="11" HorizontalAlignment="Center" VerticalAlignment="Center" Visibility="Visible">
  8. <Line X1="0" X2="11" Y1="5" Y2="5" Stroke="Black" StrokeThickness="1" />
  9. <Line X1="5" X2="5" Y1="0" Y2="11" Stroke="Black" StrokeThickness="1" />
  10. </Canvas>
  11. </Grid>
  12. </UserControl>