Browse By Tags

  • Prism Event Aggregator public class SectionSelected : Behavior { public SectionSelected() { eventAg = new Prism.Events.EventAggregator(); } public SectionSelected(IEventAggregator ea)

    Hello, since there is no bindable property in the Infragistics data grid for selected items, I am using an attached method. From the attached method I publish an event. Then the ViewModel would receive the event and record the selected items.

    My problem…

  • Persist Control Settings For Users Via IsolatedStorageFile vs Properties.Settings

    Hi,

    I need to implement a general mechanism to persist column selections, sorted columns etc. of XamDataGrid, placements of DockManager's panels etc. The application is based on .Net Framework 4.0 and using Microsoft PRISM framework for plug-ins. The…

  • Virtual ViewModelWrapper

    Hi,

    I have a 3-tier application (WCF, WPF, Prism, Unity and MVVM), I receive 1M models (for example Person) from the server which need to be shown in the XamDataGrid. My ViewModel exposes an ObservableCollection<PersonViewModel>, where PersonViewModel…