摘要:
Dynamic object provides a base class for specifying dynamic behavior at runtime. public class DynamicObjectInvoker:DynamicObject { public override boo 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threadin 阅读全文
摘要:
[DebuggerDisplay("Student:Id={StuId},Name={StuName}")] public class Student { public int StuId { get; set; } public string StuName { get; set; } } Gen 阅读全文
摘要:
public class MsgBox : System.Windows.Forms.Form { Label bodyLabel = new Label(); Button yesBtn = new Button(); Button noBtn = new Button(); public Msg 阅读全文
摘要:
1.New Wpf project; 2.Add New Wpf Window named SubWindow; 3.Set global vairable via App.Current.Properties[objKey]=objValue in MainWindow constructor. 阅读全文
摘要:
While when DataGridComboBoxColumn binding to a class collection,for example it will bind to class country which has CountryName and CountryCode proper 阅读全文