Updated Wiki: Introduction
Introduction When my “Build Your Own MVVM Framework” talk was chosen for Mix10, I was excited to have the opportunity to show others what we had been doing in Caliburn in a simplified, but powerful...
View ArticleClosed Unassigned: Introduction Grammar [332]
Thought you might appreciate a little copy-edit.Please don't take this with the wrong spirit. I'm just...
View ArticleCommented Unassigned: Singularize collection names does not work with "es"...
When binding a view model to a datagrid, property singularizing is not working properly for collection properties that end in "es".I had a property called "Batches" to which the grid was bound. The...
View ArticleClosed Unassigned: Singularize collection names does not work with "es"...
When binding a view model to a datagrid, property singularizing is not working properly for collection properties that end in "es".I had a property called "Batches" to which the grid was bound. The...
View ArticleCommented Unassigned: Binding Data Grid column's header [333]
Hello!I'm starting in using caliburn, and i'm loving it. I believe it is not an issue on the framework itself, but i'm not finding the way to solve this out. So, here's the deal :In WPF I was used to...
View ArticleClosed Unassigned: Binding Data Grid column's header [333]
Hello!I'm starting in using caliburn, and i'm loving it. I believe it is not an issue on the framework itself, but i'm not finding the way to solve this out. So, here's the deal :In WPF I was used to...
View ArticleNew Post: TabViewModel - Data not displaying
Edit: Curses! Foiled by the Preview button (it looked like it had been posted). This should have been here 18 hours ago. I have pasted the Shell, TabView and CallerDetailsView. Thank you again for...
View ArticleNew Post: Problem with StorageHandler and ViewModel WithParam
Hi, I think that caliburn doesn't support a frequent situation. I have a ViewModel and I navigate to it using WithParam to a property1. When I create its relative StorageHandler, I cannot configure Id...
View ArticleNew Post: TabViewModel - Data not displaying
Just for giggles do you have any sort of logging going on, using the built- in stubs? You might have to setup to send to the debug console. Also<Button Visibility="Visible" Content="Add Caller"...
View ArticleNew Post: evaluating action guards in caliburn micro
Do I have to notify property changed in every function/property in view model for updating tool-bar's button status according to caliburn micro? That doesn't sound good. Can I have my reflective...
View ArticleNew Post: evaluating action guards in caliburn micro
how about a single void method containing those instead of recreating the wheel in each method you need the notifications to fire? like UpdateToolBar()? private void UpdateToolBar(){ //send out...
View ArticleNew Post: Getting started
there are examples of using MEF or your favorite IoC to do that dynamically. But down to what you have.. you are basically mixing 2 variations of MVVM, view-first and viewmodel first, the later which...
View ArticleNew Post: 1 ViewModel, 2 Views. Minimizing 1st view causes 2nd to minimize.
I am using the standard CM conventions to have two different views bound to one viewmodel. It seems to work great, except that I might have both views visible at the same time. When I do, if the 1st...
View ArticleNew Post: WindowManger.ShowDialog
When a ViewModel is called using WindowManager.ShowDialog the called ViewModel does not handle a message from the calling ViewModel. Am I correct in assuming this is by design?
View ArticleNew Post: evaluating action guards in caliburn micro
mvermef wrote: how about a single void method containing those instead of recreating the wheel in each method you need the notifications to fire? like UpdateToolBar()? private void UpdateToolBar(){...
View ArticleNew Post: evaluating action guards in caliburn micro
using System; using System.Linq; using System.Reflection; using Caliburn.Micro; using Action = System.Action; namespace Framework.Wpf { public class ActionManager { public event EventHandler...
View ArticleNew Post: evaluating action guards in caliburn micro
that will work. Another thought was IEventAggregator...
View ArticleNew Post: TabViewModel - Data not displaying
Logging: I have literally just started on this on Friday afternoon. Managed to get the default log info printing. I didn't see anything obviously wrong in that output. Will look further into how to...
View ArticleNew Post: Getting started
My ShellViewModel has the following code [Export(typeof(IScreen))] public class ShellViewModel : Conductor<IScreen>.Collection.OneActive { public ShellViewModel() { Items.Add(new OneViewModel());...
View ArticleClosed Unassigned: Caliburn.Micro framework crash due to ActionMessage [329]
Caliburn.Micro framework will crash randomly in my application due to ActionMessage.I found in ActionMessage.cs, there is a action called SetMethodBinding. The crashes come out randomly (expecially...
View Article