2
votes
1answer
40 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 ...
2
votes
1answer
42 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 ...
0
votes
1answer
37 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
0answers
104 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 ...
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 ...
1
vote
1answer
65 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
80 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
2answers
193 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' ...
0
votes
1answer
426 views

WPF: Set UserControl DataContext

I have the following MainWindow that lays out a left side navigation panel and a right side display area (both of these are UserControls). Can someone explain how to assign the DataContext of the ...
1
vote
1answer
370 views

Setting datacontext of UserControl to ViewModel defined in parent viewmodel

I'm trying to create an application using the MVVM pattern with nested viewmodels. The master viewmodel is ShellView which contains three UserControls, each with their own viewmodel. The ShellView ...
0
votes
1answer
193 views

WPF DataBinding - bind to code-behind variable which changes referenced object

What I want to do: I have a ListBox bound to an ObservableCollection<MyClass>. When I select an item, I want to display some of its properties in some labels. What are the steps here? I have set ...
0
votes
1answer
38 views

Datacontext using in Template to Root

I want to turn the buttons in a datagrid visible or collapsed, dependend on a local window property. The following item works at LayoutRoot <navigation:Page ...
3
votes
2answers
307 views

DataContext and binding self as RelativeSource

Can someone explain me the following XAML line? DataContext="{Binding RelativeSource={RelativeSource Self}}" Here the simple example of use. How to replace that line with a C# code?
2
votes
1answer
691 views

TreeView HierarchicalDataTemplate binding

I have a class SceneNode which contains a ObservableCollection. I want the entire tree to show up, however I can't seem to get this to work with databinding. Everything works perfectly if I just add ...
3
votes
2answers
111 views

Same binding works for 1 XAML item, but null for another

The binding for productColumn2 works perfect both ways. When I added a converter for each, productColumn1 called the converter; but always has it's value set to null when loading from observable ...
0
votes
1answer
68 views

TreeViewItem not selectible with datacontext

When I set the treeviewitem's header via a DataContext, it adds a few pixels of padding that are clickable, and then puts the text with isn't clickable. I shall post an image; blue: clickable, red: ...
0
votes
1answer
219 views

Silverlight - What does my datacontext/binding path need to be here?

I've been working a bit with an image editor in Silverlight for the past week or so. It's my first encounter with it and I still haven't fully gotten my head around data bindings and datacontext or ...
1
vote
3answers
162 views

How can access, Listbox CustomItem datacontext in code behind?

How to access Question Entity in QuestionControl ? <ListBox ItemsSource="{Binding QuestionEntityList}"> <ListBox.ItemTemplate> ...
0
votes
1answer
314 views

Updating a TextBox based on a ListBox selection (XAML)

I have a listbox that is displaying several attributes from an XML file. How can I update a textbox whenever you select one of these items on the listbox? My listbox looks like this: <ListBox ...
0
votes
1answer
210 views

DataContext binding evaluated after property binding — causes crash

I'm trying to set the DataContext of several toggle buttons, each of which will correspond to a particular element of a list. These toggle buttons are static, not dynamically generated, because we ...
0
votes
0answers
817 views

UserControl's Resources as UserControl's DataContext?

Is it possible to give UserControl's Resources(Or one of its resource) as UserControl's DataContext? I tried to bind a Button's Command Property in a DataGrid's CellTemplate to a property in my ...
0
votes
1answer
351 views

Insert valve from listview to Sql (using linq to sql)

i have three different Listview which is Item,quantity and price. All the items for the listview will be added from a textbox. I would like to know how can i store the listview items into my SQl ...
0
votes
1answer
300 views

Show valve on textbox based on combobox selection

I have two tables, binded by foreign key ProductID. Table one called as Product and table two called as sales. The ProductName i already binded with combobox in the sales windows. My question is how ...
0
votes
1answer
71 views

Updating error using (ling to sql)

I have two tables, binded by foreign key CarrierID: Carrier[CarrierID,CarrierName] CarrierID = 1, CarrierName = DHL CarrierID = 2, CarrierName = Fedex ... Vendor[VendorID, VendorName, CarrierID] ...
0
votes
2answers
189 views

Replace a ID Value (of a Foreign Key) In A View By Its Value

I have two tables, binded by foreign key CarrierID: Carrier[CarrierID,CarrierName] CarrierID = 1, CarrierName = DHL CarrierID = 2, CarrierName = Fedex ... Vendor[VendorID, VendorName, CarrierID] ...
0
votes
1answer
366 views

Data change in DataContext with animation

i have no idea to solve the problem with follwing code: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> ...
0
votes
3answers
546 views

How to use the DataContext of a parent class correctly

I have a problem with my data binding, probably a small one. I have tried to implement the MVVM pattern in my application. Therefore I have a model containig my data. This data gets updated over the ...
0
votes
3answers
354 views

How to update ListBoxItem [with datacontext]

