The markup-extensions tag has no wiki summary.
0
votes
1answer
30 views
Markup extensions with state in WPF
I've just discovered that WPF Markup extension instances are reused in control templates. So each copy of the control template gets the same set of markup extensions.
This doesn't work if you want ...
3
votes
1answer
64 views
Markup extension in XAML for binding to ISubject<string>
If I have the following view model
class Foo : INotifyPropertyChanged {
ISubject<string> Name { ... }
}
and some imagined XAML code
<TextBox Text="{my:Subscribe Path=Name}/>
I ...
8
votes
1answer
106 views
Design time check of markup extension arguments in WPF designer
I've written a Markup extension for WPF that allows me to do
<!-- Generic Styles -->
<Style x:Key="bold" TargetType="Label">
<Setter Property="FontWeight" Value="ExtraBold" />
...
0
votes
1answer
22 views
Write markup extension as nested element
Is it possible to write markup extension as nested element rather than attribute? I am trying to use Boolean as key for ResourceDictionary entries.
Current code where ResourceDictionary key type is ...
0
votes
1answer
184 views
'System.Windows.Data.Binding' is not a valid value for property 'SelectedIndex'
Can someone please shed some light on this error?
At first I thought SelectedIndex is probably just not a DependencyProperty and cannot be bound, but I was wrong.
If I use a normal binding instead ...
0
votes
1answer
71 views
MarkupExtension that uses a DataBinding value
I'm trying to create a WPF MarkupExtension class that provides translated text from my text translation class. The translation stuff works great, but requires a static method call with a text key to ...
3
votes
2answers
110 views
How is a markup extension method applied to a binding value in XAML?
I have a localization markup extension method for strings, which I can apply in this way:
<TextBlock Text="{l:Translate 'My string'}" />
How can I apply this markup extension method to the ...
0
votes
2answers
65 views
Markup extensions and object creation
Currently I have markup like this
<TextBlock>
<TextBlock.Text>
<Binding Path="Value" ElementName="window" ConverterParameter="M">
<Binding.Converter>
...
0
votes
1answer
71 views
Send only HTML to a crawler/robot without css, js etc? Can it cause a negative ranking google?
Today some crawler passed my site and tries to access several css, js, images and other files. This was also a smart one, interprets also the javascript and want to execute an url that is assembled ...
1
vote
1answer
119 views
Markupconverter WPF to ASP.NET
I'm using MarkupConverters in WPF to parse from enum values to human readable strings.
Is there a way for ASP.NET and the ASP.NET GridView or DevExpress ASPxGridView to do the same as in WPF?
...
1
vote
1answer
222 views
Using StaticResource as an argument for MarkupExtension causes NullReferenceException in WPF
Even after simplifying the problem to minimal code, I still can't understand what can cause NullReferenceException.
Create new WPF Application "MarkupExtParam". Replace code:
MainWindow.xaml:
...
0
votes
0answers
111 views
Opencart Pricing - Cost, Markup Percentage
I'm pretty new to Opencart, so forgive me for my ignorance. I've been looking for an extension which allows me to set a base cost for each item, then set the price to the end user based on a markup ...
0
votes
2answers
185 views
Dynamic enum converter
I want to create a dynamic 2-way-converter for all possible enums in my application.
I don't want to have to create a converter for each enum, I want to create one converter that provides converting ...
1
vote
1answer
996 views
How to debug Visual Studio 2012 instance design-time
I'm developing a WPF MarkupExtension and encountered errors during design time. With the previous version of Visual Studio 2010 it was possible to start a second instance of VS2010 and attach to the ...
-2
votes
1answer
134 views
Trick to shorten {StaticResource}, {DynamicResource} etc. names - possible issues? [closed]
Being XML, XAML is already very verbose, but on top of XML it uses built-in markup extensions which have long names: {StaticResource}, {DynamicResource} etc. which are used very frequently. I've tried ...
1
vote
3answers
63 views
How to work with dynamically modified system colors?
I have a corner case where both dynamic resources (don't allow for converters) and custom markup extensions (only evaluated once) won't do the trick. I want to create gradient brushes based on faded ...
2
votes
1answer
97 views
IMarkupExtension with DependencyProperties
I'm trying to create a custom markup extension using IMarkupExtension<T> that has some DependencyProperties for binding. However, I am struggling to resolve the problem of the markup extension ...
0
votes
2answers
142 views
How to update Target object from markup extension in SL5?
I'm trying this code in a markup extension in Silverlight 5.
public override object ProvideValue(IServiceProvider serviceProvider)
{
_target = ...
1
vote
1answer
336 views
MarkupExtension: Converting a simple property to DependencyProperty
I'm using WPFLocalizationExtension (Available on CodePlex) to localize strings in my WPF application. This simple MarkupExtension works well in simple scenarios like this:
<Button ...
1
vote
1answer
81 views
Get target instance for a Style from within a custom MarkupExtension
I'm attempting to use a custom MyMarkupExtension within an implicit Style:
<Style TargetType="MenuItem">
<Setter Property="Header" Value="{MyMarkupExtension /*some setup*/}" />
...
2
votes
2answers
1k 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 ...
3
votes
3answers
563 views
How do I data bind the result of a view-model method to a TextBox property?
In my view-model and model I have a method with the signature of bool IsPropertyReadOnly(string propertyName). This method determines if the currently logged in user can edit a propery value. A few ...
3
votes
2answers
214 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 ...
0
votes
1answer
258 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 ...
2
votes
1answer
266 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
2answers
143 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 ...
1
vote
0answers
287 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 ...
6
votes
2answers
897 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 ...
1
vote
1answer
37 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 ...
2
votes
1answer
136 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 ...
0
votes
1answer
227 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 ...
4
votes
5answers
973 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}"
...
4
votes
2answers
2k 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
961 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, ...
1
vote
2answers
276 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 ...
0
votes
1answer
107 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()
{ }
...
3
votes
1answer
256 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}">
...
0
votes
2answers
302 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 ...
3
votes
2answers
393 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"
...
3
votes
1answer
201 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 ...
1
vote
1answer
314 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
249 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
312 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 ...
54
votes
2answers
1k 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 ...
1
vote
2answers
60 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
208 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 ...
2
votes
1answer
222 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 ...
0
votes
1answer
281 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 ...
1
vote
1answer
784 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
991 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 { ...




