Tagged Questions

19
votes
8answers
2k views

WPF — Where do you draw the line between code and XAML?

I'm a long-time C#/.NET programmer but totally new to WPF and the System.Windows.Controls namespace and XAML. The more I learn about it the more I realize that you can do pretty much all of your GUI ...
16
votes
4answers
568 views

WPF without XAML

Architecturally, I think WPF is pretty amazing. In general, I'm a big fan of the underlying rendering/animation inner workings. The flexibility of the templating and styling set up is pretty ...
11
votes
3answers
3k views

WPF MVVM - Can a single PropertyChanged update all the Data bindings of a DataTemplate?

I have a ViewModel class which has large number of properties(Say 50). Once the data is set on to all the properties I need to update the UI. I know that the common solution is to raise ...
9
votes
4answers
2k views

XAML without the .xaml.cs code behind files

I'm using WPF with the Model-View-ViewModel pattern. Thus, my code behind files (.xaml.cs) are all empty, except for the constructor with a call to InitializeComponent. Thus, for every .xaml file I ...
8
votes
4answers
793 views

WPF Event Binding to ViewModel (for non-Command classes)

I'm working an the second version of an application, and as part of the rewrite I have to move to an MVVM architecture. I'm getting pressure to put absolutely every bit of code in the view model ...
8
votes
2answers
2k views

How can I specify resources in an MVVM view model?

Suppose I want to show list of objects where each object should have a name and a suitable image (for example MenuItems with Icons, or buttons with text and image). All examples and programs exposed ...
8
votes
5answers
7k views

How can I bind an ObservableCollection of ViewModels to a MenuItem?

When I bind Menu Items with an ObservableCollection, only the "inner" area of the MenuItem is clickable: In my View I have this menu: <Menu> <MenuItem Header="Options" ...
7
votes
2answers
5k views

how to call a window's Loaded event in WPF MVVM?

It is easy enough to create a command from my OnLoaded() event handler code, but how do I call it from the View? <window Loaded="onLoaded"> doesn't cut the cake anymore since it calls code in ...
7
votes
1answer
2k views

Fat Models, skinny ViewModels and dumb Views, the best MVVM approach?

Through generous help on this question, I put together the following MVVM structure which displays the changes of a model in real time in XAML (current date/time), very nice. A cool advantage of ...
6
votes
5answers
111 views

What is the point of having both Model and ViewModel in M-V-VM?

I always find it tempting to put a model and a view-model together in one class, and I don't see the downside of doing that. There must be a good reason for separating them. What am I missing?
6
votes
2answers
1k views

Binding [VisualStateManager] view state to a MVVM viewmodel?

How do you bind the VisualStateManager state of a control to a property in you viewmodel? Can it be done?
6
votes
3answers
5k views

Error “Specified element is already the logical child of another element”?

I have a TabControl and each Tab can contain the same UI but with different data. In any tab the user can click on a button and bring up a popup. This sets a Style property to the ViewModel telling it ...
6
votes
3answers
143 views

Is there anyway of consolidating similar data bindings and/or triggers in XAML?

I have a user control that hosts other controls. The way I implemented this is via data templates that define the control that should be associated with a specific view-model. These view-models have ...
6
votes
2answers
683 views

How to dynamically discover all XAML files in all modules in a Silverlight prism app

Is there an easy way to dynamically discover all the XAMLs files within all the currently loaded modules (specifically of a Silverlight Prism application)? I am sure this is possible, but not sure ...
6
votes
2answers
3k views

How can I apply a custom sort rule to a WPF DataGrid?

When the user does a column sort in my DataGrid, I want all null or empty cells to be sorted to the bottom, rather than the top. I wrote an IComparer<T> that makes sure blanks are always sorted ...
5
votes
3answers
516 views

WPF: MVVM says no to converters but I need nice enum values

In the model tier, I have defined an enum: public enum MemberStatus { ActiveMember = 0, InactiveMember = 1, Associate = 2, BoardMember = 3, Alumni = 4 } In my view, I have a ...
5
votes
1answer
2k views

How can I sort a ListBox using pure xaml and no code behind?

