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

0
votes
1answer
33 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 ...
0
votes
1answer
42 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
0answers
46 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
40 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
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 ...
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
0answers
16 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
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"> ...
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
117 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 ...
0
votes
1answer
42 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
108 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 ...
0
votes
1answer
62 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
0answers
107 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
24 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 ...
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 ...
0
votes
1answer
46 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
112 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
203 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 ...
0
votes
1answer
283 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
1answer
88 views

How could I bind a SolidColorBrush's Color property in a ResourceDictionary to a ViewModel Color property

I have a wpf Window that is using a ResourceDictionary that has a SolidColorBrush defined in it. I can choose what color to set the SolidColorBrush as with it's Color property, by using the hex ...
0
votes
1answer
83 views

Specifying datacontext to a generic Viewmodel

I have defined a viewmodel like public class DataGridBaseViewModel<T>:ViewModelBase { ObservableCollection<T> DataCollection; public abstract void Initialize(); } public ...
0
votes
1answer
62 views

Explicit binding to an object without using the current DataContext

Description: I have some View having its DataContext is already set to some List. I also have in there a ComboBox that should trigger a Visibility event to a StackPanel. It is done through a ...
0
votes
1answer
55 views

Custom binding to Accordion control in Silverlight

Is there a way to bind a collection to an Accordion control in Silverlight but have one of the Accordion items be a list of items common to the collection. For example, I have several types: Client, ...
0
votes
0answers
68 views

Bind a WPF View to couple of DataContexts

Objective: Set the visibility of a control based on the selected value of a ComboBox Issue: The property that is being used to check the visibility is in the VM, however I don't know how to use it as ...
1
vote
1answer
66 views

How do I get the datacontext of the grid-row

I have a Datagrid, where the rows are bound to viewmodels. In my first column, I have an image control, which binds to the itemno in the row. This works fine. Now, I want a tooltip, on this image, ...
0
votes
2answers
137 views

Change DataContext of specific property inside control - WPF

I have User control which contains TextBox with WaterMark inside <AdornerDecorator> <TextBox Height="20" ...
0
votes
0answers
90 views

Silverlight UserControl with DataContext Change issue

I have created a usercontrol and i consumed in my mainPage.and I have UserControlViewModel and MainPageViewModel. I have added UsercontrolViewModel in UserControlViewModel as a property with ...
0
votes
2answers
138 views

Set Datacontext of a control to a property

I am trying to create a style for a textblock to create a highlight effect. This style will be used on a number of TextBlocks, each bound to a different property. The datacontext for my main control ...
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 ...
0
votes
1answer
104 views

WPF How must I set the DataContext

I have a Control inherited from a Listbox. The XAML looks like this: <ListBox x:Class="Bibliothek.myDockControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
0answers
40 views

DataContext not notified

I am developing an app following the prism MVVM pattern. I have bound the text property of textbox to a public property in the VM. I have also implemented the drag & drop routine in the view. This ...
2
votes
2answers
266 views

WPF ContextMenu woes: How do I set the DataContext of the ContextMenu?

I am having some trouble figuring out how to set the correct DataContext on a ContextMenu. I have a collection of view models who are the source of an ItemsControl. Each view model has a collection ...
0
votes
1answer
51 views

KeyedCollection and d:DataContext Design Error

When using a class as a d:DesignInstance that exposes a KeyedCollection<TKey, TItem>, the XAML designer complains with the following warning: The number of generic arguments provided doesn't ...
1
vote
1answer
106 views

Recompile Query-Hint on a System.Data.Linq.DataContext object

I have a query that is being called by a DataContext object that is creating an extremely inefficient execution plan. I would like to add an "OPTION(RECOMPILE)" query hint to the query, but I do not ...
0
votes
1answer
248 views

Bind to main DataContext from TabControl's DataTemplate

I'm trying to use a single DataGrid as the content for each tab in a tab control (I'll then reload the contents of the grid, to show models at different statuses when clicking on different tabs). ...
0
votes
0answers
7 views

reuse datacontext after exception

When I want to delete some thing from relational database, some times it gives me SQL exception! I can not reuse my datacontext because the old thrown exception repeats in all over my project ! How ...
1
vote
1answer
349 views

ImageTools on Windows Phone 8, changing ImageSource and DataContext

I have problem with DataContext in Windows Phone 8 project. When I run project and MainPage() is done - I see 1st GIF, but when I go Button_Click_1 - 1st GIF is still visible. I have no idea how ...
0
votes
0answers
87 views

dynamically switch a scrollviewer in wpf

I have an idea to dynamically attach a Scrollviewer in a TreeViewItem template. (TreeView is "symbol-like", by presenting sub-items inside a wpf Expander). The idea is to overlay both elements inside ...
1
vote
0answers
133 views

Are LINQ-to-SQL Stored Procedures cached?

I wrote a couple stored procedures on the database I am using for reporting. Then I used LINQ-to-SQL to pull the stored procedures into a DBML file and create the actual C# functions. The data extract ...

1 2 3 4 5 17