51 строка
2.2 KiB
XML
51 строка
2.2 KiB
XML
<?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> |