I need to sort the strings in a ListBox, but it is bound to the view model by another component via the DataContext. So I can't directly instantiate the view model in xaml, as in this example, which ...
5
votes
5answers
1k views

Binding Commands to Events?

What's a good method to bind Commands to Events? In my WPF app, there are events that I'd like to capture and process by my ViewModel but I'm not sure how. Things like losing focus, mouseover, ...
4
votes
2answers
69 views

How should I spawn dialog boxes from my ViewModels?

Is there any kind of consensus about best practices for dialog windows in MVVM (for WPF)? I've seen it approached via two ways: A mediator (EventAggregator, EventBus, or whatever you like to call ...
4
votes
4answers
293 views

In MVVM there can be only one View for each one View Model?

As I read here: http://msdn.microsoft.com/en-us/library/gg405484(v=pandp.40).aspx There is typically a one-to-one relationship between a view and its view model. It means that by design ...
4
votes
4answers
726 views

UI design using MVVM pattern

I'm trying to choose the best way to implement this UI in MVVM manner. I'm new to WPF (like 2 month's) but I have huge WinForms experience. The ListBox here act's like a TabControl (so it switches ...
4
votes
5answers
564 views

Switching between view mode and edit mode in MVVM?

I am new to MVVM and I've decided to move on and start adopting it in my upcoming projects. I have read this related question and answer, but I don't know how this would be implemented with MVVM. I ...
4
votes
3answers
203 views

Pros and cons of having a WPF specifics in the view model

I'm having trouble deciding what to think about this piece of code: public SolidColorBrush Brush { get { return IsValid ? _validItemBrush : _invalidItemBrush; } } It is part of a view model in ...
4
votes
4answers
1k views

How do I set a ViewModel on a window in XAML using DataContext property?

The question pretty much says it all. I have a window, and have tried to set the DataContext using the full namespace to the ViewModel, but I seem to be doing something wrong. <Window ...
4
votes
4answers
279 views

WPF - Dialogs using MVVM

When using custom dialog windows in a MVVM application, do you think it´s Ok to use the code behind to handle properties, events etc.? Or should I always have a ViewModel binded to every dialog view? ...
4
votes
2answers
1k views

Using bindings to control column order in a DataGrid

Problem I have a WPF Toolkit DataGrid, and I'd like to be able to switch among several preset column orders. This is an MVVM project, so the column orders are stored in a ViewModel. The problem is, I ...
4
votes
4answers
5k views

Simple Event Handling in MVVM

Just wondering what people had for ideas on how best to handle events in a ViewModel from controls on a View ... in the most lightweight way possible. Example: <MediaElement ...
4
votes
3answers
1k views

Is there an MVVM-friendly way to use the WebBrowser control in WPF?

Thanks to this question (click me!), I have the Source property of my WebBrowser binding correctly to my ViewModel. Now I'd like to achieve two more goals: Get the IsEnabled property of my Back and ...
4
votes
2answers
4k views

How can I tell my DataTemplate to bind to a property in the PARENT ViewModel?

I've got the following MainView.xaml file that works well as a MVVM menu switcher. I've got these pairs: Page1View / Page1ViewModel Page2View / Page2ViewModel in my MainViewModel I fill an ...
4
votes
2answers
2k views

Show ContextMenu on Left Click using only XAML

The default behavior of a WPF ContextMenu is to display it when the user right-clicks. I want the ContextMenu to show when the user left-clicks. It seems like this should be a simple property on ...
3
votes
1answer
75 views

Pass command parameter from the xaml

I try to do something like this: <DataGrid Name="myGrid" ItemSource="{Binding Path=MyCollection}"> <DataGrid.ContextMenu> <ContextMenu> <MenuItem ...
3
votes
1answer
85 views

Is it bad to keep code in View code behind?

I've tried to read article WPF/Silverlight: Step By Step Guide to MVVM but I can not understand it completely. However I've noticied such guideline: That is your View.xaml.cs that is supposed to ...
3
votes
1answer
206 views

Bind event to ViewModel - WPF

I am using WPF and PRISM framework for my application. The pattern I am using is MVVM (Model - View - ViewModel) and I am trying to bring the MouseLeftButtonUp event from the code-behind in the View ...
3
votes
2answers
179 views

Getting Window Properties in ViewModel

I'm building a WPF application in which I have a need to get the width, height and locations of the window from my view model. I'm using the following XAML: <Window ...
3
votes
3answers
67 views

MVVM data templates and non-direct data mapping

I've been using mvvm to develop a RIA service sl4 app and i seem to be missing something. The MVVM and databinding works nice when your data comes in the expected format for editing or when your data ...
3
votes
2answers
634 views

WPF/XAML - DataTriggers to set ValidatesOnDataErrors = false/true when a radio button is checked

I am working on an application that implements the MVVM design pattern with DataAnnotations. The application is a dynamically generated list of pages. On one of those pages, I have 10 required fields ...
3
votes
3answers
401 views

PropertyChanged is always null in ViewModelBase

I made a simple example to better understan the MVVM pattern. Here is a link to the sample solution, because its difficult to explain the whole problem: ...
3
votes
2answers
635 views

WPF Treeview in MVVM

I have a treeview that I (finally) have been able to populate from a database using databinding. There are 2 objects that live in the tree: -FavoriteFolder: An object that can have children - either ...
3
votes
3answers
581 views

Why to avoid the codebehind in WPF MVVM pattern?

At the article, WPF Apps With The Model-View-ViewModel Design Pattern, the author who is Josh Smith said: In a well-designed MVVM architecture, the codebehind for most Views should be empty, or, at ...
3
votes
3answers
238 views

Why is my unit test of my Silverlight XAML bindings is failing?

I've got the following combobox defined: <ComboBox x:Name="cmbCurrency" ItemsSource="{Binding IsoCurrenciesList}" DisplayMemberPath="Description" ...
3
votes
2answers
383 views

Run code after the animation is finished

I am using MVVM Light. I have created a window that looks like this: <Window Name="MainWindow" ...> <Window.Resources> ... <viewModels:MainViewModel x:Key="mainVM" /> ...
3
votes
4answers
1k views

How can I set the width of a DataGridColumn to fit contents (“Auto”), but completely fill the available space for the DataGrid in MVVM?

I have a WPF DataGrid that contains some data. I would like to set the width of the columns such that the content fits in and never gets cropped (instead, a horizontal scroll bar should become ...
3
votes
4answers
1k views

How to bind a read-only WPF control property (eg ActualWidth) so its value is accessible in the view model?

I want to bind a read-only property of a control to my view model so that the value is available in the view model. What is the best way of doing this? For example I'd like to bind ActualWidth to a ...
3
votes
1answer
708 views

WPF: Binding a ContextMenu to an MVVM Command

Let's say I have a Window with a property returning a Command (in fact, it's a UserControl with a Command in a ViewModel class, but let's keep things as simple as possible to reproduce the problem). ...
3
votes
3answers
2k views

Passing origin of ContextMenu into WPF Command

Interesting problem related to firing commands from context menu items... I want to fire a command to insert a row in my control, InsertRowCmd. This command needs to know where to insert the row. I ...
3
votes
3answers
629 views

ViewModel on top of XDocument

I am working on a WPF application which has a treeview that represents an XML. I load the XML on to the XDocument, then bind the TreeView to this object. Now using the MVVM pattern, I want to ...
2
votes
4answers
72 views

Binding to individual elements in a collection

I am fairly new to MVVM, so bear with. I have a view model class that has a public property implemented as so: public List<float> Length { get; set; } In my XAML for the view, I have ...
2
votes
2answers
122 views

Highlight search term in textblock

I have a search textbox on silverlight app where user types in search term and results are displayed in textblock, requirement is the search term matches should be highlighted in textblocks. I have ...
2
votes
2answers
78 views

How to subscribe to event of Attached property inside custom control in Silverlight?

I'm working on custom control that I can use for interactions within my app UI. So, my idea is that control will bind to IInteractionsProvider which has it's events. And then, I will call method on ...
2
votes
3answers
113 views

Custom control, View Model and dependency properties

I'm creating custom control and because I need to do lot's of binding inside a style/template it makes perfect sense to go with MVVM. Where do I declare dependency properties then? Do they stay in ...

1 2 3 4 5 6