动态地向网格添加文本块

Lui*_*cia 4 c# xaml windows-runtime winrt-xaml windows-store-apps

我的网格有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);

        }
Run Code Online (Sandbox Code Playgroud)

Fil*_*kun 7

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