zoukankan      html  css  js  c++  java
  • wpf 新特性 1 GIS

     class Book {
    public string Name { get; set; }
    public string Author { get; set; }
    public decimal Price { get; set; }
    public int YearPublished { get; set; }
    }
    平平淡淡才是真(1020684770)  9:02:02
    <Button FontSize="20">
    <local:Book Name="Windows Internals"
    Author="Mark Russinovich" Price="40"
    YearPublished="2009" />
    </Button>
    wpf 4.5 的新特性
     给book 类重写tostring() 
    public override string ToString() {
    return string.Format("{0} by {1}\nPublished {2}", Name,
    Author, YearPublished);
    }
  • 相关阅读:
    optparse--强大的命令行参数处理包
    B/S和C/S架构的区别
    Document
    Document
    Document
    Document
    Document
    Document
    Document
    Document
  • 原文地址:https://www.cnblogs.com/gisbeginner/p/2795671.html
Copyright © 2011-2022 走看看