I want use math operations in XAML code but I dont know how?

link|improve this question

75% accept rate
you're going to have to be a lot more specific for this question to make any sense. – Donnie May 24 '10 at 12:38
What do you want to achieve? XAML is a markup language for the user interface. To perform (complex) calculations you'll need to write some code in the cs files. – ChrisF May 24 '10 at 12:38
What kind of math, and what would you be doing it on? – Tejs May 24 '10 at 12:38
feedback

3 Answers

Since I don't know what you're trying to do exactly, I'll guess, and point you at the top hit on Google for the search 'math in xaml'.

link|improve this answer
1  
Thanks, but it's not what I want. I found the answer here - wincode.org/ программирование/ математические-операции-в-xaml/ (without spaces) – Alex Sabaka May 24 '10 at 12:45
feedback

You mean you want to perform arithmetic operations in xaml?

check out this post (it comes with a sample project)

It allows you to specify code like this:

<TextBlock Height="{Binding ElementName=tb1, Path=ActualHeight,
  Converter={StaticResource JScript},
  ConverterParameter=Int32.Parse(values[0])/10 *100-110 }" Background="Red"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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