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)
归档时间: |
|
查看次数: |
9453 次 |
最近记录: |