I'm working on an equation editor, and I’m trying to display equation to mathematical format, but I have no idea. The editor work with a Dictionary. Users complete a textbox like that:
m*R/cos(3)-mAir^(6)
And another textbox with the c# code is automatically completed
m*R/Math.Cos(3)-Math.Pow(mAir,6)
I want to create another textbox (or image or other thing) with the math format
I search a lot and I don't found any free solution .
Thanks.