• (1)构建一个简单的SilverLight程序


    SilverLight是微软的一个产品,和Wpf是同根同生,如果有人说wpf和silverlight是一个东西,抱歉,我表示质疑
    我们开始来构建一个简单的silverlight程序

    首先新建一个项目

    选择Silverlight 应用程序,点击确定,会弹出一个这样的选择框

    我是选择的第一个选项 就是 Asp.net web 应用程序项目

    然后确定

    出现界面

    <UserControl x:Class="demo.MainPage"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d"
        d:DesignHeight="300" d:DesignWidth="400">
    
        <Grid x:Name="LayoutRoot" Background="White">
            <Button Height="40" Width="160" x:Name="fishButton" Content="click" Click="fishButton_Click" Background="Beige"></Button>
        </Grid>
    </UserControl>

    这是xaml代码,

            private void fishButton_Click(object sender, RoutedEventArgs e)
            {
                fishButton.Content = "hello world";
                fishButton.Foreground =new SolidColorBrush( Colors.Green);
            }

    这是事件代码,只是一个demo,没有刻意的去什么mvvm 写vm页面

    编译demo

    会在这里出现一个

    demo.xap

    这个就是生成的文件,编译运行demo.Web,ok,恭喜你完成了第一个demo,

    笔者vs2010环境,silverlight3.0运行

  • 相关阅读:
    laravel5.1框架简介及安装
    数据结构之队列定义及基本操作实现
    PHP之闭包详解
    数据结构之栈定义及基本操作实现
    PHP之MVC微型框架简单搭建
    对web应用中单一入口模式的理解及php实现
    php面向对象编程学习之高级特性
    数据结构之链表定义及基本操作实现
    数据结构之数组定义及基本操作
    感悟
  • 原文地址:https://www.cnblogs.com/fish124423/p/2553583.html
Copyright © 2020-2023  润新知