6

我的网格有 2 行 2 列,我想动态地将一个文本块添加到第一行第二列。

这是我的代码,它不会引发异常,但不会显示任何内容

<Grid HorizontalAlignment="Left" Height="768" VerticalAlignment="Top" Width="1366">
        <Grid.RowDefinitions>
            <RowDefinition Height="150"/>
            <RowDefinition/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition Width="250"/>
        </Grid.ColumnDefinitions>
    </Grid>


protected async override void OnNavigatedTo(NavigationEventArgs e)
        {
            TextBlock txt = new TextBlock();
            txt.Width = 200;
            txt.Height = 100;
            txt.Foreground = new SolidColorBrush(Colors.Yellow);

            var location = await InitializeLocationServices();
            txt.Text = location;

            Grid.SetRow(txt, 0);
            Grid.SetColumn(txt, 1);

        }
4

1 回答 1

8

您永远不会将 TextBlock 添加到网格中。您应该命名您的网格(例如 x:Name="myGrid")并在某个时候调用 myGrid.Children.Add(txt)。

于 2012-06-10T15:29:47.063 回答