• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






Kevin Gao

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 83 下一页

2012年1月12日

C# word类库
摘要: using System; using System.Collections.Generic; using System.Text; using Microsoft.Office.Interop.Word; using System.IO; using Sys... 阅读全文
posted @ 2012-01-12 16:09 Kevin Gao 阅读(24) 评论(0) 推荐(0)
 

2012年1月11日

Android提供两个常用的消息弹出框【Toast和Alert】
摘要: Android提供两个常用的消息弹出框,Toast和Alert。ToastToast是一种短暂的提示框,并不需要用户交互,也不会将focus移过来,因此可以适合大多数的场景,向用户进行信息提示。在之前的学习中,已经多次使用到Toast了。创建一个Toast很简单,使用静态方法makeText(Context context, CharSequence text | int resId, int duration),将String(或者String的ID),以及显示的时间长短(LENGTH_SHORT或者LENGTH_LONG)就可以得到一个Toast的对象。上面是最常用的方式,但是如果要显示成 阅读全文
posted @ 2012-01-11 16:07 Kevin Gao 阅读(7928) 评论(0) 推荐(0)
 
Android提供两个常用的消息弹出框【Toast和Alert】
摘要: Android提供两个常用的消息弹出框,Toast和Alert。 Toast Toast是一种短暂的提示框,并不需要用户交互,也不会将focus移过来,因此可以适合大多数的场景,向用户进行信息提示。在之前的学习中,已经多次使用到Toast了。 创建一个Toas... 阅读全文
posted @ 2012-01-11 16:07 Kevin Gao 阅读(10) 评论(0) 推荐(0)
 

2012年1月10日

C#中 Process的扩展类ProcessExtensions
摘要: /// /// Process extensions /// public static class ProcessExtensions { #region Functions #regio... 阅读全文
posted @ 2012-01-10 09:21 Kevin Gao 阅读(18) 评论(0) 推荐(0)
 
C#中 Process的扩展类ProcessExtensions
摘要: /// <summary> /// Process extensions /// </summary> public static class ProcessExtensions { #region Functions #region KillProcessAsync /// <summary> /// Kills a process /// </summary> /// <param name="Process">Process that should be killed</param> /// &l 阅读全文
posted @ 2012-01-10 09:21 Kevin Gao 阅读(476) 评论(0) 推荐(0)
 
[置顶] C#中 Process的扩展类ProcessExtensions
摘要: /// <summary> /// Process extensions /// </summary> public static class ProcessExtensions { #region Functions #region KillProcessAsync /// <summary> /// Kills a process /// </summary> /// <param name="Process">Process that should be killed</param> /// &l 阅读全文
posted @ 2012-01-10 09:21 Kevin Gao 阅读(369) 评论(0) 推荐(0)
 

2012年1月7日

C#获取当前系统信息的类
摘要: ///<summary>///Class designed to give information///about the current system///</summary>publicstaticclassEnvironment{#regionPublic Static Properties///<summary>///Name of the machine running the app///</summary>publicstaticstringMachineName{get{returnSystem.Environment.Machi 阅读全文
posted @ 2012-01-07 13:41 Kevin Gao 阅读(610) 评论(0) 推荐(0)
 
C#获取当前系统信息的类
摘要: /// /// Class designed to give information /// about the current system /// public static class Environment ... 阅读全文
posted @ 2012-01-07 13:41 Kevin Gao 阅读(22) 评论(0) 推荐(0)
 
分享一个收集系统出现错误时收集信息的类
摘要: 在系统开发过程中,出现错误在所难免,但是怎么样处理好出错的情况,以及尽可能地收集出错时的一些信息,对我们分析错误,从而查找排除错误是很有帮助的,下面提供一个错误信息收集类给大家,希望能够派上用场。 /// /// Class that handles... 阅读全文
posted @ 2012-01-07 13:01 Kevin Gao 阅读(10) 评论(0) 推荐(0)
 
分享一个收集系统出现错误时收集信息的类
摘要: 在系统开发过程中,出现错误在所难免,但是怎么样处理好出错的情况,以及尽可能地收集出错时的一些信息,对我们分析错误,从而查找排除错误是很有帮助的,下面提供一个错误信息收集类给大家,希望能够派上用场。///<summary>///Class that handles gathering of error information///for reporting purposes///</summary>publicstaticclassErrorManager{#regionPublic Static Functions///<summary>///returns 阅读全文
posted @ 2012-01-07 13:00 Kevin Gao 阅读(317) 评论(0) 推荐(0)
 
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 83 下一页