【发布时间】:2014-03-19 05:29:27
【问题描述】:
当我在 WPF 中创建一个新的UserControl 时,工作室会创建一些 XAML:
<UserControl x:Class="MOG.Objects.Date.Calender"
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="300" d:DesignWidth="300">
<Grid>
</Grid>
</UserControl>
在UserContol我也可以添加Width属性。 DesignWidth 和 Width 有什么区别?
【问题讨论】:
标签: c# wpf xaml user-controls