New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
[XAML]
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage ………..
…….
x:Name="page"
…..>
<ContentPage.Content>
<popuplayout:SfPopupLayout x:Name="Addresspopup">
…. <popuplayout:SfPopupLayout.Content>
<ListView x:Name="AddressTypeView" ItemsSource="{Binding Employees}" SeparatorVisibility="None">
…….
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout x:Name="vcSL">
<Grid>
………
<Button x:Name="DeleteButton" HorizontalOptions="End"
Text="" Grid.Column="1" Command="{Binding Path=BindingContext.ClosePopup, Source={x:Reference page}}" CommandParameter="{x:Reference DeleteButton}"/>
</Grid>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</popuplayout:SfPopupLayout.Content>
</popuplayout:SfPopupLayout>
</ContentPage.Content>
</ContentPage> |