2013年11月27日

摘要: 【转载】1.安装后立刻更新软件源:sudo gedit /etc/apt/sources.listapt -get update,推荐163 源。2.更新管理器,会自动升级系统包括内核。3.安装新立得软件包管理器。4.安装输入法,推荐fictx:sudo apt-get install fcitx;$im-switch -c注:设置默认输入法$im-switch -s fcitx -z deafult注:设系统默认调用fcitx 输入点击:系统--首选项--启动应用程序选添加按钮在弹出的窗口名称填fcitx 命令填fcitx -d 点添加。点击:系统—系统管理--语言支持,会提醒升级,跟着升级 阅读全文
posted @ 2013-11-27 17:43 MasonChi 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 【转载】先添加Web引用http://www.webxml.com.cn/WebServices/WeatherWebService.asmxusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceWindowsFormsApplication1{publicpartialclassFrmWeahte 阅读全文
posted @ 2013-11-27 16:59 MasonChi 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 【转载】public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void timer1_Tick(object sender, EventArgs e) { if (this.Opacity > 0.1) { this.Opacity = this.Opacity - 0.02; } ... 阅读全文
posted @ 2013-11-27 16:53 MasonChi 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 【转载】 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 namespace BounHide10 {11 public partial class hide : Form12 {13 public hide()... 阅读全文
posted @ 2013-11-27 16:50 MasonChi 阅读(696) 评论(0) 推荐(1) 编辑
摘要: 【转载】本文简单实现了用ListView显示SDCard文件列表,目录的回退等功能暂不讨论获取文件列表,files即为所选择目录下的所有文件列表:filePath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/ADASiteMaps/SigRecord"; File file=new File(filePath); File[] files = file.listFiles();构造Adapter, for(File mCurrentFile:files){ ... 阅读全文
posted @ 2013-11-27 16:47 MasonChi 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 【转载】首先在窗体中添加一个 notifyIcon1控件 ,Then://添加事件《实现最小化之后任务栏显示图标》 private void Form1_StyleChanged(object sender, EventArgs e) { if (this.WindowState == FormWindowState.Minimized) { this.notifyIcon1.Visible = true; this.Visible = false; ... 阅读全文
posted @ 2013-11-27 16:31 MasonChi 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 1 private void Form1_Load(object sender, EventArgs e) 2 { 3 4 System.Windows.Forms.Timer StopRectTimer = new System.Windows.Forms.Timer(); 5 StopRectTimer.Tick += new EventHandler(timer1_Tick); 6 StopRectTimer.Interval = 50; 7 Sto... 阅读全文
posted @ 2013-11-27 16:27 MasonChi 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 【转载】当点击窗体1的按钮,窗体2就出现在窗体1的左边:窗体1public partial class Form1 : Form{public Form1(){InitializeComponent();}private void button1_Click(object sender, EventArgs e){Form2 f = new Form2(this.Location.X+this.Width,this.Location.Y);//窗体2出现在左还是右,在new Form2()输入参数f.Show();}}窗体2public partial class Form2 : Form{i 阅读全文
posted @ 2013-11-27 16:25 MasonChi 阅读(192) 评论(0) 推荐(0) 编辑
摘要: window->customize perspective/Command Groups Availability 勾选Android SDK and AVD Manager 阅读全文
posted @ 2013-11-27 16:18 MasonChi 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 【转载】搭建Android 的开发环境啦,步骤如下:1. 安装JDK。注意这里只是安装JRE是不行的,需要安装JDK笔者是去http://www.oracle.com/technetwork/java/javase/downloads/index.html下载了 JDK 6 Update 20。注: 根据www.eclipse.org的官方信息,在windows 平台上安装了JDK 6 Update 21,然后运行Eclipse Helios (3.6) 会出现 crashing,需要进行一些设置 (http://wiki.eclipse.org/FAQ_How_do_I_run_Eclips 阅读全文
posted @ 2013-11-27 16:14 MasonChi 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 【转载】Android中实现拍照有两种方法,一种是调用系统自带的相机,然后使用其返回的照片数据。 还有一种是自己用Camera类和其他相关类实现相机功能,这种方法定制度比较高,洗染也比较复杂,一般平常的应用只需使用第一种即可:读写sd卡文件必须首先要在Mainifest.xml文件中配置权限: 用Intent启动相机的代码:Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, 1);拍完照后就可以在:onActivityResult(int requestCode. 阅读全文
posted @ 2013-11-27 16:02 MasonChi 阅读(184) 评论(0) 推荐(0) 编辑

导航