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