I’m learning Silverlight and am trying to ingest some new concepts. Just so I understand, is the data binding feature found in Silverlight part of Silverlight itself? Or is part of the underlying .NET framework itself?
Share
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.
It is part of the Silverlight runtime (which includes the Silverlight version of the CLR). You can set up bindings without using XAML (see BindingOperations.SetBinding) and you can set up bindings in Visual Basic or any other language that targets Silverlight and can call the SetBinding API.