Tagged Questions

48
votes
2answers
999 views

How to make Resharper resolve path for CustomBinding MarkupExtension

I want to create some extended Binding-Markup-Extension, which behaves just like a normal WPF-Binding but does some things more (use different defaults, maybe add some behavior, etc.). Code looks like ...
5
votes
4answers
2k 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, ...
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 ...
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}" ...
2
votes
1answer
87 views

Silverlight 5: Set ConstructorArgument on a IMarkupExtension class

I would like to have a MarkupExtension that can be initiated with just one value, much like Binding: <TextBox Text="{Binding MyPath}"/> instead of <TextBox Text="{Binding Path=MyPath}"> ...
1
vote
0answers
83 views

Export an MVVM View using MEF

The application that I'm building has several (10+) [Module] executables. I would like to specify something like this in [Module]View.xaml file. <Window ... mef:ExportView ...
1
vote
1answer
17 views

Are there any markup that allows me to set its DataContext but doesn't do anything as graphic?

I'm working on a project where things aren't build "very well". Because I want create something like a "partial model" for a part of the window where I will put my controls, I would like to know if ...
1
vote
1answer
49 views

difficulty understanding and using xaml markup extentions

I am learning on to the concepts of WPF such as data binding, commands, resources, element bindings, styles etc, which use markup extensions extensively, and i am having problem understanding the ...
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 ...
1
vote
1answer
81 views

Filling collection property with markup extensions fails in XAML

I am trying to fill a collection (list) property with values provided by a markup extension. There is a problem doing this if the property providing the collection has a public setter. I think it is a ...
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
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
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
407 views

Markup Extension in Data Trigger

To translate my WPF application I use a Markup extension which returns a Binding object. This allows me to switch the language while the application is running. I use this Markup like this: ...
0
votes
1answer
287 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 ...
0
votes
1answer
199 views

WPF - Custom Mark-up Extensions return RoutedEvents

I'm trying to create a generalized event for my Close buttons, where they have to close the window but before that set focus to the owner window. I don't want to have an event for every file for that, ...
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" ...