0
votes
2answers
21 views

Binding a dataset/DataTable to a xaml datagrid

I want to display a datagrid in my UI. I am binding it to a dataset in my viewmodel. Here is the code: View: <StackPanel Orientation="Horizontal" Height="Auto" Name="stackPanel4" ...
0
votes
1answer
20 views

DataGridCheckBoxColumn IsReadOnly property binding

I would like to have the checkbox column in my datagrid enabled/disabled for each row depending on a value in a collection. I have an ObservableCollection called AccountComponents that is a collection ...
0
votes
0answers
11 views

Kendo Mobile - MVVM Need help binding view model with datasource

I cannot, for the life of me, figure out what is wrong here. i am trying to bind a view to a view model, and then bind a datasource array within the view, from the view model. Here is my code: HTML: ...
0
votes
2answers
39 views

Breeze.js query does not update knockout view

I am querying data via breeze.js which works fine the first time. The second time the view isn't updated. html <a id="linkQDate">Order by Newest</a> <a id="linkQScore">Order by ...
-1
votes
0answers
13 views

Windows 8 databound ListView with multiselect using MVVM

I am working on a Windows 8 project and one of the issues I'm running into is creating a databound ListView control that allows the users to select multiple items using the MVVM design pattern. Blog ...
0
votes
1answer
33 views

Window freezes when adding items to ObservableCollection

I have a DataGrid which is bound to an ObservableCollection ProductsFound which is exposed as a property in my ViewModel. By typing text in a TextBox, products contained in the model that have the ...
4
votes
2answers
91 views

Why binding is not enough to refresh UI in WP7 (MVVM)

I'm trying to create WP7 application based on MVVM pattern but I have problem with refreshing bind content of TextBlock. In the current state I need to reopen page to refresh content. I think that ...
2
votes
2answers
36 views

Can't find visual tree element when data binding to gradient stop

Trying to make a DataTemplate style, where it should change the colour of a couple of gradient stops based on the value of a boolean 'IsReported'. This is a MVVM Project. However, when I add items to ...
0
votes
1answer
21 views

How to get object bound to DataGridRow in Xaml?

There is DataGrid with ItemsSource as ObservableCollection. ParticipantViewModel having property named ExpenseType, Currency etc. For some specific expense types participant can change currency and ...
0
votes
3answers
26 views

xaml Convert ID to String without using ComboBox

I've been using code like this <ComboBox ItemsSource="{Binding Path=CompaniesViewModel.CompaniesCollection}" SelectedValuePath="CompanyId" ...
1
vote
2answers
100 views

WPF MVVM DataTemplates - View Not updating

I'm working on a digital signage WPF application and the basic structure is setup as follows: I have a single view with a grid in it bound to a playlist object. The playlist contains panes, the ...
0
votes
0answers
47 views

Binding to string property returning a formatted double

My current project is to maintain a WPF application which was not developed by me. The following scenario: Textbox with binding to a string property the string property encapsulates a double On ...
1
vote
1answer
49 views

WPF Bind Window Title to ViewModel Property

I am trying to bind a Window Title to the ViewModel which has a Title property. Below is the MainWindow XAML: <Window x:Class="MyProject.View.MainWindow" ...
1
vote
1answer
52 views

How to Dynamically set DataContext of a View in WPF MVVM

So I'm rather new to WPF and MVVM and I'm having an issue here with a TabControl and trying to preserve data when switching between tabs. Basically I have a TabControl inside of a view and the ...
0
votes
0answers
23 views

How to bind XmlDataProvider from ViewModel to ListBox?

I'm having trouble binding XmlDataProvider from ViewModel (my DataContext) to ListBox's ItemsSource. This is what I did - In Xaml - <ListBox ItemsSource="{Binding ...
1
vote
2answers
38 views

WPF Binding Collection with Index

I'm trying to use a collection that is a property of another collection to bind to a listbox. The following works fine <ListBox ItemsSource="{Binding Path=Locations[0].Buildings}"> the ...
1
vote
1answer
52 views

WPF, MVVM Populate combobox using another combobox selected item

I have 2 comboboxes that the selected item of the first needs to change the itemsource of the second and it doesn't. here is my xaml... <ComboBox Grid.Column="1" ItemsSource="{Binding ...
1
vote
2answers
122 views

