我对 .NET 很陌生,试图做一个简单的 XAML 网页,里面有一个 200x200 的框架,里面有谷歌。我有一个 XAML 页面,如下所示:
<UserControl x:Class="Oleo.CI.Content.IU.Form.Test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
xmlns:telerikInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input"
xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"
xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
xmlns:uiControl="clr-namespace:Oleo.CI.Contenidos.IU.Control;assembly=Oleo.CI.Contenidos.IU.Control"
mc:Ignorable="d" d:DesignHeight="500" d:DesignWidth="1002" Width="1002" Height="812" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0 10 18 -10">
<navigation:Frame x:Name="Cont" Source="http://www.google.com" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" Width="200" Height="200"/>
<TextBlock Text="Oferta" Grid.Column="3" Grid.Row="2" HorizontalAlignment="Right" />
</StackPanel>
</UserControl>
我已经尝试过使用 navigation:Frame 和 sdk:Frame 但该框架没有显示在页面上与该代码(其他控件,如 TextBlocks 的 RadGrids 工作完美)。我不确定我做错了什么,任何人都可以对我有所启发吗?
谢谢