摘要: C#类库添加System.Drawing引用时,选择程序集 -> 框架 -> 再搜索对应的库,添加引用就可以了。不要在COM中搜索。 阅读全文
posted @ 2024-10-21 20:34 Shepherd_Over 阅读(29) 评论(0) 推荐(0) 编辑
摘要: <TextBox Text="{Binding Text}" /> partial class MainViewModel : ObservableObject { [ObservableProperty] string text; } 如上所示,TextBox 绑定了 Mvvm中的Text属性,但 阅读全文
posted @ 2024-01-09 01:34 Shepherd_Over 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 在WPF中若要实现文件拖动,需要注册以下两个事件: PreviewDragOver Drop 注意:TextBox注册DragOver事件可能无法实现文件拖动事件 public class TextBoxDropBehavior : Behavior<TextBox> { protected ove 阅读全文
posted @ 2024-01-07 17:09 Shepherd_Over 阅读(34) 评论(0) 推荐(0) 编辑