Caliburn.Micro is a small, yet powerful framework, designed for building applications across all Xaml Platforms. With strong support for MVVM and other proven UI patterns, Caliburn.Micro will enable you to build your solution quickly, without the need to sacrifice code quality or testability. ...

learn more… | top users | synonyms

1
vote
0answers
16 views

Caliburn Micro pass non generic parameter to new ViewModel

Caliburn Micro pass non generic parameter to new ViewModel in Windows Store App I navigate from one Page to another and want to pass my own class instance like parameter to ViewModel. I need ...
0
votes
2answers
55 views

How to prevent PropertyChanged from firing while controls are being initialized

This problem has been causing headaches for a while, and it is preventing the project from going forward. Consider a WPF XAML form with controls bound to a ViewModel. (I'm using the Caliburn.Micro ...
0
votes
1answer
20 views

Caliburn Micro 'Enter' Key Event

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 the ...
0
votes
1answer
34 views

Using Usercontrol inside Datatemplate

On a project I have started using Caliburn.Micro. Now I want to split a large UserControl into several smaller UserControls, so that I can use them inside of DataTemplates. EisenbergEffect suggests ...
1
vote
1answer
33 views
+100

Caliburn.Micro rebind ContentControl on navigation GoBack

I'm using Caliburn.Micro within WinRT application Here is my main VM: public class MainViewModel : Conductor<Screen> { protected override void OnActivate() { if (ActiveItem == ...
0
votes
1answer
26 views

Auto validation of properties in Caliburn.Micro

So I'm messing around a bit with Caliburn.Micro, and suddenly I notice something interesting. I have a ViewModel property called Maximum of type int, auto bound with CM via the naming convention, to ...
0
votes
0answers
37 views

Extracting data templates in user controls

There are known problems for setting up caliburn binding in DataTemplates. In this answer EisenbergEffect suggests extracting Data Templates into a user control. How can this be achieved? In my ...
0
votes
1answer
29 views

Windows Phone 8 with Caliburn Micro dialog approach

I am writing a Windows Phone 8 app that manages jobs. I am using Caliburn Micro for MVVM duties. Simplified overview: Page 1 shows a list of jobs. User selects a job. App shows relevant page - either ...
0
votes
1answer
51 views

Deep Property Binding with Caliburn Micro issues

I am just not figuring out what I am doing wrong. I am trying to use Caliburn Micro on a WPF app(4.5). Trying to follow MVVM for what it's worth. My VM has property of Services and Authorization. ...
0
votes
1answer
28 views

Caliburn.Micro: Combobox is not populated

I have a WPF application with Caliburn.Micro. I am trying to populate a new combobox I just added, but it stays empty, though the other comboboxes on the same view are populated. I debuged, so I know ...
0
votes
3answers
69 views

Using caliburn.micro with hierachical viewmodel structure

In a project I use caliburn.micro as MVVM framework. Now I have a somewhat big viewmodel for a master-details view. It is hierarchically built. Just to have a example: I have a ComputerView with a ...
1
vote
6answers
98 views

Return value of a Property from child ViewModel to parent ViewModel

In my WPF MVVM app, using Caliburn.Micro, I have a ViewModel, CreateServiceViewModel that, on a button click, opens a GridView in a seperate window for the User to chose a Row from. I created ...
0
votes
2answers
38 views

Caliburn.Micro display external UserControl

I'm trying to create a new WPF application using Caliburn.Micro. I have a View where I'd like to display a UserControl from an external assembly that is not following MVVM. I tried creating a ...
0
votes
1answer
29 views

Changing how Caliburn.micro places your usercontrol on a window

I have an app using Caliburn.micro and a custom window manager. The window manager is creating my own Base Window so I can customize the look and feel across the application. I would like to add ...
2
votes
2answers
40 views

caliburn.micro not showing dialog after application install

i've got a bit of a problem with caliburn micro 1.4.0 and wpf. So here's the rundown of the problem. I've created a visual studio installer project. Added the project output from my app. so far so ...
1
vote
0answers
47 views

FX COP Could not resolve type reference: System.Windows.Input.ICommand

Having troubles with FXCOP on our buildagent ONLY and only through the command line tool ONLY. I am using the Caliburn.Mirco framework and added a custom trigger so i can use the delete button. this ...
1
vote
2answers
66 views

WPF Caliburn.Micro/mvvm Navigation

I'm building a project, and one of the biggest problems I've come across until now is navigation. I've been looking for some time now for examples of caliburn.micro/mvvm navigation, but they all seem ...
1
vote
1answer
66 views

Combobox binding to Deep Properties with Caliburn.Micro

My VM has a property of my Model, Authorization, which has a property of ActiveService. public Authorization Authorization { get { return this.authorization; } ...
0
votes
1answer
18 views

SequentialResult, how does it work in Caliburn.Micro?

The title says it all but i will try to be more accurate: Is the Completed event fired after the completion of each IResult or after the completion of all IResults ? Is the Execute method of the ...
0
votes
1answer
76 views

Binding a View to a ViewModel, without an “empty” constructor

In continuation to my previous question "Updating/using a variable from another ViewModel", I decided to start using Caliburn Micro as a framework. I set up the Event Aggerator according to this ...
1
vote
1answer
45 views

Caliburn.Micro Starting the bootstrapper from code?

Normally I just but the bootstrapper in the resources of the App.xaml, but for an app I'm building I need code execution to begin elsewhere and then start the bootstrapper up once I'm done my ...
0
votes
0answers
31 views

Hierarchical Data Template without ItemsSource Binding(By Default Caliburn Micro Conventions) not working

Here i placed my XAML Code: <Menu Name="MainMenu"> <MenuItem Header="File" Name="MenuCollection"> <MenuItem.ItemTemplate> <HierarchicalDataTemplate ...
2
votes
2answers
74 views

Does my ViewModel have a property of the Model and individual properties?

I have a Model with the following properties: public class Authorization : BindableBase { public int id {get; set;} public string member {get; set;} public DateTime ...
0
votes
0answers
37 views

DataForm and 2nd Level Object Binding in WPF

I am using Telerik's WPF controls with Caliburn.Micro. In particular the DataForm control. I am trying to bind it to an object that has the following make up. public class FrequencyMap : ...
0
votes
1answer
36 views

WPF Views not displaying certain controls

I am using Caliburn.Micro and Telerik's controls. I'm new to these so I'm assuming I am making a stupid mistake. I have the below, VERY simple View. It's just a User Control with a GridView in it. ...
0
votes
1answer
35 views

Can't handle Button Click in Popup

I use CaliburnMicro in my Windows Store App. All works great, but when I put Button in Popup, method in ViewModel doesn't called. If I move Button from Popup to Page - all works like a charm. Ex. ...
1
vote
2answers
144 views

Caliburn Micro and ModernUI Examples/Tutorials

does anyone have an example or tutorial on how to use Caliburn Micro together with ModernUi (https://mui.codeplex.com)?
1
vote
1answer
19 views

MVVM: how to notify the change of every object property when I change the object itself?

I have a ViewModel that contains a (Person)Patient property. In my View, I bind to some of the properties of Patient, say, Name and Age. The problem is: if I change Patient, nothing happens in my ...
1
vote
0answers
34 views

Caliburn.Micro silverlight multiple WindowManager

The out of the box Caliburn.Micro WindowManager implementations in Silverlight do not seem to support multiple windows, so I'm trying to create a custom WindowManager to handle multiple windows in ...
0
votes
1answer
31 views

Setting the initial window size in Caliburn.micro

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.) This ...
0
votes
0answers
18 views

Caliburn.Micro's AddCustomConventions() function

I have some confuse in CM's custom convention. One of CM official samples show us, we can add convention in AddCustomConventions() method like this: ...
1
vote
1answer
34 views

Calling another ViewModel using Caliburn.micro

I have two views call them A and B. When a user performs a specific action on A, I want it to launch B. Both views should remain open. A inherits Conductor and I've tried to call ActivateItem but ...
0
votes
1answer
46 views

when clicking on inner list in xaml, parameter to tap event is null

I'm a bit new to XAML and Caliburn.Micro. I ran into a "weird" issue. I'm making a Windows Phone 8 application with Caliburn.Micro and I have a ListBox with items, which then includes another inner ...
1
vote
1answer
64 views

Caliburn Micro design time using naming conventions

Using Caliburn Micro 1.5.1 I'm trying to get design time bindings to work in a WP8 app. I have created a design time ViewModel which I specify explicitly in the PhoneApplicationPage: ...
0
votes
2answers
56 views

Caliburn.Micro: Binding Button in a Screen to a command in ScreenConductor

I am following this tutorial on Screen and ScreenConductors in Caliburn.Micro Framework. I am using WPF, not Silverlight, and I have made the corresponding changes in App.xaml (using MergedDictionary ...
0
votes
0answers
23 views

MEF ExportProvider usage in Caliburn.Micro BootStrapper

I am on .NET 4.0 and hence using the implementation of ExportFactoryProvider from Glenn Block. I am using it in the bootstrapper of Caliburn.Micro framework based application. Here is a code snippet ...
1
vote
1answer
60 views

Caliburn.Micro ShowPopup - set focus

I'm trying to use Caliburn.Micro (for my first WPF MVVM project) and I'm struggling with getting the WindowManager.ShowPopup method to set focus to the popup screen. Is this possible? The sample ...
0
votes
1answer
16 views

Does Caliburn.micro simplecontainer supports property injection?

Does Caliburn.micro simplecontainer supports property injection? How can I do this injection?
0
votes
2answers
114 views

Message Dialog not displaying on Windows 8 tablet - Caliburn.Micro/C#

Has anyone heard of any issues with MessageDialog's not displaying on Windows 8 tablets? Or more specifically Samsung 700t? It uses a regular intel process and not ARM. I built the app on a laptop and ...
1
vote
1answer
70 views

WinRT MVVM Search Contract

I'm using Caliburn-Micro to build my Windows Store App, but I can't seem to find an example on how to implement the Search contract using this Library. How can I do this? Any help is appreciated. ...
2
votes
1answer
42 views

Get the container window of a dialog for Hwnd.FromHwnd

I am writing a WPF application using the Calibun Micro framework. It implements an auto-sign off system which will automatically sign a user out of the application after a certain predefined period of ...
1
vote
1answer
43 views

Caliburn.Micro Action with parameter not binding

I have a textbox with the following: <i:Interaction.Triggers> <i:EventTrigger EventName="KeyUp" > <cal:ActionMessage ...
0
votes
1answer
36 views

caliburn micro - run code when view is visible?

I need to run some code (let's say to show message box) right after the view is displayed. I tried to override OnInitialize, OnViewLoaded or OnViewAttached but it's always the same. The View is not ...
0
votes
0answers
53 views

Refresh Datagrid Columnheader when Binding source changes

I have a datagrid bound to a datatable. Especially the column header background is bound to a row in the datagrid. This works perfectly when the datagrid is loaded, but fails when the user changes ...
0
votes
0answers
67 views

Move listview's selected item with arrow keys when focus in search textbox

In my application I have an (auto)search field with a listview underneath. When the user is done typing in the search textbox, it should be possible to navigate the results with the arrow keys in the ...
1
vote
1answer
51 views

Views as User Controls or Windows

I am new to this and as such probably being an idiot. That said, do I want my Views to be UC's or Windows? I'm guessing it depends on my usage scenario, maybe... I have a main view that has ...
0
votes
1answer
43 views

Caliburn.Micro: How to change a Conductor<IScreen> to Conductor<IScreen>.Collection.OneActive

I have a main viewmodel which is a Conductor<IScreen> in application and it seems to work fine. The corresponding view has a ContentControl called ActiveItem and this displays the ActiveItem ...
0
votes
1answer
34 views

Rewiring actions of parent to a child viewmodel

So here's my screnario. I have a toolbar at the top (office style), with buttons. This is hosted in a shell. Some of those buttons are applicable only to certain child view models as they get loaded. ...
0
votes
1answer
61 views

How to Cancel windowManager.ShowDialog() from ViewModel

I have a ShellViewModel which loads a Modal Dialog. The Dialog's ViewModel has its OnActivate() override, where it gathers the data to be displayed on the Dialog. I would like to know how can we ask ...
0
votes
0answers
25 views

How to Deactive Injected ViewModel into ContentControl

How to Deactive Injected ViewModel into ContentControl [Import] public IMyViewModel MyViewModel { get; set; } public void ClickButton { //This Method Not Deactive MyViewModel ...

1 2 3 4 5 13