Tagged Questions
0
votes
1answer
22 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
1answer
41 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
38 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
41 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
36 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
37 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
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
66 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
43 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
113 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
39 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
42 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
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
109 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
215 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 : ...
1
vote
3answers
201 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
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
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
0answers
67 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
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
136 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
2answers
136 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
81 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
102 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"
...
2
votes
2answers
249 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 ...
0
votes
1answer
243 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
86 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 ...
0
votes
1answer
45 views
Any good reason for DataContext=“{Binding}”?
I found several times DataContext="{Binding}" in some xaml code I've inherited.
Am I missing something or is it really at best useless ?
Thanks
0
votes
1answer
173 views
Cannot find element that provides DataContext in a custom control
Hi I have a custom control which I use to present other xaml content.
Within the implementation of said control I have a user control that expects a view model to be bound to its data context, ...
3
votes
1answer
169 views
Using Hashtable as DataContext (for WPF/XAML Binding)
In code I have a Hashtable named MyHashtable. This Hashtable contains an element with key="Value", value=3. I'm currently trying to bind this value to a textbox. This is my XAML code:
<TextBlock ...
0
votes
1answer
121 views
How do I Call PropertyChanged if I have a Binding to the Current DataItem (Path=.)
In my XAML code, I have a binding to the current dataitem like this:
Background="{Binding Path=., Converter={StaticResource ResourceKey=kBackground}}"
My converter uses several properties of the ...
0
votes
0answers
89 views
How can I set a parameter value programmatically?
I'm working with two solutions in Visual Studio. One has a Client class with an Id property. The other solution is a Common solution that runs reports etc. The Common solution does not have access ...
-1
votes
1answer
104 views
Multibinding using Window's DataContext
I'm trying to create drag adorner based on whether the Customer DependancyProperty of a Window is null. I have this in the Window's resources. The first part of the binding is set (the item being ...
1
vote
1answer
437 views
WPF Binding with DataContext in DataGrid
I got a WPF DataGrid and in the DataGrid i want to have a column displayed dependent on a property outside of the DataGrid Context (from the ViewModel).
I have the same Property binding outside of ...
0
votes
1answer
141 views
wpf textbox databinding
Can anyone tell me why this doesn't work?
<Grid x:Name="myGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
...
0
votes
1answer
31 views
DataTrigger Overflow exception
How can this be an overflow exception...?
<DataTemplate x:Key="ElementTemplate">
<StackPanel Orientation="Horizontal">
<StackPanel.Style>
...
1
vote
2answers
196 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
432 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 ...
7
votes
4answers
162 views
Saving FrameworkElement with its DataContext to image file does no succeed
I have a simple UserControl called UserControl1 that contains a TextBlock:
<UserControl x:Class="WpfApplication2.UserControl1"
...
1
vote
1answer
379 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
257 views
How to access DataContext of parent in wpf when parent type can be different?
I need to access DataContext of parent in wpf xaml. The whole xaml page code is dynamic. So don't know about the type of parent.
I am writing this
<Grid DataContext={Binding Path=.}>
Is ...
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
2answers
47 views
How can I open a page and assign its datacontext
my question is relatively easy, I guess.
I have a page to display my data. On a click on a button I want to open a new page with the datacontext of an element 2 layers above the datacontext of the ...
0
votes
1answer
462 views
Setting DataContext using StaticResource
I am trying to set the ViewModel as the DataContext of the View using the following XAML code:
<UserControl.DataContext>
<local:MyViewModel />
</UserControl.DataContext>
...
3
votes
1answer
225 views
Nested DataContext
I have 2 nested DataContexts in following code (DataContext and ItemsSource):
<TabItem Header="Something" Name="myTabItemName" d:DataContext="{Binding myViewModel}">
<Grid>
...
0
votes
2answers
86 views
Modifying object in Collection in SelectedItem of TreeView
Object Model:
Client has many studies has many subjects has many records. The treeview holds the clients/studies/subjects and the records are in the MainDataGrid.
Problem: When I modify one of the ...
0
votes
1answer
97 views
How bind button inside user control to another ViewModel
I'm working on project that based on WPF and MVVM.
I have some UserControl (summaryView) which has DataContext to ViewModel(SummaryVM).
I want put a button in summaryView and set the button ...