最近我閱讀MSDN「數據綁定概述」文章,有這樣的示例代碼:綁定路徑中的圓括號是什麼意思?
<TextBox.ToolTip>
<Binding RelativeSource="{RelativeSource Self}" Path="(Validation.Errors)[0].ErrorContent"/>
</TextBox.ToolTip>
我知道{}表示標記擴展,但究竟意味着什麼()括號在這裏?這將是很好的人分享鏈接解釋這種語法。謝謝!
Path="(Validation.Errors)[0].ErrorContent"
的實際_can_是指附加屬性 - 但這不是你需要他們的唯一案例... – Spontifixus