登录
首页 » C# » wpf 登陆 MD5加密 例子源码下载

wpf 登陆 MD5加密 例子源码下载

于 2015-03-25 发布
0 111
下载积分: 1 下载次数: 0

代码说明:

wpf 登陆 MD5加密 例子源码下载

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 于FPGA的数字图像处理原理及应用【PDF带书签+源码】+于FPGA的嵌入式图像处理系统设计(pdf)
    文件夹内包含两本书:《基于FPGA的嵌入式图像处理系统设计》和《基于FPGA的数字图像处理原理及应用》。其中,原理及应用这本书偏重工程应用,详细易懂,有verilog源码好上手。之前找这两个资源,每个资源都用了我十来个积分,心痛。现在把PDF和源码找好了,打包在一起用8个积分吸引有缘人,哈哈,如果你也要用FPGA做数字图像处理,我觉得你一定会选择这个资源。 
    2019-04-21下载
    积分:1
  • rtsp client 实现了简单的RTSP的客户端命令 附完整项目源码
    实现了简单的RTSP的客户端命令功能。可以连接darwin服务器,并进行交互。实现了Options,Describ,Setup,Play,teardown命令。
    2013-05-23下载
    积分:1
  • 现代 C++ 教程:高速上手 C++11/14/17/20.pdf
    【实例简介】Modern CPP
    2021-08-10 00:31:00下载
    积分:1
  • modbus tcp 服务器接口(支持多个客户端进行连接)
    基于modbus tcp协议下的tcp接口,可以使用多个客户端进行连接
    2020-12-10下载
    积分:1
  • C#简单音乐播放器
    播放器填加了很多更好用的功能,播放列表的功能更充足(查看歌曲详情、歌曲搜索、歌曲删除等),同时也加上了Windows7任务栏的控制按钮,加入了播放模式的选择,专辑封面的显示等
    2019-11-08下载
    积分:1
  • MVC+EF+架构设计 实例源码
    整个项目主要采用三层架构,面向接口的编程方式。界面层:User Interface  CinDou.Web主要放我们的Web页面,CinDou.Route主要放置MVC中Controller,这里我采用把Controller分离出来。个人考虑的原因是:项目比较清晰,职责比较单一。逻辑层:Business Logic Layer  CinDou.BFactory 是逻辑工厂层,用于创建逻辑层的接口,便于界面层调用。CinDou.IBLL 逻辑接口层CinDou.BLL 逻辑业务层 主要负责逻辑层中的业务。CinDou.Model 逻辑业务类数据库层:Data Accss LayerCinDou.DFacoty:数据工厂层,用于创建数据库层的接口,从而让逻辑层调用CinDou.IDAL : 数据库接口层CinDou.DAL : 数据库持久层CinDou.EFramework: Entity Framework层工具层:ToolKitCinDou.Tools 常用的工具类方法层Component :控件层
    2015-07-16下载
    积分:1
  • C# 制作系统服务 实例源码下载
    附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{    static class Program    {        ///         /// 应用程序的主入口点。        ///         static void Main()        {            ServiceBase[] ServicesToRun;            ServicesToRun = new ServiceBase[]             {                 new Service1()             };            ServiceBase.Run(ServicesToRun);        }    }}  3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{    public partial class Service1 : ServiceBase    {        Timer timer;        public Service1()        {            InitializeComponent();        }        protected override void OnStart(string[] args)        {            timer = new Timer(1000);            timer.Elapsed  = new ElapsedEventHandler(timer_Elapsed);            timer.Start();        }        protected override void OnStop()        {            timer.Stop();            timer.Dispose();        }        void timer_Elapsed(object sender, ElapsedEventArgs e)        {            string filePath = AppDomain.CurrentDomain.BaseDirectory   "test.txt";            StreamWriter sw = null;            if (!File.Exists(filePath))            {                sw = File.CreateText(filePath);            }            else            {                sw = File.AppendText(filePath);            }            sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine);            sw.Close();        }    }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{    partial class Installer1    {        ///         /// 必需的设计器变量。        ///         private System.ComponentModel.IContainer components = null;        private System.ServiceProcess.ServiceProcessInstaller spInstaller;        private System.ServiceProcess.ServiceInstaller sInstaller;        ///          /// 清理所有正在使用的资源。        ///         /// 如果应释放托管资源,为 true;否则为 false。        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        ///         /// 设计器支持所需的方法 - 不要        /// 使用代码编辑器修改此方法的内容。        ///         private void InitializeComponent()        {            components = new System.ComponentModel.Container();            // 创建ServiceProcessInstaller对象和ServiceInstaller对象            this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();            this.sInstaller = new System.ServiceProcess.ServiceInstaller();            // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息            this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;            this.spInstaller.Password = null;            this.spInstaller.Username = null;            // 设定服务的名称            this.sInstaller.ServiceName = "WindowsService1";            //设定服务启动的方式            this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;            this.Installers.AddRange(new System.Configuration.Install.Installer[] {            this.spInstaller,this.sInstaller});        }        #endregion    }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
    2015-04-21下载
    积分:1
  • c++ 三个数中取最大值(入门级示例)
    c++ 三个数中取最大值(入门级示例)
    2020-03-03下载
    积分:1
  • 利用cookie可以在静态页判断验证码是否输入正确
    利用cookies实现 验证码的判断,详见如下代码:                       
    2013-07-26下载
    积分:1
  • C#欧姆龙Fins_TCP通信
    【实例简介】
    2021-08-05 00:30:59下载
    积分:1
  • 696518资源总数
  • 104349会员总数
  • 32今日下载