Tagged Questions
0
votes
0answers
10 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
2answers
20 views
WPF binding does not work with a UserControl
In my MainViewModel I have a property, which is set by the user. When a new value is received, I would like to update information at my UserControl. The problem is the binding does not work. The way I ...
1
vote
0answers
23 views
AppDomain.CurrentDomain.BaseDirectory changes according to the app's target platform
I have this path set up as the path to the root dir of the application.
It worked perfectly until I decided to change my System.Data.SQLite.dll lib and my application to 32bit instead of 64bit (which ...
1
vote
0answers
50 views
Binding to DataGrid of TabItem not Working using MVVM
All, I have a small application to help myself learn WPF and MVVM etc. I have been using the example by Josh Smith found here to construct my own application. I have got the application adding ...
-1
votes
1answer
60 views
C# Could not find the data provider. NET Framework requested
Im using Visual Studio 2010 Ultimate, C# WPF, MVVM, Sqlite.
I have this project that is running without problems (On Windows 8 x64, .NET Framework 4 Client Proile), but I get all this exceptions when ...
0
votes
2answers
54 views
How do I create objects behind code and display it in the View?
I'm having trouble understanding how to apply the MVVM pattern when I want to display dynamic amount of images in the View from the ViewModel.
I have a array of Images in the ViewModel and I want to ...
-1
votes
1answer
26 views
pressing the enter key on ok button of message box causes a repetitive message box
I have an application developed using mvvm framework.
I have a textbox with validation to enter only characters otherwise display a message box.
once the message box with ok button is displayed, user ...
2
votes
2answers
56 views
Using commands with MenuItem's in WPF
So I have this MenuItem which is using a list of CultureInfos as an itemsource.
What I'm trying to do is to fire a function when a CultureInfo is clicked/selected, which is supposed to change the ...
-2
votes
0answers
30 views
WPF c# Mvvm aplication error [duplicate]
I have an application developed in C # with wpf and mvvm, with bases in sqlite data, I generated the visual studio installer and this is where I get an error, is as follows:
Files that help ...
-1
votes
0answers
40 views
C# wpf aplication error [closed]
I have an application developed in C # with wpf and mvvm, with bases in sqlite data, I generated the visual studio installer and this is where I get an error, is as follows:
Files that help ...
1
vote
0answers
36 views
Resources on preventing MVVM from over firing commands and properties
I am wondering if anyone has any good resources on developing and architecting MVVM specifically to ensure that properties and commands are not firing more often then they need to be.
I'm working ...
0
votes
1answer
20 views
wpf move project sub folder to different location
With MVVM the Images folder should be under Project folder or under View as a sub folder?
I originally have Images folder under Project folder with:
ImageBrush ...
1
vote
1answer
24 views
WPF Validation: How to validate the whole page
I am using the following articles to validate inputs from the user:
http://weblogs.asp.net/monikadyrda/archive/2009/06/24/wpf-textbox-validation.aspx
...
0
votes
2answers
23 views
How to a implement ListBox ScrollIntoView functionality in a ViewModel
I have a screen with a TextBox in which the user can type a 2-character state code. Below the TextBox is a ListBox containing all 50 state codes. The TextBox is bound to property in the VM, and the ...
0
votes
1answer
46 views
Navigate properly between tab in a WPF MVVM application
I'm doing a WPF application with the M-V-VM patern (i'm using galasoft if it's relevant), but I have issues when I navigate through a tabcontrol.
I'm adding tabs on the run. All the binding seems to ...
1
vote
6answers
83 views
Return value of a Property from child ViewModel to parent ViewModel
In my WPF MVVM app, using Caliburn.Micro, I have a ViewModel, CreateServiceViewModel that, on a button click, opens a GridView in a seperate window for the User to chose a Row from.
I created ...
4
votes
3answers
96 views
TextBox does not always update
I have the following TextBox:
<TextBox Text="{Binding SearchString,
UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" />
Bound to the following property:
private string ...
2
votes
2answers
18 views
Trouble changing control visibility from control
In my application, I've got a stackpanel I'd like to keep hidden (or collapsed, whatever keeps it out of sight until it's needed) and it is to be made visible when the user clicks a button.
The issue ...
0
votes
2answers
41 views
Dynamic ui with rows and columns
I want to build an ui with a dynamic grid. At least i think a grid is the way to go.
The controls of each cell should be the same, f.e. a textbox.
Each row can have a different number of cells and I ...
1
vote
3answers
94 views
MVVM pattern - is it okay to put UI related data in the model?
ATM I'm trying to get the hang of MVVM, databinding and commands. I'm trying to (re)create a game menu using the pattern. I've got a couple of questions.
1) Right now I have the button content (Party ...
4
votes
3answers
66 views
How to Bind to window's close button the X-button
How I can bind one of my buttons on control to X Button that closes the window ?
I just want to create cancel button that just closes the window.
I am using MVVM in my code.
If possible to do it only ...
0
votes
1answer
37 views
SQLite Can't find a table
I have this code in App.xaml.cs:
private SQLiteConnection dbCon;
public void App_Startup(object sender, StartupEventArgs e)
{
SQLiteConnection.CreateFile("testdb.sqlite");
...
2
votes
2answers
46 views
How to determine which user control is calling command
Relative new to MVVM - I realize this is simple question but can't seem to find the answer.
I have 4 grouped radio buttons that when one is selected will show its associated options. I assume these 4 ...
0
votes
1answer
26 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, ...
0
votes
0answers
20 views
Update a cell of a column on updating another cell of the same column in XamDatagrid
I have a requirement of updating a cell of a column on updating another cell of the same column in XamDataGrid.
Iam trying to implement this using WPF,MVVM. Could anyone please help me out? Data in ...
0
votes
1answer
23 views
Access Parent Data Context using Code
If I want to bind to parent data Context data using XAML , the I could write the following:
<UserControl>
<RadGridView x:Name="Parentgrid">
<RadGridView.RowDetailsTemplate>
...
2
votes
2answers
61 views
Best Practice Observablecollection<Model> vs Observablecollection<ViewModel>
Which one is the better solution to hold my data or does it depends on some conditions?
sample situation 1:
you need to display a list of data which can be modified in an new window after selection.
...
1
vote
1answer
21 views
MVVM Batch Job process file belongs to ViewModel?
I am trying to use MVVM pattern in my app. One of the things the app does is to start a batch processing job.
So I have a class file named BatchProcessing.cs. This file does not fit into the ...
0
votes
3answers
40 views
Show alternating images for changing ViewModel states
For different user interfaces I want to show an image depending on a state of a ViewModel object.
For example:
I have a database connection, if connected, I want to show a green database image, if ...
0
votes
1answer
37 views
mvvm RETRIEVE data in model or viewmodel?
I am learning MVVM. I know model is about my data conceptually. Here is my scenario.
database table definition
create table people (SSN varchar(9),first_name varchar(40), last_name varchar(40))
In ...
1
vote
2answers
51 views
WPF Caliburn.Micro/mvvm Navigation
I'm building a project, and one of the biggest problems I've come across until now is navigation.
I've been looking for some time now for examples of caliburn.micro/mvvm navigation, but they all seem ...
0
votes
2answers
48 views
IDataErrorInfo best practices
I am working in a WPF project using MVVM.
What's the best practice to validate errors using IDataErrorInfo? In my Model or ViewModel?
Whats the best pattern to use to implement validation?
P.S. I ...
0
votes
0answers
32 views
Updating DataTemplate on LoadingRowDetails Event using MVVM
I have a Grid which has a childGrid inside DataTemplate:
<RadGridView Grid.Row="0" x:Name="parentRadGrid" LoadingRowDetails="parentRadGrid_LoadingRowDetails">
...
0
votes
2answers
37 views
WPF Passing Multiple Parameters on Click of Checkbox
Following is my xaml:
<CheckBox Name="CheckBoxNoFindings" Content="No Findings" Command="{Binding DisableRteCommand}" CommandParameter="{Binding Path=Content}" Grid.Row="1" Grid.Column="1" ...
2
votes
0answers
39 views
the selectionChanged is executed twice, why?
I have a WPF application that use MVVM pattern. I have a dataGrid and I use also MVVM Light to convert the event to commad the event selectionChanged and I pass the parameter ...
0
votes
2answers
37 views
How to insert an ObservableCollection property to a local sqlite-net db?
I have a quick question about the sqlite-net library which can be found here : https://github.com/praeclarum/sqlite-net.
The thing is I have no idea how collections, and custom objects will be ...
0
votes
0answers
23 views
Creating tables with the SQLite-net library
I'm researching SQLite - .net (https://github.com/praeclarum/sqlite-net) in order to add a local storage to my project.
I've come up with a few questions:
The tables are created per model, and then ...
2
votes
0answers
52 views
How to use different behaviours in the same ViewModel?
I have the view designed for the long running tasks. It has a header and a progress bar.
So the model has the text for a header and a counter for a progress bar and a TotalAmountOfWork field. The ...
3
votes
3answers
57 views
ListBox selectedItem get working but set not working in MVVM
I am working on a WPF application and following MVVM. In my view there is a grid view which contains different columns. One of these column is a ListBox. Now problem is that for the ListBox column, ...
-1
votes
3answers
38 views
MVVM: Populate a view (with listbox) when an item from another view (with listbox) is selected
I have a list of Topics, and for each topic there are some Examples. What I want to be able to do is that when a topic is selected then I will populate another view with all Examples for that selected ...
0
votes
1answer
46 views
What is the best way to create a menu bar that follows the MVVM paradigm?
This is my first question on SO, so Hello.
I'm pretty new to WPF and so I decided to try and create a GUI for a library I created in the past. I wanted to create a menu strip/line/bar for the ...
1
vote
2answers
53 views
MVVM where to put my class
I used a customized TreeViewItem class named TreeViewItemWithCheckbox. The code is copied from here
Treeview with checkbox bind by different lists
It works fine. My question is: with MVVM which ...
4
votes
4answers
120 views
MVVM : Share data between ViewModels
How do I share data between multiple ViewModels ?
For example there is a class named Project in application .
public class Project : ModelBase
{
private string _projectName;
public ...
1
vote
1answer
53 views
Combobox binding to Deep Properties with Caliburn.Micro
My VM has a property of my Model, Authorization, which has a property of ActiveService.
public Authorization Authorization
{
get
{
return this.authorization;
}
...
0
votes
1answer
17 views
SequentialResult, how does it work in Caliburn.Micro?
The title says it all but i will try to be more accurate:
Is the Completed event fired after the completion of each IResult or after the completion of all IResults ?
Is the Execute method of the ...
0
votes
1answer
56 views
Can the Model part of the MVVM application be active?
I'm going to start to develop a WPF real time C# application for trading in stock exchange. I'm going to develop this application according to MVVM pattern. So in Model part of the MVVM application I ...
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
0answers
36 views
MEF Issue: I Can't see the Imported Class
Our application implements MVVM-WPF-Unity and I adding a feature that will add plugins in our application thru MEF. Thus I have a Plugin Manager class and plugin class.
In the Plugin class module, I ...
-1
votes
1answer
41 views
Accessing a property in one ViewModel from another
I want main viewmodel to have a certain list, and then access from many other viewmodels.
For example, in MainViewModel.cs I will have a list of 50 numbers,
then in NumListViewModel.cs, I'd like to ...
1
vote
1answer
27 views
How to add menu to application in prism way in WPF application?
I have been following Prism reference implementation of stock trader app. I am building application following the same way. but I am bit confused at how I shall add menu to my application in Prism ...






