資源簡(jiǎn)介
仿QQ概念版登陸界面,酷狗魔方,C# winForm .Net 2.0 界面特效 源碼。
可以把Winform設(shè)計(jì)成像WPF一樣。
仿QQ概念版登陸界面:云和葉子是動(dòng)態(tài)的。啟動(dòng)和關(guān)閉有仿照QQ的漸變透明的動(dòng)態(tài)效果。
酷狗魔方:4個(gè)角有淡入淡出效果。
還有其他幾個(gè)特效例子。
此項(xiàng)目中包含了多個(gè)界面設(shè)計(jì)例子。VS2013。 界面庫(kù)不開源,如果你需要源碼你可以聯(lián)系我。本項(xiàng)目只用于學(xué)習(xí)參考,請(qǐng)勿用于非法或商務(wù)用途,謝謝合作!

代碼片段和文件信息
/********************************************************************
?*?*
?*?*?使本項(xiàng)目源碼或本項(xiàng)目生成的DLL前請(qǐng)仔細(xì)閱讀以下協(xié)議內(nèi)容,如果你同意以下協(xié)議才能使用本項(xiàng)目所有的功能,
?*?*?否則如果你違反了以下協(xié)議,有可能陷入法律糾紛和賠償,作者保留追究法律責(zé)任的權(quán)利。
?*?*
?*?*?1、你可以在開發(fā)的軟件產(chǎn)品中使用和修改本項(xiàng)目的源碼和DLL,但是請(qǐng)保留所有相關(guān)的版權(quán)信息。
?*?*?2、不能將本項(xiàng)目源碼與作者的其他項(xiàng)目整合作為一個(gè)單獨(dú)的軟件售賣給他人使用。
?*?*?3、不能傳播本項(xiàng)目的源碼和DLL,包括上傳到網(wǎng)上、拷貝給他人等方式。
?*?*?4、以上協(xié)議暫時(shí)定制,由于還不完善,作者保留以后修改協(xié)議的權(quán)利。
?*?*
?*?*?Copyright?(C)?2013-2014?layeredSkin?Corporation?All?rights?reserved.
?*?*?作者:?小紅帽??QQ:761716178
?*?*?請(qǐng)保留以上版權(quán)信息,否則作者將保留追究法律責(zé)任。
?*?*
?*?*?創(chuàng)建時(shí)間: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)
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????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個(gè)文件信息
評(píng)論
共有 條評(píng)論