找传奇、传世资源到传世资源站!

C# 简易的小通讯录程序

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】C#的简单的通讯录程序,是同学做的~具体的我忘记了,很久以前做的,能运行

【相关图片】

from clipboard

from clipboard

【源码结构】

.
├── C# 简易的小通讯录程序_通讯录.rar
└── 通讯录
    ├── Codema
    │   ├── AommandInfo
    │   │   ├── AommandInfo.csproj
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   ├── app.config
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── LTP.Common.dll
    │   │   │       ├── Maticsoft.AommandInfo.exe
    │   │   │       ├── Maticsoft.AommandInfo.exe.config
    │   │   │       ├── Maticsoft.AommandInfo.pdb
    │   │   │       ├── Maticsoft.AommandInfo.vshost.exe
    │   │   │       ├── Maticsoft.AommandInfo.vshost.exe.config
    │   │   │       ├── Maticsoft.BLL.dll
    │   │   │       ├── Maticsoft.BLL.pdb
    │   │   │       ├── Maticsoft.DAL.dll
    │   │   │       ├── Maticsoft.DAL.pdb
    │   │   │       ├── Maticsoft.DBUtility.dll
    │   │   │       ├── Maticsoft.DBUtility.pdb
    │   │   │       ├── Maticsoft.Model.dll
    │   │   │       ├── Maticsoft.Model.pdb
    │   │   │       └── MySql.Data.dll
    │   │   ├── log.Designer.cs
    │   │   ├── log.cs
    │   │   ├── log.resx
    │   │   ├── main.Designer.cs
    │   │   ├── main.cs
    │   │   ├── main.resx
    │   │   ├── mangement.Designer.cs
    │   │   ├── mangement.cs
    │   │   ├── mangement.resx
    │   │   ├── obj
    │   │   │   ├── AommandInfo.csproj.FileList.txt
    │   │   │   └── Debug
    │   │   │       ├── AommandInfo.csproj.GenerateResource.Cache
    │   │   │       ├── Maticsoft.AommandInfo.exe
    │   │   │       ├── Maticsoft.AommandInfo.log.resources
    │   │   │       ├── Maticsoft.AommandInfo.main.resources
    │   │   │       ├── Maticsoft.AommandInfo.mangement.resources
    │   │   │       ├── Maticsoft.AommandInfo.pdb
    │   │   │       ├── Maticsoft.AommandInfo.zhuce.resources
    │   │   │       ├── Refactor
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       └── TempPE
    │   │   │           └── txlDataSet.Designer.cs.dll
    │   │   ├── txlDataSet.Designer.cs
    │   │   ├── txlDataSet.xsc
    │   │   ├── txlDataSet.xsd
    │   │   ├── txlDataSet.xss
    │   │   ├── zhuce.Designer.cs
    │   │   ├── zhuce.cs
    │   │   └── zhuce.resx
    │   ├── BLL
    │   │   ├── AssemblyInfo.cs
    │   │   ├── BLL.csproj
    │   │   ├── BLL.csproj.user
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── LTP.Common.dll
    │   │   │       ├── Maticsoft.BLL.dll
    │   │   │       ├── Maticsoft.BLL.pdb
    │   │   │       ├── Maticsoft.DAL.dll
    │   │   │       ├── Maticsoft.DAL.pdb
    │   │   │       ├── Maticsoft.DBUtility.dll
    │   │   │       ├── Maticsoft.DBUtility.pdb
    │   │   │       ├── Maticsoft.Model.dll
    │   │   │       ├── Maticsoft.Model.pdb
    │   │   │       └── MySql.Data.dll
    │   │   ├── obj
    │   │   │   ├── BLL.csproj.FileList.txt
    │   │   │   └── Debug
    │   │   │       ├── Maticsoft.BLL.dll
    │   │   │       ├── Maticsoft.BLL.pdb
    │   │   │       ├── Refactor
    │   │   │       │   └── Maticsoft.BLL.dll
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       └── TempPE
    │   │   └── txl.cs
    │   ├── Codema.sln
    │   ├── Codema.suo
    │   ├── DAL
    │   │   ├── AssemblyInfo.cs
    │   │   ├── DAL.csproj
    │   │   ├── DAL.csproj.user
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── LTP.Common.dll
    │   │   │       ├── Maticsoft.DAL.dll
    │   │   │       ├── Maticsoft.DAL.pdb
    │   │   │       ├── Maticsoft.DBUtility.dll
    │   │   │       ├── Maticsoft.DBUtility.pdb
    │   │   │       ├── Maticsoft.Model.dll
    │   │   │       ├── Maticsoft.Model.pdb
    │   │   │       └── MySql.Data.dll
    │   │   ├── obj
    │   │   │   ├── DAL.csproj.FileList.txt
    │   │   │   └── Debug
    │   │   │       ├── Maticsoft.DAL.dll
    │   │   │       ├── Maticsoft.DAL.pdb
    │   │   │       ├── Refactor
    │   │   │       │   └── Maticsoft.DAL.dll
    │   │   │       ├── ResolveAssemblyReference.cache
    │   │   │       └── TempPE
    │   │   └── txl.cs
    │   ├── DBUtility
    │   │   ├── AssemblyInfo.cs
    │   │   ├── BaseSqlMapDao.cs
    │   │   ├── CommandInfo.cs
    │   │   ├── DBUtility.csproj
    │   │   ├── DBUtility.csproj.user
    │   │   ├── DESEncrypt.cs
    │   │   ├── DbHelperMySQL.cs
    │   │   ├── DbHelperOleDb.cs
    │   │   ├── DbHelperOra.cs
    │   │   ├── DbHelperSQL.cs
    │   │   ├── DbHelperSQL2.cs
    │   │   ├── DbHelperSQLP.cs
    │   │   ├── LinkDataBase.cs
    │   │   ├── OracleHelper.cs
    │   │   ├── PubConstant.cs
    │   │   ├── SQLHelper.cs
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── Maticsoft.DBUtility.dll
    │   │   │       ├── Maticsoft.DBUtility.pdb
    │   │   │       └── MySql.Data.dll
    │   │   └── obj
    │   │       ├── DBUtility.csproj.FileList.txt
    │   │       └── Debug
    │   │           ├── Maticsoft.DBUtility.dll
    │   │           ├── Maticsoft.DBUtility.pdb
    │   │           ├── Refactor
    │   │           │   └── Maticsoft.DBUtility.dll
    │   │           ├── ResolveAssemblyReference.cache
    │   │           └── TempPE
    │   ├── Lib
    │   │   ├── IBatisNet.Common.dll
    │   │   ├── IBatisNet.DataMapper.dll
    │   │   ├── LTP.Accounts.dll
    │   │   ├── LTP.Common.dll
    │   │   ├── LtpPageControl.dll
    │   │   ├── Maticsoft.DBUtility.dll
    │   │   ├── Microsoft.Web.UI.WebControls.dll
    │   │   └── MySql.Data.dll
    │   ├── Model
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Model.csproj
    │   │   ├── Model.csproj.user
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── Maticsoft.Model.dll
    │   │   │       └── Maticsoft.Model.pdb
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── Maticsoft.Model.dll
    │   │   │   │   ├── Maticsoft.Model.pdb
    │   │   │   │   ├── Refactor
    │   │   │   │   │   └── Maticsoft.Model.dll
    │   │   │   │   └── TempPE
    │   │   │   └── Model.csproj.FileList.txt
    │   │   └── txl.cs
    │   └── Web
    │       ├── Controls
    │       │   ├── CheckRight.ascx.cs
    │       │   ├── CheckRight.ascx.designer.cs
    │       │   ├── CheckRight.ascx.resx
    │       │   ├── CopyRight.ascx.cs
    │       │   ├── CopyRight.ascx.designer.cs
    │       │   ├── CopyRight.ascx.resx
    │       │   ├── checkright.ascx
    │       │   └── copyright.ascx
    │       ├── Default.aspx
    │       ├── Default.aspx.cs
    │       ├── Default.aspx.designer.cs
    │       ├── Global.asax
    │       ├── Global.asax.cs
    │       ├── Global.asax.resx
    │       ├── Images
    │       │   ├── code2.JPG
    │       │   └── top1.gif
    │       ├── MasterPage.master
    │       ├── MasterPage.master.cs
    │       ├── MasterPage.master.designer.cs
    │       ├── Properties
    │       │   └── AssemblyInfo.cs
    │       ├── Style.css
    │       ├── Web.config
    │       ├── Web.csproj
    │       ├── Web.csproj.user
    │       └── txl
    │           ├── Add.aspx
    │           ├── Add.aspx.cs
    │           ├── Add.aspx.designer.cs
    │           ├── Modify.aspx
    │           ├── Modify.aspx.cs
    │           ├── Modify.aspx.designer.cs
    │           ├── Show.aspx
    │           ├── Show.aspx.cs
    │           └── Show.aspx.designer.cs
    ├── secret.txt
    ├── txl_Data.MDF
    └── txl_Log.LDF

44 directories, 163 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复