在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


http://www.microsoft.com/downloads/details.aspx?FamilyID=dc333ac8-596d-41e3-ba6c-84264e761b81&displaylang=en


2.Silverlight 4 Beta Tools for Visual Studio 2010


http://go.microsoft.com/fwlink/?LinkID=177508


3.Siverlight 4 developer runtime for windows


http://silverlight.dlservice.microsoft.com/download/F/6/5/F653F7FD-AD4D-411D-8B1F-9C4B1BD69881/Silverlight_Developer.exe


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();


}


 

历史博文

标签:
二月 17, 2010 at 6:54 下午 by yippee 35 次
Category: Info
Tags: