Tagged Questions

2
votes
2answers
140 views

Exception with type System:Char

I am trying to create a reusable System:Char value in my xaml resources. I have: xmlns:s="clr-namespace:System;assembly=mscorlib" Then: <s:Char x:Key="MaskPromptChar">#</s:Char> I ...
1
vote
0answers
116 views

Silverlight import App.xaml from dynamically xap loaded

Is there any way to access app.xaml resources of an imported XAP file (from host silverlight app) ??? Or better, import guest app.xaml into Host app.xaml Problem is that in the imported Silverlight ...
0
votes
1answer
50 views

Silverlight - How to post data to custom columns?

I've got an app that I'm coding in Silverlight, and I need to post data to a datagrid. When I customize the datagrid and name each of the columns that I need, nothing posts appears when I click the ...
0
votes
1answer
238 views

Silverlight: how to not load MergedDictionaries from app.xaml at startup?

As a workaround for the way Silverlight loads resources, I implemented the solution posted here: Silverlight Shared MergedDictionaries This works fine, but it's annoying having to comment out the ...
0
votes
3answers
334 views

Broken Silverlight Design-Surface in VS2008

In VisualStudio 2008, the design surface is just empty since I added this style to App.xaml: <Style x:Key="RightAlignedCell" TargetType="data:DataGridCell"> <Style.Setters> ...