基本信息
源码名称:C# 屏幕绘制工具,可以擦除保存撤销,改变颜色,画布等等
源码大小:1.74M
文件格式:.zip
开发语言:C#
更新时间:2023-08-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 10 元 
   源码介绍

C# 屏幕绘制工具,可以擦除保存撤销,改变颜色,画布等等

一个可以让你在屏幕上实时绘制的工具。


用法

The shortcuts that can be used(可用的快捷键):

  • [ Z ] Undo撤销, [ Y ] Redo重做,
  • [ E ] Eraser By Stroke按笔画擦除, [ D ] Eraser By Point按点擦除,
  • [ R ] Release or Recover interface,释放或恢复界面
  • [ ] Increase size brush笔刷变大, [ - ] Decrease size brush笔刷变小
  • [ B ] Brush mode涂鸦模式, [ L ] Line Mode画线模式

功能特色

  • True transparent background (you can draw freely even when you are watching videos).透明背景
  • Select colors by simply clicks.单击选色
  • Adjust the size of brush.笔刷大小可调
  • Draw ink with pressure (when using a pen with pen pressure).支持压力笔
  • Auto smooth ink.自动平滑笔画
  • Mini mode.迷你模式
  • Unlimited undo/redo.无限撤销重做
  • Freely drag the palette.自由拖动调色板
  • Save and load ink to file (binary file) with color.墨迹可存取(附带颜色)
  • Temporarily disable draw then you can be able to operate other windows.暂时禁用绘制,可操作其它窗口
  • Fully animated.

待办事项

  • Edge docking
  • Export as image files 导出为图像文件
  • Mouse penetration 鼠标穿透


.
├── C# 屏幕绘制工具,可以擦除保存撤销,改变颜色,画布等等.zip
└── draw
    ├── Draw.sln
    ├── LiveDraw
    │   ├── App.config
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── CornerRadiusAnimation.cs
    │   ├── Draw.csproj
    │   ├── ExtendControls.cs
    │   ├── IconDataDictionary.xaml
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Rescoures
    │   │   ├── Icon.ico
    │   │   ├── save29.png
    │   │   └── undo6.png
    │   ├── Settings.cs
    │   ├── StrokesHistoryNode.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── LiveDraw.1.0.0.nupkg
    │   │       └── net5.0-windows
    │   │           ├── LiveDraw.deps.json
    │   │           ├── LiveDraw.dll
    │   │           ├── LiveDraw.exe
    │   │           ├── LiveDraw.pdb
    │   │           ├── LiveDraw.runtimeconfig.dev.json
    │   │           ├── LiveDraw.runtimeconfig.json
    │   │           ├── Save
    │   │           │   └── ExitingAutoSave_20230829-095541.fdw
    │   │           └── ref
    │   │               └── LiveDraw.dll
    │   └── obj
    │       ├── Debug
    │       │   ├── LiveDraw.1.0.0.nuspec
    │       │   └── net5.0-windows
    │       │       ├── AntFu7.LiveDraw.Properties.Resources.resources
    │       │       ├── App.baml
    │       │       ├── App.g.cs
    │       │       ├── App.g.i.cs
    │       │       ├── Draw.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── Draw.assets.cache
    │       │       ├── Draw.csproj.AssemblyReference.cache
    │       │       ├── Draw_MarkupCompile.i.cache
    │       │       ├── GeneratedInternalTypeHelper.g.cs
    │       │       ├── GeneratedInternalTypeHelper.g.i.cs
    │       │       ├── IconDataDictionary.baml
    │       │       ├── LiveDraw.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── LiveDraw.assets.cache
    │       │       ├── LiveDraw.csproj.AssemblyReference.cache
    │       │       ├── LiveDraw.csproj.CoreCompileInputs.cache
    │       │       ├── LiveDraw.csproj.FileListAbsolute.txt
    │       │       ├── LiveDraw.csproj.GenerateResource.cache
    │       │       ├── LiveDraw.dll
    │       │       ├── LiveDraw.g.resources
    │       │       ├── LiveDraw.genruntimeconfig.cache
    │       │       ├── LiveDraw.pdb
    │       │       ├── LiveDraw_MarkupCompile.cache
    │       │       ├── LiveDraw_MarkupCompile.i.cache
    │       │       ├── LiveDraw_MarkupCompile.i.lref
    │       │       ├── LiveDraw_MarkupCompile.lref
    │       │       ├── LiveDraw_ospawibe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
    │       │       ├── LiveDraw_ospawibe_wpftmp.assets.cache
    │       │       ├── MainWindow.baml
    │       │       ├── MainWindow.g.cs
    │       │       ├── MainWindow.g.i.cs
    │       │       ├── apphost.exe
    │       │       └── ref
    │       │           └── LiveDraw.dll
    │       ├── Draw.csproj.nuget.dgspec.json
    │       ├── Draw.csproj.nuget.g.props
    │       ├── Draw.csproj.nuget.g.targets
    │       ├── LiveDraw.csproj.nuget.dgspec.json
    │       ├── LiveDraw.csproj.nuget.g.props
    │       ├── LiveDraw.csproj.nuget.g.targets
    │       ├── project.assets.json
    │       └── project.nuget.cache
    └── screenshots
        ├── 00.png
        ├── 01.png
        └── 02.png

14 directories, 74 files