Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
hey,

I have a problem (a common one as I figured from searching the net..) -
I have a wpf application (not a web app!) and I added the wpftoolkit to one of my windows

xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit"

Maybe it's just a coincidence and it has nothing to do with the toolkit, but everything was fine before..

since then, I get 2 errors =

1. Instead of the windows gui, I get an exception of "Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

2. When I click "click here to reload thr designer" I get "type MS internal.permissions.userinitiatednavigationpermission in asssembly presentationframework version=3.0.0.0 ... is not mark as serializable"

A few notes:
1.I'm working with vs2008, vb.net, framework 3.5
2. I added to my application.xaml.vb :
VB
imports system.security.permissions.securitypermission

VB
imports system.security.permissions.UIpermission

3. I added to my app.manifest:

HTML
<applicationRequestMinimum>
  <defaultAssemblyRequest permissionSetReference="Custom" />
  <PermissionSet class="System.Security.PermissionSet" version="1" ID="Custom" SameSite="site">
   <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Assertion, UnmanagedCode, Execution, ControlThread, ControlEvidence, ControlPolicy, SerializationFormatter, ControlDomainPolicy, ControlPrincipal, ControlAppDomain, RemotingConfiguration, Infrastructure, BindingRedirects" />
   <IPermission class="System.Security.Permissions.UIPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
  </PermissionSet>
 </applicationRequestMinimum>


All of these things are parts of me trying to solve the problem but nothing help!
Also tried to close and re-open but the exception is still there... #!#

Please- can anyone has an idea how to solve this?

thanx!
Posted
Updated 21-Apr-13 2:28am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900