Hi
I cannot get the docking control to work.
I installed 15.1.0.37. Created a new project in VS2015 (14.0.25431.01 Update 3), followed the instructions at https://help.syncfusion.com/uwp/sfdockingmanager/getting-started
App runs but no controls are shown.
Below is the code:
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:layout="using:Syncfusion.UI.Xaml.Controls.Layout"
mc:Ignorable="d">
<layout:SfDockingManager x:Name="docking">
<ContentControl x:Name="SolutionExplorer"/>
<ContentControl x:Name="ToolBox"/>
<ContentControl x:Name="Properties"/>
<ContentControl x:Name="Output"/>
<ContentControl x:Name="StartPage"/>
</layout:SfDockingManager>
</Page>