WPF设计:查看整个scrollview

时间:2018-01-01 23:03:33

标签: c# wpf

我正在设计一个带有滚动查看器的WPF程序。 我的问题是,我无法看到自己所做的事情。图片: pic

如您所见,我的实际视图外有一个按钮。我试图在视觉工作室向下滚动,但我无法使它工作。 如果有人知道解决方案或有任何提示,将不胜感激!

1 个答案:

答案 0 :(得分:0)

您可以尝试在Xaml的根元素上增加或设置设计高度(例如Window,UserControl等)。

例如:

<UserControl ...
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="1000" <----------THIS ONE
             d:DesignWidth="300">
    ...
</UserControl>