Tagged Questions
0
votes
0answers
64 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">
...
1
vote
1answer
368 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
278 views
Bind dependencyproperty from usercontrol to its datacontext
I have a UserControl with one dependency property. This UserControl is used inside a view that already have a ViewModel as a DataContext.
I'm currently binding one property from my top datacontext to ...
0
votes
1answer
480 views
How to set DataContext of a UserControl inside a DataGrid.DataGridTemplateColumn?
I want to set datacontext of a usercontrol inside a DataGridTemplateColumn, but it dosen't work,here's the code:
<DataGrid AutoGenerateColumns="False" ItemsSource="{Binding RequesterPeoples}">
...
1
vote
3answers
795 views
How do I close a window from its user control view model?
I have a window which hosts various UserControl's as pages. Is it possible to close the window which I have no reference to from within the usercontrol's datacontext?
Simplified details:
SetupWindow
...
0
votes
1answer
530 views
Datacontext of usercontrol is null
I have a viewmodel with an observablecollection member.
I created a usercontrol that binds with this collection and for every item in the collection I end up in the user controls constructor. In this ...
3
votes
2answers
142 views
Why shouldn't UserControls be used as an ItemsSource?
I was answering another question on here where the user had a ListView with an ItemsSource containing UserControls. I said I wouldn't recommend it, and got asked why.
This really surprised me. I've ...
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"
...
2
votes
3answers
1k views
UserControl as DataTemplate inside ListBox
I want to reuse my UserControls in other UserControls like page or window as DataTemplates, in this example inside a ListBox. Everything is MVVM.
I've a UserControl called "CardControl" to display a ...
1
vote
3answers
3k views
How to access parent's DataContext from a UserControl
i need to access the container's DataContext from a UserControl (a grid containing textboxes and a listbox: i need to insert items in this list box) that i created in WPF: which is the best way to do ...
0
votes
3answers
861 views
Passing DataContext to a User Control
I have a page that contains a dataset:
protected void Page_Load(object sender, EventArgs e) {
MyDefinedDataContext mydatacont = new MyDefinedDataContext();
}
I'd like to pass this datacontext ...
1
vote
3answers
744 views
Binding UserControl to a NULL DataContext
I have a UserControl and am binding its DataContext to an object. I also bind the IsEnabled property of the UserControl to a boolean property of that object eg:
<my:MyUserControl ...
1
vote
1answer
1k views
DependencyProperty for UserControl with DataContext
I have a ListBox where I'm using a UserControl as DataTemplate. My UserControl has a ViewModel. I have a DependencyProperty in my UserControl so that I can bind item from my ListBox to my UserControl. ...
1
vote
2answers
476 views
Sharing DataContext to UserControl in a type safe way
I'm developing my first Silverlight 4 app and are struggling on how to to share my DataContext set on the top element (a Grid) in my MainPage.xaml into an underlying UserControl, in a type safe way. ...
1
vote
1answer
691 views
DataContext in UserControls
How are DataContext in UserControls usually set? If I do something like the below in my UserControl,
DataContext = this
In my Window or other Controls when I want to use the Control with a Binding, ...
0
votes
1answer
411 views
WPF/C# Forwarding events and DataProvider values within a UserControl
I have a UserControl which contains 4 ToggleButtons and I'd like to trigger a custom event that an interested object can listen for which provides a status, based on the ToggleButton Checked values ...
1
vote
1answer
2k views
WPF Usercontrol interaction with parent view / viewmodel
Hi I have a mainView window which has its dataContext set to it's own viewModel.
On that viewModel is a DateTime property which in turn is bound to a datepicker on my main view using 2 way binding.
...
0
votes
1answer
1k views
WPF/MVVM:Set multiple datacontext to ONE usercontrol
I have a UserControl with 5 small UserControl which are parts of the first UserControl.
The first UserControl is datatemplated by a MainViewModel type.
The other 5 small UserControls have also set ...
1
vote
1answer
2k views
WPF datacontext parent / child usercontrols
I have a WPF application that is made up of a window containing a usercontrol which, in turn, contains another child usercontrol.
I have a dependencyProperty for a SelectedName in my second ...
2
votes
1answer
1k views
Binding two UserControls to the same DataContext, or ViewModel?
I am working on a UserControl, which is composed of a Chart panel and another area which manipulates some of the chart data i.e. the chart controls (change color of graph, enable or disable stuff on ...
3
votes
3answers
4k views
Setting User Control's DataContext from Code-Behind
This should be pretty easy, but it throws VS2008 for a serious loop.
I'm trying out WPF with MVVM, and am a total newbie at it although I've been developing for about 15 years, and have a comp. sci. ...

