摘要: 参考 https://www.bilibili.com/video/BV13D4y1u7XX/?p=21 代码示例 1、自定义CustomButton按钮继承Button namespace WpfStudy.Buttons { public class CustomButton : Button 阅读全文
posted @ 2024-03-16 20:23 greencode 阅读(758) 评论(0) 推荐(2) 编辑
摘要: 只使用行 <Grid> <Grid.RowDefinitions> <RowDefinition/> <RowDefinition/> </Grid.RowDefinitions> <TextBlock Text="AAAAA" Grid.Row="0"/> <TextBlock Text="BBB 阅读全文
posted @ 2024-03-16 16:19 greencode 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 目的:通过例子了解、理解MVVM的基本结构。 Model namespace WpfStudy.Model { public class UserModel { public string Name { get; set; } } } ViewModel namespace WpfStudy.Vie 阅读全文
posted @ 2024-03-16 16:02 greencode 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 出处 https://www.theswamp.org/index.php?topic=59354.msg619875#msg619875 问题描述 用以下代码创建了一个Hatch,这Hatch周围没有创建Polyline,如何选择这个无边界Hatch的边界上的点。 比如用line命令时如何捕捉Ha 阅读全文
posted @ 2024-03-16 13:30 greencode 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 目的:创建一个资源字典,然后自动引入到各个Window或UserControl中,可以随意使用。 方式: 创建Style文件夹 在Style文件夹内创建一个ButtonStyleStyle.xaml的资源字典 示例如下: <ResourceDictionary xmlns="http://schem 阅读全文
posted @ 2024-03-16 12:54 greencode 阅读(96) 评论(0) 推荐(0) 编辑