也许有人对此有一个答案。

我正在设计要添加到的用户控件
其他容器,它们要适应可用空间
他们的容器。

因此,这意味着不设置高度和宽度
用户控制。

但是当我设计控件时,我想看到它
宽度和高度。

所以我当然不必继续设置和删除
控件的宽度和高度

如何处理呢???

马尔科姆

最佳答案

用这个

<UserControl x:Class="MyApp.UserControl1"
         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="500" d:DesignWidth="600">

10-04 10:02