-
-
Save ufukhawk/787b8cf0f21337afefb8810461d8f4c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:local="clr-namespace:DataTriggersFormsSample" | |
x:Class="DataTriggersFormsSample.MainPage"> | |
<StackLayout VerticalOptions="StartAndExpand" | |
Padding="20,60,20,20"> | |
<Entry x:Name="user" | |
Text="" | |
Placeholder="user name" /> | |
<Entry x:Name="password" | |
Text="" | |
Placeholder="user name" | |
IsPassword="true" /> | |
<Button Text="Enter" | |
BackgroundColor="LightSeaGreen" | |
TextColor="White" | |
IsEnabled="false"> | |
<Button.Triggers> | |
<MultiTrigger TargetType="Button"> | |
<MultiTrigger.Conditions> | |
<BindingCondition Binding="{Binding Source={x:Reference user}, | |
Path=Text}" | |
Value="Char" /> | |
<BindingCondition Binding="{Binding Source={x:Reference password}, | |
Path=Text}" | |
Value="1234" /> | |
</MultiTrigger.Conditions> | |
<Setter Property="IsEnabled" Value="true" /> | |
</MultiTrigger> | |
</Button.Triggers> | |
</Button> | |
</StackLayout> | |
</ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment