2
votes
3answers
166 views
How can I escape a single quote in a XAML markup extension property literal?
I have a value converter that formats numbers (I can't use SP1 yet unfortunately). It works fine until it gets a percentage.
Here's an example:
<TextBlock Text="{Binding Path=PercentageComplete,
…
1
vote
1answer
131 views
How do I resolve the value of a databinding?
I've made a markup extension for translating strings based on a key. Example
<TextBlock Text="{Translate myKey}" />
Now I want to be able to use nested bindings for providing my keys. …
3
votes
2answers
82 views
MarkupExtension as computed property in Template
Having such MarkupExtension
public class Extension1 : MarkupExtension
{
private static int _counter = 0;
public override object ProvideValue(IServiceProvider serviceProvider)
{
…
3
votes
2answers
348 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?
