- 博客(2647)
- 资源 (6)
- 收藏
- 关注
原创 C# 建造者模式链式编程
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace BuilderPatternLink{ internal class Program { static void Main(string[] args) { IBuilder bui.
2022-05-14 11:53:33
337
原创 C# 最终版单例模式
public class Sigleton<T> where T : class { public static Lazy<Sigleton<T>> _sigleton = new Lazy<Sigleton<T>>(()=>(Sigleton<T>)Activator.CreateInstance(typeof(T))); protected Sigleton() ...
2022-05-14 11:52:46
203
转载 C# 读写INI配置文件
[DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);[DllImport("kernel32")]private static extern int GetPrivateProfileString(string section, string key, string def, Strin.
2022-05-09 19:24:43
935
原创 C# BlockingCollection的用法
using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;nam.
2022-04-23 17:16:32
667
1
转载 远程访问sql server
1确保服务器端数据库服务已经启动 开始->所有程序->Microsoft SQL Server 2008->Configutation Tools,打开SQL Server Configuration Manager,点击SQL Server Services,查看数据库服务是否已经启动,如果服务未开启,手动启动它。2 在SQL Server Configuration中启用TCP/IP 多个SQL Server服务器之间通过网络相互通信是需要TCP/IP支持的,为.
2022-04-23 17:15:12
1034
原创 wpf 自定义绘图元素
1 新建wpf项目2 新建wpf UserControl类库3 在类库中新建类,继承于FrameworkElementusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Input;using System.Windows.Med
2022-04-18 06:20:45
384
原创 wpf 自定义面板
1 新建wpf项目2 新建wpf UserControl类库using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Controls;namespace CustomControl{ public class WrapBrea
2022-04-18 06:04:39
374
原创 wpf 无外观控件添加状态转换
1 新建wpf项目2 新建wpf UserControl类库3 在类库中添加类,设置重写默认样式,添加部件和模板可视化状态声明using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Controls;using System.Wind
2022-04-18 05:26:18
437
原创 wpf 无外观控件通过重写OnApplyTemplate进行代码绑定,减少模板绑定代码
1 新建wpf项目2 新建wpf UserControl类库using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Controls;using System.Windows.Controls.Primitives;using Syst
2022-04-17 21:56:47
1337
原创 wpf 创建无外观应用程序并应用默认控件模板
1 新建wpf应用程序2 新建wpf UserControl类库,并新建类,继承Control,这里的代码基本都是从有外观的UserControl里面拷贝过来的,只是在静态构造函数中添加了覆盖默认样式的代码DefaultStyleKeyProperty.OverrideMetadata(typeof(ColorPicker), new FrameworkPropertyMetadata(typeof(ColorPicker)));using System;using System.Coll.
2022-04-17 21:35:00
365
原创 wpf 给UserControl添加依赖属性,事件和命令
1新建wpf项目2新建wpf UserControl库<UserControl x:Class="CustomControl.ColorPickerUserControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x
2022-04-17 20:48:09
2394
原创 wpf 创建简单无外观控件
1 新建wpf项目2 新建wpf用户控件库3 添加普通类,让其继承于Control类,添加两个依赖属性Text和IsEnable,并在静态构造函数中,调用DefaultStyleKeyProperty.OverrideMetadata方法using System;using System.Collections.Generic;using System.Text;using System.Windows;using System.Windows.Controls;namespace
2022-04-17 15:43:37
474
原创 wpf 给UserControl添加依赖属性
1 新建wpf项目2 新建wpf 用户控件库3 新建MyTextUC,为其添加两个依赖属性,Text和Color,注意前端设置属性是string类型,wpf自带的转换器只能将string转换成color,但无法转换成Brush,所以需要添加ColorToBrush转换器<UserControl x:Class="CustomControls.MyTextUC" xmlns="http://schemas.microsoft.com/winfx/2006/xaml
2022-04-17 10:02:03
1316
转载 win10永久关闭自动更新方法
方法一:1、在键盘上按「win+R」键。2、输入services.msc点击「确定」。3、找到windows update选项,双击「Windows Update」。4、启动类型选择「禁用」。5、点击「恢复」,第一次失败处选择「无操作」,然后点击「应用」、「确定」。6、在键盘上按「win+R」键,输入gpedit.msc点击「确定」。7、依此选择「计算机配置」、「管理模板」、「Windows组件」双击「Windows更新」。8、找到"配置自动更
2022-04-15 11:08:11
2435
转载 wcf DataMember上的属性设置
1 , 一般时候WCF通过复杂类型传递数据时,复杂类上面加上DataContract属性(Attribute),属性名内部有很多关于序列化,标记,重命名等设定。类的属性(Property)也会有其对应的属性(Attribute) DataMember ,大家千万不要忽视DataMember的IsRequired设定,此设定在属性(Property)类型为String时,没有任何异常,一旦出现Integer,Decimal类型时,如果不把IsRequired设定为True,则WCF则无法取得值,将永远返回初始
2022-04-14 11:25:19
270
原创 verilog mux2_1
module mux2_1{ input wire in_1, input wire in_2, input wire sel, output reg out);always@(*) if (sel==1'b1) out=in_2; else out=in_1; endmodule
2022-03-28 08:33:52
810
原创 C# 十六进制字符串转换成有符号整数
第一种方法:两个十六进制字符串紧紧并在一起,用short.parse获得数值using System;namespace ConsoleApp2{ class Program { static void Main(string[] args) { string str = "8415"; short num = short.Parse(str, System.Globalization.NumberS
2022-03-25 13:56:55
3194
1
原创 C++ TRACE输出double类型数据
for (size_t i = 0; i < rampNpts; i++) { CString str; str.Format("%1f", Ramp[i]); TRACE("%s\n",str); }
2022-03-22 16:22:25
1243
原创 wpf 通过绑定实现直方图(柱状图)
1 新建wpf应用2 新建MainViewModelusing System;using System.Collections.Generic;using System.Collections.ObjectModel;using System.ComponentModel;using System.Text;using System.Threading.Tasks;using System.Windows;namespace WpfApp5{ public class M
2022-03-13 21:41:46
1327
原创 wpf 通过附加属性实现绑定显示直线图
1 新建wpf应用2 新建MainViewModel类using System;using System.Collections.Generic;using System.Collections.ObjectModel;using System.ComponentModel;using System.Text;using System.Threading.Tasks;using System.Windows;namespace WpfApp5{ public class
2022-03-13 21:25:11
746
原创 wpf 通过全局对象将子窗体的数据绑定到主ViewModel获得的监控数据
1 新建wpf应用2 新建Base,Views,ViewModels,Models文件夹3 在Base下面新建CommandBase类using System;using System.Collections.Generic;using System.Text;using System.Windows.Input;namespace WpfApp4.Base{ public class CommandBase : ICommand { public.
2022-03-09 21:11:28
947
原创 wpf 子窗口如何通过相对资源查找绑定到主窗口ViewModel的数据(比如实时监控数据)
1 新建wpf应用2 新建Base,Views,ViewModels,Models文件夹3 在Base下面新建CommandBase类using System;using System.Collections.Generic;using System.Text;using System.Windows.Input;namespace WpfApp4.Base{ public class CommandBase : ICommand { public
2022-03-09 20:58:17
1126
原创 wpf 通过InvokeCommandAction来绑定Command
1 新建wpf程序,通过nuget添加Microsoft.Xaml.Behaviors库2 创建Base ViewModels文件夹3 在Base里面创建CommandBase类using System;using System.Collections.Generic;using System.Text;using System.Windows.Input;namespace WpfApp3.Base{ public class CommandBase : ICommand
2022-03-08 21:33:56
2057
原创 wpf 通过CallMethodAction来调用ViewModel里面的事件方法
1 新建wpf应用2 通过nuget导入Microsoft.xaml.Behaviors库3 新建ViewModels文件夹,并创建MainViewModel类using System;using System.Collections.Generic;using System.Text;using System.Windows.Input;using WpfApp3.Base;namespace WpfApp3.ViewModels{ public class M
2022-03-08 21:11:09
1407
原创 wpf 通过MouseBinding来设置Command绑定
1 新建wpf应用2 新建Base,ViewModels文件夹3 在Base文件夹里面新建CommandBase类using System;using System.Collections.Generic;using System.Text;using System.Windows.Input;namespace WpfApp3.Base{ public class CommandBase : ICommand { public event Even
2022-03-08 20:53:25
1823
2
原创 C#正则表达式
匹配整数的一种表达式:Regex.IsMatch(inputerstr, "^([0-9]{1,})$") //网上的Regex.IsMatch(inputerstr, @"^(\d+)$") //自己的匹配小数格式的表达式:Regex.IsMatch(inputerstr, "^([0-9]{1,}[.][0-9]*)$")Regex.IsMatch(inputerstr, @"^\d+[.]\d*)$")匹配负数格式的表达式:Regex regex = new Regex(@"^
2022-03-07 19:17:52
576
原创 wpf 在MVVM中使用IOC思想通过注册窗体的方法实现在ViewModel里面打开其他窗口的方法
1 新建wpf应用2 新建Views Models ViewModels文件夹3 新建Base文件夹,添加CommandBase类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Input;namespace WpfApp1.Base{ public cla
2022-03-07 15:52:11
640
原创 wpf 在MVVM中使用IOC思想通过注册窗体的方法实现在ViewModel里面打开其他窗口的方法
理论:在MVVM中,View通过添加ViewModel的引用来指定DataContext,也就是View可以引用ViewModel,但ViewModel不可以引用View,而ViewModel在实现逻辑过程中如果需要访问其他的窗体该怎么办呢,比如打开一个对话框,这里通过IOC思想来解决该问题。1 新建wpf应用2 新建Views,Models,ViewModels文件夹3 新建Base文件夹,在其里面添加CommandBase类using System;using System.Coll
2022-03-07 15:34:15
2658
原创 WPF MVVM Command的简单使用
1 新建wpf应用2 新建Views,Models,ViewModels文件夹3 新建Base文件夹,并在其里面新建CommandBase类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Input;namespace WpfApp1.Base{ publi
2022-03-07 15:11:48
785
原创 wpf MVVM的一个好处解释
1 新建wpf应用2 新建Views,Models,ViewModels文件夹3 在Models新建MainModel类using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Threading.Tasks;namespace WpfApp1.Models{ public class
2022-03-07 14:57:30
145
ASP.NET MVC 5高级编程 第5版(中文版带书签)
2018-07-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人