上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 在WPF的 <Window.Resources>中 可以直接写 <ResourceDictionary Source="../Styles/ContentDemoStyle.xaml"/>, 也可以包裹一层, <ResourceDictionary> <ResourceDictionary.Merg 阅读全文
posted @ 2024-07-09 23:00 孤沉 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1、先介绍TriggerParameterPath的AddedItems方法吧 设计场景 点击用户名罗列出用户的详细信息,或者点击配方罗列出配方的详细信息 在WPF的官方例子中,它是这样写的 有上下两层,点击第一行的用户名,第二行罗列对应的信息 <!-- 可以用来罗列信息,不同的值对应不同的信息 - 阅读全文
posted @ 2024-07-09 22:33 孤沉 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 一般最简单的ItemsControl的写法是 <ItemsControl ItemsSource="{Binding Students}"> <ItemsControl.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Name}"/> < 阅读全文
posted @ 2024-07-08 15:12 孤沉 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 我发现WPF自定义控件模板的时候有时候写ContentPresenter ,有时候不写,不管写不写ContentPresenter 都能自定义好一个漂亮的控件,为什么,那么ContentPresenter 的作用是什么,写不写的区别是什么 ContentPresenter 是WPF中一个非常重要的控 阅读全文
posted @ 2024-07-05 22:07 孤沉 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 我发现很多同学把思维固化了,通常我们需要实现的进度条是 我在网上看到好多例子,但是都没有我的简单,他们不是重写ProcessBar就是使用模板, 可以将TextBlock提取出来啊,灵活一点单独绑定 然后一句代码Panel.ZIndex="1"就搞定了 <StackPanel> <Button Co 阅读全文
posted @ 2024-07-03 13:50 孤沉 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1、之前面试的时候,面试官说了在异步更新UI不用使用Dispatcher.CurrentDispatcher.Invoke 我之前倒没注意,或者说知识浅薄,不知道, <StackPanel> <Button Content="执行耗时任务" Margin="20" Command="{Binding 阅读全文
posted @ 2024-07-03 13:19 孤沉 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1、依赖倒置原则 /// <summary> /// 高层模块不应该依赖底层模块 /// 二者都应该依赖其抽象 /// </summary> public class Student { public int Age { get; set; } public string Name { get; s 阅读全文
posted @ 2024-07-02 09:05 孤沉 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1、不管是父类调用子类的方法,还是获取子类的属性,道理都是一样的, 依赖倒置只是其中一个方法 public class Child:Parent { public string Default {get;set;} public Child() { Default="默认值"; } } 我现在父类需 阅读全文
posted @ 2024-07-01 17:50 孤沉 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1、lock internal class Program { static object lockObject=new object(); static void Main(string[] args) { Student student = new Student(); Thread threa 阅读全文
posted @ 2024-07-01 14:59 孤沉 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1、我今天发现一个奇怪的事情 我之前写的关于动态字符串的绑定 https://www.cnblogs.com/guchen33/p/18060276 <TextBlock Width="200" Height="30" FontSize="20" Text="{Binding Content, St 阅读全文
posted @ 2024-06-30 23:13 孤沉 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页