New Post: Validation on ComboBox Issue
Thanks, mvermef, but that's not correct. Version 1.5.2 does validate out of the box - at least for the TextBox. I'll try the method mention in the link above to see what happens.
View ArticleNew Post: ActionMessage Not in Namespace
I have version 2 loaded, but now the Bootstrapper is not supported? I'll start searching, but what's the correct way to setup the project now?
View ArticleNew Post: ActionMessage Not in Namespace
Ok - I have the bootstrapper working. I had to make the constructor public instead of static and call base(true). Then inside the constructor make a call to base.Start(). public AppBootstrapper() :...
View ArticleNew Post: Custom Binding for MultiSelectComboBox
Setup VS 2010 WPF 4.0 CM 1.3.1 I am using the MultiSelectComboBox found at the link below. It's a ComboBox that includes a checkbox for each Item and allows multiple selections. Items Source and...
View ArticleNew Post: Composing a screen out of multiple usercontrols
I think that a better solution might be the one shown at: http://stackoverflow.com/questions/6230603/resolving-external-user-control-xname-convention-bindings-in-caliburn-micro This solution consists...
View ArticleNew Post: window manager and multiple UI threads
I have a WPF application in which I'm using caliburn. My main window utilizes WPF 3D component which runs a machine simulation thats UI intensive. On the main window, i have a button that opens up a...
View ArticleNew Post: Composing a screen out of multiple usercontrols
Sorry for the type on my previous post. It should say "In this solution is NO mention of the view model..."
View ArticleNew Post: Error Hosting WindowsFormsHost in Caliburn micro app
Help needed. {"The invocation of the constructor on type 'Planviewer.Utils.PDFViewerHost' that matches the specified binding constraints threw an exception."} Here is the XAML<utils:PDFViewerHost...
View ArticleNew Post: window manager and multiple UI threads
To spawn a Window on a new thread, you just need to initialize a Dispatcher on a new thread, and run the Window constructor on such a thread (as you probably now). So, you would just need to spawn the...
View ArticleNew Post: Error Hosting WindowsFormsHost in Caliburn micro app
Could you check if the exception InnerException property holds useful information?
View ArticleCommented Unassigned: Action guard method re-evaluation [312]
I wanted to get opinions from the dev's on items like below see https://caliburnmicro.codeplex.com/discussions/442668 for original source.On the one hand something like this could be integrated into...
View ArticleNew Post: Error Hosting WindowsFormsHost in Caliburn micro app
The inner exception says the following "{'Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREF))'}" If I run the app in Debug mode everything works fine but when I select...
View ArticleNew Post: Error Hosting WindowsFormsHost in Caliburn micro app
It seems the problem lies in the PDFViewer component (it should be a COM exception). Are you sure the target platform is the same in Debug and Release? I have checked for a similar error when dealing...
View ArticleNew Post: window manager and multiple UI threads
thanks for your response. i'm a bit worried about dispatcher switching as i need constant UI updates on the main thread as there is real time animations going on all the time
View ArticleNew Post: Error Hosting WindowsFormsHost in Caliburn micro app
That did the trick. Thanks
View ArticleNew Post: ActivateItem doesn't seem to work with WPF Frame
Trying to send a ViewModel to a WPF Frame doesn't work. If I replace the frame with ContentControl works fine. I found a link where someone talks about how to fix this, but it means a modification to...
View ArticleNew Post: window manager and multiple UI threads
I have never used WPF for 3D visualization, but since premature optimization is the source of all evil, I would still try with the freezing/cloning approach, and measure performances. :)
View ArticleNew Post: ActivateItem doesn't seem to work with WPF Frame
I changed my logic to the following to get this working the way a Navigation Frame would without using a Navigation Frame. I removed the Frame and ContentPresenter and replaced them with DockPanel and...
View ArticleNew Post: updating ToggleButton IsEnabled property throws exception
hi, I've created a simple tester where i use a button to enable/disable a ToggleButton when the ToggleButton control does not contain anything - all works properly however , adding sub controls to it...
View ArticleNew Post: updating ToggleButton IsEnabled property throws exception
You do realize that you don't have to create a separate binding for that IsEnabled property right? CanSayHello a bool property is looked for as part of the CM convention in the viewmodel. I suspect...
View Article