If you make a custom control and want to insert this control to your Page.xaml with Expression Blend, the custom control appears in Asset Library but if you add this control to your canvas with selecting it from toolbox, Blend creates an xmlns line and the
assembly attribute for this line does not contain "ClinetBin".
The line has to be like this :
xmlns:Test
="clr-namespace:Silverlight.UI.UserControls;assembly=ClientBin/Silverlight.UI.dll"
Blend creates another line like this :
defunx
0 Points
1 Post
Blend causes "AG_E_Runtime_Managed_Assembly_Download" error.
Jul 27, 2007 07:13 PM | LINK
If you make a custom control and want to insert this control to your Page.xaml with Expression Blend, the custom control appears in Asset Library but if you add this control to your canvas with selecting it from toolbox, Blend creates an xmlns line and the assembly attribute for this line does not contain "ClinetBin".
The line has to be like this :xmlns:Test
="clr-namespace:Silverlight.UI.UserControls;assembly=ClientBin/Silverlight.UI.dll" Blend creates another line like this :xmlns:Silverlight_UI_UserControls="clr-namespace:Silverlight.UI.UserControls;assembly=Silverlight.UI.dll"