wpf datepicker显示截断的月份

这似乎并非总是如此,但是当扩展到选择日期时,通常会截断
datepicker个月标签:(当将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,非常感谢.

最佳答案 小煜,

我不认为代码中有任何错误,但是您可以尝试通过增加模板中容器的大小来保存月份部分并希望有效…

点赞