Learn about Windows Phone7 Development (13. Nine UserControl controls)

Source: Internet
Author: User
Tags silverlight

The controls provided by Phone7 are basic controls that are far from satisfying development needs, and this user control is used to customize the controls needed. For example: The TreeView, waiting and so on are not in Phone7. In addition this is also the place with Silverlight, in Silverlight, all pages are inherited from UserControl, and Phone7 pages are inherited from PhoneApplicationPage.

Let's make a simple waitingbox with animation:

1. Create: UserControl inherits the UserControl control class, which means that the control has all the properties and methods, and that it needs to be extended since it is needed.

2. Sample XAML:

<Popup x:Name="WaitingWnd" IsOpen="False">
       <Grid x:Name="LayoutRoot" Background="Transparent">
            <TextBlock Height="44" HorizontalAlignment="Left" Margin="0,144,0,0" Name="textBlock1" Text="请等待….." VerticalAlignment="Top" Foreground="Gray" Width="200" FontSize="32"  TextAlignment="Center"/>
            <Image Height="150" HorizontalAlignment="Left" Margin="22,6,0,0" Name="image1" Stretch="Fill" VerticalAlignment="Top" Width="150" />
        </Grid>
    </Popup>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.