上一页 1 ··· 191 192 193 194 195 196 197 198 199 ··· 329 下一页
摘要: WPF页面跳转有两种:一种是windows,另外一种是page 1:windows页面跳转 windows 页面跳转相信学过winform编程的哥们都知道,先实例化该窗体然后show一下就可以了.eg:有两个窗体Main和Login,要想点击Login 窗体上的注册按钮然后跳转到Main上,则在Login窗体的Click事件里代码如下:Main Mn=new Main();Mn.Show(); 2:Page页面跳转Page页面跳转:前台跳转和后台跳转都可以实现前台实现: Enter Page1 后台实现: NavigationService.GetNavigationService(t... 阅读全文
posted @ 2013-06-26 20:06 jlins 阅读(530) 评论(0) 推荐(0)
摘要: 一:HighChart介绍基于JQuery的纯JavaScript的图标库,支持各种图表显示,同时还支持Mootools与Prototype详细版本支持在这里:JQuery1.3.2 - 1.9.x. 2.0.x for modern browsersMootools1.2.5 - 1.4.5Prototype1.7支持目前市场几乎所有的主要浏览器IE, Chrome, FF,Safari, Opera等。其图形渲染完全是是基于SVG与VML方式,其中VML方式主要是兼容IE浏览器,在IE9+及其它浏览器上渲染技术都是基于SVG方式。下载与安装指导文档->http://docs.high 阅读全文
posted @ 2013-06-26 20:04 jlins 阅读(6494) 评论(1) 推荐(0)
摘要: sar这东西,一开始还以为是内部有的,原来是外部的工具,可以到 http://pagesperso-orange.fr/sebastien.godard/download.html 去下载1 安装 tar zxvf xxx.tar.gz./configure make make install2 使用 pidstat25 //每隔2秒,显示5次,所有活动进程的CPU使用情况 pidstat-p313225 //每隔2秒,显示5次,PID为3132的进程的CPU使用情况显示 pidstat-p313225-r //每隔2秒,显示5次,PID为3132的进程的内存使用情况显示 查看CPU使用情况. 阅读全文
posted @ 2013-06-26 20:02 jlins 阅读(409) 评论(0) 推荐(0)
摘要: 原文:http://www.codza.com/free-iphone-app-version-from-the-same-xcode-project There are more than 15,000 apps in the app store and hundreds are added daily. You need a way to show off your awesome creation to the millions of potential buyers.One of the most effective marketing tools for small fish is 阅读全文
posted @ 2013-06-26 20:00 jlins 阅读(825) 评论(0) 推荐(0)
摘要: A contextual menu offers actions that affect a specific item or context frame in the UI. You can provide a context menu for any view, but they are most often used for items in aListView,GridView, or other view collections in which the user can perform direct actions on each item.一个上下文菜单提供了行动,影响特定项目或 阅读全文
posted @ 2013-06-26 19:58 jlins 阅读(411) 评论(0) 推荐(0)
摘要: 前几节我们讲了如何布局,如何使用控件。这一节我们主要讲如何操作控件。安卓提供了一个很好的框架,并且内置了相应控件的java组件代码。我们一般通过findViewById方法来获取控件对象。看一段代码:package com.example.androidtest;import android.app.Activity;import android.os.Bundle;import android.view.Window;import android.widget.TextView;/** * 安卓入口文件 * @author zhuli.zhul * @date 2013 2013-6-5 下 阅读全文
posted @ 2013-06-26 19:56 jlins 阅读(425) 评论(0) 推荐(0)
摘要: 1.问题描述:使用SAM9X25 内核版本是2.6.39 在启动内核时会出现Verifying Checksum ... Bad Data CRC 错误2.解决办法:查看原先uboot参数:bootcmd=nand read.i 0x22000000 0x00200000 0x280000; bootm 0x22000000 //发现内核镜像大于0x80000修改uboot启动参数如下:setenv bootcmd nand read.i 0x22000000 0x00200000 0x600000\; bootm 0x22000000这样内核就能跑起来了 阅读全文
posted @ 2013-06-26 19:54 jlins 阅读(1356) 评论(0) 推荐(0)
摘要: 关键词:androidLCD控制器Framebuffer PWM平台信息: 内核:linux2.6/linux3.0 系统:android/android4.0 平台:samsungexynos4210、exynos4412、exynos5250作者:xubin341719(欢迎转载,请注明作者)下载链接:LCD规格书(404份),之前工作用用到的、LCD规格书00 、LCD规格书01 、 LCD测试图片,彩条灰阶等Android LCD(一):LCD基本原理篇Android LCD(二):LCD常用接口原理篇 Android LCD(三):Samsung LCD接口篇 Android LCD 阅读全文
posted @ 2013-06-26 19:52 jlins 阅读(924) 评论(0) 推荐(0)
摘要: 最近买了一块三轴磁场模块进行实验 名称:HMC5883L模块(三轴磁场模块) 型号:GY-271 使用芯片:HMC5883L 供电电源:3-5v 通信方式:IIC通信协议 测量范围:±1.3-8 高斯 MCU: STC89C52RC 遇到的问题与解决方法: 1) 我的实验板 P1.0, P1.1 直接连接了板载液晶1602的插口 而作为i2c协议的SDL, SCL输入, 我必须把P1.0, P1.1 空出来,所以我用外接线连接了液晶 2) 看说明貌似GY-271 输出是3.3V, 我先打算用上拉电阻, 而后用示波器看数据, 高电平是5V (怀疑 GY-271 上面已经有上拉电阻了) 阅读全文
posted @ 2013-06-26 19:50 jlins 阅读(2487) 评论(0) 推荐(0)
摘要: SESC安装见前文 配置sesc支持热量模拟../sesc/configure --enable-power --enable-therm make遇到问题:1 找不到liblevmar.acd ~/sesc/src/libsesctherm/levmar-2.1.3 make 2 找不到/usr/lib64/liblapack.so.3sudo apt-get install liblapack3gf sudo cp /etc/alternatives/liblapack.so.3gf /usr/lib64/liblapack.so.3 3g++: /mada/software/amd/ac 阅读全文
posted @ 2013-06-26 19:48 jlins 阅读(490) 评论(0) 推荐(0)
上一页 1 ··· 191 192 193 194 195 196 197 198 199 ··· 329 下一页