代码改变世界

随笔档案-2011年12月

Built-in command libraries in WPF

2011-12-29 20:16 by 一一九九, 226 阅读, 收藏,
摘要: Aside from supporting the overall concept of commands, WPF has five built-in libraries of commands. ApplicationCommands this library contains commonly used commands such as Cut, Copy, paste, new,... 阅读全文

Properties Sepcific to RoutedEventArgs

2011-12-29 14:38 by 一一九九, 296 阅读, 收藏,
摘要: Source: the object that raised the event. this is a property you will generally be interested in . it’s useful to note that with routed events this is likely to be different from the sender. Or... 阅读全文

What makes data binding work?

2011-12-25 23:34 by 一一九九, 193 阅读, 收藏,
摘要: The Wpf property system allows properties to paritcipate in data binding, styling, animation, and server other exciting features. A property that is registerd with the wpf property system is called a ... 阅读全文

The property 'Content' is set more than once.

2011-12-25 10:49 by 一一九九, 765 阅读, 收藏,
摘要: 当采用如下的一段代码的时候,会出现报错“ Error 1 The property 'Content' is set more than once. ” 1: <Label Content="First Name" Target="{Binding ElementName=firstname}" Grid.Column="0" Grid.Row="0... 阅读全文

Building up a Layout–WPF Study

2011-12-24 16:02 by 一一九九, 177 阅读, 收藏,
摘要: Following is a list of recommendations to help you in your interface design: begin by using the simplest and most explicti Panel. Do not be afraid to combine multiple panels to achieve the effe... 阅读全文

Tutorial:Function Sepcification-Define The Application

2011-12-06 17:23 by 一一九九, 202 阅读, 收藏,
摘要: The information gathering process is the critical step of any successful functional spec. Just as important as the finished document is the thinking process you have to force yourself through in order... 阅读全文

Tutorial: Functional Specification—Introduction

2011-12-06 16:04 by 一一九九, 465 阅读, 收藏,
摘要: From: http://www.mojofat.com/tutorial/ what is A Functional Sepcification? Functional specifications (functional specs), in the end, are the blueprint for how you want a particular web pr... 阅读全文