I have a methode in a static class and this expected two parameters and return a string.

Now should I like from my View (without ViewModel) bind this result. Is this possible?

Pseudocode:

xmlns:lang="clr-namespace:LanguageModule;assembly=LanguageModule"

<TextBlock Text="{x:Static lang:Translate[firstParameter, secondParameter]}"/>
link|improve this question

77% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You might want to check out the ObjectDataProvider

Use the MethodName property to call a method and use the MethodParameters property to pass parameters to the method. You can then bind to the results of the method.

Here is an example article how to bind to a static method:

http://www.thomasclaudiushuber.com/blog/2008/01/10/bind-to-methods-with-objectdataprovider/

HTH

link|improve this answer
wow, thx thats a great solution – Mario Priebe Jul 30 '09 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.