Tagged Questions

3
votes
1answer
69 views

Is injecting commands via markup extension a good practice?

I have a custom markup extension which resolve commands using dependency injection. It is very handy for me, because I don't have to create commands in view model and bindings for them. Recently I've ...
3
votes
1answer
82 views

How to create a XAML markup extension that returns a collection

I am using XAML serialization for an object graph (outside of WPF / Silverlight) and I am trying to create a custom markup extension that will allow a collection property to be populated using ...
3
votes
1answer
95 views

When are x:Static type converters evaluated: runtime or compile time?

I have a wpf application and I'm starting to localize it. The strategy for localization I chose was to create my custom MarkupExtension class. I won't be using the .res files since at my company ...
3
votes
2answers
434 views

The uncatchable exception

Followup: http://stackoverflow.com/questions/3057822/the-uncatchable-exception-pt-2 I'm writing a custom binding engine; my converter is being called before DataContext is set on the target element. ...
3
votes
1answer
262 views

Accessing “current class” from WPF custom MarkupExtension

I'm attempting to write a custom MarkupExtension to make my life easier by giving me a better way to specify bindings in XAML. However I would like to know if there is any way I can access the object ...
2
votes
3answers
135 views

Set custom MarkupExtension from code

How do you set a custom MarkupExtension from code? You can easily set if from Xaml. The same goes for Binding and DynamicResource. <TextBox FontSize="{Binding MyFontSize}" ...
1
vote
2answers
238 views

Improved IValueConverter — MarkupExtension or DependencyObject?

I saw online 2 different approaches to enhancing an IValueConverter. One of them extended a ValueConverter from MarkupExtension, the other from DependencyObject. I can't extend from both, so I'm ...
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
157 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
2answers
367 views

'System.Windows.Data.MultiBinding' is not a valid value for property 'Text'

I'm trying to write a custom MarkupExtension that allows me to use my own mechanisms for defining a binding, however when I attempt to return a MultiBinding from my MarkupExtension I get the above ...
1
vote
1answer
981 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. ...
1
vote
1answer
828 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
1answer
34 views

ComboBox with localizable ComboBoxItems specified in XAML

I have a ComboBox which I'd like to populate with members of an enum, with localized representative strings. I know the standard way to do this is to make a Dictionary in codebehind with the enum ...
0
votes
2answers
47 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
2answers
141 views

MarkupExtension.ProvideValue — Is the IServiceProvider actually used?

I was going through some old code of mine and came across a hybrid IValueConverter / MarkupExtension class. It got me wondering if the IServiceProvider in the ProvideValue method was actually useful, ...
0
votes
1answer
54 views

C# how to execute the markup event first?

I have this markupExtension Class [MarkupExtensionReturnType(typeof(FrameworkElement))] [ContentProperty("content")] public class InsereSom : MarkupExtension { public InsereSom() { } ...
0
votes
2answers
151 views

WPF MarkupExtension to Determine Assembly in which XAML is Embedded

I have a WPF project (in .NET 4.0) with XAML resources embedded in as assembly as Pages. In the XAML, I need to have MarkupExtension that is declared in another assembly that has no specific knowledge ...
0
votes
1answer
515 views

Conditional DataTrigger for dynamic changing the enabled state of a button in WPF UserControl

I created an UserControl to use as a Data Navigator. I've defined two DependencyProperties in this control as follows (DependencyProperty implied): public ICollection DataCollection { get { ...
0
votes
2answers
178 views

Question about this xaml markup extension

I'm trying to understand what does the markup extension for the x:Key attribute below do and what kind of markup extension is it? <Window x:Class="App1.Window1" ...