WEB开发网
开发学院图形图像Flash 用 Silverlight 开发围棋在线对弈程序(一)UI 雏... 阅读

用 Silverlight 开发围棋在线对弈程序(一)UI 雏形

 2009-03-31 12:01:59 来源:WEB开发网   
核心提示: 我们假定整个程序的大小为 800 * 600 (以后也许再考虑是否有必要支持任意比例的缩放),现在,用 Silverlight 开发围棋在线对弈程序(一)UI 雏形(2),跟随直觉,我写了下面一些代码用于构建 UI:Page.xaml:<UserControl x:Class=&qu

我们假定整个程序的大小为 800 * 600 (以后也许再考虑是否有必要支持任意比例的缩放)。现在,跟随直觉,我写了下面一些代码用于构建 UI:

Page.xaml:

<UserControl

       x:Class="WoodFoxWeiQi.UI.Page"

       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

       Width="800"

       Height="600">

       <Grid

              x:Name="LayoutRoot"

              Background="White">

              <Grid.ColumnDefinitions>

                     <ColumnDefinition

                            Width="0.75*" />

                     <ColumnDefinition

                            Width="0.25*" />

              </Grid.ColumnDefinitions>

              <!-- 棋盘区域 -->

              <Border

                     Grid.Column="0">

                     <!-- 棋盘 -->

                     <Canvas

                            x:Name="canvasBoard"

                            Background="LightYellow"

                            Margin="10">

                     </Canvas>

              </Border>

              <!-- 操作区域 -->

              <Border

                     Grid.Column="1">

                     <StackPanel

                            Margin="20"

                            Orientation="Vertical">

                           <Button

                                  x:Name="btnGo"

                                  Content="Go" />

                     </StackPanel>

              </Border>

       </Grid>

</UserControl>

上一页  1 2 3 4 5  下一页

Tags:Silverlight 开发 围棋

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接