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. ...
4
votes
2answers
1k views
Adding a convention for IsEnabled to Caliburn.Micro
How do I add a custom convention to Caliburn.Micro for the IsEnabled property of controls - something like having NameEnabled bound to IsEnabled in parallel to Name bound to Text on a TextBox.
In a ...
8
votes
1answer
3k views
Bind a Command to a Button inside a ListView with Caliburn.Micro
I'm trying to create something like a MDI tabbed Interface so I have a navigation pane (a Listbox) on the left, and a ContentPresenter on the right.
I have a ShellViewModel that has a ...
4
votes
2answers
3k views
using attached events with caliburn micro Message.Attach
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, ...
2
votes
1answer
2k views
Different View depending on ContentControl (Caliburn.Micro)
I'm binding ViewModels to ContentControls and letting Caliburn taking care of creating and binding the view. However, I would like to customize Caliburns ViewModel->View convention based on which ...
3
votes
2answers
1k views
How do I load controls in different ContentControls of a Shell using CaliburnMicro
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 ...
8
votes
2answers
1k views
Silverlight + MVVM + Bindings = Memory leaks?
Thus far, my testing has shown that all standard approaches, examples, and frameworks leveraging the MVVM pattern in silverlight suffer from a huge problem: massive memory leaks which prevent VMs from ...
4
votes
1answer
789 views
Caliburn.Micro. Automatically call eventaggregator.Subscribe() for IHandle implementors with Autofac
In Caliburn.Micro documentation the authors mention such possibility:
documentation link
IHandle inherits from a marker interface IHandle. This allows the use of casting to determine if an object ...
2
votes
1answer
2k views
Global handling exception in WPF app with Caliburn.Micro
Hi I try implement solution from this site im my WPF app for global exception handling.
http://www.codeproject.com/Articles/90866/Unhandled-Exception-Handler-For-WPF-Applications.aspx
I use Caliburn ...
6
votes
1answer
4k views
Reactive Extensions for .NET (Rx) in WPF - MVVM
I am using Reactive extensions for NET (Rx) with Caliburn.Micro in my WPF app. I'm trying to port my WPF app to use an MVVM architecture and I need to monitor changes in the Text property of a TextBox ...
6
votes
1answer
2k views
How to set focus to a control with Caliburn.Micro MVVM
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 property ...
3
votes
4answers
2k views
How can I bind key gestures in Caliburn.Micro?
How can I get Caliburn.Micro to map a key gesture to an action method on my ViewModel?
For example, I want to implement a tabbed interface, and I want my ShellViewModel to have a NewTab method, which ...
4
votes
1answer
2k views
Does Caliburn.Micro play nicely with user controls?
I'm a novice WPF programmer. I'm trying to add some structure to my code: both User Controls and MVVM.
Researching here, I've found that people recommend Caliburn.Micro. On the other hand, I've found ...
2
votes
1answer
3k views
Caliburn Micro WPF Window Management
I'm wanting to start a WPF application using caliburn.micro so I can use TDD as much as possible, I've used caliburn.micro before with WP7 but WPF seems to be a different ship, and the documentation ...
5
votes
1answer
614 views
Disposing of ViewModels in Caliburn Micro and Castle Windsor
I'm using Castle-Windsor as my container in a Caliburn-Micro Silverlight app. My ViewModel objects are reasonably chunky as they call WCF services and a bunch of other stuff. Therefore, when a window ...
4
votes
1answer
86 views
Why does binding affect height?
Style definition in Resources/Shared.xaml (updated):
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
4
votes
3answers
4k views
Add multiple views inside a view using WPF and Caliburn.Micro
I'm trying to learn using Caliburn.Micro with WPF. How can I add multiple views inside a view?
<Window x:Class="ProjectName.Views.MainView"
...>
<Grid>
...
4
votes
2answers
1k views
Binding EF4 with Caliburn.Micro: Should I expose my Entity as a property of the ViewModel?
With Caliburn.Micro I'd like to know the pros and cons of exposing an EF4 Entity as a property of the ViewModel (a technique discussed here and here). This allows me to avoid writing getters and ...
3
votes
1answer
1k views
Cannot find view for ViewModel
I have a wpf application using Caliburn.Micro. I have a view MyView:
<UserControl x:Class="ReferenceMaintenanceWorkspace.MyView"
...
3
votes
1answer
1k views
WPF Context Menus in Caliburn Micro
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 buttons ...
2
votes
1answer
380 views
Playing a sound in Silverlight with MediaElement and Caliburn Micro
How can I play an MP3 in Silverlight using Caliburn Micro?
The MediaElement's "play()" method needs to be executed based on a boolean variable in the ViewModel.
Thanks in advance!
2
votes
1answer
930 views
Caliburn.Micro: Recovering from Exception in IResult
This was posted at Caliburn.Micro discussions also. I'm really looking for advice and opinions on the best way to solve.
Say I have the following Action
public IEnumerable<IResult> ...
2
votes
1answer
1k views
Caliburn.Micro convention-based bindings not working in nested views?
I have this Caliburn.Micro sample project I'm putting together and I am having trouble with the convention-based bindings with nested views/viewmodels.
As an example, let's say I have a shell view, ...
1
vote
2answers
467 views
ComponentOne's FlexGrid Background Color
I have a WPF Caliburn.Micro application. I used to have there a DataGrid, and here is a part of the code:
<DataGrid x:Name="FirstEntries" Grid.Row="5"
AutoGenerateColumns="False"
...
1
vote
1answer
260 views
WPF-Caliburn.Micro-NLog handle exception on App Domain
Hi I try log expcetion on App Domain with NLog. It is WPF app with Caliburn Micro.
In MEF bootstraper I have this code:
static readonly ILog Log = LogManager.GetLog(typeof(NLogLogger));
#region ...
1
vote
1answer
149 views
Error on guard clause with Caliburn.Micro
I am trying to implement so guard handling with Caliburn.Micro but I am getting an invalid cast exception when the application runs.
The Property:
public Account UserAccount
{
get
...
1
vote
1answer
2k views
Caliburn.Micro: Create and Bind View programmatically
I am currently experimenting with view composition in Caliburn.Micro. I have a working example where I have multiple user control based views injected into my main shell via the "View.Model" attached ...
0
votes
1answer
799 views
Closing Caliburn Micro View from a UserControl Button?
I have created a UserControl name TitleBar, which is placed in every view.
The TitleBar.xaml contains a Button to close the Window in which it contain.
How can i close a Caliburn Window using that ...
0
votes
2answers
1k views
Unity/Caliburn Micro, Injection Constructor with multiple parameters
I am currently trying to learn how to implement MVVM using Unity and Caliburn Micro. After looking around for help elsewhere I am still unsure about how to set up the Constructor Injection properly. I ...
0
votes
3answers
899 views
Calling method of Map control with Caliburn Micro and WP7
I have a page (view) in my Windows Phone 7 application that uses the Silverlight Map control.
I need to call the SetView method on the control, but I'd like to stick to the MVVM style of keeping ...
4
votes
1answer
567 views
Caliburn element convention
While trying to learn the source for GameLibrary sample application I saw a line like this:
ConventionManager.AddElementConvention<Rating>(Rating.ValueProperty, "Value", "ValueChanged");
...
2
votes
3answers
1k views
Caliburn Micro: DialogResult
I can't find a solution for the following problem:
I open a Dialog with the WindowManager from caliburn micro:
public void UserNew()
{
this._windowManager.ShowDialog(new ...
2
votes
1answer
505 views
how to use DesignInstance with Caliburn.Micro
I am using Caliburn.Micro
I have this WPF View that in design time uses sample data successfully on basic properties like firstname etc but can't won't find the view for properties and collections of ...
2
votes
3answers
2k views
Using Caliburn.Micro binding feature on an “inner” user control
I'm quite new to Caliburn.Micro, so I guess this has a simple answer (or at least I hope it has :))
I have a ViewModel with a property called ConnectedSystem that has a sub-property called Name.
In ...
1
vote
1answer
159 views
RadMenu and RadMenuItem Caliburn.Micro
I load programatically a radMenu with no problems using Caliburn.Micro, the Xaml looks like this:
<telerik:RadMenu ItemsSource="{Binding .MenuItems}" VerticalAlignment="Top"
...
1
vote
1answer
77 views
Show one child VM, then show another, after the first was closed
I have one parent conductor. I want to show first view-model inside it. Then after first one is closed (i.e. some operation is done), I want to show a different view-model.
I'm using ...
1
vote
2answers
324 views
How to pass parameter to navigated view model with WinRT Caliburn.Micro?
I am developing a Windows Store apps game using WinRT Caliburn.Micro, and I am relying on the navigation framework.
I have view models for the game setup (define players) and the actual game. When ...
1
vote
3answers
137 views
Combine dependency properties
I've done a few WPF projects now and see the same problem pop up and that is the "problem" of aggregating/combining dependency properties (dp's).
For example, I have 10 dp's of type bool that I want ...
1
vote
2answers
201 views
Locked resources (image files) management
The application is a desktop document management system. Image files (of scanned docs) are stored within a shared network folder and its indices within a database. Now, when the image of a selected ...
1
vote
1answer
596 views
Intercept Ninject instance activation?
I'm trying to put an example together of using Caliburn Micro on WP7 with Ninject. Everything was pretty straight forward. However, I'm stuck on how to go about firing an event once an instance is ...
1
vote
1answer
370 views
Caliburn.Micro: Bind text of a button that is already bound by convention to a method
I'm using Caliburn.Micro's excellent convention-based binding to bind a button to a method on my view model. Thing is, I want the Content of the button to be bound to a string property of the view ...
1
vote
1answer
640 views
Sliding transition animation between Screens in Caliburn Micro
In Silverlight (or WPF) application, I have a Conductor which is a Conductor.Collection.OneActive
What is a good way to animate a transition between screens (I'd like a simple slider) when I call ...
1
vote
1answer
217 views
Guard Clause Not Firing
So I have been trying to get guard clauses to work with Caliburn.Micro and a bound textbox.
The View:
<TextBox x:Name="UserAccount_DisplayName" Margin="-10,-5,-10,8"/>
...
1
vote
3answers
3k views
How do you bind to a command property with caliburn.micro?
I have a behavior that exposes several command properties. Typically I use MVVM Light and would just use a routed command in my view model and bind to those. However, this project is using ...
1
vote
2answers
769 views
Using Caliburn.Micro with Expression Blend in WP7
I just creating a little WP7 project using Caliburn.Micro as the MVVM framework, but I'm not sure of the best way of getting the project to work well with either Expression Blend or the Visual Studio ...
1
vote
3answers
870 views
Call RichTextBox.ScrollToEnd() from View Model class
Hi I try solve this, in WPF I use Caliburn Micro framework. In View I have bindable richtextbox control, I bind from view model class property type of FlowDocument.
I need have a way how can I call ...
1
vote
1answer
2k views
send selected item as parameter to method in view-model [WPF,Caliburn]
I have this problem. I use caliburn micro in WPF. In view I have listbox, and I bind on event MouseDoubleClick method in view-model. I would like send as parameter selected listbox item. But I don’t ...
0
votes
0answers
139 views
Caliburn Micro Conductor problems
I have the following code. When this conductor has two Items [0] and [1] if i call TryClose from [1] everything is ok. But then [1] publishes a message and i want to close [0] too.But [0] is never ...
0
votes
1answer
65 views
Using MessageBinder.SpecialValues in Windows 8 app not working?
I'm brand new to Caliburn.Micro, so I'm hoping somebody might be able to help me here :).
I'm trying to use MessageBinder.SpecialValues in my Windows 8 app, but I can't get it to work. I'm adding a ...
0
votes
1answer
213 views
Caliburn micro in no Application object mode, like in AutoCAD dll plugin
I am using Caliburn Micro to develop WPF application. A few of views of this application needs to be loaded in an AutoCAD environment. The AutoCAD programming environment allows developement of ...
0
votes
2answers
140 views
MVVM, use new Windows or Views?
After finishing some by-hand projects, my recent project implements the MVVM pattern using Claiburn.Micro - but I still struggle with some architectural problems. Mainly:
My ViewModel contains a ...