在silverlight中使用OpenFileDialog浏览本地图片 – 代震军BLOG – 博客园
http://www.cnblogs.com/daizhj/archive/2008/06/03/1212084.html
silverlight能够访问本地硬盘的资源么? | Silverlight中文社区
http://silverlight.cn/node/1796
http://funsl.com/blog
http://funsl.eblhost.cn/drupal/content/silverlight-4-%E6%9C%AC%E5%9C%B0%E6%96%87%E4%BB%B6%E7%B3%BB%E7%BB%9F%E8%AE%BF%E9%97%AE%E6%94%AF%E6%8C%81
http://funsl.com/blog
http://funsl.eblhost.cn/drupal/content/silverlight-4-beta-%E5%BC%80%E5%8F%91%E5%B9%B3%E5%8F%B0%E5%AE%89%E8%A3%85
1.visual studio 2010 beta2
2.Silverlight 4 Beta Tools for Visual Studio 2010
http://go.microsoft.com/fwlink/?LinkID=177508
3.Siverlight 4 developer runtime for windows
4.Microsoft Expression Blend for .NET 4 Preview
http://go.microsoft.com/fwlink/?LinkId=169446
5.silverlight toolkit for silverlight 4 beta
http://silverlight.codeplex.com/
请安装所有工具前先把IIS功能添加到系统再开始按以上的顺序安装开发平台!
http://funsl.com/blog
http://funsl.eblhost.cn/drupal/content/silverlight-4-beta-%E5%BC%80%E5%8F%91%E5%B9%B3%E5%8F%B0%E5%AE%89%E8%A3%85
silverlight如何在客户端写入文件-ASP.NET教程-数字生活
http://www.22333.com/webdevelop/30340_3.html
Save to local file system in Silverlight : The Official Microsoft Silverlight Site
http://forums.silverlight.net/forums/p/16183/68401.aspx
Tutorial: Reading Local Files in Silverlight
http://www.insidercoding.com/post/2008/08/17/Reading-Local-Files-in-Silverlight.aspx
Shri Borde’s WebLog : Saving a file to the local disk in Silverlight
http://blogs.msdn.com/shrib/archive/2007/09/25/saving-a-file-to-the-local-disk-in-silverlight.aspx
How To Read File On Local Disk : The Official Microsoft Silverlight Site
http://forums.silverlight.net/forums/p/11391/36549.aspx
Open File Dialog in Silverlight
http://www.silverlightexamples.net/post/Open-File-Dialog-in-Silverlight.aspx
Tutorial: Reading and Writing Files in Silverlight
http://www.insidercoding.com/post/2008/08/08/Tutorial-Reading-and-Writing-Files-in-Silverlight.aspx
IsolatedStorageFile
Currently Watching : The Official Microsoft Silverlight Site
http://silverlight.net/learn/videos/all/local-file-access/
详解Silverlight 2中的独立存储
http://soft.zdnet.com.cn/software_zone/2009/0204/1332042.shtml
IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings; appSettings.Add(“mykey”,”myValue”); appSettings.Save(); IsolatedStorageSettings siteSettings = IsolatedStorageSettings.SiteSettings; siteSettings.Add(“mykey1″,”myValue1″); siteSettings.Save();
It should be fun | Accessing the local file system in Silverlight 3
http://blog.rag.no/post/Accessing-the-local-file-system-in-Silverlight-3.aspx
Jeff Prosise’s Blog : Loading Images from the Local File System in Silverlight 2.0
http://www.wintellect.com/cs/blogs/jprosise/archive/2008/03/15/loading-images-from-the-local-file-system-in-silverlight-2-0.aspx
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = “JPEG Files (*.jpg;*.jpeg)|*.jpg;*.jpeg | All Files (*.*)|*.*”;
ofd.FilterIndex = 1;
if (ofd.ShowDialog() == DialogResult.OK)
{
Stream stream = ofd.SelectedFile.OpenRead();
BitmapImage bi = new BitmapImage();
bi.SetSource(stream);
MyImage.Source = bi;
stream.Close();
}
历史博文
- 20080703 win2003 AntiVir - 2009
- 20070709 vmware Bridged networking on /dev/vmnet0 [FAILED] - 2008
- 0908 ftp Maximum disk quota 上传 失败 - 2007
- 0110 工作倦怠症 - 2006
- 软件开发误区之三-操作系统之争 - 2005