Tagged Questions
5
votes
4answers
3k 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,
...
2
votes
2answers
189 views
WPF Markup Extension in VB.Net not working
I'm trying to create a VB.Net Markup Extension per this blog post but in vb.net
<Application x:Class="Application"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
2answers
50 views
XAML markup binding to dictionary with key of type Type
I'm trying to bind to a Dictionary<Type,string> through xaml.
The problem is, the indexer [] in the Binding markup extension interprets it's content as string. Is there some kind of ...
1
vote
1answer
161 views
.net 4.0 markup-extensions WPF
I am back with another irritating problem. The problem is in .net 4.0 framework the TargetProperty type casting seems to have some problem and that's reported in msdn forums also. I've put up the code ...
1
vote
1answer
839 views
How does one create a MarkupExtension with non-string parameters?
I am working on a Custom MarkupExtension within a WPF application. Every documented example I have seen uses string parameters from XAML to construct the new object. Is it possible to use a ...
0
votes
2answers
51 views
Displaying a default image and changing it once the actual image finished loading
I have a WPF markup extension in charge of retrieving images by name, returning a BitmapImage object.
<Image Source="{my:ImageProvider ImageName=myImageName}"></Image>
Since retrieving ...
0
votes
1answer
295 views
How to reference a specific implementation of a generic type in the DataType attribute of a DataTemplate?
This question is strongly connected to this answer to "How to reference a generic type in the DataType attribute of a HierarchicalDataTemplate?"
I followed the basic idea of that answer and created ...