我正在寻找适用于Windows手机的优步应用。他们的注册屏幕看起来像这样。
这些是哪些控件?有谁知道。
答案 0 :(得分: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>