MSDN 解释连接:https://msdn.microsoft.com/zh-cn/library/system.eventargs.aspx#inheritanceContinued[SerializableAttribute] [ComVisibleAttribute(true)] public class EventArgs 属性改变事件PropertyChangingEventArgs…
如何在WP8中进行数据存储,你首先想到应该是独立存储,但是独立存储似乎存储文件更方便,如果我们希望像处理对象的形式,该怎么办呢,答案就是Sql Server CE. Sql Server CE并不是新鲜东西,它是专门用在移动端的一个工具,它和SQLServer有很大的不同,SQLServer中我们使用Sql语句,而Sql Server CE则要使用Linq处理. 一.创建表 /// <summary> /// 员工表 /// </summary> [Table] class Emp…
员工信息表 EmployeeTable.cs using System.Data.Linq.Mapping; using System.ComponentModel; namespace SQLServerDemo { [Table] public class EmployeeTable : INotifyPropertyChanged, INotifyPropertyChanging { // 定义员工表独立增长ID,设置为主键 private int _employeeId; [Column…
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication15 { class Program { static void Main(string[] args) { Monitor m = new Monitor(); m.PropertyChanging += new Monitor.EventHandler(m_Prope…