【例子介绍】(C#) 玻璃效果按钮
一个很好仿照Vista 系统的按钮,玻璃效果,很漂亮。内含源代码(C#)。
【相关图片】
【源码结构】
.
├── (C#) 玻璃效果按钮_VistaButton.rar
└── VistaButton
├── VistButtonDemo
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── VistButtonDemo.csproj
│ ├── bin
│ │ ├── Debug
│ │ └── Release
│ │ ├── VistButtonDemo.exe
│ │ ├── VistButtonDemo.pdb
│ │ ├── VistButtonDemo.vshost.exe
│ │ ├── VistButtonDemo.vshost.exe.manifest
│ │ ├── VistaButton.dll
│ │ └── VistaButton.pdb
│ └── obj
│ ├── Debug
│ │ └── TempPE
│ └── Release
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── VistButtonDemo.Form1.resources
│ ├── VistButtonDemo.Properties.Resources.resources
│ ├── VistButtonDemo.csproj.FileListAbsolute.txt
│ ├── VistButtonDemo.csproj.GenerateResource.Cache
│ ├── VistButtonDemo.exe
│ └── VistButtonDemo.pdb
├── VistaButton
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── VistaButton.cs
│ ├── VistaButton.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── VistaButton.dll
│ │ │ └── VistaButton.pdb
│ │ └── Release
│ │ ├── VistaButton.dll
│ │ └── VistaButton.pdb
│ └── obj
│ ├── Debug
│ │ ├── TempPE
│ │ ├── VistaButton.csproj.FileListAbsolute.txt
│ │ ├── VistaButton.dll
│ │ └── VistaButton.pdb
│ └── Release
│ ├── TempPE
│ ├── VistaButton.csproj.FileListAbsolute.txt
│ ├── VistaButton.dll
│ └── VistaButton.pdb
├── VistaButton.sln
└── VistaButton.suo
21 directories, 39 files
评论