上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 27 下一页
摘要: C#中的lock lock语法为: private object o = new object();//创建一个对象 public void Work() { lock(o)//锁住这个对象 { //做一些必须按照顺序做的事情 } } 相当于: private object o = new obje 阅读全文
posted @ 2023-01-03 12:56 JohnYang819 阅读(2649) 评论(0) 推荐(0) 编辑
摘要: (1)下载DirectXTK项目:https://github.com/microsoft/DirectXTK (2)VS 打开该项目,右键项目,生成依赖性-自定义 (3)勾选MeshContentTask(.targets,.props) (4)右键项目,添加现有项目 (5)添加.obj,或者.d 阅读全文
posted @ 2022-12-05 16:06 JohnYang819 阅读(134) 评论(0) 推荐(0) 编辑
摘要: public class PChangeTest:INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private void OnPropertyChanged(string prop 阅读全文
posted @ 2022-11-25 16:37 JohnYang819 阅读(51) 评论(0) 推荐(0) 编辑
摘要: public class Test { /// <summary> /// 静态字段初始化器会在调用静态构造器前运行。 /// 如果类型没有静态构造器,字段会在类型被使用前或运行时中更早的时间进行初始化. /// 静态字段初始化器按照字段声明的先后顺序运行。 /// </summary> publi 阅读全文
posted @ 2022-11-12 17:22 JohnYang819 阅读(301) 评论(0) 推荐(1) 编辑
摘要: 官网上好像并没有直接给相应的接口和方法。 发现一种有效的方法: 先说方法: ScrollViewer sv = flowScrollViewer.Template.FindName("PART_ContentHost", flowScrollViewer) as ScrollViewer; sv.S 阅读全文
posted @ 2022-11-02 14:59 JohnYang819 阅读(281) 评论(0) 推荐(0) 编辑
摘要: <UserControl x:Class="wpfTestStudio.textPlaceHolderDemo" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.mic 阅读全文
posted @ 2022-10-29 20:29 JohnYang819 阅读(112) 评论(0) 推荐(0) 编辑
摘要: public class A { } public class B : A { } public class C : A { } public static class Extension { public static void Test(B b) { Console.WriteLine("thi 阅读全文
posted @ 2022-10-25 10:22 JohnYang819 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 在计算机图形学中,摄像机/视图空间,是由自身定位点,目标点,向上向量确定。当摄像机旋转时,实质是其目标点发生了变化,下面就摄像机的旋转角度引起目标点的变化进行简单的推导。 上图是右手坐标系,其中目标点假定为p,p的旋转有两个角度,分别是pitch(即向上向下看,范围是90°~-90°,即从y的正轴, 阅读全文
posted @ 2022-10-02 10:34 JohnYang819 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 被引用的dll是testDllFr.dll,其代码为: namespace testDLLFr { public class TestA { public static void TestAM() { Console.WriteLine("TestAM"); } } public class Tes 阅读全文
posted @ 2022-09-29 19:03 JohnYang819 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 读取JSON文件 NuGet两个包:Microsoft.Extensions.Configuration,Mircosoft.Extensions.Configuration.Json。 { "name": "yjw", "age": 18, "proxy": {"address": "aa"} } 阅读全文
posted @ 2022-09-04 23:46 JohnYang819 阅读(422) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 27 下一页