A DataContext is used in WPF, Silverlight and various other .NET technologies. When used with WPF or Silverlight, a DataContext is an object holding the data that the form (or page in case of Silverlight) uses as a display source for its UI elements.

learn more… | top users | synonyms

2
votes
0answers
11 views

CompositeCollection/CollectionViewSource confusion

I'm a little confused about how the data binding works when using these types. I've read that you can't do the following public partial class Window1 : Window { public ...
0
votes
1answer
34 views

Get the Parent List in a TreeView

my Problem is the following: i have a treeView, which is bounded to the ItemsSource. The SelectedItem is bound to a property in my ViewModel called SelectedItem. The ItemsSource is build like: ...
0
votes
0answers
10 views

Can you use a DataContext directly with MySql without mapping to entities in a diagram?

Can you use a DataContext directly with MySql without mapping to entities in a diagram? Meaning I want to instantiate a datacontext using the connectionstring to mysql, but without first reading out ...
1
vote
0answers
221 views

When clearing a root datacontext by removing from visual tree, binding further down the tree remains

[Silverlight] I have a large visual object tree I'm removing from the visual tree (Grid.Children.Clear()), upon removal the DataContext of the root nulls out, but further down the tree a binding which ...
0
votes
0answers
47 views

Fill datagridviews from stored querys on arrays

I hope you can help me. I will be as accurate as I can. This is my code: Dim productoArray = New List(Of Products)() ' <-- global ' --button method--- Dim db2 As New ConeccionANextelDataContext ...
0
votes
1answer
44 views

WPF MVVM TabControl DataContext is null

