zoukankan      html  css  js  c++  java
  • windows phone开发中textbox控件的header属性

    前一段时间看@消失3003的博客,发现了textboxt的header属性。这一属性在编写UI时可以节约不少代码,十分有用。

    之前编写一个如下的微信登陆界面,代码会很长;

    未使用Header属性的UI及代码;

    代码如下;

        <Grid>
            <TextBlock Text="登录" FontSize="20" Margin="0,15,0,600"/>
            <TextBlock Text="微信号/QQ号" FontSize="30" Margin="0,40,0,560"/>
            <TextBlock Text="账号" FontSize="20" Margin=" 20,105,0,500"/>
            <TextBox Text="微信号/手机号/QQ号" Margin=" 20,130,50,450"/>
            <TextBlock Text="密码" FontSize="20" Margin=" 20,190,50,425"/>
            <TextBox Text="请填写密码" Margin=" 20,220,50,380"/>
            <HyperlinkButton Content="忘记密码?" FontSize="20" Foreground="blue"  Margin="20,280,0,320"/>
            <HyperlinkButton Content="创建新账号" FontSize="20" Foreground="blue" Margin="20,318,0,275"/>
        </Grid>

    使用header属性后的UI及代码;

    代码如下

    <Grid >
            <TextBlock Text="登录" FontSize="20" Margin="0,15,0,600"/>
            <TextBlock Text="微信号/QQ号" FontSize="30" Margin="0,40,0,560"/>
            <TextBox Header="账号" Text="微信号/手机号/QQ号" Margin=" 20,130,50,430"/>
            <TextBox Header="密码" Text="请填写密码" Margin=" 20,220,50,350"/>
            <HyperlinkButton Content="忘记密码?" FontSize="20" Foreground="blue"  Margin="20,280,0,320"/>
            <HyperlinkButton Content="创建新账号" FontSize="20" Foreground="blue" Margin="20,318,0,275"/>
        </Grid>

    相比之下节约了两行代码,在textbox和textblock控件比较多的情况下,header属性的优势就会更大。

    微博@马and康

  • 相关阅读:
    算法与数据结构(二):队列
    算法与数据结构(二):链表
    算法与数据结构(一):时间复杂度与空间复杂度
    2018总结与2019规划
    VC++ IPv6的支持
    从项目中学习HTML+CSS
    xampp 中 mysql的相关配置
    yum卸载遇到的问题--待解决
    RHEL 6.5----heartbeat
    RHEL 6.5-----MFS
  • 原文地址:https://www.cnblogs.com/kangma/p/3936886.html
Copyright © 2011-2022 走看看