2024年10月16日

c# winform 显示一个 tip

摘要: public void showTip(string text, int duration = 2000) { var form = new Form { Size = new Size(1, 1), StartPosition = FormStartPosition.CenterScreen }; 阅读全文

posted @ 2024-10-16 23:30 空明流光 阅读(13) 评论(0) 推荐(0) 编辑

c# .net8 winform 嵌入 wpf 控件

摘要: .net framework 例子很多,但 .netcore 的很难找,经过和 gpt 很长时间的沟通,完成了。 关键点是 vs2022 似乎还不支持设计时的 ElementHost,所以必须通过代码初始化。 1. 新建一个 wpf 控件库 2. 创建一个导圆角的 TextBox,控件名为 User 阅读全文

posted @ 2024-10-16 19:12 空明流光 阅读(149) 评论(0) 推荐(0) 编辑

导航