摘要: 只使用行 <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) 编辑
摘要: 问题出处 https://forums.autodesk.com/t5/net/hatch-to-drawn-polyline-e-message-quot-einvalidinput-quot/m-p/9631373 问题描述 我使用以下语句绘制了一条多段线: Acad.Application.D 阅读全文
posted @ 2024-03-14 14:17 greencode 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 有哪些系统变量 AutoCAD系统变量详解 比如设置pickfirst /// <summary> /// 为了支持CommandFlags.UsePickSet和ed.SelectImplied()。 /// https://help.autodesk.com/view/ACD/2017/ENU/ 阅读全文
posted @ 2022-12-07 20:00 greencode 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 官方代码例子 https://forums.autodesk.com/t5/net/copy-model-space-to-another-database/m-p/9735648 using Autodesk.AutoCAD.Runtime; using Autodesk.AutoCAD.Appl 阅读全文
posted @ 2022-12-07 15:43 greencode 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 帖子出处 https://through-the-interface.typepad.com/through_the_interface/2011/12/adding-an-objectoverrule-to-stop-autocad-objects-from-being-erased-using- 阅读全文
posted @ 2022-07-16 15:18 greencode 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 出处 https://forums.autodesk.com/t5/net/disable-layer-edit-functionality/m-p/7180169 问题 在我们的自定义应用程序中,我们不希望用户能够从autocad图层选项板中创建/重命名/删除现有图层。 我们希望保留图层调色板,但 阅读全文
posted @ 2022-07-16 14:12 greencode 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 随机数的语法:js 生成随机数 | 菜鸟教程 (runoob.com) 生成随机数就一个内置函数:Math.random(),返回[0,1),没有其他可选参数。 向下取整:Math.floor() 向上取整:Math.ceil() 四舍五入(不会考虑奇偶的情况,即不会四舍六入):Math.round 阅读全文
posted @ 2022-06-24 08:41 greencode 阅读(1276) 评论(0) 推荐(0) 编辑