資源簡介
這是一款非常適合入門選手的一款ktv系統 代碼很簡潔 功能較齊全
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Runtime.InteropServices;
using?System.Drawing;
using?System.Linq;
using?System.Diagnostics;
using?System.Text;
using?System.Threading;
using?System.Threading.Tasks;
using?System.Windows.Forms;
namespace?MyKTV
{
????public?partial?class?CeShi?:?Form
????{
????????public?CeShi()
????????{
????????????InitializeComponent();
????????????AnimateWindow(this.Handle?0?AW_VER_POSITIVE);//開始窗體動畫
????????????x?=?this.Location.X;//窗體左上角x坐標
????????????y?=?this.Location.Y;//窗體左上角y坐標
????????????WIDTH?=?this.Width;//得到當前窗體的寬度
????????????HEIGHT?=?this.Height;//得到當前窗體的高度
????????????//得到屏幕的分辨率
????????????SH?=?Screen.PrimaryScreen.Bounds.Height;
????????????SW?=?Screen.PrimaryScreen.Bounds.Width;
????????}
????????public?const?Int32?AW_HOR_POSITIVE?=?0x00000001;????//左到右打開
????????public?const?Int32?AW_HOR_NEGATIVE?=?0x00000002;????//右到左打開
????????public?const?Int32?AW_VER_POSITIVE?=?0x00000004;????//從下到上打開
????????public?const?Int32?AW_VER_NEGATIVE?=?0x00000008;????//從上到下打開
????????public?const?Int32?AW_CENTER?=?0x00000010;??????????//小圓到大圓打開
????????public?const?Int32?AW_HIDE?=?0x00010000;????????????//相當于直接顯示
????????public?const?Int32?AW_ACTIVATE?=?0x00020000;????????//相當于直接顯示
????????public?const?Int32?AW_SLIDE?=?0x00040000;
????????public?const?Int32?AW_BLEND?=?0x00080000;
????????static?int?x;
????????static?int?y;
????????static?int?WIDTH;
????????static?int?HEIGHT;
????????int?SH;
????????int?SW;
????????//重寫API函數,用來執行窗體動畫顯示操作
????????[DllImportAttribute(“user32.dll“)]
????????private?static?extern?bool?AnimateWindow(IntPtr?hwnd?int?dwTime?int?dwFlags);
????????//窗體關閉時動畫
????????private?void?Form1_FormClosed(object?sender?FormClosedEventArgs?e)
????????{
????????????AnimateWindow(this.Handle?1000?AW_CENTER?+?AW_HIDE);//結束窗體動畫
????????????window();
????????}
????????//結束窗體時特效
????????private?void?window()
????????{
????????????while?(this.Width?>?124)
????????????{
????????????????if?(this.Height?>=?40)
????????????????{
????????????????????this.Location?=?new?System.Drawing.Point(x?y?+=?15);//設置窗體位置
????????????????????this.Size?=?new?Size(this.Width?this.Height?-=?25);//設置窗體大小
????????????????????this.Refresh();//重繪窗體
????????????????}
????????????????else
????????????????{
????????????????????this.Location?=?new?System.Drawing.Point(x?+=?15?y);
????????????????????if?(this.Width?>?123)
????????????????????{
????????????????????????this.Size?=?new?Size(this.Width?-=?25?this.Height);
????????????????????????this.Refresh();
????????????????????????this.Opacity?-=?0.04;//設置窗體透明度遞減
????????????????????}
????????????????}
????????????????Thread.Sleep(10);??//?線程休眠10毫秒
????????????}
????????}
????????private?void?CeShi_Load(object?sender?EventArgs?e)
????????{
????????}
????????private?void?button1_Click(object?sender?EventArgs?e)
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-10-30?11:04??KTV項目\
?????目錄???????????0??2017-10-30?11:01??KTV項目\KTV\
?????目錄???????????0??2017-10-30?11:01??KTV項目\KTV\MyKTV\
?????目錄???????????0??2017-10-30?11:01??KTV項目\KTV\MyKTV\MyKTV\
?????文件?????????368??2017-01-25?15:03??KTV項目\KTV\MyKTV\MyKTV\App.config
?????文件????????5033??2017-02-13?16:18??KTV項目\KTV\MyKTV\MyKTV\CeShi.Designer.cs
?????文件????????3786??2017-02-13?16:18??KTV項目\KTV\MyKTV\MyKTV\CeShi.cs
?????文件???????22304??2017-02-13?16:18??KTV項目\KTV\MyKTV\MyKTV\CeShi.resx
?????文件????????8699??2017-02-11?18:20??KTV項目\KTV\MyKTV\MyKTV\DBHelper.cs
?????文件????????7221??2017-02-12?11:05??KTV項目\KTV\MyKTV\MyKTV\FrmGeQuPaiHang.cs
?????文件???????61503??2017-02-12?11:05??KTV項目\KTV\MyKTV\MyKTV\FrmGeQuPaiHang.designer.cs
?????文件??????632902??2017-02-12?11:05??KTV項目\KTV\MyKTV\MyKTV\FrmGeQuPaiHang.resx
?????文件????????8202??2017-02-13?21:29??KTV項目\KTV\MyKTV\MyKTV\FrmLeiXingDianGe.cs
?????文件???????39756??2017-02-13?21:29??KTV項目\KTV\MyKTV\MyKTV\FrmLeiXingDianGe.designer.cs
?????文件??????281642??2017-02-13?21:29??KTV項目\KTV\MyKTV\MyKTV\FrmLeiXingDianGe.resx
?????文件???????12830??2017-02-13?21:21??KTV項目\KTV\MyKTV\MyKTV\FrmPinYin.cs
?????文件???????60479??2017-02-13?19:36??KTV項目\KTV\MyKTV\MyKTV\FrmPinYin.designer.cs
?????文件?????1077176??2017-02-13?19:36??KTV項目\KTV\MyKTV\MyKTV\FrmPinYin.resx
?????文件????????3974??2017-02-12?09:15??KTV項目\KTV\MyKTV\MyKTV\FrmYiDianGeQu.cs
?????文件????????7634??2017-02-12?09:15??KTV項目\KTV\MyKTV\MyKTV\FrmYiDianGeQu.designer.cs
?????文件???????10802??2017-02-12?09:15??KTV項目\KTV\MyKTV\MyKTV\FrmYiDianGeQu.resx
?????文件???????13517??2017-02-12?10:17??KTV項目\KTV\MyKTV\MyKTV\FrmZiShu.cs
?????文件???????45484??2017-02-12?10:17??KTV項目\KTV\MyKTV\MyKTV\FrmZiShu.designer.cs
?????文件??????909574??2017-02-12?10:17??KTV項目\KTV\MyKTV\MyKTV\FrmZiShu.resx
?????文件????????6695??2017-02-07?09:55??KTV項目\KTV\MyKTV\MyKTV\KTVUtil.cs
?????文件???????19422??2017-02-13?21:29??KTV項目\KTV\MyKTV\MyKTV\MyKTV.csproj
?????文件????????1375??2017-02-08?16:58??KTV項目\KTV\MyKTV\MyKTV\Page.cs
?????文件????????3434??2017-01-26?11:40??KTV項目\KTV\MyKTV\MyKTV\PlayList.cs
?????文件?????????519??2017-02-10?19:47??KTV項目\KTV\MyKTV\MyKTV\Program.cs
?????目錄???????????0??2017-10-30?11:01??KTV項目\KTV\MyKTV\MyKTV\Properties\
?????文件????????1330??2017-01-22?13:41??KTV項目\KTV\MyKTV\MyKTV\Properties\AssemblyInfo.cs
............此處省略402個文件信息
- 上一篇:c#繪圖實現公章-唐大仕課程
- 下一篇:國內著名旅游景區網站源碼基于ASP.net
評論
共有 條評論