How to Bind a List<object> to DataGrid using MVVM at Runtime

All, I have an View model that is bound to a DataGrid using MVVM. <DataGrid ItemsSource="{Binding Path=Resources}">...</DataGrid> Where public ...
0
votes
0answers
87 views

Kendo UI viewmodel binding to radio buttons within grid

I have a set of radio buttons binded to a viewmodel: <input name="A_22" id="A_StatusCode_22_0" onchange="display(this, 22, 0);" type="radio" data-bind="checked: viewModel.A_List[0].A_Status" ...
1
vote
1answer
13 views

Using ValueConverter to position a Line relative to its parent ActualHeight and another ViewModel property

I have a property in my ViewModel called RelativeHeight, which is a double ranging from 0 to 1. In my View, I have an horizontal line whose width is the same of its container (via Element Binding), ...
0
votes
1answer
72 views

Deep Property Binding with Caliburn Micro issues

I am just not figuring out what I am doing wrong. I am trying to use Caliburn Micro on a WPF app(4.5). Trying to follow MVVM for what it's worth. My VM has property of Services and Authorization. ...
0
votes
1answer
53 views

How to pick an ItemViewModel object by LongListSelector Index

I'm trying to use the ScrollTo() method of a LongListSelector to scroll to the top of the list. ScrollTo() takes an object, not an index, so I need to feed it the object which is at the top of the ...
-1
votes
1answer
51 views

When is the PropertyChangedCallback fired