I'am trying to use a TabControl to display several views but I'm confused in correct setting of the DataContext for the views. I found in several discussions that the DataContext (here ...
0
votes
1answer
42 views

Binding ObservableCollection of Custom Objects to ComboBox

I'm having some trouble binding an ObservableCollection to a ComboBox (RadComboBox). I used almost the same code before, but now, for some reason, it's not working (nothing shows up in the ComboBox). ...
2
votes
1answer
45 views

My WPF custom control's Data Context is superseding parent's

In my main window, I try to bind to a bool. But it's looking in my custom control's data context instead. If I don't assign DataContext in the user control, then the main window's bindings work, but ...
0
votes
1answer
37 views

WPF MVVM - Activate ViewModel-command by use of hot keys from MainWindow

I have an MVVM application in which the MainWindow contains a grid with several views. In one of the viewmodels there is a command which I can activate by using hot keys in its corresponding view. I ...
0
votes
1answer
556 views

Binding doesn't work for navigation properties

I am binding WPF with Entity-Framework. The Window.DataContext property is set to a Quote. This Quote has a property Job, that I have to trigger Quote.JobReference.Load it should load from the ...
0
votes
0answers
38 views

Clone() is not working in the desired way after DataContext binding

To keep track of the changed property values in My User control I have created a property in the UC which would contain the original values by cloning the orginal object UCTabItem tabItem = new ...
2
votes
5answers
161 views

Linq2Sql static Datacontext in DAL

I am new to Linq to sql. And my question is simple. Is it a good idea to have DataContext as public static member in DAL to act as singleton?
0
votes
0answers
21 views

Reource not found for 'x' in query using against Sql ce in MVC 4

I have a table in SqlCe (sdf file) by the name "SendMessages". I want to query its data using WCF DataServices. It means that I have a dataservice that all of my context issues are there. In my MVC ...
0
votes
1answer
3k views

Dependency Properties and Data Context in Silverlight 3

I am working with Silverlight 3 beta, and am having an issue. I have a page that has a user control that I worte on it. The user control has a dependency property on it. If the user control does not ...
0
votes
0answers
17 views

Reach DataContext's property in DataTemplateSelector class to choose a inner Data template in the nested DataTemplates/Collections

I use nested DataGrids. Both are implemented in a user control, and are imported in my View: SimulatorView: <UserControls:HistoricalPageTable DataContext="{Binding ...
0
votes
0answers
21 views

Can I create DataContext in xaml using string resources defined in ResourceDictionary

I have a ResourceDictionaries and they are initializing dynamically according to culture. I want to get some of string resources from this ResourceDictionary to create a DataContext in xaml. I will ...
0
votes
1answer
21 views

Access other xaml controls data in another control's event

I have below listbox to which i am binding data from a class(SavedDataClass) defined.When user clicks on link "Update" i want to access the entire data of other members of that particular instance of ...
0
votes
1answer
285 views

Linq DataContext SubmitChanges InvalidOperationException from ZombieCheck

I am getting an InvalidOperationException when trying to add a row using LinqToSql. We cannot duplicate it in house, and it happens about 0.06% for only one of our customers, always on a relatively ...
0
votes
0answers
67 views

runtime Exception when binding to a datacontext of a user control

Here is the XAML for the main page. <StackPanel x:Name="menuStackPanel" Grid.Row="4" Grid.ColumnSpan="2" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"> ...
0
votes
2answers
287 views

Redirecting Page whilst still executing slow Linq.DataContext.SubmitChanges() in ASP.NET

For an Intranet application I have a web page save function that can lead to substantial action on several database tables. I am using Linq2SQL and some 20 seconds of browser idle get swallowed up by ...
2
votes
1answer
44 views

ContextMenu.PlacementTarget is nothing in WPF

I am trying to bind the ContextMenu to ViewModel's commands. After some online search, I learned that since ContextMenu doesn't belong to the target visual tree, I need to specify the DataContext of ...
1
vote
1answer
125 views

CommandParameter with MVVM Light

I'm trying to get a RelayCommand working with a CommandParameter working using MVVM Light. The command is defined in my viewmodel, and I want to pass the selected ListBox item as the parameter. The ...
1
vote
2answers
175 views

Get Table type when you have different table name from datacontext

We can get table name if we have table type. like here DataContext dc = new DataContext(); var tableName = dc.Mapping.GetTable(type).TableName.ToString(); In my case I have table name and wants to ...
0
votes
1answer
43 views

WPF DataContext in ToolTip

I'm trying to bind the tooltip of a ListBoxItem. I have this defined in my ControlTemplate: <ControlTemplate TargetType="{x:Type ListBoxItem}"> <ControlTemplate.Resources> ...
0
votes
2answers
110 views

Should we expose IDataContext in an Onion architecture

When implementing a Onion architecture in ASP.NET MVC, it is my understanding that we should/could expose the IDataContext interface, which can be injected and referred to in the UI. So basically in ...
2
votes
1answer
4k views

How to define DataContext in XAML using StaticResource

I want to declare a DataContext through a static resource in XAML as a binding for the Customers in the Northwind database. I can do this easily in code (C#) but want to learn how to do in XAML. I ...
1
vote
2answers
202 views

How to get rid of StackOverflow Exception in DataContext InitializeComponent?

I am new to wpf c#, trying some sample application, the problem is when I mention DataContext in xaml the InitializeComponent is called recursively and is showing System.StackOverflowException' ...
7
votes
7answers
15k views

What is the advantage of setting DataContext in code instead of XAML?

There seem to be two main ways to define DataContext in WPF: either in code like this: App.xaml.cs (taken from the WPF MVVM Toolkit template): public partial class App : Application { private ...
2
votes
2answers
3k views

How to move the DataContext definition from code-behind to XAML?

I defined an object which contains properties in code-behind and, want to set the object to datacontext in xaml. namespace WpfApplication4 { public partial class MainWindow : Window { ...
0
votes
3answers
360 views

InvalidOperationException using Datacontext

I'm getting an InvalidOperationException when I run this (it says "cannot determine the attribute name"). I have checked the net but haven't found a solution. It occurs at the foreach (var c in ...
0
votes
5answers
446 views

ASP.NET MVC Controller recommendation for LINQ DataContext instantiation place

How should I instantiate the datacontext (entity fw) in a MVC Controller: as a property in class as a field in class as a variable in Action as abstract away your DbContext with the Repository ...
0
votes
1answer
63 views

VB LINQ to SQL as variable

I have searched everywhere and cannot find the answer. Every example either has a datagridview or stops at Select. I need to store the DataContext result as a variable in VB. In a previous bit of ...
0
votes
2answers
82 views

DataBinding DataGrid to ObservableCollection<T> is creating 2 different instances of the DataGrid and only the default is shown

The data binding works as it I intend, kind of... The real issue I'm running into now is what I believe to be 2 different instances of my User Control, but only the original, debug list I implemented ...
1
vote
3answers
1k views

c# DataContext.SubmitChanges() not updating database

Can someone explain why the following code fails to update the database or what else I can do to troubleshoot? // ********************************* // People Updates // ...
0
votes
1answer
438 views

MVC2.NET pass object from viewmodel to view and access it

When working with Viewmodels from linq to sql I have an architectural problem. When you have an object from your db (let's say "person"), and you load it in your viewmodel. After this in your view, ...
1
vote
4answers
934 views

C# Linq: Can you merge DataContexts?

Say I have one database, and this database has a set of tables that are general to all Clients and some tables that are specific to certain clients. Now what I have in mind is creating a primary ...
0
votes
0answers
108 views

TextChanged not firing after setting DataContext in windows 8 XAML/C# application

I writing a Windows 8 XAML/C# app in Visual Studio 2012 and have a little problem that I'm hoping somebody can help me with. When my page loads I have a method which subscribes every textbox's ...
0
votes
1answer
89 views

Linqpad TypeLoadException while fetching schema information

I get the following error when trying to load a large db into linqpad. I can connect to smaller dbs on the same server, but not this larger one. This DB is a Dynamics GP database. Not the actual ...
0
votes
1answer
25 views

JS data service load all data or just needed data

I am developing a web store with products divided by categories. Lets say in every category I have something like 300 products. Now, if I want to show those products via ajax (with filtering and ...
6
votes
2answers
2k views

Setting DataContext within UserControl is affecting bindings in parent

I have a basic UserControl that sets its DataContext to itself for ease of binding: <UserControl x:Class="MyControlLib.ChildControl" ...
0
votes
0answers
43 views

Displaying hierarchial structure - missing/invalid datacontext

I'm trying to display this hierarchial structure: public interface IProgressIndicator { CancellationToken CancellationToken { get; } string Name { get; set; } } public interface ...
1
vote
2answers
231 views

How do you get the DataContext of a LINQ to SQL Entity?

Currently this is what I have: public partial class LinqToSqlEntity { public IQueryable<AnotherLinqToSqlEntity> AnotherLinqToSqlEntities { using(DataContext context = new ...
0
votes
1answer
47 views

Create StaticResource from DataContext?

All, Is it possible to create a StaticResource from an object in DataContext (without added code-behind)? Take for example a DependencyProperty of a UserControl: public static ...
0
votes
0answers
18 views

relations between linq datacontextes

I have some wpf project and related database with each one.one of this databases is common and some of it's tables must be use in other project.so I need to join two datacontext in each of my ...
0
votes
1answer
24 views

Iterating through entity framework models from another related project

I have just started working with .Net and I have created an Entity Framework Model and an associated context for the password reset functionality of a website and I have created this in a class ...
0
votes
2answers
55 views

How can I make a constant string available to my code and a DataGrid?

I have a Window with a DataGrid in it. My DataGrid handles the BeginningEdit event. I want to run some code that possibly cancels the BeginningEdit event based on the name of the column. For ...
0
votes
0answers
113 views

WPF Bind directly to TreeViewItem.DataContext

I have the following class public class SourceControlItem { public string Name{get;set;} } I also have a TreeView control for which I am populating with child TreeViewItem Nodes. For each ...
1
vote
2answers
218 views

WPF C# How to acces the main window datacontext from a new created window

In my MainWindow I create a new instance of a class containing different settings. After setting the parameters of the class, I set the datacontext = to that class. public partial class MainWindow : ...
0
votes
1answer
23 views

Serialize Linq2Sql Object After Dispose

I'm trying to find a simple way to serialize any object so that only the immediate properties and their "ToString" values are included. In the case of an object coming from a DataContext I want to be ...
1
vote
3answers
206 views

Multiple dataContext for one control - MVVM

I am not sure if my question header represent exactly my problem, I will do the best to explain: I have a grid cell DataTemplate: (the grid belong to third party company but it`s not important for my ...

1 2 3 4 5 17