Is it possible to have more than one RadPopup on a page? When I try to add a second popup I get an "The property 'Popup' is set more than once." error when trying to build.
telerikPrimitives:RadPopup.Popup
<!-- Loading Overlay -->
<
telerikPrimitives:RadPopup.Popup
>
<
telerikPrimitives:RadPopup
x:Name
=
"loadingPopup"
IsOpen
=
"{Binding IsBusy}"
IsModal
=
"True"
OutsideBackgroundColor
=
"#6FFFFFFF"
Placement
=
"Center"
>
<
StackLayout
HorizontalOptions
=
"Center"
VerticalOptions
=
"Center"
>
<
ActivityIndicator
IsRunning
=
"true"
/>
</
StackLayout
>
</
telerikPrimitives:RadPopup
>
</
telerikPrimitives:RadPopup.Popup
>
<!-- New Log Entry Overlay -->
<
telerikPrimitives:RadPopup.Popup
>
<
telerikPrimitives:RadPopup
x:Name
=
"newLogEntryPopup"
IsOpen
=
"{Binding ShowNewLogEntryPopup}"
IsModal
=
"True"
OutsideBackgroundColor
=
"#6FFFFFFF"
Placement
=
"Center"
>
<
StackLayout
HorizontalOptions
=
"Center"
VerticalOptions
=
"Center"
>
<
Frame
BackgroundColor
=
"White"
HasShadow
=
"True"
>
<
Label
TextColor
=
"{StaticResource NavigationPrimary}"
FontSize
=
"20"
Margin
=
"0,0,0,15"
>Enter New Reading</
Label
>
</
Frame
>
</
StackLayout
>
</
telerikPrimitives:RadPopup
>
</
telerikPrimitives:RadPopup.Popup
>