嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 1 元微信扫码支付:1 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
异步UI更新,进度条显示,滑动文本框,日志文件读写
自己的小项目中这几个小东西在其他项目中应该也会用到,
里面所有的ui更新都是异步更新的,不到导致程序看起来不流畅,文本框的几个属性配置一下就可以达到文本追加,焦点在最新行,还是挺不错的
大家按照需要从代码中copy就行
.
├── BuildEnv
│ ├── App.config
│ ├── BuildEnv.csproj
│ ├── BuildEnv.sln
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BuildEnv.exe
│ │ │ ├── BuildEnv.exe.config
│ │ │ ├── BuildEnv.pdb
│ │ │ ├── SunnyUI.Common.dll
│ │ │ ├── SunnyUI.dll
│ │ │ ├── config.txt
│ │ │ └── log.txt
│ │ └── Release
│ ├── obj
│ │ └── Debug
│ │ ├── BuildEnv.Properties.Resources.resources
│ │ ├── BuildEnv.csproj.AssemblyReference.cache
│ │ ├── BuildEnv.csproj.CopyComplete
│ │ ├── BuildEnv.csproj.CoreCompileInputs.cache
│ │ ├── BuildEnv.csproj.FileListAbsolute.txt
│ │ ├── BuildEnv.csproj.GenerateResource.cache
│ │ ├── BuildEnv.exe
│ │ ├── BuildEnv.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── packages
│ │ ├── SunnyUI.3.5.2
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── SunnyUI.3.5.2.nupkg
│ │ │ ├── SunnyUI.png
│ │ │ └── lib
│ │ │ ├── net40
│ │ │ │ └── SunnyUI.dll
│ │ │ ├── net472
│ │ │ │ └── SunnyUI.dll
│ │ │ ├── net6.0-windows7.0
│ │ │ │ └── SunnyUI.dll
│ │ │ ├── net7.0-windows7.0
│ │ │ │ └── SunnyUI.dll
│ │ │ └── net8.0-windows7.0
│ │ │ └── SunnyUI.dll
│ │ └── SunnyUI.Common.3.5.1
│ │ ├── README.md
│ │ ├── SunnyUI.Common.3.5.1.nupkg
│ │ ├── SunnyUI.png
│ │ └── lib
│ │ ├── net40
│ │ │ └── SunnyUI.Common.dll
│ │ ├── net472
│ │ │ └── SunnyUI.Common.dll
│ │ ├── net6.0
│ │ │ └── SunnyUI.Common.dll
│ │ ├── net7.0
│ │ │ └── SunnyUI.Common.dll
│ │ └── net8.0
│ │ └── SunnyUI.Common.dll
│ └── packages.config
└── C#异步UI更新,进度条显示,滑动文本框,日志文件读写_BuildEnv.rar
23 directories, 47 files