• 大小: 0.11M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 窗体  页签  

资源简介

实现点击窗体 动态加载窗体显示,并显示对应的窗体页签


资源截图

代码片段和文件信息

/*
 * 作者:chinahysoft
 * 来源:http://www.huiyaosoft.com/
 * 日期:2015-3-8 
 */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;

namespace CRMDemo
{
    class DES
    {

        /// 
        /// 进行DES加密。
        /// 

        /// 要加密的字符串。
        /// 密钥,且必须为8位。
        /// 以base64格式返回的加密字符串。
        public static string Encrypt(string pToEncrypt string sKey)
        {
            if (““.Equals(pToEncrypt))
                return ““;
            using (DESCryptoServiceProvider des = new DESCryptoServiceProvider())
            {
                byte[] inputByteArray = Encoding.UTF8.GetBytes(pToEncrypt

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-02-07 16:26  多页签\
     目录           0  2018-02-07 16:26  多页签\.vs\
     目录           0  2018-02-07 16:26  多页签\.vs\CRMDemo\
     目录           0  2018-02-07 16:26  多页签\.vs\CRMDemo\v14\
     文件       49664  2018-02-08 10:44  多页签\.vs\CRMDemo\v14\.suo
     目录           0  2018-02-07 17:20  多页签\CRMDemo\
     文件        6021  2015-03-13 10:34  多页签\CRMDemo\CRMDemo.csproj
     文件        2795  2015-03-13 10:33  多页签\CRMDemo\DES.cs
     文件        6980  2018-02-07 17:20  多页签\CRMDemo\Form1.Designer.cs
     文件        8754  2018-02-07 17:20  多页签\CRMDemo\Form1.cs
     文件        6212  2018-02-07 17:20  多页签\CRMDemo\Form1.resx
     文件        2717  2014-09-28 14:54  多页签\CRMDemo\Form2.Designer.cs
     文件         769  2015-03-13 10:33  多页签\CRMDemo\Form2.cs
     文件        5817  2014-09-28 14:54  多页签\CRMDemo\Form2.resx
     文件        2023  2014-09-28 14:54  多页签\CRMDemo\Form3.Designer.cs
     文件         573  2015-03-13 10:33  多页签\CRMDemo\Form3.cs
     文件        5817  2014-09-28 14:54  多页签\CRMDemo\Form3.resx
     文件        2023  2014-09-28 12:06  多页签\CRMDemo\Form4.Designer.cs
     文件         573  2015-03-13 10:34  多页签\CRMDemo\Form4.cs
     文件        5817  2014-09-28 11:59  多页签\CRMDemo\Form4.resx
     文件        2198  2015-03-13 10:34  多页签\CRMDemo\MyFuncLib.cs
     文件         468  2014-08-30 13:49  多页签\CRMDemo\Program.cs
     目录           0  2018-02-07 16:26  多页签\CRMDemo\Properties\
     文件        1346  2014-08-30 13:49  多页签\CRMDemo\Properties\AssemblyInfo.cs
     文件        2852  2014-09-23 19:43  多页签\CRMDemo\Properties\Resources.Designer.cs
     文件        5612  2014-08-30 13:49  多页签\CRMDemo\Properties\Resources.resx
     文件        1689  2014-09-23 19:43  多页签\CRMDemo\Properties\Settings.Designer.cs
     文件         491  2014-09-02 15:45  多页签\CRMDemo\Properties\Settings.settings
     目录           0  2018-02-08 10:44  多页签\CRMDemo\Service References\
     目录           0  2018-02-07 16:26  多页签\CRMDemo\Web References\
     目录           0  2018-02-07 16:26  多页签\CRMDemo\Web References\localhostWebServiceDemo\
............此处省略35个文件信息

评论

共有 条评论