为什么输入控件没有在UI上显示

时间:2017-12-29 08:09:32

标签: xamarin xamarin.forms

我正在通过PCL在Xamarin.Forms中创建一个应用程序。

我想显示文本框,但这不会显示在UI上。

你能告诉我我做错了什么吗?

以下是我的XAML代码

   
<StackLayout x:Name="layoutouterFrame" BackgroundColor="Green" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
    <!--<Frame Padding = "5" BackgroundColor="#ffffff">-->
        <StackLayout Orientation="Horizontal">
            <Grid x:Name="grid">

            </Grid>
            <Entry x:Name="txtentry" FontSize="Medium" Margin="0,25" HeightRequest="40" WidthRequest="100"  HorizontalOptions="FillAndExpand"   VerticalOptions="CenterAndExpand"    />
        </StackLayout>
    <!--</Frame>-->
</StackLayout>

在Grid中,我在正确显示的运行时绑定控件。但问题是进入控制。

0 个答案:

没有答案