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
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?
4
votes
2answers
464 views
WPF - Getting a property value from a binding path
if I have an object say called MyObject, which has a property called MyChild, which itself has a property called Name. How can I get the value of that Name property if all I have is a binding path ...
3
votes
1answer
67 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
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
261 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 ...
3
votes
2answers
355 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)
{
...
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
2answers
179 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"
...
2
votes
1answer
148 views
WPF : Space key problem when using a Custom Markup Extension in VS2010
We developed a localization solution using custom markup extension in VS 2008.
At the time, we used it this way :
<TextBlock Text={utilsWpf:Intl Key=ObjectName.PropertyName, DefaultText=Default ...
2
votes
2answers
1k views
Get the value for a WPF binding
Ok, I didn't want a bunch of ICommands in my MVVM ViewModels so I decided to create a MarkupExtension for WPF that you feed it a string(the name of the method), and it gives you back an ICommand that ...
2
votes
2answers
449 views
DepedencyProperty within a MarkupExtension
Is it possible to have a DependencyProperty within a MarkupExtension derived class?
public class GeometryQueryExtension : MarkupExtension
{
public XmlDataProvider Source { get; set; }
public ...
1
vote
1answer
29 views
How do I escape a comma when using a markup extension?
The value of the second parameter of the markup extension I am using is a string containing some commas and I don't want those commas to be interpreted as parameter separators by the xaml interpreter ...
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
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
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
75 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
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
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
980 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
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
1answer
53 views
Current binding value
I'm writing markup extension. I have XAML like this
<TextBlock Text="{ui:Test SomeInfo}" />
and TestExtension with constructor taking one string argument. I'm getting "SomeInfo" string so ...
0
votes
2answers
140 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
0answers
75 views
Custom exception similar to binding exception WPF
I have created my own Markup Extension in WPF that I use to easily resolve ViewModels from a string key. I would like for the extension to 'fail nicely' and not throw an exception if there is an ...
0
votes
2answers
148 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
2answers
37 views
WPF show small number beside all Controls
I have many FrameworkElements (TextBlock, CheckBox, ListBox..) and I would like to make something allowing me to show a small number besides every one control.
Some text ³
I came with the idea to ...
0
votes
1answer
144 views
WPF, localisation: reevaluating control values
I'm doing a small research on localisation methods in WPF. I heard about the idea with markup extension:
<Label Content="{local:Translate {-- label ID here --}}" />
I like this solution very ...
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 ...
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
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
1answer
155 views
WPF - Unit testing a custom markup extension
how would you recommend unit testing a custom markup extension in WPF? Presumably, I need to create an instance of my markup extension and call the ProvideValue method. However, this requires an ...
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
98 views
x:Type and arrays--how?
Long story short, I need to do this:
ExpressionType="{x:Type sys:Byte[]}"
In other words, I need to do this:
foo.ExpressionType=typeof(byte[]);
Wat do?
Update: Its a bug in the 2010 design ...
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" ...
0
votes
2answers
61 views
Custom Extention for control properties
I extended markupextention class to set the background property of controlls
my code is
public class OwnStyleExtension : MarkupExtension
{
public static System.Windows.Media.BrushConverter ...