I have following class as my data context class s { public string name{get;set;} public string family {get;set;} public string status{get;set;} } I have made an style for listBoxItem [added 2 more ...
1
vote
4answers
101 views

Databinding setting to null and starting new

I have in my App class an object Order, both implementing INotfiyPropertyChanged. When an Order is concluded, I set it to null and do a new Order() for restarting a new Order. The problem is: it ...
3
votes
1answer
189 views

Silverlight DataContext Databinding behavior

I'll start off with a stripped-down/sanitized version of my code: Model: class DataObj : INotifyPropertyChanged { // these actually call OnPropertyChanged, and have associated private variables ...
5
votes
2answers
3k views

Bind to parent DataContext within DataTemplate

I'm trying to bind MenuItem's Command to command contained in UserControl.DataContext. I've found couple of similar question, but solution according to them is failing to me: <UserControl ...> ...
5
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" ...
1
vote
2answers
560 views

Comboboxes, datacontexts and databinding

Just getting confused when trying to display certain things when utilising itemssource, datacontexts and binding. public class Date { public DateTime _WeekDate; public ICollectionView ...
3
votes
3answers
851 views

Binding one control to another's DataContext

I bind my wpf window to app layer class (WindowVM.cs) using DataContext in Window.xaml.cs constructor (DataContext = WindowVM). But, one control (btnAdd) I want to bind to Window.xaml.cs property. So ...
1
vote
2answers
2k views

Some irritations with ListView and DataContext

I've wrote the following C# and XAML Code: namespace ListViewExample1 { public partial class MainWindow : Window { public ObservableCollection<MyColleague> myCollegues = new ...
3
votes
5answers
3k views

Binding to a Datacontext of an ancestor

It would be best if showed you my code first and then ask the question: <Window DataContext="{Binding RelativeSource={RelativeSource Self}}"> <Grid> <DataGrid ItemsSource="{Binding ...
2
votes
1answer
334 views

DataContext does not propagate to children (non-visual) in custom control

<k:GridView Name="_masterGridView" ItemsSource="{Binding ProductLocationList}" SelectedItem="{Binding ProductLocationSelected}"> <!-- DataContext does not propagate ...
2
votes
2answers
245 views

Property in ViewModel not displayed in View

I have a ViewModel called MainWindowViewModel. In this I have a property that shows a modal window when an error occurs. This works fine as long as an error occurs during start-up. When an error ...
2
votes
2answers
1k views

StackPanel has a DataContext, how to populate ListPicker with option values from another?

I'm new to WP7 development, so binding is still a little foreign to me. I have a StackPanel that I've set the DataContext with TwoWay binding for editing a given record. But, within the "form" I have ...
0
votes
1answer
361 views

Why does not work WPK DataBinding in PowerShell with TextBox “Text” property?

Good day. I'd like to ask a question. Why TextBox control "Txt" in this code does not receive a property value of $CounterObject object? New-Grid -Height 150 -Width 200 -Rows 3 { New-Label -Name ...
3
votes
1answer
420 views

Windows Phone - DependencyProperties

I'm trying to get a UserControl working in Windows Phone 7. I have a few properties which I'd like to bind to, yet they aren't populated regardless of whether I add them as DependencyProperties or ...
0
votes
1answer
780 views

WPF DataGrid, in a Binding in a ColumnTemplate access a Element outside of the DataGrid

I'd like to access a Object from my UserControl from within the Datgrids ColumnTemplate. This doesn't work. Now I've read it's because of the Datacontext. I found this Example, wich should fix this: ...
1
vote
2answers
55 views

WPF binding question

For example, I have: MainWindows.cs public partial class MainWindow : Window { public List<Player> List; public MainWindow() { ...
1
vote
0answers
568 views

Detect entity framework datacontext changes for save/cancel enabled

I'd like to detect if my entity framework datacontext has changed (has changes to apply with SaveChanges()) so I can bind it to my Save button IsEnabled. I know there is also CanExecute for my ...
0
votes
3answers
164 views

Using Visibilty with DataContext doesn't work in Button

I have a Button where I am trying to add a Visibility attribute which binds to a certain path. In most cases this path will be call and I return a Visibilty(Hidden or Visible). If I have a button that ...
3
votes
2answers
2k views

using IValueConverter with current DataContext in two-way binding

I'm having issues with a converter i'm using to convert between a string and our timeformat. The converter itself works fine and is implemeneted like this: [ValueConversion(typeof(string), ...
1
vote
1answer
1k views

WPF listBox dataContextChanged

I've a listbox in a userControl and I want to select the first item in the listbox whenever datacontext of my userControl is changed. (listbox's ItemsSource is Bind to userControl dataContext : ...
2
votes
1answer
443 views

Misunderstanding databinding fundamentals and DataContexts — long story

I've been using databinding in several simple situations with pretty good success. Usually I just use INotifyPropertyChanged to enable my codebehind to modify the GUI values on screen, rather than ...
1
vote
2answers
843 views

WPF: Dependency Properties and DataContext

I was working on creating a reusable custom control (not a user control) in WPF. I created the XAML in the Themes/Generic.xaml file and I setup the "lookless" functionality in the control's CS file: ...
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 ...

1 2