2011-07-25 39 views
0

我想在我的網格中添加像堆面板的用戶控件例如我們如何使用窗口用戶手機控制研究在我的應用程序

- 網格,其名稱內容面板是在MainPage.xaml中 - 列表項

-stack面板這是usercontrol.xaml

<UserControl x:Class="USER.WindowsPhoneControl1" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Loaded="UserControl_Loaded"> 
    <StackPanel HorizontalAlignment="Center"> 

     <StackPanel.Resources> 
      <!--Create a Style for a TextBlock.--> 
      <Style TargetType="TextBlock" x:Key="TextBlockStyle"> 
       <Setter Property="Foreground" Value="Navy"/> 
       <Setter Property="FontSize" Value="14"/> 
       <Setter Property="VerticalAlignment" Value="Bottom"/> 
      </Style> 

      <!--Create a Style for a TextBlock.--> 
      <Style TargetType="TextBox" x:Key="TextBoxStyle"> 
       <Setter Property="Width" Value="200"/> 
       <Setter Property="Height" Value="30"/> 
       <Setter Property="Margin" Value="4"/> 
       <Setter Property="FontSize" Value="14"/> 
       <Setter Property="Background" Value="Blue"/> 
      </Style> 
     </StackPanel.Resources> 

     <TextBlock FontSize="18" Text="Enter your name." Name="abc" /> 
     <StackPanel Orientation="Horizontal" Name="sta"> 
      <TextBlock Style="{StaticResource TextBlockStyle}"> 
       First Name: 
      </TextBlock> 
      <TextBox Name="firstName" Style="{StaticResource TextBoxStyle}"/> 
     </StackPanel> 
     <StackPanel Orientation="Horizontal"> 
      <TextBlock Style="{StaticResource TextBlockStyle}"> 
       Last Name: 
      </TextBlock> 
      <TextBox Name="lastName" Style="{StaticResource TextBoxStyle}" 
        Margin="6,4,4,4"/> 
     </StackPanel> 
     <Button Width="50" Content="Submit" Click="Button_Click"/> 

    </StackPanel> 
</UserControl> 

我想補充電網堆疊面板.....

thanx提前

回答

0

我不是100%肯定你實際上在問你的問題,但它是完全可能把一個StackPanel在Grid

<Grid> 
    <StackPanel /> 
</Grid> 
相關問題