summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml71
1 files changed, 71 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml b/Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml
new file mode 100644
index 00000000..e60cd6db
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ContentPage
+ xmlns="http://xamarin.com/schemas/2014/forms"
+ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
+ x:Class="Xamarin.Forms.Xaml.UnitTests.Compiled.SetValue">
+ <ContentPage.Resources>
+ <ResourceDictionary>
+ <Color x:Key="purple">Purple</Color>
+ </ResourceDictionary>
+ </ContentPage.Resources>
+ <StackLayout>
+ <Label x:Name="label0" Text="Foo"/>
+ <Label x:Name="label1" Text="{Binding Path=labeltext}"/>
+ <Button x:Name="button0" Clicked="onButtonClicked" />
+ <Image x:Name="image0" IsOpaque="true" />
+ <Label x:Name="label2" Grid.Column="1">
+ <Grid.Row>2</Grid.Row>
+ </Label>
+ <ContentView x:Name="contentview0">
+ <ContentView.Content>
+ <Label x:Name="label3"/>
+ </ContentView.Content>
+ </ContentView>
+ <ContentView x:Name="contentview1">
+ <Label x:Name="label4"/>
+ </ContentView>
+ <StackLayout x:Name="stack0">
+ <StackLayout.Children>
+ <Label x:Name="label5"/>
+ <Label x:Name="label6"/>
+ </StackLayout.Children>
+ </StackLayout>
+ <StackLayout x:Name="stack1">
+ <Label x:Name="label7"/>
+ <Label x:Name="label8"/>
+ </StackLayout>
+ <StackLayout x:Name="stack2">
+ <StackLayout.Children>
+ <Label x:Name="label9"/>
+ </StackLayout.Children>
+ </StackLayout>
+ <StackLayout x:Name="stack3">
+ <Label x:Name="label10"/>
+ </StackLayout>
+ <Label x:Name="label11" Text="{Binding labeltext}"/>
+ <ListView x:Name="listView">
+ <ListView.ItemsSource>
+ <x:Array Type="{x:Type x:String}" x:Key="array">
+ <x:String>foo</x:String>
+ <x:String>bar</x:String>
+ </x:Array>
+ </ListView.ItemsSource>
+ </ListView>
+ <Label x:Name="label12" TextColor="Red" />
+ <Label x:Name="label13">
+ <Label.TextColor>
+ <Color>Pink</Color>
+ </Label.TextColor>
+ </Label>
+ <Grid x:Name="grid0">
+ <Grid.RowDefinitions>
+ <RowDefinition/>
+ <RowDefinition/>
+ </Grid.RowDefinitions>
+ <Grid.ColumnDefinitions>
+ <ColumnDefinition/>
+ </Grid.ColumnDefinitions>
+ </Grid>
+ <Label x:Name="label14" AbsoluteLayout.LayoutFlags="PositionProportional,WidthProportional" />
+ </StackLayout>
+</ContentPage> \ No newline at end of file