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
1 answer

How to make Show(n)Windows Fall behind shell Window Caliburn.Micro

I have a ShellViewModel that is a conductor. It has a series of menu items that open various view/viewmodels that are "hosted" in a tab control, similar to the Simple MDI example found here Caliburn Micro Composition Documentation Some of the view…
priehl
  • 644
  • 2
  • 9
  • 21
0
votes
0 answers

Xamarin & Caliburn.Micro, advice needed

Here I come today for an advice. For so many years I used WPF for my desktop applications, with the wonderful Caliburn.Micro by my side. Today, I have a Xamarin app to create and I see that the best way to build a cross-platform app is to use the…
0
votes
1 answer

Bind a DataGrid to the selectedrow object of a second datagrid, WPF Caliburn.Micro

I have a datagrid that is bound to a BindableCollection, this is working properly, every repair order I add to the BindableCollection shows in the Datagrid. I have a second Datagrid on the same view for "WriteOffs", Each "RepairOrder" has a property…
Dwayne B
  • 107
  • 1
  • 13
0
votes
1 answer

Caliburn Micro & Valueconvertor

When using Caliburn.Micro short hand syntax for events, how do we pass a Enum (via ValueConvertor) ? Where ShowDesigner method sytax…
Anu Viswan
  • 17,797
  • 2
  • 22
  • 51
0
votes
2 answers

AddEditView (window) using WPF : passing Id to model construtor before opening form

I am very new to WPF. I am trying to create Add/Edit form. I have also added Caliburn.Micro frameowrk for MVVM. I have created one screen for Add or Edit. I do not know how to pass model Id to my ViewModel. How? Currently my View (Window) works…
renathy
  • 5,125
  • 20
  • 85
  • 149
0
votes
1 answer

Binding TextBlock text not update except Initial

I'm new on Caliburn.Micro. The Binding a text on TextBlock. The text of TextBlock is changed on start up or initialize on ViewModel, But it would not change in fired function. I don't know why for a day. I need any help badly. Here is code what i…
Jake
  • 129
  • 10
0
votes
1 answer

uwp Caliburn.micro navigation

How can I navigate to a screen stretched to the whole screen, to navigate to some kind of Image Viewer page? Thanks
Andrei
  • 13
  • 4
0
votes
1 answer

Caliburn.Micro + MEF + SQL CE together produce exception Cannot open 'Db\Some.sdf'. Provider 'System.Data.SqlServerCe.3.5' not installed

Hi I am really confuse with this behavior. I use Caliburn.Micro as MVVM framework in my WPF app, MEF is used on export view models classes. Now I need use SQL compact DB in my app. So I create *dbml file with sqlmetal, because on DB access I would…
user572844
0
votes
0 answers

Shell's Child's Child element not updating in Caliburn Micro

I am developing a UI that simply runs multiple background processes, no user interaction; just visual display of what the processes are doing. The logical/user-interface hierarchy is: + one Shell UI, with list view of (many): \---+ BackgroundProcess…
iiian
  • 393
  • 1
  • 5
  • 17
0
votes
1 answer

How to binding User Control in MVVM Caliburn.Micro?

I have a User Control(next UC) with label. I need on button click change a UC label content. On UC codebehind i create DependencyProperty and methods to change a label. public string InfoLabel { get { return…
0
votes
2 answers

ViewModel Dispose not being called

We are using Ninject with Caliburn.Micro to create a MVVM WCF Silverlight app. The issue I am having is with the life cycle of my view models. I have created a simple ninject module to bind my view model and wcf client. public class IDCardModule…
Lucas B
  • 11,793
  • 5
  • 37
  • 50
0
votes
1 answer

Make Caliburn.micro show `.ToString()` in Comboboxes

In vanilla WPF, when I bind a collection of objects to a ComboBox, it displays the the string whatever ToString() of that object returns. However, Caliburn.micro shows a message Cannot find view for.... Since I have numerous ComboBoxes, it'd be…
0
votes
0 answers

Confusion over seperation of concerns in MVVM

I've written several MVVM applications over the last year using Caliburn.Micro, but I feel like some part of this design pattern is still escaping me. Right now, I'm working on an application that interacts with devices. Let's assume it consists of…
Neil
  • 249
  • 3
  • 13
0
votes
0 answers

Datagrid binding in popup - WPF MVVM with Caliburn.Micro

I am trying to insert a datagrid into popup, but it is't not working correctly (popup contains empty datagrid). I've tried to put my datagrid outside popup and it's worked. I guess popup behaves like seperate window, so I wonder if I supposed to…
0
votes
0 answers

Dispatcher.BeginInvoke Equivalent in Caliburn.Micro

I'm struggling with using the dispatcher with caliburn.micro in wpf. My codes in xaml.cs goes like this. Dispatcher.BeginInvoke(DispatcherPriority.ContextIdle, new Action(() => { //function here. })); Is…