gpt4 book ai didi

xaml - 如何获取在WPF中创建的页面的垂直滚动和水平滚动

转载 作者:行者123 更新时间:2023-12-03 00:42:30 25 4
gpt4 key购买 nike

在一般的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"&gt;</page></pre>

当我运行应用程序并尝试恢复和最大化窗口页面时,我看不到任务栏以及可滚动的垂直和水平滚动条。

XAML 代码中需要包含哪些内容?当我在 XAML 标题中提到时,甚至标题也不会显示。

最佳答案

将您的内容放入 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>

如果这不起作用,请从页面中删除 Width 和 Height 属性,但保留 ScrollViewer。

至于标题,您已指定两次,一次为 eHTMP Application,另一次为 applc1。尝试删除其中之一。

关于xaml - 如何获取在WPF中创建的页面的垂直滚动和水平滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1165520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com