caliburn.micro Questions

1

To avoid this being an X-Y problem I will explain what I want to achieve first, and then what I tried to achieve it and failed. Problem: I have a bunch of texts which I am searching through. The se...
Kapp asked 10/9 at 3:49

2

Solved

I have a form and I want to set the focus to a text box when certain user actions happen. I know the MVVM way of doing things is to bind to VM properties, however the TextBox does not have a proper...
Stanchion asked 31/12, 2010 at 17:8

3

Solved

I am attempting to bind an event with Caliburn Micro and I am having some issues getting the right messages to the method. I would like to add the ability to press the 'Enter' key after changing th...
Honeysuckle asked 23/5, 2013 at 16:45

2

Solved

I'm pretty sure this has been answered somewhere, but I can't seem to find it for the life of me. I'm trying to use a TabControl to switch between UserControls (each tab is different, so not using...
Demers asked 2/1, 2014 at 13:16

6

Solved

I have a wpf application using Caliburn.Micro. I have a view MyView: <UserControl x:Class="ReferenceMaintenanceWorkspace.MyView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentatio...
Boding asked 18/6, 2012 at 12:53

7

Solved

When using the FormsApplication base class with a brand new Xamarin.Forms app using Caliburn.Micro, I end up with an empty navigation bar at the top of my screen. I assume it's being created by Cal...
Gorges asked 15/4, 2016 at 21:11

5

Solved

I need to set the default size of a view when it first opens, but the view must allow for the user to expand it. (For other reasons I can't use the SizeToContent property in my WindowManager.) Thi...
Doall asked 6/5, 2013 at 18:5

3

Solved

My goal is to have 4 different active ViewModels displayed in a grid on the ShellView. The issue is that I have not been able to figure out how to wire up a ContentControl to a specific Item in Ite...
Typist asked 12/2, 2020 at 21:27

3

By default when you use "ActivateItem(new Control());" your control is loaded into a ContentControl which with the name ActiveItem, fro example. . If I have multiple content controls on my page how...
Dinorahdinosaur asked 31/5, 2011 at 9:38

3

Solved

I've seen all the other questions regarding creating a single instance app using WPF and I've chosen to use the Microsoft's approach as described here: https://codereview.stackexchange.com/a/25667 ...
Anna asked 19/11, 2013 at 20:55

4

Solved

Simple question for the MahApps Merry Men. I have implemented an application using your great metro styled controls using Caliburn.Micro for the MVVM stuff. The new message dialogs look great, but ...
Pavis asked 27/2, 2014 at 23:46

2

Solved

I have a list box for which I am styling ItemContainer to include a context menu. Here is the xaml for the same. <ListBox.ItemContainerStyle> <Style TargetType="{x:Type ListBoxItem}">...
Hulse asked 27/11, 2012 at 15:21

2

I'm trying to get a context menu within a ListBox ItemTemplate to call a method on the parent view model, passing in the item that was clicked on as a parameter. I have this working for other butto...
Tantalizing asked 12/4, 2012 at 15:29

3

Solved

The Caliburn.Micro home page at http://caliburnmicro.com makes the below claim but I am unable to make CM work with a PasswordBox control using any variation I can think of from that example. Don't...
Maximamaximal asked 3/6, 2015 at 21:58

4

Solved

As mentioned elsewhere, the new .NET async/await model propagates through layers of software like a virus. A recent async change has now bubbled up to my view model, and I am wondering if it is saf...
Abaxial asked 14/3, 2013 at 18:28

2

I need to bind DateTimeOffset property to a WPF DatePicker since Odata not supports DateTime. I know how to bind DateTime property. I have tried binding DateTimeOffset property to DatePicker as sa...
Hannigan asked 12/8, 2015 at 15:7

4

Solved

I am new in Caliburn Micro and learn it from this helloworld example. In the example there are only 2 views (.xaml) of type Application and UserControl, and 1 view model. I avoid to use code behin...
Tournament asked 11/7, 2014 at 14:21

4

Solved

Please help - I'm getting lost! I'm writing a small desktop application which has some controls and some screen. This should later be integrated with a small web site, also having some screens. Th...
Sid asked 29/5, 2012 at 12:24

2

I have this property in my viewmodel. public bool IsKWH { get { return _isKwh; } set { if (value.Equals(_isKwh)) return; _isKwh = value; NotifyOfPropertyChange(() => IsKWH); } } Someti...
Thom asked 28/10, 2014 at 16:50

3

I sometimes use Caliburn.Micro to create applications. Using the simplest BootStrapper, I can use IoC container (SimpleContainer) like this: private SimpleContainer _container = new SimpleContain...
Salmonella asked 27/4, 2016 at 19:58

1

Does anyone know a source for an overview of the Caliburn.Micro Screen/Conductor Lifecycle? For example a sequence diagram / flow chart that describes their call order/dependencies and the conditio...
Lancelancelet asked 11/8, 2016 at 14:5

3

Solved

I have a custom column header where each column's header has TextBox which contains name of the column and ComboBox, which contains information about the type of the column, e.g. "Date", "Number", ...
Elva asked 27/2, 2018 at 18:9

3

Hi I have problem to bind method on click event of "LabelLink" control. I use pseudeo LabelLink control, I think everybody know this solution with textBox and hyperlink. Here is my code: <Text...
Tenpenny asked 21/1, 2011 at 10:37

1

I find working with radiobuttons in WPF/MVVM as a slightly annoying experience. The "go-to" answer for removing annoyances in WPF is looking for a solution in Caliburn.Micro or one of the recipes o...
Albata asked 16/11, 2011 at 8:8

3

Solved

I'm trying to use caliburn micro message to trigger an attached event that I created: public static class DataChanging { public delegate void DataChangingEventHandler(object sender, DataChanging...
Amiens asked 6/12, 2011 at 15:26

© 2022 - 2024 — McMap. All rights reserved.