Tagged Questions
A framework for WPF and Silverlight applications, facilitating a variety of UI patterns such as MVVM.
18
votes
1answer
3k views
How does Prism compare with Caliburn?
Looking at the Prism and Caliburn frameworks as a WPF newbie, what are their relative strengths and weaknesses?
16
votes
5answers
4k views
Tutorials For Caliburn Framework?
I'm learning Caliburn for a WPF project I am involved in and we are having a hard time finding good tutorials for it. I have looked through the Caliburn Wiki, and the samples that come with the ...
10
votes
1answer
1k views
Need comparison of MVVM / WPF / Silverlight Toolkits
I'm looking for a good article that compares MVVM Light, Caliburn Micro, Prism, and any other Silverlight / WPF / WP7 frameworks out there. I've seen some good articles on them individually, but ...
7
votes
1answer
2k views
Choosing Between Prism and Caliburn
I have been using Prism 2.0 for a personal project for a few months now. I have recently heard of Caliburn and am wondering if there are compelling reasons for me to consider that instead.
I like ...
6
votes
1answer
530 views
Is there a way to implement Caliburn-like co-routines in VB.NET since there's no yield keyword
Note that I'm aware of other yield in vb.net questions here on SO.
I'm playing around with Caliburn lately. Bunch of great stuff there, including co-routines implementation.
Most of the work I'm ...
5
votes
1answer
2k views
Alternatives to Prism + MEF for modular MVVM apps
My team and I are beginning to plan the development of a modular application which will likely multi-target WPF & Silverlight.
I personally have some experience using the older version of PRISM ...
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?
5
votes
1answer
2k views
PRISM and Caliburn combined
I am already using Prism, especially the following areas: EventAggregator, RegionManager, Commanding, Dependency Injection (through Unity obviously)
Have you used Prism in combination with Caliburn?
...
4
votes
1answer
87 views
Catching runtime exceptions in IoC container
I'm using Spring.NET with Caliburn 2 and getting some exceptions from these frameworks at runtime (e.g. NoSuchObjectDefinitionException and UnsatisfiedDependencyException in Spring.NET, ...
4
votes
1answer
1k views
Binding SelectionChanged to ViewModel using Caliburn.Micro
We've using Caliburn.Micro on a new Silverlight project and everythings working great. The inbuilt conventions bind buttons click events to the viewModel, but I'm not sure what the best way to handle ...
4
votes
4answers
466 views
MVVM and DI - How to handle Model objects?
I'm using Caliburn and C#, but I feel like this is a generic MVVM/DI question.
Let's say I have a view model, NoteViewModel, that is passed a model object called Note.
Here is some code:
class ...
4
votes
5answers
417 views
Create an instance of ISession per ViewModel
here is my problem: I'm building a desktop application, with the following tools:
Caliburn
Ninject
NHibernate
All my view models and repositories are instanciated with Ninject. My repositories all ...
3
votes
2answers
303 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
640 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
2answers
389 views
C# and Caliburn - RescueAttribute and Coroutines
I think I have found a situation where RescueAttribute is broken. Or maybe I am using co-routines incorrectly.
I have a ViewModel like this:
[Rescue("Rescue")]
class MyViewModel
{
//... left ...
3
votes
1answer
2k views
How to bind silverlight datagrid combo box itemSource to viewModel
We're using Caliburn.Micro/Silverlight 4 and life is good.
I'm trying to bind a combobox's itemsSource to a viewModel, but this doesn't seem possible since the combobox is already bound to its own ...
3
votes
3answers
443 views
Should I register ViewModels in Container?
Should I register ViewModels in Container and resolve from there?
Benefits:
I can perform some actions when view model is activated
Container will inject dependencies for me
???
Drawbacks:
...
3
votes
2answers
317 views
caliburn a viable silverlight framework for large development?
I have been looking at some frameworks for a very large project like 200+ pages with 50+ tables etc., to develop in silverlight. Is there a best practices or suggestion of framework for developing ...
3
votes
1answer
532 views
Problem starting with Caliburn Micro
i am starting to learn MVVM, and i decided to choose Caliburn Micro to try it out. i am just at the building part (or before that even). i am opening the project. 1st i got an error saying i need to ...
3
votes
1answer
554 views
binding to my current presenter in caliburn without binding convention
in caliburn when i work with binding convention, and name a content control "CurrentPresenter"
the framework automagically bind to the vm and locate the relevant view.
if i do this binding manually ...
3
votes
2answers
243 views
Caliburn - Exception handling and Rescue
I'm using C# and Caliburn.
Is there a global way to catch all exceptions in all view models?
What about when there is some kind of exception during import from a DI/IoC container?
I basically want ...
2
votes
1answer
45 views
DateTime does not display for midnight
I have a tool tip that is displaying the the start time property of its underlying object. In an MVVM, WPF Caliburn application.
The XAML looks like this: <Label Content="{Binding ...
2
votes
1answer
380 views
Programatically setting the Name attribute for WPF Elements
I'm writing tests using WiPFlash for a WPF application that has been developed in our office. In order to do this I have had to add name attributes to several of WPF components that up until now have ...
2
votes
1answer
208 views
How does 2d canvas drawing based on an object model fit into MVVM, Caliburn & Silverlight (oh my)
I created a rough, non MVVM demo in Silverlight that drew various lines and other 2d objects on an Canvas, based on an object model.
I'm now porting the application over to MVVM (Caliburn Micro) and ...
2
votes
1answer
708 views
What is Caliburn Validation abstraction
Recently I saw this document that specify how great is Caliburn(Not really it compares it to the micro framework, and thats enough).
I'm working with Caliburn for more than a year and don't know many ...
2
votes
1answer
473 views
Caliburn - ShellFramework - Show.MessageBox
I've discovered an issue with Show.MessageBox().
In my application, I call Show.Dialog() in several places to display child windows modally.
Then if you use Show.MessageBox() in the new child ...
2
votes
1answer
1k views
Validation.HasError attached property
Did I miss something?
1- Style
<Style TargetType="{x:Type TextBox}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Validation.HasError}" Value="true">
...
2
votes
2answers
450 views
Bind a SL4 TreeView to an IGrouping using Caliburn
I am just starting in the SL world and am trying to use the Caliburn NavigationShell as my starting point. I converted the solution to SL4 and use Caliburn from the trunk .
To create the basic ...
2
votes
1answer
740 views
Using a ListBox (or other ItemsControl) to host Caliburn presenters
If I have a MultiPresenter and I am using a ListBox to display the Presenters it is hosting, how do I get Caliburn to discover and bind the views and view models for the items?
For example, if I have ...
1
vote
1answer
25 views
How can I get Caliburn to bind hosted controls
I created a control which is hosting two content controls. I would like Caliburn to
resolve the View/ViewModel for me but Caliburn ignores the hosted/inner ContentControls with the name ...
1
vote
1answer
114 views
Caliburn Entity DataBinding Funniness
I have a Silverlight application that I am currently working that implements Caliburn.Micro for its MVVM framework. Things are working fine but I am noticing some funniness in some of the binding. ...
1
vote
1answer
178 views
WPF update context menu items before menu display
I'm using WPF with Caliburn and the MVVM pattern and I'm trying to set up a dynamic context menu.
Currently we have a context menu with it's Items bound to a BindableCollection on the ViewModel.
...
1
vote
1answer
171 views
Can I use Caliburn Framework in WinForms application?
Can I use Caliburn Framework in Windows.Forms application? or it use only in wpf applications?
1
vote
0answers
194 views
Binding to a button's click event
I'm trying to bind the click event for buttons in my view to actions specified in my presenter using Caliburn (the old version, not Caliburn.Micro). Although I'd also settle for a solution that does ...
1
vote
3answers
243 views
Why does the SelectedItem not display in combobox
With the below binding in XAML, the selected item is not displayed in a combobox (specifically, the current type is not displayed for a site). We are using the caliburn micro framework and DevForce ...
1
vote
2answers
803 views
Sharing viewmodel to multiple views using Caliburn.Micro in WP7
I am currently working on a project which requires multiple views of the same viewmodel. Let me describe this way:
ViewModel: CustomerDetailsViewModel.cs (inherited from Screen class)
View: ...
1
vote
1answer
276 views
Caliburn bug with Show.Busy() and Show.NotBusy()
I have a dialog that is displayed with Show.Dialog(), and has these steps in a method attached to the Loaded event of the view:
Show.Busy()
Possible long-running web request (I have a custom ...
1
vote
1answer
658 views
Update item in BindableCollection with notify ICollectionView
Hi I bind collection from Caliburn Micro on ListBox control in view. Here is it.
public BindableCollection<UserInfo> Friends
{
get { return _friends; }
set
{
_friends = ...
1
vote
1answer
115 views
Binding a Canvas in Caliburn
I am currently using Caliburn and I have the following scenario.
I have a MultiPresenterManager and the CurrentPresenter is set to a Presenter that contains a Canvas. inside the Canvas Presenter ...
1
vote
1answer
810 views
caliburn micro tutorial problem
I'm just starting the tutorial for CM and up to the last example here. I wanted to get a better feel for what I can do with CM, so I did some one thing I would normally do in a wpf project, make a ...
1
vote
2answers
358 views
Caliburn.Micro(.WP7) and Bing Maps Crashing
I have an app that I'm upgrading from some beta bits - and my map screen is crashing. So to try to get to the bottom of it - I started a brand new - blank "Win Phone Application".
Referenced ...
1
vote
0answers
409 views
Caliburn. Coroutines in WPF
I am newbie in caliburn and MVVM. I have problem find a simple clean example of implementation coroutines in WPF with caliburn.
I find many examples for caliburn.micro with silverlight.
For example:
...
1
vote
1answer
44 views
Caliburn re-run filter
In caliburn, i have view with button. Button action is filtered by action filter. On view is textbox. When i change textbox content, i want to rerun action filter, how to perform that?
1
vote
1answer
466 views
Can't find System.ComponentModel.Composition with .NET Framework 4 installed
i think this sounds like a stupid question. i am starting with caliburn micro: customizing the bootstraper. i have .NET Framework 4 installed, VS2010. but when i try to add a using, there is ...
1
vote
1answer
343 views
Can I use Caliburn to bind to RoutedCommands?
What's the best way to use WPF's built-in RoutedCommands with Caliburn?
For example, in my shell I have an Edit menu with a Copy item in it attached to the standard command found in ...
1
vote
1answer
308 views
Caliburn - PropertyChanged for child ViewModel
I'm using Caliburn and the MVVM pattern in a WPF application, and am trying to use as many conventions as possible. One issue I'm running into is when I have to wire-up some property-changed ...
1
vote
1answer
463 views
WPF Validation with ContentPresenter
I have a WPF user control which needs to validate some fields. It is bound to a class implementing IDataErrorInfo.
When I set the user control as the content of my ContentPresenter in another, ...
1
vote
1answer
677 views
Caliburn and prism samples
Are there any sample applications avaliable that make use of both caliburn and prism?
I know there are blogs that talk about it but I would like to wade into some code and see how it all fits ...
1
vote
1answer
276 views
How to handle exceptions thrown during the instantiation of a WPF Application?
I'm using the following code to display unhandled exceptions in a WPF application:
public MyApplication() {
this.DispatcherUnhandledException += (o, e) => {
var ...
1
vote
3answers
113 views
How to build Caliburn in release mode
I can't make nant do a release build of Caliburn using their build.cmd. Can anyone tell me how to?
What command line parameters should I use?