Tagged Questions

A small, yet powerful implementation of Caliburn designed for WPF, Silverlight and WP7. The framework implements a variety of UI patterns for solving real-world problems. Patterns that are enabled include MVC, MVP, Presentation Model (MVVM), and Application Controller. ...

learn more… | top users | synonyms

7
votes
2answers
634 views

Any MVVM frameworks that play nice with RoutedCommand?

RoutedCommand and RoutedUICommand have a lot going for them. There's baked-in support for text and for keyboard gestures. You can bind a collection of RoutedUICommands to a Menu's ItemsSource and it ...
6
votes
1answer
1k 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 ...
5
votes
3answers
203 views

Using Windsor to automatically subscribe to event aggregator with custom facility

Reading this blog post it mentions you can get your DI container to automatically subscribe to events if it implements IHandle<>. That is exactly what I'm trying to accomplish. Here is what I ...
5
votes
1answer
378 views

ReactiveUI and Caliburn Micro together?

I've been doing some prototype work on a new Silverlight application using Caliburn Micro as our MVVM Framework. The team has generally been happy with it. I order to address some issues with ...
5
votes
1answer
2k views

Problem with binding property typeof BitmapImage

I have problem with update listbox from view model class. I use Caliburn Micro framework. My scenario is here: I bind property of type bindableCollection on listbox: Code from view model: private ...
5
votes
1answer
990 views

Caliburn.Micro & Telerik WPF Controls

Hope you're all well. I am using Caliburn.Micro with Telerik's WPF controls to build a tabbed interface. Using RadTabControl I have the following code; <telerik:RadTabControl x:Name="Items" ...
5
votes
1answer
1k views

Silverlight, Caliburn, Actions and DataGrids

Anyone know of good code examples of the Caliburn or Caliburn Micro framework example that illustrate routing Actions with DataGrid items?
4
votes
3answers
117 views

Saving an image of a UIElement rendered larger than it appears on screen

I have a chart that I'm displaying to the user and I want to be able to export the chart as an image to disk so they can use it outside of the application (for a presentation or something). I've ...
4
votes
1answer
334 views

caliburn.micro binding convention for ListPicker on WP7

I'm trying the caliburn.micro framework for a new project but I'm stuck with binding a ListPicker (the one from the toolkit). When I change the control to a simple DropDown, everything works as ...
4
votes
1answer
208 views

How do you apply a ValueConverter to a convention-based Caliburn.Micro binding?

How do you apply a ValueConverter to a convention-based Caliburn.Micro binding? or do you need to use the {Binding} syntax? I know I could do this <TextBlock Text="{Binding Foo, ...
4
votes
1answer
296 views

ListPicker Message.Attach error in Caliburn.Micro

I'm having the following XAML code on WP7: <toolkit:ListPicker x:Name="ListPickerBwFactors" ItemsSource="{Binding BwFactors}" cal:Message.Attach="[Event ...
3
votes
4answers
95 views

How To: Data Persistence in Windows Phone

I'm writing a Windows Phone application. What I want to do is, when the application starts it gets some data (settings or whatever), and I want this data to persist throughout the life of the ...
3
votes
2answers
410 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> ...
3
votes
2answers
283 views

Unable to find view for viewmodel?

I'm trying to make a composition UI for a small website. My building tree looks like this: Shell (Conductor.Collection.AllActive) Contains multiple IPod's (you can view them as small widgets) 1 ...
3
votes
2answers
116 views

I need to know the window handle from the presentation model

I know its an anti pattern to have WPF specific connections to the presentation model. But in this case i cant avoide it (I use SLIM DX for joystick input and it requires the handle). So is there a ...
3
votes
2answers
1k views

How to capture combobox selection in Caliburn Micro?

I am just starting with Caliburn Micro. I want to have a combo box with a list of strings, and when the user selects an item, I want to have some notify method called. It should be simple, right? ...
3
votes
1answer
541 views

MVVM and multiple windows

I'm in the pre-design stages of a small application that I'd like to write using Caliburn.Micro and C# / WPF. I'm still learning the framework, but I like what I see so far. The application I intend ...
3
votes
2answers
670 views

Which bootstraper for Caliburn Micro

I would like to hear what bootstrapper (MEF, Unity, Autofac...etc) is suitable (the best) for caliburn micro by your opinion and why? If you have some favorite, you can post code of this bootstrapper ...
3
votes
1answer
940 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
1answer
336 views

How will Caliburn.Micro deal with being able to set breakpoints in Silverlight 5

We've been using MVVMLight for a while now, and we were looking into switching to using Caliburn.Micro. While we were looking, our Design guy complained because blend doesn't do a good job at ...
2
votes
1answer
22 views

Centering WPF dialog spawned from VSTO Outlook Add-In

I'm working on an Outlook 2010 add-in that provides a dialog for user input. The code necessary for displaying the button in the ribbon is in its own Outlook 2010 Add-in project. That project has a ...
2
votes
1answer
55 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
1answer
94 views

Caliburn.Micro: create a borderless window with IWindowManager using WPF

Using the IWindowManager of Caliburn.Micro, is it possible to create a borderless window using the ShowWindow method? In this case, the content of the Window is generated from a UserControl. And ...
2
votes
1answer
122 views

Binding and accessing dynamic combobox/listbox collection in caliburn.micro

I'm using Caliburn Micro MVVM. I want to make category selection usercontrol consisting of few dynamic comboboxes (or listboxes) based on generic tree collection. User must choose any leaf node from ...
2
votes
2answers
80 views

Send a boolean as an Action parameter in Caliburn Micro

