码迷,mamicode.com
首页 > 其他好文
安装/使用 MVVMLight(转)
安装 MVVMLight Toolkit为什么说是 MVVMLight Toolkit ?实际上我们一般安装的都是 MVVMLight Toolkit ,这个里面包含了工具就是在VS新建工程的时候你会看见有MVVMLight的模板(而使用 NuGet 来直接引用MVVMLight 则没有这些模板之类...
分类:其他好文   时间:2014-10-21 07:47:21    阅读次数:199
使用 MVVMLight 绑定数据(转)
MVVMLight绑定数据示例好了,我们在新建了两个项目,分别是“MVVMLight的主程序” 与 “Model层”,运行的效果及解决方案结构如下:其实很简单,就是绑定了一个数据源而已,编写的代码也不多,下面我们来一步一步的实现使用MVVMLight来绑定数据,并了解其中的细节。如何实现?我这里使用...
分类:其他好文   时间:2014-10-21 07:47:10    阅读次数:170
ESRI ArcGIS Desktop v10.2-ISO 1DVD
Imbsen产品:Imbsen WinFAD v4.0 1CDImbsen WinRECOL v4.0.1 1CD(钢筋混凝土柱分析和设计软件)Imbsen.WinSEISAB.v5.0.7 1CD(桥的地震分析软件)Imbsen XTRACT v3.0.3 1CD DICAD Systeme Gm...
分类:其他好文   时间:2014-10-21 07:47:11    阅读次数:164
Point Grey FlyCapture 实例汇总
ExampleLanguageDescriptionAsyncTriggerExC++Demonstrates some of the basic asynchronous trigger capabilities of compatible PGR Imaging Products.AsyncTr...
分类:其他好文   时间:2014-10-21 06:42:36    阅读次数:220
How to solve the problem : "You have been logged on with a temporary profile"
How to solve the problem : "You have been logged on with a temporary profile"...
分类:其他好文   时间:2014-10-21 05:40:46    阅读次数:140
[Leetcode] Edit Distance
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他好文   时间:2014-10-21 05:43:21    阅读次数:125
【WeChall 】Stegano Challenges:Training: LSB
Topic request: This?is?a?very?simple,?yet?spectacular?trick. Can?you?see?the?hidden?solution? Note:?The?solution?is?bound?to?your?session?ID?and?consists?of?twelve?letters...
分类:其他好文   时间:2014-10-21 04:42:04    阅读次数:1790
【WeChall 】Stegano Challenges:Training: Stegano I
Topic request: This?is?the?most?basic?image?stegano?I?can?think?of 题目提示这是最基础的图片隐藏术,那么一般来说在隐写术中最基础的应该属于在图片中插入信息了。 首先我们需要下载一个winhex,然...
分类:其他好文   时间:2014-10-21 03:39:19    阅读次数:336
LINQ系列:投影操作符
投影是指在将序列中的元素转换为一个自定义形式的操作。投影操作符Select和SelectMany用于选择出赋予了适当功能的值。SelectMany操作符可以处理多个集合。1. Select Select操作符对单个序列或集合中的值进行投影。1>. 原型定义public static IEnum...
分类:其他好文   时间:2014-10-21 03:36:45    阅读次数:178
How do I use a host name to look up an IP address?
The InetAddress class can be used to perform Domain Name Server (DNS) lookups. For example, you can call the static InetAddress.getByName("www.teamcak...
分类:其他好文   时间:2014-10-21 03:34:31    阅读次数:219
[Leetcode] Remove Nth Node From End of List
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:其他好文   时间:2014-10-21 03:34:24    阅读次数:197
[Leetcode] Convert Sorted List to Binary Search Tree
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. 1 /** 2 * Definition for singly-linked ....
分类:其他好文   时间:2014-10-21 03:33:45    阅读次数:168
Rational Rose、PowerDesign、Visio的一些比较
就目前建模软件来说,Rational Rose、PowerDesign、Visio三个是比较常用的系列了,在这里对它们做一些比较,我只用过PowerDesign、Visio和一个跟Rose很像的免费工具StarUML,下面有些内容来自网络,我也找不到源头了,就懒得标注从哪来的,就是网络来的。ROSE...
分类:其他好文   时间:2014-10-21 03:34:34    阅读次数:286
[Xamarin] 几个layout 控件
1.StackLayout? 下面的demo主要是利用反射获取layoutOption所有值,然后为每一个值建一个Label,达到展示LayoutOption的目的,效果图从书上截的,其中StackLayout 是一个布局容器 class?VerticalOptionsDemoPa...
分类:其他好文   时间:2014-10-21 02:31:54    阅读次数:312
Singleton的七种写法
第一种(懒汉,线程不安全): ? Java代码?? public?class?Singleton?{?? ????private?static?Singleton?instance;?? ????private?Singleton?(){}?? ?? ????public?static?Sin...
分类:其他好文   时间:2014-10-21 02:29:47    阅读次数:113
第三章、获取书籍信息
第三章、获取书籍信息 ? 在第一章与第二章中我们将精力集中在了主线程上,介绍了主线程是如何控制一个进度条的显示和消失,并通过解析资源文件在进度条上显示合适的文字。 从这一章节开始,我们会将精力转到子线...
分类:其他好文   时间:2014-10-21 02:32:26    阅读次数:1447
设计模式之观察者模式Observer
Java中的API还提供现成的Observer接口java.util.Observer和类java.util.Observable------------大家可以看一下api和源码下面提供案例packageshejimoshi.observer; importjava.util.Observable; /** *类描述:Product继承自Observable(被观察) *@author王要杰 *@version1.0.8...
分类:其他好文   时间:2014-10-21 02:29:43    阅读次数:195
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!