资源简介
Winform利用资源文件实现多国语言(含源代码)三层架构的Winform
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using Model;
using IDAL;
namespace BLL
{
public class Admin
{
public Admin() { }
public static AdminInfo Login(string userName string password)
{
if(userName.Trim()==string.Empty || password.Trim()==string.Empty)
{
return null;
}
else
{
IAdmin dalCount=DALFactory.Admin.Create();
AdminInfo account = dalCount.Login(userName password);
return account;
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4707 2008-04-04 21:24 PMIS.sln
..A..H. 68096 2008-04-07 11:32 PMIS.suo
文件 884 2008-04-03 22:19 说明.txt
文件 56319 2008-04-07 11:17 Snap2.jpg
文件 28328 2008-04-07 11:30 Snap1.jpg
文件 28604 2008-04-07 11:31 Snap3.jpg
文件 538 2008-04-03 21:48 BLL\Admin.cs
文件 16384 2008-04-03 21:48 BLL\bin\Debug\BLL.dll
文件 11776 2008-04-03 21:48 BLL\bin\Debug\BLL.pdb
文件 16384 2008-04-03 21:42 BLL\bin\Debug\DALFactory.dll
文件 11776 2008-04-03 21:42 BLL\bin\Debug\DALFactory.pdb
文件 16384 2008-04-03 21:40 BLL\bin\Debug\IDAL.dll
文件 7680 2008-04-03 21:40 BLL\bin\Debug\IDAL.pdb
文件 16384 2008-04-03 21:38 BLL\bin\Debug\Model.dll
文件 15872 2008-04-03 21:38 BLL\bin\Debug\Model.pdb
文件 2501 2008-04-03 21:48 BLL\BLL.csproj
文件 2318 2008-04-07 11:31 BLL\obj\BLL.csproj.FileListAbsolute.txt
文件 16384 2008-04-03 21:48 BLL\obj\Debug\BLL.dll
文件 11776 2008-04-03 21:48 BLL\obj\Debug\BLL.pdb
文件 16384 2008-04-04 21:26 BLL\obj\Debug\Refactor\BLL.dll
文件 16981 2008-04-04 21:24 BLL\obj\Debug\ResolveAssemblyReference.cache
文件 1305 2008-04-03 21:47 BLL\Properties\AssemblyInfo.cs
文件 447 2008-04-03 21:42 DALFactory\Admin.cs
文件 16384 2008-04-03 21:42 DALFactory\bin\Debug\DALFactory.dll
文件 11776 2008-04-03 21:42 DALFactory\bin\Debug\DALFactory.pdb
文件 16384 2008-04-03 21:40 DALFactory\bin\Debug\IDAL.dll
文件 7680 2008-04-03 21:40 DALFactory\bin\Debug\IDAL.pdb
文件 16384 2008-04-03 21:38 DALFactory\bin\Debug\Model.dll
文件 15872 2008-04-03 21:38 DALFactory\bin\Debug\Model.pdb
文件 2156 2008-04-03 21:42 DALFactory\DALFactory.csproj
............此处省略246个文件信息
评论
共有 条评论