summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla26032.xaml
blob: 748942a5f2352da41679b108863b03639b10b9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<local:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
				 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
 				 xmlns:local="clr-namespace:Xamarin.Forms.Controls"
				 x:Class="Xamarin.Forms.Controls.Bugzilla26032">
	<RelativeLayout>
		<ListView x:Name="List1"
				  RelativeLayout.XConstraint="{ConstraintExpression Type=Constant, Constant=0}"
				  RelativeLayout.YConstraint="{ConstraintExpression Type=Constant, Constant=0}"
				  RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=0.5}"
				  RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=0.7}"
				  
				  ItemTapped="OnItemTapped"
				  ItemSelected="OnItemSelected"
			>
			<ListView.ItemTemplate>
				<DataTemplate>
					<TextCell Text="{Binding}" />
				</DataTemplate>
			</ListView.ItemTemplate>
		</ListView>

		<ListView x:Name="List2"
				  RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=0.5}"
				  RelativeLayout.YConstraint="{ConstraintExpression Type=Constant, Constant=0}"
				  RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=0.5}"
				  RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=0.7}"
				  
				  ItemTapped="OnItemTapped"
				  ItemSelected="OnItemSelected"
			>
			<ListView.ItemTemplate>
				<DataTemplate>
					<TextCell Text="{Binding}">
						<TextCell.ContextActions>
							<MenuItem Text="Delete" IsDestructive="True" />
						</TextCell.ContextActions>
					</TextCell>
				</DataTemplate>
			</ListView.ItemTemplate>
		</ListView>

		<ScrollView
				RelativeLayout.XConstraint="{ConstraintExpression Type=Constant, Constant=0}"
				RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=0.7}"
				RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width}"
				RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height, Factor=0.3}">
			<Label x:Name="Log" />
		</ScrollView>
	</RelativeLayout>
</local:TestContentPage>