Closed Unassigned: Provide Parameter.Owner property protected access [328]
The Parameter.Owner property is marked as private, so a derived class is not able to access the Owner ActionMessage, thus cannot invoke an availability update.To make clear why such feature is...
View ArticleClosed Issue: Revert BootstrapperBase.Application.set() to be protected [325]
As described in [thread 448096](https://caliburnmicro.codeplex.com/discussions/448096), the changing of accessibility of `BootstrapperBase.Application.set()` breaks the type contract for inheritors who...
View ArticleClosed Unassigned: ViewModel class with internal visibility. [324]
Hello everybody.I experiencing an issue when the ViewModel class is defined as __internal sealed__.In this case the view actions fails to resolve the methods (No target found for method XXXX).Settings...
View ArticleNew Post: How to subscribe for ViewModel events whilst using DesignTimeBinding?
I have set up the binding at the design time. See the code below:<Window x:Class="Microtech.TPM.Views.DestinationChoiceView" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"...
View ArticleNew Post: Office 2013 Actions Pane and Caliburn Micro
I finally got something to work by doing the following. 1) Keep the new MefBootstrapper().Start() in the ActionsPane Load event - without the call to the Start method none of the bootstrapper methods...
View ArticleNew Post: Getting started
Like I said previously you were mixing two MVVM disciplines and I think it might have even confused you a little, because you have to specifically tell it to populate the Items, it will not do it...
View ArticleNew Post: TabViewModel - Data not displaying
Was looking over your code again... use the constructor to setup your CallerId only, don't pass any other data in when you do your activateditem call only the ID... [ImportingConstructor]public...
View ArticleNew Post: ListBox.SelectedItems convention
Bladewise, I am attempting to use your SynchronizeSelection code but I am having a few problems. I have got the SynchronizeSelection.cs, Extensions.cs and Conventions.cs in my code and I have added the...
View ArticleNew Post: ListBox.SelectedItems convention
The above code does not replace the collection, so a setter on SelectedIOSNames is not needed. The convention will actually update the contents of the list, so you need to monitor CollectionChanges...
View ArticleNew Post: TabViewModel - Data not displaying
I am taking a step back to try and clear things up a bit. Can I ask some theoretical type questions to see if I'm progressing in a sensible direction? My ShellView is (now) a Window (I'm not sure why I...
View ArticleNew Post: TabViewModel - Data not displaying
1) Yes because the conductor when combined with Collection inherits a collection property Items, it will also know ActiveItem. Take a look at HelloScreens its a Silverlight variation but it shows...
View ArticleNew Post: ListBox.SelectedItems convention
Hi Bladewise, Thanks for the swift response. I didn't realise that there was a CollectionChanged event that I needed to hook into - it wasn't used in the sample code and wasn't that obvious for someone...
View ArticleNew Post: ListBox.SelectedItems convention
Bladewise, I have one other question which has got me a little stumped. I am trying to get items selected when the View loads. So in your example code I added the following line to the ShellViewModel...
View ArticleNew Post: ListBox.SelectedItems convention
I think I got it - I needed to override OnActivate and put the line in there. That seems to work. Thanks Alan
View ArticleNew Post: SOLVED: TabViewModel - Data not displaying
Hi mvermef, First up, an apology. I have found the immediate cause of the data not displaying. Part of the code that I was using from a different mvvm framework included some style settings (including...
View ArticleNew Post: Cannot find view (with SelectAssemblies&NameTransformer.AddRule...)
I have 3 Assemblies, the exe with the Bootstrapper, one dll with the "ShellView" and one with the "ShellViewModel" xxx.Ui.Wpf.Starter (exe) xxx.Ui.Wpf.Shell (dll; Views are in the...
View ArticleNew Post: Binding dependency properties outside of the visual tree
how to achieve the same result when creating the UI control in your code behind file? It depends on when the control is created: if you are able to generate the control before CM binds the view and...
View ArticleNew Post: A different kind of Action Guard
I'm wondering if anyone has tried creating an extension to CM where a guard for actions can be specified that would toggle the target element Visibility property rather than IsEnabled property? So we...
View ArticleNew Post: 1 ViewModel, 2 Views. Minimizing 1st view causes 2nd to minimize.
Figured out a (the?) solution. The WindowManager determines the owning Window of the new Window being shown and sets the Owner property on the new Window. According to MSDN (Window Lifetime) if the...
View Article