Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我们的项目中同时使用 WPFToolkit 和 WPFExtendedtoolkit dll 来获取DateTimePicker. 但是当日历弹出日历按钮不正常时,一半的按钮被隐藏了。
DateTimePicker
任何帮助,将不胜感激。
这可能是一个迟到的答案。但希望它可以帮助其他有同样问题的人。我认为您在自定义样式中为 Button 定义了样式。只需将以下样式添加到您的自定义样式中。
<Style TargetType="{x:Type DatePicker}"> <Style.Resources> <Style TargetType="Button"/> </Style.Resources> </Style>