资源简介
仿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#中调用fastReport报表的代码
- C#类库,支持音视频采集,摄像头采集
- C#基于雄迈Sdk的对画面视频监控源码
- c#做的Discuz论坛源代码
- C#实现单机版泡泡堂源码
- vs2005+C#+消费信息管理系统+数据库
- C#日程管理系统毕业设计与论文
- asp.net c# 英文 文献
- 酒店管理系统(C#三层架构)
- C#实例学生管理系统133168
-
Visual C# and Databa
ses - C# 图像处理
- 仓库管理系统_代码_数据库_完整版_
- C#表情识别源码
- 个人通讯录管理系统C#+Sql Sever
- 餐饮管理系统 C#
- 用C#写的汽车销售管理系统
- C#网上书店
- c#写的pdf转word程序源码
-
C#+xm
l生成word报告 - C#窗体关于汽车的简单管理增删改带数
- 模拟ATM取款机源码(C#版)完整版
- C#学生宿舍管理系统SQL版.
- VS实现简单通讯录
- 基于C#的人事管理系统
- 商品销售管理系统C#源码
- 吃豆豆c#游戏程序源码
- C# SQL Server 人事工资管理系统
- 原型设计器 C#版
- C#经典范例50讲源代码打包
评论
共有 条评论