Hello. I am using Caliburn.Micro 1.5.1 in my application. I develop application for WP8. I have View with Pivot Control on it. First Pivot Item defined as:
<phone:PivotItem Header="..." cal:View.Model="{Binding ...}" />
Page defined as:<phone:PhoneApplicationPage x:Class="...."
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cal="clr-namespace:Caliburn.Micro;assembly=Caliburn.Micro"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:viewModels="..."
cal:Bind.AtDesignTime="True"
d:DataContext="{d:DesignInstance viewModels:...,
IsDesignTimeCreatable=True}"
mc:Ignorable="d">
And in Blend I don't see view for appropriate viewModel in PivotItem.