我有MyWindow,WPF中的SizeToContent =“WidthAndHeight”。当MyWindow比屏幕大时,我想激活ScrollViewer。最简单的方法是什么?
答案 0 :(得分:2)
你需要使用... Scrollviewer。
为您准备了一些代码:
<Window x:Class="Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow"
Name="Window"
SizeToContent="WidthAndHeight">
<ScrollViewer HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Background="Green">
<Grid Name="MainGrid" Background="red" MinWidth="600" MinHeight="400">
<!--Some Content Here-->
<Label>Foo</Label>
</Grid>
</ScrollViewer>
</Window>
此代码的作用:
这至少应该让你开始。