New Post: Validation on ComboBox Issue
I have just been looking at this issue myself, as I wish to do validation on a ComboBox whilst still using the convention based binding. Having had a dig through the Caliburn.Micro code, the issue...
View ArticleNew Post: 3D Viewport Control
Framework 4.0 Is the WPF 3DViewport control supported in CM? Is there a simple sample of the use of the 3DViewport with Caliburn Micro?
View ArticleNew Post: Proper way to bind to usercontrol? I get BindingExpression errors...
i have the following xaml:<UserControls:MaintenancePanel cal:Bind.Model="{Binding MyPanelInfo}" Margin="5,5,5,5"/> and I have a viewmodel class called MaintenanceViewModel which contains a...
View ArticleNew Post: How to Bind data with grid using Calibrum
Can u please provide code for binding the data with grid in Calibrum.I have data in list which is come from WCF service.Now i want to bind tht data with grid.
View ArticleNew Post: How to use CM without "Application"-Object
ssak32 wrote: Hi, I am Novice to CM. I am in the same situation when Akkarin started this discussion and Eisenberg's reply to use "new Bootstrapper(false)". Well, I guess this was working with older...
View ArticleNew Post: Conventions not working inside Hub
Hi, I use Caliburn.Micro in a Win 8.1 app and I always take advantage of conventions, and I noticed that when I place my controls inside a Hub control, the conventions does not work anymore.. Simple...
View ArticleNew Post: Setting MaximumMessageReceiveSize
Hi, I am developing a windows store app in xaml with Caliburn Micro framework. Here I am getting all the data from a Webservice. There is a page where one can edit their post in the project. TO enable...
View ArticleNew Post: Event Aggregator with multiple views
I'm trying to build this project using Caliburn for the first time (and also the MEF structure, that I didn't fully understand). I need to use both the Conductor and the EventAggregator. The Conductor...
View ArticleNew Post: DataGrid with Message.Attached on MouseDoubleClickEvent
Hello , I need the ability to double click on a row on a DataGrid and perform some action in my VM . XAML :<DataGrid cal:Message.Attach="[Event MouseDoubleClick] = [Action SomeAction($this)]">...
View ArticleNew Post: ArgumentException Error - Value is not a hop source in the route.
I got the same error when I had a typo in my message attachcal:Message.Attach="[Event Click] = [SelectBlah($souce,$datacontext)]" For those that couldn't see it like I didn't, $source is spelt wrong.
View ArticleNew Post: Binding inside a Groupbox.Header?
Don't know if the same thing would occur in the C# UI groupbox header, this question is valuable to me.
View ArticleNew Post: How to use CM without "Application"-Object
ssak32, You have to use the non-generic form of the bootstrapper, like so:public class AppBootStrapper : BootstrapperBase { public AppBootStrapper() : base(false) { }
View ArticleNew Post: How to use CM without "Application"-Object
Indeed I did miss the part about version 1.5.2 removing that base constructor. Neither did I realize I was working with an old version. Nice find on the solution, Pete
View ArticleNew Post: Keybinding Command/Action
Would this pattern work the same when using a UserControl and letting CM inject it into a window?
View ArticleNew Post: Is using this MVPVM pattern with Caliburn possible?
"MVP = MVVM they are almost completely synonymous with each other" Actually, that statement could confuse the development community, I'd like to share some info.... The PresentationModel and MVVM are...
View ArticleCommented Unassigned: ActionMessage Not in Namespace [358]
I am using VS2013 to create a WPF 45 project. Everything works fine except for the ActionMessage. I have tried setting up the namespace two ways:1. xmlns:cal="http://www.caliburnproject.org"2....
View ArticleNew Post: MUI + Caliburn.Micro Navigation
Question Hi, In my current project I am using MUI, Caliburn.Micro & Ninject. But I have some issues: 1) How can I show WarehouseProductCategoriesPageViewModel form ShellPageViewModel from code?...
View ArticleNew Post: Update While Show Dialog is Open
I have a scenario and wanted to know if its possible to do something while the ShowDialog is open. Below is the current code I have: this.NumericViewModel = new NumericKeypadViewModel(this.Quantity);...
View ArticleCreated Unassigned: Binding with Caliburn.Micro Failing [362]
I have a `MessageBoxView` and an associated `MessageBoxViewModel` class, as shown below public class MessageBoxViewModel : DialogViewModel<MessageDialogResult> { ... }where public abstract class...
View Article