学海无涯

导航

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 43 下一页

2023年1月25日 #

常见算法

摘要: 一、遗传算法 二、 神精网络 三、粒子群优化算法 四、蚁群算法 五、机器学习 阅读全文

posted @ 2023-01-25 13:08 宁静致远. 阅读(40) 评论(0) 推荐(0) 编辑

2023年1月22日 #

Graphics 图形

摘要: 您可以将图形元素与标记中的其他元素无缝混合。布局对图形的作用与对任何其他元素的作用完全相同。 图形和其他内容不仅可以在标记中并排存在,而且它们甚至可以混合在一起。 <TextBlock FontSize="24" TextWrapping="Wrap"> And of course you can 阅读全文

posted @ 2023-01-22 17:11 宁静致远. 阅读(41) 评论(0) 推荐(0) 编辑

2023年1月20日 #

Resources 资源

摘要: 资源具有非常广泛的含义,在WPF中任何对象都可以是资源。 一个对象不必做任何特殊的事情就可以成为资源。资源处理基础架构完全致力于让您能够获取所需的资源,而不管资源是什么。它只是提供了一种识别和定位对象的机制。 资源管理的核心是ResourceDictionary类 程中添加资源: ResourceD 阅读全文

posted @ 2023-01-20 14:42 宁静致远. 阅读(104) 评论(0) 推荐(0) 编辑

Windows and Dialogs 窗体 对话框

摘要: <Window x:Class="WpfTestBlankApp.Views.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft 阅读全文

posted @ 2023-01-20 11:50 宁静致远. 阅读(31) 评论(0) 推荐(0) 编辑

2023年1月15日 #

Windows and Dialogs 窗口和对话框

摘要: 无边框,无外壳,且不能改变大小的窗口: WindowStyle="None" ResizeMode="NoResize" 窗口生命周期: Activated 当窗口被激活(例如,单击)时引发。如果窗口从未被激活,您将不会获得此事件(或相应的 Deactivated事件)。 Closing 当窗口试图 阅读全文

posted @ 2023-01-15 11:05 宁静致远. 阅读(122) 评论(0) 推荐(0) 编辑

2023年1月13日 #

Control Templates 控制模板

摘要: 简单控制模板 <Button Margin="0,0,2,2" Grid.Row="0" Grid.Column="0" Name="cell00" > <Button.Template> <ControlTemplate> <Grid> <Rectangle Fill="Orange"/> </G 阅读全文

posted @ 2023-01-13 18:21 宁静致远. 阅读(45) 评论(0) 推荐(0) 编辑

2023年1月12日 #

Styles 样式

摘要: Inline Styles 内联样式 <Button Margin="0,0,2,2" Grid.Row="0" Grid.Column="0" Name="cell00" > <Button.Style> <Style> <Setter Property="Button.FontSize" Val 阅读全文

posted @ 2023-01-12 16:25 宁静致远. 阅读(42) 评论(0) 推荐(0) 编辑

2023年1月11日 #

Binding to List Data 绑定到列表数据

摘要: 得到当前项 1 void birthdayButton_Click(object sender, RoutedEventArgs e) { 2 // Get the current person out of the collection view 3 People people = (People 阅读全文

posted @ 2023-01-11 10:57 宁静致远. 阅读(105) 评论(0) 推荐(0) 编辑

2023年1月10日 #

Data Binding 数据绑定

摘要: Person person = new Person("Tom", 11); public MainWindow(IRegionManager regionManager) { InitializeComponent(); birthdayButton.Click += BirthdayButton 阅读全文

posted @ 2023-01-10 09:48 宁静致远. 阅读(27) 评论(0) 推荐(0) 编辑

2023年1月9日 #

控件

摘要: 什么是控件? 大多数流行的 UI 框架都提供类似于控件的抽象,而 WPF 采用了一种稍微不寻常的方 法,因为控件通常不直接负责它们自己的外观。 WPF 中的控件都是关于行为的,它们 遵从模板来提供视觉效果。许多 GUI 框架要求您在自定义控件外观时编写自定义控 许多 WPF 用户界面元素不是控件。例 阅读全文

posted @ 2023-01-09 09:06 宁静致远. 阅读(144) 评论(0) 推荐(0) 编辑

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 43 下一页