• 【Windows Universal Platform】只是学习笔记


    我是初学,之前没有windows/windows phone的应用开发经验;开博的目的只是记录和督促自己学习。

    心血来潮也好,或是个人喜好的原因,想学着自己开发APP了(PS:以前做过web 开发)

    本来如果要学APP开发,第一选择是IOS平台。可谁让我是软粉呢,以前也是做.net的。话说自家的“武功”尚未学到家,也不好意思贪别人家的武功秘籍了(见:天龙八部)

    我不擅长码字,所以废话就不多说了,最后说一句:这只是我个人的学习笔记。

    试试XAML

    在页面上加一个按钮(Button):

    <Button Content="普通按钮"></Button>

    也可以这么写,一样一样的:

    <Button>
        <Button.Content>普通按钮</Button.Content>
    </Button>

    再加个颜色,你懂的:

    <Button Background="Black">
        <Button.Content>普通按钮</Button.Content>
        <Button.Foreground>White</Button.Foreground>
    </Button>

     再来个“下拉选择":

    <ComboBox HorizontalAlignment="Center" Margin="0 100 0 0">
        <ComboBoxItem Content="Select item" IsSelected="True"></ComboBoxItem>
        <ComboBoxItem Content="Item 1"></ComboBoxItem>
        <ComboBoxItem Content="Item 2"></ComboBoxItem>
    </ComboBox>

    注意,这里是省略了 <ComboBox.Items>,因为可以省略所以省略了(哪那么多为什么!)

    不省略是这样的

    <ComboBox HorizontalAlignment="Center" Margin="0 100 0 0">
        <ComboBox.Items>
            <ComboBoxItem Content="Select item" IsSelected="True"></ComboBoxItem>
            <ComboBoxItem Content="Item 1"></ComboBoxItem>
            <ComboBoxItem Content="Item 2"></ComboBoxItem>
        </ComboBox.Items>
    </ComboBox>

    下回见:标记扩展

    1. Binding

    2. StaticResource

    3. TemplateBinding

    4. RelativeSource

  • 相关阅读:
    2016年10月30日表单标签与样式表分类和选择器
    2016年10月29日常用标签与表格
    2016年10月28日网页属性和通用标签
    10月27日体会目标
    字符串学习笔记
    [51nod1789] 跑得比谁都快
    [洛谷9月月赛]签到题
    [LUOGU2730] 魔板
    [SCOI2009]迷路
    [51nod1074] 约瑟夫问题 V2
  • 原文地址:https://www.cnblogs.com/lifeonfoot/p/4718789.html
Copyright © 2020-2023  润新知