0
votes
0answers
62 views

'[Unknown]' property does not point to a DependencyObject in path '(0).(1)[1].(2)'

I have no clue what's the exception trying to say,i was searching in the forum but still i couldn't figure it out,so posting my question here. Here is my xaml <StackPanel ...
2
votes
4answers
395 views

WPF optimize loading on the UI thread

I am trying to optimize the loading times for my WPF prism application. The loading is basically a loop of using reflection to create instances of UI elements and then adding them to the main window ...
0
votes
1answer
540 views

WPF: Command and CommandParameter for UserControl

I am creating a custom UserControl and would like the UC to have a Command just like the Button I am new to WPF so any help in the right direction would be highly appreciated. This is what I have ...
0
votes
1answer
927 views

WPF Prism Region inside a tab control isn't in the Region List

I've got a tab control with a region attached to it and I've also got a content control inside my tab controls content with another region. The problem I'm having is - if I call ...
0
votes
2answers
130 views

How to pass Parameters from a region to other regions

I need a suggestion how to pass Parameters(set of data which is selected) from region1 to region2 and region3 in same page Please refer to the screenshot below. Thanks a lot in advance.
0
votes
1answer
212 views

WPF Prism Region Transition

I'm sorry this is a little vague, basically id like to animate my transition between views which are shown in my region manager - I've seen this in a few applications and it looks really slick! So ...
0
votes
1answer
63 views

wpf design element is different so its not seen design

I opened one project solution in which xaml & cs files are at different place.Also it doesn't shows the design of that xaml file.xaml file begin with tag like <abc ...
0
votes
1answer
18 views

I need help with the design for many keyboard shortcuts assosciated with various methods

I have a requirement to come up with many keyboard shortcuts and assosciate them with various methods. I need help on design in C#. Any specific dstrucs to use?
1
vote
2answers
458 views

Navigate from one view to another in WPF

I want to navigate from one view to another view in WPF using MVVM. How can I do this? Please let me know the procedure. Thanks, Prashant
0
votes
2answers
906 views

Delete ObservableCollection Items From Different Thread Mystery

I am using an ObservableCollection implementation that allows creating/updating/deleting collection items from a different thread than the UI thread. Everything works fine except than when im updating ...
0
votes
1answer
800 views

WPF - Textbox text doesn't update if source is updated

My goal is to create a loginscreen for my users to log in to before entering the application. I started using PRISM to control my modules, view, viewmodels, etc... Now my problem is, i have a person ...
2
votes
1answer
223 views

Enhanced WPF Menu

Hello I'm developing a WPF Desktop application using MVVM and I'll like for my navigation module implement a menu like this one: http://patterntap.com/tap/pattern/11543732834cb8a7ee18a51 I'm ...
4
votes
1answer
507 views

WPF GetIsInDesignMode From Inside A Converter

How would i be able to use the GetIsInDesignMode from inside a converter? It seems that the method requires the parent user control/window, a variable which is not accessible when inside a converter. ...
3
votes
3answers
613 views

WPF Binding Render Gui Progress

I know that there are several implementations here and there, but i was still not able to 'lock' on something really useful... Whenever i set some component DataContext or ItemsSource to some big ...
1
vote
2answers
650 views

WPF Binding Order - How To Change?

I have a toggle button which i bind its 'Tag' property to an object. I then bind the 'IsChecked' property to its 'Tag' property. My problem is that the 'IsChecked' is called first when the window ...
0
votes
2answers
557 views

WPF DataGrid - Can't Use Mouse To Scroll Because Of Drag Drop

I am using a datagrid that is allowing to drag its rows. My problem is that when i try to scroll down on my grid using the mouse on the side scroller, i get the 'no enterance' sign that means that ...
0
votes
2answers
364 views

WPF Hierarchial Treeview Multbinding Mixed List Problem

I'm having a tough time solving this simple issue : I am using a treeview with HierarichalDataTemplate to show an hierarchy of two entities : Organization and Unit. The Organization has a many to ...
0
votes
1answer
203 views

WPF Events - How to map the XAML to an event on the base class?

I am using a base class to my Popup windows on a WPF application. Everything looks and works great beside one thing : I cant map an event handler that is on the base class to the xaml. Ofcourse i can ...
0
votes
1answer
594 views

WPF Cloned/Detached object edit problem - what is the standard?

I am using an ObservableCollection to wrap some of my generated entity framework objects. When the user wants to edit some values , i am opening a popup windows that contains fields, and when the ...
0
votes
2answers
627 views

WPF Combobox SelectedItem Problem

I am failing in achieving a very simple functionality from a WPF ComboBox. My ComboBox needs to list a collection of values. This works fine. The value id is also saved succesfully in the database. ...
0
votes
1answer
1k views

WPF - binding integer list to combobox

I want to bind a List to a WPF combobox in xaml. Wondering what is the simplest way to do it. (The reason behind is I want to maintain the years as integer rather than doing the type conversion from ...
2
votes
2answers
2k views

WPF Datagrid group expander text - how to bind?

I am using a datagrid with a combox that should change the grouping field. I am using the following xaml to define the general grouping template : <DataGrid.GroupStyle> ...
0
votes
1answer
649 views

WPF c# Subscribe/Publish events mechanism using reflection - right or wrong?

I want to achieve a simple Subscribe/Publish mechanism within a WPF application so i can subscribe to events from different places in the application specifying the event type and handler method, and ...