Tenho a seguinte página:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="PhotoManager.MainPage">
<ScrollView>
<VerticalStackLayout
Padding="5,0"
Spacing="10">
<Image
Source="banner2.jpg"
HeightRequest="75"
Aspect="AspectFit"
SemanticProperties.Description="Organize My League" />
<Line Stroke="Black" X2="{Binding Width, Source={RelativeSource Self}}" HorizontalOptions="Fill" StrokeThickness="2" />
<ActivityIndicator x:Name="activityIndicator"
IsVisible="false"
IsRunning="True"
Color="{StaticResource NavigationBarColor}" ZIndex="1000"
VerticalOptions="Center" HorizontalOptions="Center"
WidthRequest="100" HeightRequest="100"/>
<Label
Text="Log On"
Style="{StaticResource Headline}"
SemanticProperties.HeadingLevel="Level1" />
<Label
Text="Username"
Style="{StaticResource SubHeadline}"
SemanticProperties.HeadingLevel="Level2"
SemanticProperties.Description="Enter your username." />
<Entry x:Name="TheUsername"
Placeholder="Enter Username"/>
<Label
Text="Password"
Style="{StaticResource SubHeadline}"
SemanticProperties.HeadingLevel="Level2"
SemanticProperties.Description="Enter your password." />
<Entry x:Name="ThePassword"
Placeholder="Enter Password"
IsPassword="true" />
<Button
x:Name="CounterBtn"
Text="Submit"
SemanticProperties.Hint="Log on"
Clicked="OnCounterClicked"
HorizontalOptions="Fill" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>
A linha:
<Line Stroke="Black" X2="{Binding Width, Source={RelativeSource Self}}" HorizontalOptions="Fill" StrokeThickness="2" />
Gera o aviso de assunto. Como resolvo o aviso?
Se você quebrar seu
Binding
, nós temosWidth
, // de onde vem a largura? É isso que o .NET está pensandoSource={RelativeSource Self}
, // "O que é o Eu?"<Line ...
, // Aha Self == LinhaIsso significa que precisamos especificar
x:DataType=Line
. Outra maneira de ver isso, estamos dizendo ao .NET queWidth
é Line's Width.Talvez, no futuro, um compilador otimizado possa deduzir essa informação, já que, do seu trecho de código, é óbvio que
Width
vem deLine
. Em mais complexoBinding
, no entanto, você terá que ajudar, é para isso quex:DataType
serve.