0

我有一个控件,它是从 Grid 继承的

<Grid x:Class="User_Controls.CustomGrid"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         mc:Ignorable="d" x:Name="LayoutRoot" 
         >

<TextBlock>Test</TextBlock>
</Grid>

目前,后面的代码是空白的

 public partial class CustomGrid : Grid
{
public CustomGrid(){}    
}

我在页面上的另一个网格中有一个 CustomGrid 实例。

<Grid Grid.Column="4" Grid.Row="2" Style="{StaticResource MenuItemStyle}">
            <src:LiveTile  x:Name="liveTile1" />    
        </Grid>

当我运行项目时,文本字段中的值不会显示。我尝试将控件从父网格中取出,弄乱字体和垂直/水平对齐方式。

知道为什么我看不到价值吗?

4

0 回答 0