I have trouble understanding a problem that occured to me. I Have a UserControl that is structured somwhat like this. public class SomePage : Page { public static readonly DependencyProperty ...
0
votes
1answer
35 views

How to bind value from Viewmodel to usercontrol in view

I have a window, that contains a usercontrol. The usercontrol have a dependency value, which I need to bind to a value on the windows viewmodel. But, no matter what I try, I end up with null. So, ...
1
vote
2answers
63 views

Binding on DependencyProperty of custom User Control not updating on change

I'm having difficulties with databinding on my custom user control(s). I created an example project to highlight my problem. I'm completely new to WPF and essentially MVVM as well, so bear with me... ...
4
votes
2answers
137 views

Preferred method for binding in MVVM, Data Template in Resources file or just DataContext in View itself?

This one has got me stumped as I THOUGHT I looked at everything but I must be missing something. I have went off the traditional MVVM pattern from the MSDN magazine: ...
1
vote
1answer
31 views

MVVM: how to notify the change of every object property when I change the object itself?

I have a ViewModel that contains a (Person)Patient property. In my View, I bind to some of the properties of Patient, say, Name and Age. The problem is: if I change Patient, nothing happens in my ...
0
votes
1answer
43 views

is it possible the binding to two properties?

I have a view model that has two properties. One of them is myDataGridSelectedItems, that is update in the selection changed event of the datagrid (I am using MVVM light to convert an event to ...
0
votes
1answer
55 views

Databinding single source to multiple ComboBox'es not updating all of them

Let's say I have four comboboxes (let's call the cbA1, cbA2, cbB1, cbB2), cbA1 and cbB1 are bound to the same property and cbA2 and cbB2 to a different property in my viewmodel. Before I switched over ...
0
votes
4answers
73 views

Databinding to WrapPanel does not work as expected

I'm trying to populate a WrapPanel with a collection of my own user controls. Child control: <UserControl x:Class="MyApplication.StockMappings.StockView" ...
0
votes
1answer
71 views

Binding RichTextBox.Document and TextBlock.Inlines (not dependency properties)

I've got a RichTextBox and a TextBlock that are nested in a DataTemplate. I'm trying to bind them to a dynamic content, which includes hyperlinks and images (so I can't use the Text property). How ...
3
votes
4answers
202 views

Getting CRAZY with ComboBox SelectedItem

I have a data bound ComboBox that looks like this: <ComboBox Canvas.Left="5" Canvas.Top="5" IsEnabled="{Binding Path=ComboBoxEnabled}" ItemsSource="{Binding Path=Items}" SelectedItem="{Binding ...
0
votes
1answer
153 views

WPF - Restore Previous SelectedItem when ComboBox ItemSource Changes

I'm implementing a ComboBox that can be refreshed by users using a button. I'm trying to make it so that the previously selected item is automatically reselected if still present inside the ComboBox ...
0
votes
2answers
128 views

ComboBox Binding to Custom ViewModel

I am working on a WPF project. This is my XAML code: <Window x:Class="MyNamespace.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
147 views

Displaying elements of ObservableCollection in data grid columns

I have a program where I am reading a .csv file with 2 columns, and my model has 2 properties. I take instances of this model as the file is read and then add them to my ObvervableCollection. Here is ...
2
votes
2answers
104 views

WPF: How to trigger GUI behaviours in response to view-model events?

I'm developing a WPF/MVVM application and I have a listbox binding to data in a ViewModel. At various points I need the view model to cause the listbox to scroll to a given element. How can I do ...
0
votes
0answers
101 views

WPF treeview node context menu

I am new to MVVM and WPF in general. So far I have managed to bind TreeView using ViewModel. But facing problems as I want context menu on menu item right click. On clicking option in context I want ...
0
votes
1answer
242 views

Create a login page using EF WPF

I'm creating a login page to enable a user to use a WPF MVVM application. So far I'm using Entity Framework model, connected to a SQL database. I have one table that contains some user details such ...
0
votes
1answer
141 views

Kendo MVVM binding on null values binds as object

there seems to be a rather peculiar design decision when it comes to the binding behaviour in Kendo. I'm trying to bind a nullable value to a drop down list. If the (remotely sourced) value is null, ...
0
votes
3answers
317 views

WPF MVVM ListBox.ItemTemplate CheckBox IsChecked binding

The scenario I'm working with is editing Roles and Permissions. In a list box I want to list all defined Permissions and check the Permissions the selected Role has been assigned. The Role selection ...
0
votes
2answers
109 views

WPF Hierarchical ViewModel FindAncestor data binding error

I'm creating an MVVM application which has two view models, RegisterUserViewModel and UserViewModel. The "RegisterUserViewModel" has a public property which is a collection of "UserViewModel", like ...
0
votes
0answers
58 views

Updating a model between two views (WPF/MVVM)

My WPF program must do the following: I have a ProcedureOfCapture control, which has: A live Cam feed (Image control + AForge, working fine); A Projector control, which is a Window without border, ...
0
votes
1answer
32 views

MVVM Company -> Categories associations in checklistbox

I have a Silverlight application using MVVM. My application has "Companies", each company can be associated to multiple "CompanyCategories" So in my ViewModel a Company has : public ...
1
vote
1answer
37 views

How to make ValidatesOnDataErrors bindable?

I have to need to bind the value of ValidatesOnDataErrors, so that it can be determined at run-time. The reason for this, is because i don't always want to validate the data. This is a property of a ...
1
vote
2answers
57 views

ViewModel-to-ViewModel communication

I'm working on a area of an application that consists of the following parts: Explorer - Contains a TreeView PropertyInspector - Contains a PropertyGrid Editor - Contains an Explorer and a ...
2
votes
1answer
79 views

SetBinding using string path only fires change event on SetBinding in .NET 4.0

I am not sure if this is a bug in 4.0 or a misunderstanding of DP's and bindings on my part. *Note: this works in 3.5 and 4.5...just not 4.0 Consider the following code: VM: public MyEnum MyProp { ...
0
votes
0answers
66 views

wpf-Mvvm Property binding

I have simple application that given file path will parse the file and returns list of objects. public interface ISearch { List<Example> ExampleSearchResults { get; set; } string ...
1
vote
1answer
231 views

Bind ComboBox DataTemplate to ItemSource property

I have a DataTemplate for a ComboBox in a GridView column. I want to display a ComboBox when the cell is being edited and a TextBlock otherwise. However I am having trouble getting the TextBox to ...
0
votes
1answer
373 views

Biding with Pivot control on Windows Phone 8 with MVVM

I finally got my pivot control to work using MVVM in a wp8 app but I still have a question in regards to binding as thought as it works, and I could accept it as is, I'm not happy with the outcome and ...
0
votes
2answers
312 views

Displaying Images in ListView (or something better!) in WPF MVVM using databinding

I am trying to display some images in a ListView and have not been successful. I am using WPF MVVM and the ListView is a holdover from simply displaying suits and rank data. (See my previous post: ...

1 2 3 4 5 14