Reviewed: Caliburn.Micro v1.5.2 (一月 02, 2014)
Rated 5 Stars (out of 5) - I want Use it By .NET 4.0
View ArticleClosed Unassigned: [Phone] Dialogs [355]
A. I wish that the DialogHost would be public. That way, we would be able to style it a little, and control parameters such as the glass opacity and where the dialog is opened. B. Given A, How would...
View ArticleNew Post: pass command from 3rd party control to view model
I've rewritten my app to use caliburn and mvvm its taken ages and has been difficult. my final hurdle is to wire the a 3rd party control to call my refresh method in the viewmodel the 3rd party control...
View ArticleNew Comment on "Customizing The Bootstrapper"
I'm trying to follow the advice above under "Using Caliburn.Micro in Office and WinForms Applications". In a Winform, I have this code: myBootStrapper = new AppBootstrapper(false);...
View ArticleNew Comment on "Customizing The Bootstrapper"
Got it - I was missing: public AppBootstrapper(bool useApplication) :base(useApplication)
View ArticleNew Post: pass command from 3rd party control to view model
You can treat the event as you would on the view in the view model... Just wire up the event to the viewmodel through Message.Attach="[Event EventName] = [Action SomeAction($eventArgs)]" on the control...
View ArticleNew Post: pass command from 3rd party control to view model
thanks that's really great, I've managed to message.attach to refresh my data when the pulltorefresh action on the listbox is called. finally I would like to call this after the refresh - which stops...
View ArticleNew Post: pass command from 3rd party control to view model
I too am a Telerik user and haven't gotten to the point to using pulltorefresh and therefore never looked how to wire up the completion, I suspect that the completion event comes only on the view side...
View ArticleNew Post: pass command from 3rd party control to view model
I'm not a purist - just interested in learning something new. I've just created a new instance and used GetView() to stop the animation. Works well and I don't need to introduce EventAggregators (if I...
View ArticleNew Post: Handling Focus with Caliburn.Micro
I have been searching for a solution for setting Focus from ViewModel. I couldn't find one as I was expecting, so I wrote a one for myself. I am posting here, so that I can help someone. The following...
View ArticleNew Post: Stealing focus
If you are looking for a service for setting Focus, I have a solution in Handling Focus with Caliburn Micro
View ArticleNew Post: [WP8] Implementing simple loading overlay
In my Windows Phone 8 application im executing long running task and want to display loading overlay for user while task is executing. My current solution is something like this:public async void...
View ArticleNew Post: Message.Attach on a custom event
Hi, Did you make any progress on this? I have almost the identical problem.
View ArticleNew Post: Define a convention to add custom converter based on control type...
I want to custumize my caliburn conventions to handles a custom control that here we can call BaseText. If one of controls in use that derive from BaseEdit has the Tag property in xaml set equals to...
View ArticleNew Comment on "Introduction"
Typo: "The “bubbling” nature of Acton Messages" --> should be "The “bubbling” nature of Action Messages"
View ArticleNew Post: ListBox SelectionMode="Multiple" and SelectedItems conevention
I have a user control that contains a ListBox with the SelectionMode set to Multiple. I use the same View and ViewModel source files in an Excel solution (with a WPF document pane) and a standalone WPF...
View ArticleNew Post: ListBox SelectionMode="Multiple" and SelectedItems conevention
After several hours of searching I noticed that I was missing the Conventions.Apply() line from my bootstrapper.
View ArticleNew Post: [WP8] Implementing simple loading overlay
Anyone? :) All suggestions and ideas welcome.
View ArticleNew Post: WPF button Command vs Content
I have a bug related with the use of commands in buttons in WPF. I have the following code<Button x:Name="CancelCommand" Content="Cancel" Command="CancelCommand" ... /> When I render this button...
View Article