silverlight
曹振华
这个作者很懒,什么都没留下…
展开
-
silverlight 应用程序在html或aspx里部署
silverlight 应用程序在html或aspx里部署原创 2010-11-06 18:02:00 · 829 阅读 · 0 评论 -
silverlight ToolTip的使用
以下代码是为Image添加一个图文并存的ToolTip原创 2012-11-30 13:58:13 · 2080 阅读 · 0 评论 -
silverlight 线程委托实现时间控件
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.In原创 2012-12-03 13:25:34 · 1180 阅读 · 0 评论 -
silverlight给ScrollViewer滚动条添加响应鼠标滚轮
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-10 11:01:03 · 2451 阅读 · 0 评论 -
Silverlight Datagrid 行上增加ToolTip
1) 前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend转载 2013-01-11 13:45:24 · 907 阅读 · 0 评论 -
silverlight 4 ContextMenu的使用
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-17 13:30:53 · 1810 阅读 · 0 评论 -
Silverlight 实现GlobalCalendar的国际化
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-11-27 14:44:07 · 941 阅读 · 0 评论 -
silverlight 实现动画效果
1)前台代码如下 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blen原创 2012-12-06 14:52:52 · 1450 阅读 · 1 评论 -
silverlight 在ScrollViewer中动态添加控件时ScrollViewer滚动条始终至底
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-09 21:07:22 · 1561 阅读 · 0 评论 -
silverlight使用DataPager实现DataGrid分页
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-11 17:20:38 · 2442 阅读 · 0 评论 -
silverlight DispatcherTimer 使按钮在指定的时间内不可编辑
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.In原创 2012-12-03 16:45:10 · 864 阅读 · 0 评论 -
silverlight为自定义控件添加事件
1)用户控件SilverlightControl1.xaml.csusing System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.原创 2012-11-28 14:32:59 · 2118 阅读 · 0 评论 -
silverlight 按回车触发按钮事件
silverlight 按回车触发按钮事件简单代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Docum转载 2012-11-26 11:13:33 · 1135 阅读 · 0 评论 -
silverlight 应用程序在iis里部署
silverlight 应用程序在iis里部署原创 2010-11-06 18:05:00 · 848 阅读 · 0 评论 -
silverlight 应用程序在ASP.NET Web网站或者Web应用程序里部署
silverlight 应用程序在ASP.NET Web网站或者Web应用程序里部署原创 2010-11-06 17:55:00 · 1104 阅读 · 0 评论 -
在Silverlight中使用SESSION
首先Session是运行在服务器上的,而Silverlight运行在客户端。因此在Silverlight中使用SESSION的说法并不准确,只因大家经常这样搜索才起这个名字。有两种方法实现Silverlight与Session的关联:方法一、通过WCF使用ASP.NET中的Session[因BasicHttpBinding不支持WCF中的Session,如使用WCF会话将报转载 2012-11-27 09:19:06 · 817 阅读 · 0 评论 -
silverlight 设置线程的区域性来设置语言
//设置线程的区域性来设置语言,把这行代码写在页面的构造函数中就可。//设置成中文如DatePicker和Calendar就会显示成中文//System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo("zh-Hans");//设置成英文如DatePicker和Calendar就会显示成英文System转载 2012-11-27 13:48:53 · 677 阅读 · 0 评论 -
Silverlight TextBox只能输入金额
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.In原创 2012-11-29 13:51:45 · 1195 阅读 · 0 评论 -
silverlight 实现DataGrid的批量选择功能
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-12 18:31:39 · 1805 阅读 · 1 评论 -
silverlight datagrid列宽自动填充
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.In原创 2012-12-14 13:26:37 · 1543 阅读 · 0 评论 -
Silverlight4.0使用反射来遍历枚举
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.In转载 2012-12-15 22:22:09 · 874 阅读 · 0 评论 -
silverlight 实现在Canvas中拖放控件
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/转载 2013-01-18 10:40:29 · 789 阅读 · 0 评论 -
silverlight Toolkit绘制图表
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-17 16:44:05 · 1139 阅读 · 0 评论 -
silverlight 获取控件间的相对位置
1)前台代码 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/原创 2012-12-09 21:27:50 · 1288 阅读 · 0 评论