摘要: 原文来自:MFC그래프 라이브러리, ChartCtrl 마우스 휠 기능 추가 BOOL CChartCtrl::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt) { ScreenToClient(&pt); double MinVal = 0; 阅读全文
posted @ 2024-11-18 15:16 无处不在-超超 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 1 DateFrom.Checked = true; 2 DateFrom.Value = DateTime.Today.AddDays(-7); 3 if (DateFrom.Handle == null) 4 System.Threading.Thread.Sleep(0);//防止 阅读全文
posted @ 2023-12-26 15:39 无处不在-超超 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 要达到的目的: 通过一个属性控制一个按钮是否禁用 当按钮执行费时需任务时,按下禁用按钮,任务完成后自动解除禁用 1. 属性定义 1 [ObservableProperty] 2 [NotifyCanExecuteChangedFor(nameof(SettingParamCommand))]//属性 阅读全文
posted @ 2023-12-22 14:27 无处不在-超超 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1. 项目中引入库 NLog 2. 引入三个文件: WpfRichTextBoxTarget.cs 1 // 2 // Copyright (c) 2004-2011 Jaroslaw Kowalski <jaak@jkowalski.net> 3 // 4 // All rights reserv 阅读全文
posted @ 2023-12-21 10:57 无处不在-超超 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 1 <Ellipse 2 MinWidth="30" 3 MinHeight="30" 4 HorizontalAlignment="Center" 5 VerticalAlignment="Center"> 6 <Ellipse.Style> 7 <Style TargetType="{x:Typ 阅读全文
posted @ 2023-12-20 09:29 无处不在-超超 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1. 属性绑定 private string title; public string Title { get;set; } 可用以下属性方式替换,生成器会自动生成; [ObservableProperty] private string title; 另一种情况:命令 private bool i 阅读全文
posted @ 2023-12-18 15:40 无处不在-超超 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 一、带token 1. 订阅消息 WeakReferenceMessenger.Default.Register<UserMessage, string>(this, "MyToken", (r, m) => {}); 2. 发送消息 WeakReferenceMessenger.Default.S 阅读全文
posted @ 2023-12-18 15:39 无处不在-超超 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 一、手动添加 安装包 Prism.DryIoc app.xaml.cs 修改 继承基类为: PrismApplication实现其中的抽象成员:CreateShell 用于指定启动的窗口类 1 public partial class App : PrismApplication 2 { 3 pro 阅读全文
posted @ 2023-12-04 13:49 无处不在-超超 阅读(889) 评论(0) 推荐(0) 编辑
摘要: 一、静态动态资源 1.资源定义 <Window.Resources> <SolidColorBrush x:Key="SolidColor" Color="Red"/> </Window.Resources> 2.资源使用:动态、静态 <Button Content="button1" Border 阅读全文
posted @ 2023-11-30 14:27 无处不在-超超 阅读(24) 评论(0) 推荐(0) 编辑
摘要: <StackPanel> <TextBox Text="{Binding Name}"/> <TextBox Text="{Binding Title}"/> <Button Height="50" Command="{Binding ShowCommand}"/> </StackPanel> 数据 阅读全文
posted @ 2023-11-29 15:00 无处不在-超超 阅读(18) 评论(0) 推荐(0) 编辑