资源简介
实现点击窗体 动态加载窗体显示,并显示对应的窗体页签
代码片段和文件信息
/*
* 作者: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个文件信息
相关资源
- C# 隐形窗体 (没有边框,没有标题栏
- WPF 自定义标题的winform窗体实现源码
- C# 椭圆型窗体
- 用鼠标拖动无边框窗体功能的实现代
- Revit可停靠窗体Test(类库)
- 窗体换肤
- C# 创建移动的窗体
- C# 屏蔽ALT+F4组合键关闭窗体
- 实现3个窗体跳转和全部关闭
- 窗体颜色字体改变
- c#窗体应用双色球小游戏(附文档)
- 磁性窗体的设计
- 窗体的浮动及隐藏
- 向窗体中拖放图片并显示
- 使用键盘控制窗体或控件的移动
- 鼠标穿透窗体
- 手动改变自制窗体的大小
- 自定义Winform窗体例子(入门级)122
- 猜数字游戏(窗体版)
- 九九乘法表(窗体版)
- winform 窗体换肤技巧
- 窗体控件随大小变化等比例变化
- 获取一个窗体上EDit中的文字(基于
- winform C#做的winform透明窗体
- WordDemo 在Winform窗体中嵌入Word
- CustomFormsDesigner 用C#写的一个窗体设计
- Paway.Windows.Forms C#窗体个性 设计 像Q
- BaiDuMap C#开发Winform窗体自动调用百度
- CSharp--HALCON-PAINT c#在HALCON 窗体上画图
- ihalcon开源窗体控件
评论
共有 条评论