标签不会动态扩展

时间:2016-08-13 04:28:12

标签: xaml xamarin label xamarin.forms

<?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:App;assembly=App.Droid"
             x:Class="App.MainPage">
  <StackLayout>
    <StackLayout.BindingContext>
      <local:MainModel />
    </StackLayout.BindingContext>

    <Label Text="{Binding Uri}" />
    <Button Text="Clear logs" Command="{Binding LogClear}" />
    <ScrollView VerticalOptions="FillAndExpand">
      <Label FormattedText="{Binding Log}" VerticalOptions="FillAndExpand" />
    </ScrollView>
  </StackLayout>
</ContentPage>
应用程序运行时

Log会更新,但标签不会按预期展开。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我不能在这里分享细节,但这是一个Xamarin.Forms的错误。现在它已经在上游修复了。