10 2020 档案
摘要:报错 未能加载文件或程序集“XXXXXX”或它的某一个依赖项。试图加载格式不正确的程序。 实际上是因为引用了32位的类库,故将WCF项目生成的目标平台改为32位(x86),然后启动调试时报错: System.BadImageFormatException: 未能加载文件或程序集“”或它的某一个依赖项
阅读全文
摘要:效果如图 数据结构 public class DisplayViewModel { public string Name { get; set; } public List<DisplayViewModel> Children { get; set; } } 前端TreeView通过ItemTemp
阅读全文
摘要:本文讲述,当弹窗样式固定,表单与提交按钮不在同一个文件下时,如何控制提交按钮是否可用 比如自定义内容的弹窗就是这种情况 此时,我们希望无论自定义内容是什么,它都可以控制弹窗Window的提交按钮 效果如图 这里的内容和弹窗是分隔开的 该文章基于WPF 验证表单方法1,在前文中讲述的内容不再赘述 首先
阅读全文
摘要:示例来自How to disable a Button on TextBox ValidationErrors in WPF 效果如图 继承ValidationRule实现验证类 public class OverThirteenValidationRule : ValidationRule { p
阅读全文
摘要:效果如图 验证表单的关键是使用ValidationRule,官方资料:ValidationRule 类、How to: Implement Binding Validation 继承ValidationRule实现验证类 public class LengLimitValidationRule: V
阅读全文