摘要:
BindingOperations.SetBinding(TabItem,HeaderProperty,new Binding("HeadContent"));三个参数, 1,控件对象,2控件对象要绑定的属性,3绑定源 阅读全文
摘要:
public class DelegateCommand : ICommand { Func canExecute; Action executeAction; bool canExecuteCache; #region 构造函数 ... 阅读全文