windows phone 8.1中的UserControl空白模板

本文关键字:空白 UserControl 中的 phone windows | 更新日期: 2023-09-27 18:24:21

我的要求是windows phone 8.1空白模板中的主页,我在谷歌中搜索,他们建议用户控制,我应用了那个场景,但没有工作,下面是我尝试过的示例代码。`我正在尝试创建我需要使用用户控制的应用程序。我已经创建了MainPage.xaml这里的代码低于

`
<Page
    x:Class="VtDesigning.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:VtDesigning"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"  
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Grid>
    </Grid>
</Page>

和下定义的用户控制

<UserControl
    x:Class="VtDesigning.MyUserControl2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:VtDesigning"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300"
    d:DesignWidth="400">
    <Grid>
        <StackPanel Height="50" Background="Chocolate">
            <TextBlock Text="hi hellow how are you"
                       FontSize="25" 
                       Margin="0,0,154,0"/>
        </StackPanel>
    </Grid>
</UserControl>

如何在MainPage.xaml.中调用此用户控件

谢谢,Venky。

windows phone 8.1中的UserControl空白模板

设置对用户控件位置的引用,并将用户控件作为普通控件添加到布局中

<Page
x:Class="VtDesigning.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:VtDesigning"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:project="using:MyProject.UserControls"
mc:Ignorable="d"  
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
    <project:MyUserControl/>
</Grid>