Tagged Questions
0
votes
0answers
117 views
DataContext.SubmitChanges Method does not update database
i have used below code to update Account table ..
When i run the project it does not give any error message...but my account table does not update..
Let me know did i done any thing wrong !
...
0
votes
1answer
454 views
How to use self as the DataContext in a Silverlight MVVM application?
In my Silverlight MVVM application, in the code-behind of a view, I set the DataContext to a viewmodel as such:
this.DataContext = new MyViewModel();
However, I need to bind one control in the view ...
0
votes
1answer
393 views
In Silverlight, how can a child control view model access the parent data context?
BACKGROUND:
I have xaml similar to the following pseudo code
...
<DataContext><vm:parentVM/></DataContext>
<Grid x:Name="LayoutRoot">
...
<local:myControl Grid.Column="0" ...
0
votes
1answer
183 views
Handling entity updated,removed event in Datacontext ! silverlight
I have created a datacontext in my silverlight app which utilized "WCF dataservices" to pull out data from custom Odata repository which in turn takes the values from an XML file, the XML file values ...
0
votes
1answer
88 views
silverlight datacontext, repeats all the past commands/action each time a new action is performed on it
a datacontext defined in a module(domain services ado.net ria)
a page having add/delete methods
whenever any method is executed, it is found that all the previous actions (NEW RECORD ADDITION and ...
2
votes
1answer
708 views
Silverlight Behavior: DataContext of AssociatedObject changes
I've written an Interactivity Behavior (from Blend SDK) , which can be attached to a DataGrid, and does some magic with the DataGrid's columns based on the ViewModel in the DataContext of the ...
1
vote
1answer
320 views
Two DomainContext or data sources with WCF RIA - Silverlight page
I am writting a Silverlight Business Application with WCF RIA link.
I have 2 databases on same SQL server, Public and Private.
The Public database contains a table which is mostly for public access ...
1
vote
1answer
2k views
Silverlight User Control in MainPage.xaml
I'm currently investigating building a User Control in a Silverlight Project in Expression Blend 4. The control has an associated set of sample data for the User Control, and the data is appearing ...
0
votes
1answer
165 views
Silverlight4 Element Binding Weirdness
I'm a bit of a .net newbie and I've been working on my first big silverlight project. So pardon the lack of lingo and the length of the question. But my problem is as follows.
The project is being ...
11
votes
2answers
5k views
Difference between ItemsSource and DataContext as pertains to ListBox
I am not quite grokking the difference between ItemsSource and DataContext. Can someone explain it and back it up with examples? When would I use one or the other.
I am reading the docs and it says ...
3
votes
2answers
2k views
Set DataContext of a textbox to the current class in silverlight
i have a textbox in a UserControl,
i created a property in the UserControl,
i want to bind the textbox text property to the property created in the usercontrol.
The problem is that i dont know how ...
1
vote
1answer
856 views
DomainDataSource, binding and cursors
Databinding in WPF/Silverlight revolves around dependency properties, DataContext objects and DataSource objects. As far as I can tell, dependency properties are the same thing as ambient properties ...
