blob: 7e48e1bbeda512dc5215e60115d65e81303ce68e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="UTF-8"?>
<local:BaseForEvents xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
x:Class="Xamarin.Forms.Xaml.UnitTests.EventsConnection">
<StackLayout>
<local:ElementWithEvent x:Name="elementWithEvent"
Clicked="HandleClicked" />
<local:ElementWithGenericEvent x:Name="elementWithGenericEvent"
Clicked="HandleGenericClicked"/>
<local:ElementWithEvent x:Name="eventHandlerOnBase"
Clicked="HandleClickedOnBase" />
<local:ElementWithEvent x:Name="elementwithAsyncprivateHandler"
Clicked="HandleClickedPrivateAsync" />
<local:ElementWithEvent x:Name="elementWithVirtualHandler"
Clicked="HandleVirtualClicked" />
</StackLayout>
</local:BaseForEvents>
|