个人常用C#及NET框架分享

文章目录

  • UI界面/图标框架
    • MahApps.Metro
    • MahApps.Metro.IconPacks
    • MahApps.Metro.SimpleChildWindow
    • Extended WPF Toolkit
    • ReoGrid
  • MVVM框架
    • PropertyChanged.Fody
    • CommunityToolkit.Mvvm
    • MvvmCross
    • MvvmLight(项目已经停止维护)
  • 数据库
    • LiteDB
    • FileDB
  • ORM框架
    • Chloe
    • SqlSugar
  • JSON/YAML/INI/HTML解析框架
    • HtmlAgilityPack
    • IniFile.NET
    • ini-parser
    • SharpYaml
    • Newtonsoft.Json
  • 日志框架
    • NLog
    • Serilog
  • 压缩解压缩
    • SharpZipLib
  • Socket通信
    • SuperSocket
    • TouchSocket
  • 作业调度框架
    • FluentScheduler
    • Quartz.NET
  • Office相关
    • NPOI
    • PDFsharp
    • iTextSharp
    • MoonPdfLib
    • QuestPDF
  • IOC容器
    • Autofac
    • DryIoc
  • 图像处理
    • ImageSharp
  • API接口
    • RestSharp
    • Flurl.Http
    • Knife4jUI
    • Swagger、ReDoc
  • 其它
    • QRCoder
    • BarcodeLib
    • WmiLight
    • WPFMediaKit
    • Prism
    • Downloader
    • Costura.Fody
    • SharpCifs.Std
    • FluentFTP

UI界面/图标框架

MahApps.Metro

地址:https://github.com/MahApps/MahApps.Metro

MahApps.Metro.IconPacks

地址:https://github.com/MahApps/MahApps.Metro.IconPacks

MahApps.Metro.SimpleChildWindow

地址:https://github.com/punker76/MahApps.Metro.SimpleChildWindow

Extended WPF Toolkit

地址:https://github.com/xceedsoftware/wpftoolkit

ReoGrid

WPF Excel表格控件
地址:https://github.com/unvell/ReoGrid

MVVM框架

PropertyChanged.Fody

地址:https://github.com/Fody/PropertyChanged

CommunityToolkit.Mvvm

地址:https://github.com/CommunityToolkit/dotnet

MvvmCross

地址:https://github.com/MvvmCross/MvvmCross

MvvmLight(项目已经停止维护)

地址:https://github.com/lbugnion/mvvmlight

数据库

LiteDB

.NET NoSQL嵌入式数据库
地址:https://github.com/mbdavid/LiteDB

FileDB

可以使用单个存档文件作为磁盘上的容器来存储、检索和删除文件
地址:https://github.com/mbdavid/FileDB

ORM框架

Chloe

地址:https://github.com/shuxinqin/Chloe
支持数据库:SqlServer、MySql、Oracle、SQLite、PostgreSQL

SqlSugar

地址:https://github.com/DotNetNext/SqlSugar

JSON/YAML/INI/HTML解析框架

HtmlAgilityPack

地址:https://github.com/zzzprojects/html-agility-pack

IniFile.NET

地址:https://github.com/JeevanJames/IniFile

ini-parser

地址:https://github.com/rickyah/ini-parser

SharpYaml

地址:https://github.com/xoofx/SharpYaml

Newtonsoft.Json

地址:https://www.newtonsoft.com/json

日志框架

NLog

地址:https://github.com/NLog/NLog

Serilog

地址:https://github.com/serilog/serilog

压缩解压缩

SharpZipLib

地址:https://github.com/icsharpcode/SharpZipLib

Socket通信

SuperSocket

地址:https://github.com/kerryjiang/SuperSocket

TouchSocket

地址:https://github.com/RRQM/TouchSocket

作业调度框架

FluentScheduler

地址:https://github.com/fluentscheduler/FluentScheduler

Quartz.NET

地址:https://github.com/quartznet/quartznet

Office相关

NPOI

地址:https://github.com/nissl-lab/npoi

PDFsharp

地址:https://github.com/empira/PDFsharp

iTextSharp

地址:https://github.com/itext/itextsharp

MoonPdfLib

WPF PDF文件查看控件
地址:https://github.com/reliak/moonpdf

QuestPDF

使用Fluent API生成PDF
地址:https://www.questpdf.com/

IOC容器

Autofac

地址:https://github.com/autofac/Autofac

DryIoc

地址:https://github.com/dadhi/DryIoc

图像处理

ImageSharp

地址:https://github.com/SixLabors/ImageSharp

API接口

RestSharp

地址:https://github.com/restsharp/RestSharp

Flurl.Http

地址:https://github.com/tmenier/Flurl

Knife4jUI

OpenAPI接口调试UI
地址:https://github.com/luoyunchong/IGeekFan.AspNetCore.Knife4jUI

Swagger、ReDoc

生成OpenAPI接口、Doc文档
地址:https://github.com/domaindrivendev/Swashbuckle.AspNetCore

其它

QRCoder

二维码
地址:https://github.com/codebude/QRCoder/

BarcodeLib

条形码
地址:https://github.com/barnhill/barcodelib

WmiLight

WMI查询
地址:https://github.com/MartinKuschnik/WmiLight

WPFMediaKit

摄像头获取
地址:https://github.com/Sascha-L/WPF-MediaKit

Prism

地址:https://github.com/PrismLibrary/Prism

Downloader

下载器
地址:https://github.com/bezzad/Downloader

Costura.Fody

将依赖项嵌入为资源
可以将dll打包进exe中
地址:https://github.com/Fody/Costura

SharpCifs.Std

访问SMB协议
地址:https://github.com/ume05rw/SharpCifs.Std

FluentFTP

地址:https://github.com/robinrodricks/FluentFTP

你可能感兴趣的:(C#,c#,框架)