This is my XAML View (some code omitted for readability):<Window ... xmlns:c="http://www.caliburnproject.org"> <Button Content="Close without saving" c:Message.Attach="Close(false)" /> ...
2
votes
0answers
112 views

How can I use Caliburn.Micro conventions to set a button's text and its action?

If I have a button in my View named, say, Save, then I can add a Save property to my ViewModel, and Caliburn.Micro will automatically bind it to my button's Content. For example: public string Save { ...
2
votes
1answer
178 views

Agfx and caliburn.micro example

I am currently using caliburn.micro in my WP7 project and I am quite happy with it. My application is very data-heavy, so I took a look at Agfx (http://agfx.codeplex.com), seems it can save me a lot ...
2
votes
2answers
164 views

Why should I use a UI Pattern Framework for WPF, SL and WP7?

I've been learning SL over the past month and have now shifted my focus toward UI Pattern Frameworks such as Caliburn.Micro and MVVM-Light. I recently attended a session at a conference on Using the ...
2
votes
1answer
132 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
2answers
329 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 ...
2
votes
2answers
115 views

Lightweight messaging library?

I've been using the EventAggregator from Caliburn.Micro for a few weeks now and really enjoying it. The problem I'm running into now is say my service handles 3 types of messages. If each message type ...
2
votes
1answer
142 views

Binding guard properties in Caliburn.Micro to properties on a object in the view model

I have a ViewModel class that looks like this. class MyViewModel : Screen { public BindableCollection<MyObject> MyObjects { get; set; } private MyObject selectedObject; public MyObject ...
2
votes
1answer
683 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 ...
2
votes
1answer
191 views

more active screens / views in shell caliburn micro or another MVVM framework

It is possible have more active screen / view in one shell if I am using caliburn micro ? Something like this, code for shell view - wpf window: <ContentControl x:Name="ActiveItem_1" ...
2
votes
1answer
67 views

is there an existing 'Silverlight assemblies via CDN' option similar to how Google/Microsoft offer up jquery?

One of the things I really miss from javascript/jquery work is being able to have major pieces (jquery, common plugins) served up to the client via CDN. It has lots of benefits (hosting costs, ...
2
votes
1answer
278 views

Caliburn Micro beginning coroutine in constructor - breaking the View?

I am using a View Model first approach with CM where I create a ViewModel and activate it immediately after. In the constructor of the ViewModel I am starting a coroutine using the method: ...
2
votes
1answer
158 views

Custom serialization in Caliburn.Micro 1.1

I'm upgrading a 1.0 WP7 application to CM 1.1. Among other stuff, I'm removing the old attribute-based tombstoning and implementing storage classes. This typically involves creating a class for each ...
2
votes
2answers
64 views

Is there a way of handling the GotFocus event on all text boxes in all views by convention?

We are writing a WPF based application that is usually used on a touchscreen tablet. We are designing the UI to avoid text input, but there times when that can't be avoided. For those times we want to ...
2
votes
1answer
180 views

How do I create Views and ViewModels with Caliburn.Micro in Windows Phone

Ok, I have decided to take a look at calibun micro as people are raving about it. Note that this question is in the context of Windows Phone 7. I have downloaded the package from nuget, cleared out ...
2
votes
2answers
532 views

CM+MEF: registering MEF exports from external assemblies

this post ideally continues my other post on MEF plugins, but my first post was too full of comments and this sample is more complete. Here I summarize my updated scenario, with all my findings up to ...
2
votes
1answer
350 views

(Caliburn Micro) Mapping a ActionMessage Methodname to a Child Object of the ViewModel

I would like to bind the methodname propererty of the caliburn.micro actionmessage to a method on a child object of the ViewModel. How I would imagine it should work: <i:Interaction.Triggers> ...
2
votes
1answer
368 views

Caliburn Micro: plugin-related questions for MEF-based scenario

I have a scenario with a WPF application hosting some views (user controls) with their viewmodels, found as MEF exported parts in its plugin folder. The application loads its data together with a ...
2
votes
2answers
403 views

WPF UI Automation with Caliburn.Micro?

I am attempting to write some UI automation tests for a WPF application that is using Caliburn.Micro and White. I am using CM's builtin conventions to bind my controls to the view model's properties ...
2
votes
3answers
262 views

WP7 equivalent of EmptyDataTemplate?

A number of ASP.NET data bound controls expose an EmptyDataTemplate that is rendered when the control is bound to an empty data source. In my WP7 app, I too would like to display a friendly message ...
2
votes
1answer
485 views

Caliburn.Micro: Different “Targets” in XAML and how to get Views/Viewmodels into there

I'd still consider myself a beginner even though I could put CM to good use. I read this nice introduction on Screens and Conductors, etc. from Rob Eisenberg at codeplex. If I understood correctly a ...
2
votes
1answer
651 views

Caliburn Micro: how to set binding UpdateSourceTrigger?

I've been exploring the Caliburn Micro MVVM Framework just to get a feel for it, but I've run into a bit of a problem. I have a TextBox bound to a string property on my ViewModel and I would like the ...
2
votes
4answers
543 views

WPF MVVM - using model in view model class

I would like to know what is correct using of model class in in view model. As MVVM I use Caliburn Micro. First alternative. Model class: public class CurrentUser : IDataErrorInfo { ...
2
votes
1answer
419 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
2answers
530 views

Problem with binding Title of WPF window on property in shell view model class [Caliburn.Micro]

I have simple problem with binding property in shell view model class on Title property of WPF Window- it’s shell. My shell view look like this: <Window x:Class="Spirit.Views.ShellView" ...
2
votes
1answer
1k 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 ...

1 2 3 4 5