I want to convert a string to formatted text in C# in WPF application, how to do this?
Many thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can always use the normal C# tools to do this.
However, if the entire purpose is to make a nice string for binding, you may be able to use the binding’s StringFormat directly.
For example, you can have a TextBlock like so:
This will format the text based off the “User” and “Distance” bound values.