Tagged Questions

5
votes
3answers
2k views

Markup Extensions in WPF/Silverlight

Has anyone ever created a custom markup extension in WPF or Silverlight? When would you ever want or need to do this? Any tips or sources on how to do it?
1
vote
2answers
76 views

Alternative to MarkupExtension inheritance in Silverlight

I'm using MarkupExtension inheritance in my WPF app, which I'd like to port under Silverlight. I've made a "Locale" markup extension which can be used like this in xaml <TextBlock ...
1
vote
1answer
111 views

Is there any way to instantiate a 'Type' in Silverlight XAML?

It's well known that Silverlight lacks the very compelling x:Type MarkupExtension (MarkupExtension is not supported in Silverlight at all). Is there any dynamic workaround for it? What about enums ...
0
votes
0answers
21 views

XmlnsDefinition to merge with the BCL assemblies?

I created an assembly with some controls. I created all the controls under the namespace System.Windows.Controls, and added the following to the AssemblyInfo.cs file: [ComVisible(true)] [assembly: ...
0
votes
1answer
158 views

Deriving from Binding class (Silverlight 4.0)

Using the existing Binding class, we can write, <TextBox Text="{Binding Email, Mode=TwoWay}"/> So we can write anything as Email; there is no validity check by Binding itself. I started ...