Data Binding in the WPF control

Source: Internet
Author: User

Requirement: a slider value ranges from 0 to 100 to control the transparency of a border. The text label in the border shows the current sliding value of the slider.

<Stackpanel>

<Slider value = 10 X: Name = "slidername" Maximum = 100 minimun = 0/>

<Border borderbursh = red borderthickness = 1 opacity = {binding elementname = slidername, Path = value, converter = {staticresource conversion name}>

<Textblock text = {binding elementname = slidername, Path = value,Stringformat =##\\ %}>

</Textblock>

</Border>

</Stackpanel>

When controlling the border transparency, a converter is written, because the slider value ranges from 0 to 100, and the opactity transparency value ranges from 0 to 1.

The key I want to talk about is stringformat, which shows a percentage. Use # To take up two digits. \ is not clear about the two digits. If \ is not added \\, the four-digit Ru 6204% is displayed, so the last two digits are omitted. Please correct them.

It's too painful.CodeAll the Internet needs to be tapped

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.