1

我正在查看适用于 Windows Phone 的 Uber 应用程序。他们的注册屏幕是这样的。

图像 1图 2

这些是哪些控件?有没有人知道。

4

1 回答 1

1

我不确切知道他们在使用什么,但您可以使用 Windows Phone 工具包和一些简单的 XAML 重新创建它。

对于文本框

<StackPanel Orientation="Horizontal" Height="60" Background="White" Margin="10,0" >
    <TextBlock Text="your_text" VerticalAlignment="Center" Foreground="Black" />
    <toolkit:PhoneTextBox Hint="your hint" ActionIcon="/Assets/your_image.png"
                          Background="#00000000" BorderThickness="0"/>
</StackPanel>

对于密码框

<StackPanel Orientation="Horizontal" Height="70" Background="White" Margin="10,0" >
    <TextBlock Text="your_text" VerticalAlignment="Center" Foreground="Black" />
   <PasswordBox Password="test_password"/>
    <Image Source="/Assets/your_image.png"></Image>
</StackPanel>
于 2014-07-26T12:51:18.187 回答