c#课设个人日程管理附课设报告


这是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#课设Csharpdaily
     目录           0  2018-01-04 16:49  c#课设c#课设Csharpdailydaily
     文件         905  2018-01-02 20:36  c#课设c#课设Csharpdailydaily.sln
     文件       62976  2018-01-12 16:06  c#课设c#课设Csharpdailydaily.suo
     目录           0  2013-06-04 22:51  c#课设c#课设Csharpdailydailyin
     目录           0  2013-06-04 22:52  c#课设c#课设CsharpdailydailyinDebug
     目录           0  2018-01-02 18:05  c#课设c#课设CsharpdailydailyinRelease
     文件       61440  2007-11-21 15:04  c#课设c#课设CsharpdailydailyinReleaseAxInterop.WMPLib.dll
     文件         182  2018-01-04 12:01  c#课设c#课设CsharpdailydailyinReleaseConfig.xml
     文件      720896  2018-01-12 16:06  c#课设c#课设CsharpdailydailyinReleasedaily.exe
     文件         144  2018-01-02 18:05  c#课设c#课设CsharpdailydailyinReleasedaily.exe.config
     文件      183808  2018-01-12 16:06  c#课设c#课设CsharpdailydailyinReleasedaily.pdb
     文件       11600  2018-01-12 16:04  c#课设c#课设CsharpdailydailyinReleasedaily.vshost.exe
     文件         144  2018-01-02 18:05  c#课设c#课设CsharpdailydailyinReleasedaily.vshost.exe.config
     文件         490  2017-03-19 05:00  c#课设c#课设CsharpdailydailyinReleasedaily.vshost.exe.manifest
     目录           0  2018-01-12 16:06  c#课设c#课设CsharpdailydailyinReleaseDatabase
     文件      352256  2018-01-12 16:06  c#课设c#课设CsharpdailydailyinReleaseDatabasedaily.mdb
     文件      372736  2008-04-28 15:34  c#课设c#课设CsharpdailydailyinReleaseDotNetSkin.dll
     文件      330752  2018-01-02 18:05  c#课设c#课设CsharpdailydailyinReleaseInterop.WMPLib.dll
     目录           0  2013-06-04 22:51  c#课设c#课设CsharpdailydailyBusinessFacade
     文件       15969  2007-11-22 15:36  c#课设c#课设CsharpdailydailyBusinessFacadeBusAdminDaily.cs
     文件        8641  2018-01-04 12:00  c#课设c#课设Csharpdailydailydaily.csproj
     文件         621  2018-01-02 18:05  c#课设c#课设Csharpdailydailydaily.csproj.user
     目录           0  2018-01-04 12:05  c#课设c#课设CsharpdailydailyDatabase
     文件         128  2018-01-03 14:34  c#课设c#课设CsharpdailydailyDatabasedaily.ldb
     文件      352256  2018-01-03 14:18  c#课设c#课设CsharpdailydailyDatabasedaily.mdb
     目录           0  2013-06-04 22:51  c#课设c#课设CsharpdailydailyEntity
     文件        3024  2007-11-05 10:26  c#课设c#课设CsharpdailydailyEntityDailyEntity.cs
............此处省略76个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)