Questions tagged [caliburn.micro]

Use this tag for questions related to using Caliburn.Micro framework, troubleshooting issues, and discussing best practices in MVVM development.

Caliburn.Micro is a lightweight MVVM (Model-View-ViewModel) framework for WPF, Silverlight, and UWP platforms. It follows convention over configuration, making it easier to build maintainable and testable applications.

2062 questions
0
votes
0 answers

C# - WPF Custom User Control multiple times same view

We develop a kind of date capture component under our client specification, this component have to be used in all the view where we capture dates but if we put this component multiple times in the same view values changes in all the compnent when we…
Miguel Resendiz
  • 339
  • 3
  • 13
0
votes
1 answer

Using MVVM with Silverlight Toolkit charts

I'm trying to learn MVVM with Caliburn.Micro. My exercise is to have a view represented by a page containing a chart from SIlverlight Toolkit. I have a backing ViewModel, but now I've no idea on how to bind a collection of series to a collection of…
Felice Pollano
  • 32,832
  • 9
  • 75
  • 115
0
votes
1 answer

Why my binding does not update without SubscribeOn/ObserveOn?

I am refactoring some code. Can someone tell me why does my binding in the viewModel stop updating if I comment out those two lines: .SubscribeOn(ThreadPoolScheduler.Instance) .ObserveOn(Application.Current.Dispatcher) How come it affect the second…
Tom Sawyer
  • 835
  • 2
  • 10
  • 32
0
votes
0 answers

Caliburn Micro add Edit button to DataGrid in every row

I am using Caliburn.Micro in my project. I am trying to achieve CRUD operation using Caliburn.Micro . I have done the all part but I am facing problem in Edit data. I wants to add button in my DataGrid in every row so that when ever user click the…
Ravi
  • 189
  • 1
  • 15
0
votes
1 answer

Caliburn.micro open window by clicking button

I have two Views (windows) and their associated ViewModels. The first one, ShellView and the second one, CreatePersonView. What I'd like to is when I click on a button in the ShellView it opens up the CreatePersonView in a new window. When this…
0
votes
1 answer

Automatically Get Data from DataBase in ObservableCollection : WPF MVVM Caliburn Micro

I am working on Data Management project which was designed in WinForms and not I am redesigning it in WPF(MVVM) I am using caliburn micro obviously to reduce development time and flexibility, I came across a huddle where I want to refresh the Data…
Infii
  • 91
  • 1
  • 11
0
votes
1 answer

WPF Combobox initial value being overridden by selected item

I have the following problem: When my view loads the combobox selected value is empty. Here is the code for my view: ...
user1839601
  • 119
  • 1
  • 9
0
votes
1 answer

WPF MVVM How to create Treeview with dynamic / nested data using Caliburn Micro

I have a simple model like following: public class TreeItem : PropertyChangedBase { private string name; public string Name { get => name; set { name = value; …
MagB
  • 2,131
  • 5
  • 28
  • 54
0
votes
1 answer

Binding/setting property on 'parent' item in HierarchicalDataTemplate

I have a menu in WPF that I'm trying to build dynamically using bindings and a HierarchicalDataTemplate: