我考虑在C#/中撰写申请。 该网络将在方案上改变用户计算机的XML文档,我试图确定银灯(以及哪几种版本以何种方式)是否将完成这项任务。
工作流程:
- User selects file
- Application modifies file
- Application saves file, overwriting original file
能否在银灯上这样做? 如果是的话,在什么版本和什么条件下?
我考虑在C#/中撰写申请。 该网络将在方案上改变用户计算机的XML文档,我试图确定银灯(以及哪几种版本以何种方式)是否将完成这项任务。
工作流程:
能否在银灯上这样做? 如果是的话,在什么版本和什么条件下?
这里的一些答案集中在废弃储存上。 如果没有其他应用需要获得这一数据,那么,或许储存是你们的答案。 http://blogs.silverlight.net/blogs/msnow/archive/2008/07/16/tip-of-the-day-19-using-isoped-storage.aspx” rel=“nofollow noreferer”>link是一个博客,说明如何将溶解剂用于营养餐厅。
我怀疑这可能是你想要的,因为你们有用户选择档案。
当然,在SL3中,用户可以选择档案,然后可以阅读。
然而,为了再次节省费用,你必须向用户显示“Save file”的方言,以找到能够写到的档案。
在SL4号大楼里,有高温的客人,你可以直接在像我的文件这样的用户中保存此类档案。
<><>Edit>/strong>
简言之,你不能写上使用<代码>获得的档案。 开放FileDialog只有读到,你不能读到使用<代码>SaveFileDialog
银灯在安全沙箱内运行。
你们只能通过公开的卷宗方言,才能从电脑硬盘中查阅档案。 可在上阅读和书写。
Coming in Berlin 4 您将有能力查阅“特别名录”的档案,例如My Documents、My 音乐、Mygraphs等(
SL3能够进入一个废弃的储存区,SL4为可信赖的申请打开了通道,使其能够查阅MyDocs、MyPictures等档案。
银星应用不得改变用户计算机上的任意档案。 然而,它们能够在当地使用溶解储存储存:
页: 1 该网络框架是孤立储存的一种储存机制,能够部分相信地进行应用,以节省当地机器的数据,同时又不违反计算机上的任何安全政策。 自“网络框架”第一版以来,储存已经过时,尤其有助于下载部分可信赖的、通常得不到标准I/O机制的部件。 但这些申请通常被赋予使用单独储存的权利。 这样,来自潜在未信任来源的申请仍然可以做一些软盘I/O,尽管可以控制的方式。
可在以下条款中更多地了解这一点:
顾问办在档案中进行公开/辩证辩证。 方便用户查阅/修改其规定的任何档案,归还银灯可查阅的档案。
除此之外,银灯还能够进入自己的孤立储存。
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...
Since I cannot order my dictionary, what is the best way of going about taking key value pairs and also maintaing an index?
Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...