资源简介
仿QQ概念版登陆界面,酷狗魔方,C# winForm .Net 2.0 界面特效 源码。
可以把Winform设计成像WPF一样。
仿QQ概念版登陆界面:云和叶子是动态的。启动和关闭有仿照QQ的渐变透明的动态效果。
酷狗魔方:4个角有淡入淡出效果。
还有其他几个特效例子。
此项目中包含了多个界面设计例子。VS2013。 界面库不开源,如果你需要源码你可以联系我。本项目只用于学习参考,请勿用于非法或商务用途,谢谢合作!

代码片段和文件信息
/********************************************************************
* *
* * 使本项目源码或本项目生成的DLL前请仔细阅读以下协议内容,如果你同意以下协议才能使用本项目所有的功能,
* * 否则如果你违反了以下协议,有可能陷入法律纠纷和赔偿,作者保留追究法律责任的权利。
* *
* * 1、你可以在开发的软件产品中使用和修改本项目的源码和DLL,但是请保留所有相关的版权信息。
* * 2、不能将本项目源码与作者的其他项目整合作为一个单独的软件售卖给他人使用。
* * 3、不能传播本项目的源码和DLL,包括上传到网上、拷贝给他人等方式。
* * 4、以上协议暂时定制,由于还不完善,作者保留以后修改协议的权利。
* *
* * Copyright (C) 2013-2014 layeredSkin Corporation All rights reserved.
* * 作者: 小红帽 QQ:761716178
* * 请保留以上版权信息,否则作者将保留追究法律责任。
* *
* * 创建时间:2014-04-13
* * 说明:Form2.cs
* *
********************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Text;
using System.Windows.Forms;
using layeredSkin.Forms;
using layeredSkin.DirectUI;
namespace test
{
public partial class Form2 : layeredForm
{
public Form2()
{
InitializeComponent();
}
private void layeredButton1_Click(object sender EventArgs e)
{
this.Close();
}
private void Form2_Load(object sender EventArgs e)
{
this.Animation.Effect = new layeredSkin.Animations.GradualCurtainEffect();
for (int i = 0; i < 1000; i++)
{
DuiLabel lbl = new DuiLabel();
lbl.Size = new System.Drawing.Size(40 20);
lbl.Text = (i + 1).ToString();
lbl.Location = new Point(8 8);
DuiButton btn = new DuiButton();
btn.Size = new System.Drawing.Size(30 20);
btn.Location = new Point(170 5);
btn.TextAlign = ContentAlignment.MiddleCenter;
btn.Text = (i + 1).ToString();
btn.MouseClick += btn_MouseClick;
DuibaseControl dui = new DuibaseControl();
dui.BackColor = Color.FromArgb(100 Color.White);
dui.Width = layeredListBox1.Width;
dui.Height = 30;
dui.Border.Bottom = true;
dui.Border.Left = true;
dui.Border.Right = true;
dui.MouseEnter += dui_MouseEnter;
dui.MouseLeave += dui_MouseLeave;
dui.Controls.Add(lbl);
dui.Controls.Add(btn);
layeredListBox1.Items.Add(dui);
}
layeredListBox1.SetRollValue(0);
}
void dui_MouseLeave(object sender EventArgs e)
{
((DuibaseControl)sender).BackColor = Color.FromArgb(100 Color.White);
}
void dui_MouseEnter(object sender EventArgs e)
{
((DuibaseControl)sender).BackColor = Color.White;
}
void btn_MouseClick(object sender MouseEventArgs e)
{
MessageBox.Show(((DuiButton)sender)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-04-14 16:34 test\
文件 981 2014-04-14 15:50 test.sln
目录 0 2014-04-14 15:47 test\bin\
目录 0 2014-04-14 15:50 test\bin\Debug\
目录 0 2014-04-14 15:47 test\bin\Debug\Images\
文件 3115 2012-11-20 11:13 test\bin\Debug\Images\close0.png
文件 3509 2012-11-20 11:13 test\bin\Debug\Images\close1.png
文件 17373 2012-11-20 11:13 test\bin\Debug\Images\cloud.png
文件 6918 2012-11-20 11:13 test\bin\Debug\Images\loginbody.png
文件 289422 2012-11-20 11:13 test\bin\Debug\Images\logo32.ico
文件 2922 2012-11-20 11:13 test\bin\Debug\Images\mini0.png
文件 3066 2012-11-20 11:13 test\bin\Debug\Images\mini1.png
文件 9286 2012-11-20 11:13 test\bin\Debug\Images\sun2.png
文件 46087 2012-11-20 11:13 test\bin\Debug\Images\yezi2.png
文件 9975 2012-11-20 11:13 test\bin\Debug\Images\yezi3.png
文件 269312 2014-04-14 15:22 test\bin\Debug\la
文件 306688 2014-04-14 15:20 test\bin\Debug\la
文件 1214976 2014-04-14 16:34 test\bin\Debug\test.exe
文件 67072 2014-04-14 16:34 test\bin\Debug\test.pdb
文件 22704 2014-04-14 16:34 test\bin\Debug\test.vshost.exe
文件 490 2010-03-17 22:39 test\bin\Debug\test.vshost.exe.manifest
目录 0 2014-04-14 14:39 test\bin\Release\
文件 3562 2014-04-14 15:03 test\Form2.cs
文件 6252 2014-04-14 15:03 test\Form2.Designer.cs
文件 386085 2014-04-14 14:45 test\Form2.resx
文件 4166 2014-04-14 15:03 test\Kugou.cs
文件 28025 2014-04-14 15:03 test\Kugou.Designer.cs
文件 154743 2014-04-10 22:07 test\Kugou.resx
目录 0 2014-04-14 15:47 test\obj\
目录 0 2014-04-14 16:34 test\obj\Debug\
文件 12223 2014-04-14 15:49 test\obj\Debug\DesignTimeResolveAssemblyReferences.cache
............此处省略27个文件信息
相关资源
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
- 基于c#的实验室设备管理系统621530
评论
共有 条评论