0
我有MyWindow其中SizeToContent =「WidthAndHeight」在WPF中。當MyWindow大於屏幕時,我想激活一個ScrollViewer。什麼是最簡單的方法來做到這一點?ScrollViewer SizeToContent = WidthAndHeight
我有MyWindow其中SizeToContent =「WidthAndHeight」在WPF中。當MyWindow大於屏幕時,我想激活一個ScrollViewer。什麼是最簡單的方法來做到這一點?ScrollViewer SizeToContent = WidthAndHeight
你需要使用...滾動查看器。
給你一些代碼:
<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>
這段代碼的含義:
這應該至少讓你開始。
發佈一些xaml以正確解決問題... – Ankesh 2012-03-08 14:05:23