我正在尝试在Xamarin中创建表单并使用TextBox。当我编译代码时,出现以下错误。
Type TextBox not found in xmlns http://xamarin.com/schemas/2014/forms
我没有发现任何类似的问题,这是我的第一个Xamarin程序,所以我不确定从这里开始。 xmlns链接是否过时并且仅不包含TextBoxes?
<?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:HelloWorld"
x:Class="HelloWorld.MainPage">
<StackLayout>
<TextBox Width="500" Header="Email"
PlaceholderText="Enter registered email." />
</StackLayout>
</ContentPage>
答案 0 :(得分:1)
尝试一下:
<?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:HelloWorld"
x:Class="HelloWorld.MainPage">
<StackLayout>
<Label Text="Email" />
<Entry WidthRequest="500" Placeholder="Enter registered email" />
</StackLayout>
</ContentPage>