• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wangrenzhu
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 下一页

2012年5月24日

wpf+.net 4.5 surface2.0 = 异步多点触控 时间轴 part3
摘要: 坐标轴xaml:<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.... 阅读全文
posted @ 2012-05-24 16:49 wangrenzhu 阅读(198) 评论(0) 推荐(0)
 
wpf+.net 4.5 surface2.0 = 异步多点触控 时间轴 part2
摘要: 先来张效果图,然后继续贴轴控件xaml :<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="http://schemas.microsoft.com/surface/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/ 阅读全文
posted @ 2012-05-24 16:46 wangrenzhu 阅读(201) 评论(0) 推荐(0)
 
wpf+.net 4.5 surface2.0 = 异步多点触控 时间轴 part1
摘要: 直接贴代码 废话不多说了。运行环境 vs11 beta framework4.5surface runtime surface sdk 2.0多点触控模拟器 multitouchVista 或多点触控设备源码请关注我的资源下载功能说明: 多点触控时间轴,事件可缩放 旋转 多点同时操作 放大缩小等,时间范围0001-9980年 定位精确到天 时间轴数据加载格式如下:<?xml version="1.0" encoding="utf-8" ?><data> <event imgUrl="Sample_Photos&qu 阅读全文
posted @ 2012-05-24 16:44 wangrenzhu 阅读(242) 评论(0) 推荐(0)
 
 

2012年5月14日

利用C# 5 新特性 异步操作UI
摘要: 参考文章:http://www.cnblogs.com/mgen/archive/2012/03/10/2389509.htmlusing System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; usi 阅读全文
posted @ 2012-05-14 11:27 wangrenzhu 阅读(426) 评论(0) 推荐(0)
 
 

2012年3月27日

C# 5新特性详解之一——异步编程 转。。保存一下以后看
摘要: C# 5新特性详解之一——异步编程2012-03-26 13:08|5619次阅读|来源:CSDN【已有35条评论】发表评论关键词:C#|作者:王然|收藏这篇资讯导读:本文详细介绍了C#5的新特性:异步编程、方法调用、Lambda表达式..,供开发者参阅。在即将到来的新的Windows Runtime中更根本地确定任何API都不会运行超过50ms的时间。需要更长时间的操作将会由'kick off this operation'API来代替,不等待运算结果就直接立刻返回。这样做是因为Microsoft希望Windows8 Metro程序能够在即时的触控UI上能够“快速并且流动”, 阅读全文
posted @ 2012-03-27 13:57 wangrenzhu 阅读(274) 评论(0) 推荐(0)
 
 

2012年3月22日

图片循环播放器。WPF制作 以下为代码
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using Syst 阅读全文
posted @ 2012-03-22 17:43 wangrenzhu 阅读(510) 评论(0) 推荐(1)
 
自定义事件和参数。详细版。。。
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using Syst 阅读全文
posted @ 2012-03-22 15:39 wangrenzhu 阅读(334) 评论(0) 推荐(0)
 
自定义事件。。转
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Controls; using System.Windows; namespace Callback_Validation_DPs { #region 依赖属性简单调用 步骤 public class SimpleDPClass : Control//DependencyObject { public SimpleDPClass() : b... 阅读全文
posted @ 2012-03-22 14:31 wangrenzhu 阅读(191) 评论(0) 推荐(0)
 
使用WebRequest 检测 手机号归属地。 C#通用 使用json 和可设定超时的WebClient
摘要: 首先建立jsonObject,当然你也可以使用xml解析,目前介绍一下我使用的方法。/********************************************************** * 说明:Json通用转换类 *********************************************************/ using System; using System.Collections.Generic; using System.Text; namespace Xfrog.Net { /// <summary> /// 用于构建... 阅读全文
posted @ 2012-03-22 10:39 wangrenzhu 阅读(240) 评论(0) 推荐(0)
 
WPF 悬浮键盘
摘要: public class TouchScreenKeyboard : Window { #region Property & Variable & Constructor private static double _WidthTouchKeyboard = 830; public static double WidthTouchKeyboard { get { return _WidthTouchKeyboard; } set { _WidthTouchKeyboa... 阅读全文
posted @ 2012-03-22 10:30 wangrenzhu 阅读(249) 评论(0) 推荐(0)
 
 
上一页 1 2 3 下一页

公告


博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3