WPF is a graphical subsystem for rendering user interfaces in Windows-based applications.
2
votes
0answers
142 views
What the best way to wire up Entity Framework database context (model) to ViewModel in MVVM WPF?
As in the question above: What the best way to wire up Entity Framework database model (context) to viewModel in MVVM (WPF)?
I am learning MVVM pattern in WPF, alot of examples shows how to implement ...
0
votes
0answers
6 views
How can I fill in multiple columns in a WPF datagid with a combobox [migrated]
I've got a datagrid bound to an ObservableCollection. Among the members of the class are the fields PartCode, PartDescription and SpecificGravity among others. In the datagrid I have set up a ...
2
votes
2answers
278 views
Well designed Open Source WPF Applications [closed]
I'm just wondering if anyone knows about some well designed .NET Open Source Applications using WPF?
I have already tried to search at the usual sites like GitHub and Sourceforge, but I wasn't very ...
1
vote
0answers
56 views
Switch Parent Children relationship in C# [duplicate]
Using C# and WPF I have a situation where my data is organized hierarchically.
I am using a treeview to represent this (each node is a Class type that containts a Children property that is an ...
2
votes
3answers
141 views
Switch Parent Children relationship in C#
Using C# and WPF I have a situation where my data is organized hierarchically.
I am using a treeview to represent this :
Group_01
Object_01
Material_01
Texture
Material_02
Texture_02
...
-2
votes
1answer
88 views
ASP.NET and windows applications [closed]
Currently I'm still learning ASP.NET. My goal is to build dynamic websites. However, I also want to be able to build some windows applications as well.
So, is it easy to learn Windows forms or WPF ...
3
votes
1answer
166 views
Selecting an appropriate design for Month/Date Selection
I have a requirement what seemingly looks very simple (and perhaps strange) but some minor details are giving me troubles. Perhaps I'm overthinking this.
I'm building a scheduler application (on WPF) ...
4
votes
1answer
426 views
Using WPF rather than WinRT for Windows 8 Pro tablet app: good or bad idea?
Our business is considering writing a line of business application for tablets to enable road warriors and executives access our data.
This will be primarily used for dashboards, reports and some form ...
0
votes
2answers
126 views
WPF Development in businesses [closed]
Apologies if this is too broad a question(or wrong SE to ask on), but something I've been wondering for a while.
I enjoy WPF a lot, and think I'm fairly competent at work with it, and developing for ...
1
vote
5answers
407 views
MVVM ViewModel and Commands
I need a bit of help to understand the relationship between a viewmodel and a command, and the responsibility of the viewmodel.
I'll try to give an example (using Caliburn Micro).
I have a viewmodel ...
0
votes
2answers
427 views
MVVM pattern - Best design approach to manage an application
One year ago, I discovered the WPF technology and I developed a little application, as first experiment, to compare the content of two different directories. The content of each directory is shown in ...
4
votes
1answer
235 views
Is there an effective way for creating complex forms?
While creating a 'search' form I've been faced to an overwhelming complexity and I was wondering whether there is a well-known way to accomplish such task.
Fields of the form in question can be seen ...
3
votes
1answer
159 views
Why, in WPF, do we set an object to Stretch via its Alignment properties instead of Width/Height?
In WPF's XAML, we can tell an element to fill its container like this:
<Button HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
Why is it that when we set an element to Stretch, ...
2
votes
2answers
116 views
Dependency properties outside the realm of WPF?
Is there a more general concept or name for what WPF calls "dependency properties"? I imagine this is not a WPF-ism and in fact other libraries or frameworks have employed a similar approach? If so, ...
4
votes
1answer
451 views
Value of MVVM in a Line of Business Application (and a Rant of Current Development Practices)
After 2 years, I'm still struggling with MVVM as a practical method of producing working software. In some cases it's great. I did a multithreaded application that controlled a small assembly line ...