C# - 如何让我的月历在设计中看起来像
C# - How can let my month Calendar look like in Design
我做了一个类似于 Microsoft ToDo 的应用程序。
我制作了一个用户控件,日历就在其中。
当我在设计中使用它时,它看起来像这样:
https://ibb.co/XD0Wyj5
但是当我启动程序时,它看起来像这样:https://ibb.co/vv30xrw
我试过
Application.EnableVisualStyles();
但看起来还是这个样子
如何才能在启动的程序中包含设计?
查看 VisualStyleState
参考 - https://referencesource.microsoft.com/#System.Windows.Forms/winforms/Managed/System/WinForms/VisualStyles/VisualStyleState.cs,01ad4fcb5f9ea430,references
将 VisualStyleState.NoneEnabled
分配给时,视觉样式未启用
Application.VisualStyleState
我做了一个类似于 Microsoft ToDo 的应用程序。
我制作了一个用户控件,日历就在其中。
当我在设计中使用它时,它看起来像这样: https://ibb.co/XD0Wyj5
但是当我启动程序时,它看起来像这样:https://ibb.co/vv30xrw
我试过
Application.EnableVisualStyles();
但看起来还是这个样子
如何才能在启动的程序中包含设计?
查看 VisualStyleState
参考 - https://referencesource.microsoft.com/#System.Windows.Forms/winforms/Managed/System/WinForms/VisualStyles/VisualStyleState.cs,01ad4fcb5f9ea430,references
将 VisualStyleState.NoneEnabled
分配给时,视觉样式未启用
Application.VisualStyleState