зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
733 B
XML
15 строки
733 B
XML
<?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:Xamarin.Forms.Controls.Issues"
|
|
x:Class="Xamarin.Forms.Controls.Issues.Issue5003">
|
|
<ContentPage.Resources>
|
|
<ResourceDictionary>
|
|
<local:StrikeThroughIfTrueConverter x:Key="StrikeThroughIfTrueConverter"/>
|
|
</ResourceDictionary>
|
|
</ContentPage.Resources>
|
|
<ContentPage.Content>
|
|
<Label Text="{Binding MyNullString}"
|
|
TextDecorations="{Binding SomeBoolean, Converter={StaticResource StrikeThroughIfTrueConverter}}"/>
|
|
</ContentPage.Content>
|
|
</ContentPage> |