zoukankan      html  css  js  c++  java
  • Silverlight地图


    上面的线路是代码添加的。想实现动画的效果。可惜没搞出来啊。像火炬路线图那样源码下载,该程序参照silverlightairlines

    using System;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Documents;
    using System.Windows.Ink;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Animation;
    using System.Windows.Shapes;
    using System.Collections.Generic;

    namespace slChinaMapWeb
    {
        public class City
        {
            public City(string name, Point point)
            {
                _name = name;
                _point = point;
            }
            string _name;
            public string Name
            {
                get { return _name; }
                set { _name = value; }
            }
            public int ID { get; set; }
            Point _point;
            public Point Point
            {
                get {  return _point; }
            }
            public Point OffsetCumulative
            {
                get {
                    Point p = new Point();
                    p.X = _point.X +3;
                    p.Y = _point.Y +4.5;
                    return p;
                }
            }
        }

      
    }



    using System;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Documents;
    using System.Windows.Ink;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Animation;
    using System.Windows.Shapes;

    namespace slChinaMapWeb
    {
        public static class  CityData
        {
            public  static City[] Cities = new City[]
            {
                new City("青海", new Point(210, 250)),
               
                new City("甘肃",  new Point(290, 260)),
                new City("重庆",  new Point(335, 325)),
                new City("四川",  new Point(280, 315)),
                new City("陕西",  new Point(340, 270)),
                new City("云南",  new Point(265, 395)),
                new City("北京",  new Point(410, 185)),
                new City("湖南",  new Point(380, 350)),
                new City("贵州",  new Point(320, 365)),
                new City("广西",  new Point(350, 405)),
                new City("湖北",  new Point(380, 310)),
            };
        }
    }

  • 相关阅读:
    再谈C#装箱和拆箱操作
    C#装箱与拆箱总结
    大话设计模式
    创建ASP.NET Webservice
    Lambada和linq查询数据库的比较
    设置VS2015背景图片(转载)
    windows 下使用Linux 子系统-安装.net core 环境
    .net core 3.1 ef Migrations 使用 CLI 数据迁移及同步
    linq 大数据 sql 查询及分页优化
    数据迁移最快方式,多线程并行执行 Sql插入
  • 原文地址:https://www.cnblogs.com/cuit/p/1210016.html
Copyright © 2011-2022 走看看