似乎并非总是这样,但是当扩展到选择日期时,datepicker月标签通常被截断:(而日期选择器插入带有“*”的网格中空间)。 有没有人遇到过这个?如果是这样,我们如何解决这个问题?
编辑13/07/2011:样本xaml
<UserControl x:Class="Module.View.ConfigView"
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>
<Expander Header="Options"
ExpandDirection="Down"
IsExpanded="True">
<Grid>
<StackPanel Orientation="Horizontal" Margin="5,5,5,5">
<Label Width="50" HorizontalAlignment="Left">From :</Label>
<DatePicker HorizontalAlignment="Left"/>
</StackPanel>
</Grid>
</Expander>
</Grid>
编辑21/07/2011:我测试了你的评论,确实问题来自我申请的主题。由于我没有更改DatePicker本身,我想我需要找到依赖并理解DatePicker的构建块。
5分钟后编辑:这实际上来自我的Button模板的默认宽度。如果我增加它,它很好。所以我觉得赏金来自Mamta Dalal,非常感谢。
答案 0 :(得分:2)
小煜,
我认为代码中没有任何错误,但您可以通过增加容纳月份部分的模板中容器的大小来尝试...并希望有效...