zoukankan      html  css  js  c++  java
  • JohnSon:SilverLight详细表单信息

     <!--第一行-->
                            <Border BorderBrush="#C7DAE9" BorderThickness="1" Grid.Column="0" Grid.Row="0" Padding="0,0,5,0">
                                <TextBlock Text="姓名:" Style="{StaticResource TextBlockInfo}"/>
                            </Border>
                            <Border BorderBrush="#C7DAE9" BorderThickness="0,1,1,1" Grid.Column="1" Grid.Row="0" Padding="10,0,0,0">
                                <TextBox Text="{Binding Uname,Mode=TwoWay}" Style="{StaticResource TextBoxInfo}" Name="txtName"/>
                            </Border>
                            <Border BorderBrush="#C7DAE9" BorderThickness="0,1,1,1" Grid.Column="2" Grid.Row="0" Padding="0,0,5,0">
                                <TextBlock Text="性别:" Style="{StaticResource TextBlockInfo}"/>
                            </Border>
                            <Border BorderBrush="#C7DAE9" BorderThickness="0,1,1,1" Grid.Column="3" Grid.Row="0" Padding="10,0,0,0">
                                <StackPanel VerticalAlignment="Center" HorizontalAlignment="Left" Orientation="Horizontal" Name="aa">
                                    <RadioButton  Name="rbMen" GroupName="rbGroup" Content="男" IsChecked="{Binding UMensex,Mode=TwoWay}"/>
                                    <RadioButton  Name="rbWoMen" GroupName="rbGroup" Content="女" IsChecked="{Binding Usex,Mode=TwoWay}"/>
                                </StackPanel>
                            </Border>
                            <!--第2行-->
                            <Border BorderBrush="#C7DAE9" BorderThickness="1,0,1,1" Grid.Column="0" Grid.Row="1" Background="White" Padding="0,0,5,0">
                                <TextBlock Text="职务:" Style="{StaticResource TextBlockInfo}"/>
                            </Border>
                            <Border BorderBrush="#C7DAE9" BorderThickness="0,0,1,1" Grid.Column="1" Grid.Row="1" Background="White" Padding="10,0,0,0">
                                <TextBox Text="{Binding Uduty,Mode=TwoWay}" Style="{StaticResource TextBoxInfo}" Name="txtDuty"/>
                            </Border>
                            <Border BorderBrush="#C7DAE9" BorderThickness="0,0,1,1" Grid.Column="2" Grid.Row="1" Background="White" Padding="0,0,5,0">
                                <TextBlock Text="生日:" Style="{StaticResource TextBlockInfo}"/>
                            </Border>
                            <Border BorderBrush="#C7DAE9" BorderThickness="0,0,1,1" Grid.Column="3" Grid.Row="1" Background="White" Padding="10,0,0,0">
                                <TextBox Text="{Binding Ubirthday,Mode=TwoWay}" Style="{StaticResource TextBoxInfo}" Name="txtBirthday"/>
                            </Border>

  • 相关阅读:
    mysql的主从复制是如何实现的
    Innodb的索引
    PHP 五大运行模式
    nginx 与PHP之间是怎么交互的? Nginx与PHP通信的两种方式 unix socket和tcp socket
    识别身份证中的籍贯、出生年月、性别-http://www.cnblogs.com/huxj/archive/2010/08/01/1789843.html转!
    mysql大数据分表后查询
    19. HTTP协议二:HTTP请求与响应、常见状态码
    18. HTTP协议一:概述、原理、版本、请求方法
    17. 接口定义
    16. Django基础数据访问
  • 原文地址:https://www.cnblogs.com/iwangjun/p/2381138.html
Copyright © 2011-2022 走看看