红狐

DBku

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2017年8月10日

摘要: 创建组 shift + alt + right 取消组 shift + alt + left 阅读全文
posted @ 2017-08-10 08:52 DBku 阅读(169) 评论(0) 推荐(0)

摘要: 下面这个链接,是fiddler的一个系列教程,基础基本涵盖了,非常实用,建议新手一看。 http://www.360doc.com/userhome.aspx?userid=30056680&cid=5 下面是我的个人使用心得,主要是防止学过的东西被忘记,在这里做个记录。 首先得承认,fiddler 阅读全文
posted @ 2017-08-10 08:38 DBku 阅读(196) 评论(0) 推荐(0)

2013年5月13日

摘要: border-radius:圆角View Code 1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head runat="server"> 3 <title></title> 4 <style type="text/css"> 5 #div1{border-radius:10px;background-color:#dddddd;border:2px solid #a1a1a1;height:100px;width:100p 阅读全文
posted @ 2013-05-13 11:21 DBku 阅读(134) 评论(0) 推荐(0)

2013年4月19日

摘要: 代码很简单,就不多做解释了 1 //定义一委托 2 public delegate int OperationDelegate(int x,int y); 3 public class Operator 4 { 5 private int _x, _y; 6 public Operator(int x, int y) 7 { 8 this._x = x; 9 this._y = y;10 }11 12 public void Operate(Op... 阅读全文
posted @ 2013-04-19 13:08 DBku 阅读(157) 评论(0) 推荐(0)