摘要: 1.去NuGet下载 Castle.Core.dll 2.建一个普通的类。注意:本类2个方法,测试是否走拦截器。这里只有标记Virtual才能实现方法拦截。代码如下: using System; using System.Collections.Generic; using System.Linq; 阅读全文
posted @ 2017-08-31 19:10 01234 阅读(4498) 评论(0) 推荐(0) 编辑
摘要: 1.首先 : NuGet 获取这两个包。 执行以下步骤: 在“解决方案资源管理器”中,右键单击你的项目并选择“管理 NuGet 包”。 在线搜索“WindowsAzure.Storage”,然后单击“安装” 以安装存储客户端库和依赖项。 在线搜索“WindowsAzure.Configuration 阅读全文
posted @ 2017-06-29 09:47 01234 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 1.https://nodejs.org/en/ 下载node.js 控制台,查看node版本 C:\WINDOWS\system32>node --version 出现版本表示安装成功 2.cmd 输入 npm install anywhere -g 安装anywhere 3.在cmd页面 找到你 阅读全文
posted @ 2016-11-21 16:56 01234 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1 Ext.onReady(function () { 2 3 Ext.create('Ext.panel.Panel', { 4 title: '我的面板', 5 width: '100%', 6 height: 400, 7 renderTo: Ext.getBody(), 8 ... 阅读全文
posted @ 2016-10-25 18:19 01234 阅读(229) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { //Ext.define 其他配置项 //别名、备用名 Ext.define("User", { config: { name: 'hhh', age:10 }, alias: 'uu',//起别名 底层代码在... 阅读全文
posted @ 2016-10-25 18:14 01234 阅读(194) 评论(0) 推荐(0) 编辑
摘要: html部分 js部分 阅读全文
posted @ 2016-09-28 09:41 01234 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { Ext.create('Ext.window.Window', { title: 'window', width: 400, height: 300, layout: 'fit', //布局 constrain: true,//限制窗口不超出浏览器边界 c... 阅读全文
posted @ 2016-09-28 09:34 01234 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 Ext.onReady(function () { 2 //extend 继承 3 Ext.define('Person', { 4 config: { 5 name: 'aaa' 6 }, 7 //给当前定义的类加一个构造器 ,目的就是为了初始化信息 8 constru... 阅读全文
posted @ 2016-09-27 09:39 01234 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { //在Ext中如何去定义一个类: Ext.define(className , properties , callback) Ext.define('Person', { //这里是对于这个类的一些配置信息 //config属性 就是配置当前类的属性内容,并且会加上get和set方法 ... 阅读全文
posted @ 2016-09-27 09:37 01234 阅读(148) 评论(0) 推荐(0) 编辑
摘要: ExtJS目录说明 ExtJS001HelloWorld弹窗 ExtJS002Window创建 ExtJS003单击按钮弹出window ExtJs004define定义类 ExtJs005继承 ExtJs006类别名、备用名 ExtJs007最常用的查询方法 未完待续。。。 阅读全文
posted @ 2016-09-26 16:50 01234 阅读(111) 评论(0) 推荐(0) 编辑