blob: 8d78ba93b2638bc6292364e84237a68f8df63ddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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.TriggerTests">
<ContentPage.Content>
<Entry x:Name="entry">
<Entry.Triggers>
<Trigger Property="IsPassword" Value="true" TargetType="Entry">
<Setter Property="Scale" Value="1.2" />
</Trigger>
</Entry.Triggers>
</Entry>
</ContentPage.Content>
</ContentPage>
|