资源简介
这是c#课设报告,写的日程管理系统,课程设计报告流程图和截图也很多,如果不合适用的话,可移植性也较好。另外带有解决方案文件sln,可以直接在vs运行的。我用的是vs2010,高版本的话可能要转换。应该没有多大的问题,都能直接运行。喜欢的可以给个好评。谢谢
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Diagnostics;
using System.Threading;
using System.Runtime.InteropServices;
namespace daily
{
static class Program
{
///
/// 设置由不同线程产生的窗口的显示状态。
///
/// 窗口句柄
/// 0不可见但仍然运行1居中2最小化3最大化
///
[DllImport(“User32.dll“)]
private static extern bool ShowWindowAsync(IntPtr hWnd int cmdShow);
///
/// 将窗体置于最顶端
///
/// 窗口句柄
///
[DllImport(“User32.dll“)]
private static extern bool SetForegroundWindow(IntPtr hWnd);
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
//获取项目名称,分配计算机资源
Process[] processes = Process.GetProcessesByName(“daily“);
if (processes != null && processes.Length == 2)
{
processes[1].CloseMainWindow();
ShowWindowAsync(processes[0].MainWindowHandle 1);
SetForegroundWindow(processes[0].MainWindowHandle);
}
else
{
Global.GlobalVariable.InitSysParameter();
Application.EnableVisualstyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new UI.FrmMainThread());
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-12 16:10 c#课设\
目录 0 2018-01-12 16:11 c#课设\c#课设\
目录 0 2018-01-03 21:34 c#课设\c#课设\Csharp\
目录 0 2018-01-04 16:50 c#课设\c#课设\Csharp\daily\
目录 0 2018-01-04 16:49 c#课设\c#课设\Csharp\daily\daily\
文件 905 2018-01-02 20:36 c#课设\c#课设\Csharp\daily\daily.sln
文件 62976 2018-01-12 16:06 c#课设\c#课设\Csharp\daily\daily.suo
目录 0 2013-06-04 22:51 c#课设\c#课设\Csharp\daily\daily\bin\
目录 0 2013-06-04 22:52 c#课设\c#课设\Csharp\daily\daily\bin\Debug\
目录 0 2018-01-02 18:05 c#课设\c#课设\Csharp\daily\daily\bin\Release\
文件 61440 2007-11-21 15:04 c#课设\c#课设\Csharp\daily\daily\bin\Release\AxInterop.WMPLib.dll
文件 182 2018-01-04 12:01 c#课设\c#课设\Csharp\daily\daily\bin\Release\Config.xm
文件 720896 2018-01-12 16:06 c#课设\c#课设\Csharp\daily\daily\bin\Release\daily.exe
文件 144 2018-01-02 18:05 c#课设\c#课设\Csharp\daily\daily\bin\Release\daily.exe.config
文件 183808 2018-01-12 16:06 c#课设\c#课设\Csharp\daily\daily\bin\Release\daily.pdb
文件 11600 2018-01-12 16:04 c#课设\c#课设\Csharp\daily\daily\bin\Release\daily.vshost.exe
文件 144 2018-01-02 18:05 c#课设\c#课设\Csharp\daily\daily\bin\Release\daily.vshost.exe.config
文件 490 2017-03-19 05:00 c#课设\c#课设\Csharp\daily\daily\bin\Release\daily.vshost.exe.manifest
目录 0 2018-01-12 16:06 c#课设\c#课设\Csharp\daily\daily\bin\Release\Databa
文件 352256 2018-01-12 16:06 c#课设\c#课设\Csharp\daily\daily\bin\Release\Databa
文件 372736 2008-04-28 15:34 c#课设\c#课设\Csharp\daily\daily\bin\Release\DotNetSkin.dll
文件 330752 2018-01-02 18:05 c#课设\c#课设\Csharp\daily\daily\bin\Release\Interop.WMPLib.dll
目录 0 2013-06-04 22:51 c#课设\c#课设\Csharp\daily\daily\BusinessFacade\
文件 15969 2007-11-22 15:36 c#课设\c#课设\Csharp\daily\daily\BusinessFacade\BusAdminDaily.cs
文件 8641 2018-01-04 12:00 c#课设\c#课设\Csharp\daily\daily\daily.csproj
文件 621 2018-01-02 18:05 c#课设\c#课设\Csharp\daily\daily\daily.csproj.user
目录 0 2018-01-04 12:05 c#课设\c#课设\Csharp\daily\daily\Databa
文件 128 2018-01-03 14:34 c#课设\c#课设\Csharp\daily\daily\Databa
文件 352256 2018-01-03 14:18 c#课设\c#课设\Csharp\daily\daily\Databa
目录 0 2013-06-04 22:51 c#课设\c#课设\Csharp\daily\daily\Entity\
文件 3024 2007-11-05 10:26 c#课设\c#课设\Csharp\daily\daily\Entity\DailyEntity.cs
............此处省略76个文件信息
评论
共有 条评论