wpf日历控件无法正常显示

时间:2017-01-01 23:48:45

标签: wpf xaml

我的日历控件显示有两个问题,如下所示。日期未放在标题中并被截断。图像是从一个除了控件本身之外没有任何东西的窗口生成的。如果我把它放在画布或网格或堆叠面板上,我会遇到同样的问题。

enter image description here

我该怎么做才能解决问题。 Net framework 4.6.1

编辑:这是所有XAML:

<Window
    x:Class="theClass"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:scm="clr-namespace:System.ComponentModel;assembly=WindowsBase"
    xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
    xmlns:local="clr-namespace:PIM"
    mc:Ignorable="d"
    Name="theName"
    Title="theTitle"
    Height="600"
    Width="600"
    Background="#FFE8FFFD"
    ResizeMode="NoResize">
    <Calendar />
</Window>

0 个答案:

没有答案