基本信息
源码名称:C# Winfrom 幸运大抽奖引用Cskin
源码大小:11.76M
文件格式:.7z
开发语言:C#
更新时间:2023-05-07
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

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

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

C# Winfrom 幸运大抽奖引用Cskin


.
├── Lottery
│   ├── App.config
│   ├── Lottery.csproj
│   ├── Main.Designer.cs
│   ├── Main.cs
│   ├── Main.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Resources
│   │   ├── 背景.jpg
│   │   └── 抽奖l.jpg
│   ├── bin
│   │   ├── Debug
│   │   ├── Release
│   │   └── x64
│   │       └── Debug
│   │           ├── CSkin.dll
│   │           ├── CSkin.xml
│   │           ├── Excel
│   │           │   ├── userinfo.xlsx
│   │           │   └── 奖品.xlsx
│   │           ├── Lottery.Common.dll
│   │           ├── Lottery.Common.pdb
│   │           ├── Lottery.exe
│   │           ├── Lottery.exe.config
│   │           ├── Lottery.pdb
│   │           ├── MiniExcel.dll
│   │           ├── config
│   │           │   ├── 抽奖.txt
│   │           │   └── 人员名单.xlsx
│   │           └── img
│   │               ├── 背景.jpg
│   │               ├── 一等奖.png
│   │               ├── 三等奖.png
│   │               ├── 二等奖.png
│   │               └── 特等奖.png
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── Lottery.csproj.AssemblyReference.cache
│   │   │   └── TempPE
│   │   └── x64
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── Lottery.Main.resources
│   │           ├── Lottery.Properties.Resources.resources
│   │           ├── Lottery.csproj.AssemblyReference.cache
│   │           ├── Lottery.csproj.CopyComplete
│   │           ├── Lottery.csproj.CoreCompileInputs.cache
│   │           ├── Lottery.csproj.FileListAbsolute.txt
│   │           ├── Lottery.csproj.GenerateResource.cache
│   │           ├── Lottery.csproj.SuggestedBindingRedirects.cache
│   │           ├── Lottery.exe
│   │           ├── Lottery.pdb
│   │           ├── TempPE
│   │           │   └── Properties.Resources.Designer.cs.dll
│   │           └── _IsIncrementalBuild
│   └── packages.config
├── Lottery.Common
│   ├── ExcelHelper.cs
│   ├── GetNameHelper.cs
│   ├── Lottery.Common.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Lottery.Common.dll
│   │   │   ├── Lottery.Common.pdb
│   │   │   └── MiniExcel.dll
│   │   └── Release
│   ├── entity
│   │   ├── PrizeInfo.cs
│   │   └── UserInfo.cs
│   ├── obj
│   │   └── Debug
│   │       ├── DesignTimeResolveAssemblyReferences.cache
│   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       ├── Lottery.Common.csproj.AssemblyReference.cache
│   │       ├── Lottery.Common.csproj.CopyComplete
│   │       ├── Lottery.Common.csproj.CoreCompileInputs.cache
│   │       ├── Lottery.Common.csproj.FileListAbsolute.txt
│   │       ├── Lottery.Common.dll
│   │       ├── Lottery.Common.pdb
│   │       ├── TempPE
│   │       └── _IsIncrementalBuild
│   └── packages.config
├── Lottery.sln
├── LotteryConsoleApp
│   ├── App.config
│   ├── LotteryConsoleApp.csproj
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │       ├── Excel
│   │       │   └── userinfo.xlsx
│   │       ├── Lottery.Common.dll
│   │       ├── Lottery.Common.pdb
│   │       ├── LotteryConsoleApp.exe
│   │       ├── LotteryConsoleApp.exe.config
│   │       ├── LotteryConsoleApp.pdb
│   │       └── MiniExcel.dll
│   └── obj
│       └── Debug
│           ├── DesignTimeResolveAssemblyReferencesInput.cache
│           ├── LotteryConsoleApp.csproj.AssemblyReference.cache
│           ├── LotteryConsoleApp.csproj.CopyComplete
│           ├── LotteryConsoleApp.csproj.CoreCompileInputs.cache
│           ├── LotteryConsoleApp.csproj.FileListAbsolute.txt
│           ├── LotteryConsoleApp.csproj.SuggestedBindingRedirects.cache
│           ├── LotteryConsoleApp.exe
│           ├── LotteryConsoleApp.pdb
│           ├── TempPE
│           └── _IsIncrementalBuild
├── packages
│   ├── CSkin.NET.16.1.14.4
│   │   ├── CSkin.NET.16.1.14.4.nupkg
│   │   └── lib
│   │       ├── icon.png
│   │       ├── license.txt
│   │       ├── net20
│   │       │   ├── CSkin.XML
│   │       │   └── CSkin.dll
│   │       ├── net40
│   │       │   ├── CSkin.XML
│   │       │   └── CSkin.dll
│   │       └── readme.md
│   └── MiniExcel.1.30.0
│       ├── MiniExcel.1.30.0.nupkg
│       ├── icon.png
│       └── lib
│           ├── net45
│           │   └── MiniExcel.dll
│           └── netstandard2.0
│               └── MiniExcel.dll
└── 好例子网_Lottery (1).7z

43 directories, 100 files