在一般的XAML代码中,我写了如下,
<pre>Page x:Class="UI_eHTMP.Window1" Title="eHTMP Application"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="800" Width="1400" Loaded="Window_Loaded" Title="applc1" Background="OldLace"></page></pre>
当我运行应用程序并尝试恢复并最大化窗口页面时,我看不到任务栏和垂直和水平滚动条滚动。
XAML代码中需要包含哪些内容?当我在XAML标题中提到时,甚至标题也不会显示。
答案 0 :(得分:7)
将您的内容放入ScrollViewer。
<Page x:Class="UI_eHTMP.Window1" Title="eHTMP Application"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="800" Width="1400" Loaded="Window_Loaded" Title="applc1" Background="OldLace">
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
// Content
</ScrollViewer>
</Page>
如果这不起作用,请从页面中删除“宽度”和“高度”属性,但保留ScrollViewer。
至于标题,你已经指定了两次,一次是eHTMP应用程序,另一次是applc1。尝试删除其中一个。